Index: btms/a.bat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/a.bat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/a.bat	(working copy)
@@ -0,0 +1,7 @@
+set eeprom=32
+
+e pu
+
+e ep
+
+e ku
\ No newline at end of file
Index: btms/c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/c	(working copy)
@@ -0,0 +1,110 @@
+#!/bin/bash
+
+gensched () {
+if [ -f output/sched.rom ];then rm output/sched.rom; fi
+while [ 1 ];do
+	if [ -n "$1" ];then cat sched/$1.dat >> output/sched.rom; else return; fi
+	shift
+done
+}
+
+#enckey="-k 00000000000000000000000000000000"
+
+cd ${0%/*}
+for f in program/*.prog 
+  do if [[ ! $f =~ "bt.prog" && ! $f =~ "patch.prog" && ! $f =~ "sim.prog" ]] ; then progs="$progs $f"; fi; done
+cat program/bt.prog $progs  > output/bt_program23.meta
+
+case $1 in
+bqs)
+	echo bqb-mouse;gensched mouse bqb revd;;
+bqm)
+	echo bqb-module;gensched module bqb revd;;
+bqh)
+	echo bqb-hci;gensched hci bqb revd;;
+hc)
+	echo hci;gensched hci revd;;
+sh)
+	echo shutter;gensched shutter revd;;
+md)
+	echo module;gensched module revd;;
+ms)
+	echo mouse;gensched mouse le_mouse revd;;
+dg)
+	echo dongle;gensched usb dongle revd;;
+pr)
+	echo prcp;gensched le_prcp revd;;
+ot)
+	echo ota;gensched ota revd;;
+k)
+	echo keyboard;gensched kb le_kb revd;;
+s)
+	gensched sim 
+	sed '1,4 c define REVD\ndefine ROMCODE\ndefine SIM' -i output/bt_program23.meta;;
+o)
+	echo 'otpdata' > output/sched.rom; echo 'mem_patch00:01' > output/sched.rom
+#	enckey="-p"
+	typ="\ndefine RF"
+	sed '3 c define OTP'"$typ" -i output/bt_program23.meta;;
+p)
+	echo 'mem_patch00:0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' > output/sched.rom
+	echo 'mem_lap:00 00 00 00 00 00' >> output/sched.rom
+	sed '3 d' -i output/bt_program23.meta;;
+f)
+	romcode="\ndefine ROMCODE\n"
+	gensched shutter fpga
+	if [ -z "$romcode" ];then
+		sed '1,4 c define REVC\ndefine FPGA' -i output/bt_program23.meta
+	else
+		sed '1,4 c define REVD\ndefine FPGA'"$romcode" -i output/bt_program23.meta
+	fi;;
+tt)
+	echo test;gensched test revd;;
+nl)
+	echo newland;enckey=-p;gensched newland
+	sed '3 i define NEWLAND\n' -i output/bt_program23.meta;;
+esac
+
+
+for f in format/*.format; do if [[ ! $f =~ "bt.format" && ! $f =~ "command.format" ]] ; then fmts="$fmts $f"; fi; done
+cat format/bt.format $fmts format/command.format > output/bt_format.meta
+perl util/memalloc.pl
+perl util/mergepatch.pl 
+cd output
+osiuasm bt_program23 -O-W
+
+
+defs=( FPGA SIM ROMCODE BLE REVA REVB )
+for i in $(seq 0 $((${#defs[@]} - 1))) ; do
+	grep  "^define ${defs[$i]}$" bt_program23.meta -q
+	tsts[$i]=$?
+done
+
+geneep $enckey
+if [[ $2 =~ o ]] ; then exit; fi
+if [[ $1 =~ [[:digit:]] ]] ; then
+	cnt=$1
+fi
+
+if [ ${tsts[1]} -eq 0 ] ; then
+	cp romcode.rom ramcode.rom ../../sim
+	if [ -f eeprom.dat ] ; then cp eeprom.dat ../../sim/ ; fi
+	if [ -f otp.rom ] ; then sed '7 c 1' < otp.rom > ../../sim/otp.rom ; fi
+else
+	if [ ${tsts[0]} -eq 0 ] ; then
+		if [ ${tsts[2]} -eq 0 ] ; then
+			perl ../util/rom2mif.pl romcode.rom; mv romcode.mif  ../../fpga/
+			if [ -f otp.rom ] ; then perl ../util/rom2mif.pl otp.rom; mv otp.mif ../../fpga/ ; fi
+			exit
+		fi
+#		if [[ $1 == "f" ]] ; then 	../../fpga/p u;sleep 1; e su sched.rom;exit; fi
+	fi
+	if [ ! -s ramcode.rom ] ; then exit; fi
+	if [[ $1 =~ [op] ]];then 
+		e ku; e hu; 
+	else
+		e ku; e hu ramcode.rom; e su sched.rom
+	fi
+fi
+
+cd ..
Index: btms/do.bat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/do.bat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/do.bat	(working copy)
@@ -0,0 +1,154 @@
+@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
+@rem set device_option=shutter
+@rem set device_option=hci
+@rem set device_option=kb
+@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
+
+perl util/transform_memmap2btreg.pl output/memmap.format format/memblocks.format ..\c51\btreg.h
+
+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\patch.dat + ..\sched\rf.dat +  ..\sched\user.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\patch.dat + ..\sched\rf.dat +  ..\sched\user.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\fpga.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 **********************************
+
+@copy .\output\ramcode.rom ..\c51\patch
+
+@copy .\output\sched.rom ..\c51\patch
+
+@copy .\output\memmap.format ..\c51\patch
+
+@copy .\sched\*.*	..\c51\patch
+
+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: btms/format/24g.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/24g.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/24g.format	(working copy)
@@ -0,0 +1,135 @@
+
+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
+4 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
+
+
+0x10 ABORT_DATA
+0x40 RSSI_SENSITIVITY
+
+0x4e G24_PAIR_CH
+
+81000 G24_8125_INTERVAL_PARAM
+78000 G24_78125_INTERVAL_PARAM
+
+
+)
+
+(
+0 disable_24g
+1 tx_24g
+2 rx_24g
+
+0 bit_ack_24g
+)
+
+//mem_24g_interrupt
+(
+0 rx_dr
+1 rx_sync
+4 tx_ds
+5 tx_fail
+)
+
+//mem_24g_data_type
+(
+0x07 bits_data
+//0-2 data type
+3 bit_abort
+4 bit_hop
+5 bit_sync
+//6-7 channel offset
+)
+
+//mem_send_data_24g_short_lpm
+(
+0 SHORT_LPM_STATE_POLLING 	
+1 SHORT_LPM_STATE_DATA
+2 SHORT_LPM_STATE_NODATA
+3 SHORT_LPM_STATE_BUTTON_WHEEL
+)
+
Index: btms/format/Hid.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/Hid.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/Hid.format	(working copy)
@@ -0,0 +1,22 @@
+
+(
+/*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
+0x41 HID_DISCONNECT
+
+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: btms/format/app.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/app.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/app.format	(working copy)
@@ -0,0 +1,282 @@
+
+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
+)
+
+(
+0x01 IPC_TYPE_CMD
+0x02 IPC_TYPE_EVT
+0x03 IPC_TYPE_HID
+0x04 IPC_TYPE_SPP
+0x05 IPC_TYPE_BLE
+0x06 IPC_TYPE_24G
+)
+
+(
+0x01 SYC_TASK_LPM
+0x02 SYC_TASK_TIMER
+0x03 SYC_TASK_HIBERNATE
+)
Index: btms/format/bt.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/bt.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/bt.format	(working copy)
@@ -0,0 +1,1029 @@
+
+	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
+20 TX_POWER_PAIR
+)
+
+
+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: btms/format/command.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/command.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/format/hci.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/hci.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/format/keyboard.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/keyboard.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/keyboard.format	(working copy)
@@ -0,0 +1,226 @@
+
+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: btms/format/l2cap.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/l2cap.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/format/le.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/le.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/le.format	(working copy)
@@ -0,0 +1,699 @@
+
+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
+0x010010 param_smp_key_dist0
+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
+)
+
+
+(
+0x2902  ATT_Configuration
+)
+
+
Index: btms/format/lmp.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/lmp.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/format/memblocks.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/memblocks.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/format/module.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/module.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/format/mouse.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/mouse.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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
+750 mem_mouse_uuid_list
+0 mem_mouse_uuid_list_end
+600 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: btms/format/patch.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/patch.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/format/regs.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/regs.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/format/rfcomm.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/rfcomm.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/format/sdp.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/sdp.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/format/security.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/security.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/format/shutter.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/shutter.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/shutter.format	(working copy)
@@ -0,0 +1,386 @@
+
+
+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
+)
+
+(
+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
+)
+
+(
+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
+)
+
+
+
Index: btms/format/simple_pairing.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/simple_pairing.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/format/ui.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/ui.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/ui.format	(working copy)
@@ -0,0 +1,455 @@
+/*****************************************************************************/
+/* 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_UPDATE_SUPERVISION_TO
+35 BT_CMD_START_24G
+36 BT_CMD_STOP_24G
+37 BT_CMD_PAIR_24G
+38 BT_CMD_TEST_MODE
+39 BT_CMD_START_ADV_RECONN
+40 BT_CMD_AUTO_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
+0x2f BT_EVT_RESET
+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_SUCCESS
+0x3b BT_EVT_24G_ATTEMPT_FAIL
+0x3c BT_EVT_WAKEUP
+0x3d BT_EVT_HIBERNATE_WAKE
+0x3e BT_EVT_CLEAR_LINKKEY
+0x3f BT_EVT_24G_CHEAK_DONGLE_EXIST
+0x40 BT_EVT_LE_NOTIFY_ENABLE
+
+
+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: btms/format/user.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/user.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/user.format	(working copy)
@@ -0,0 +1,226 @@
+
+omemalloc(
+1 mem_current_event
+1 mem_ipc_lock_rx_data_bt
+1 mem_ipc_lock_rx_data_c51
+1 mem_ipc_lock_tx_data_bt
+1 mem_ipc_lock_tx_data_c51
+150 mem_ipc_2bt_fifo_head
+0	mem_ipc_2bt_fifo_end
+2	mem_ipc_2bt_read_index
+2	mem_ipc_2bt_write_index
+100 mem_ipc_2C51_fifo_head
+0	mem_ipc_2C51_fifo_end
+2	mem_ipc_2C51_read_index
+2	mem_ipc_2C51_write_index
+100	mem_c51_private_area
+2 mem_ipc_tx_evt_buff
+1 mem_ipc_tx_evt
+1 mem_ipc_rx_type
+2 mem_ipc_bt_timer
+2 mem_ipc_c51_timer
+1 mem_ipc_bt_100ms_timer
+1 mem_ipc_c51_100ms_timer
+4 mem_ipc_last_check_timer
+
+34 mem_new_24g_rxbuf
+32 mem_new_24g_txbuf
+34 mem_new_24g_txpayload
+32 mem_new_24g_rxpayload
+1 mem_new_24g_rxdata_length
+1 mem_new_24g_pid
+1 mem_new_24g_datalen
+1 mem_new_24g_data_type
+1 mem_new_24g_txlen
+2 mem_new_24g_rx_window
+1 mem_new_24g_ensure
+2 mem_new_24g_txfail_cnt
+1 mem_new_24g_get_ack_fail
+1 mem_new_24g_retry
+1 mem_new_24g_ch
+1 mem_new_24g_current_ch_number
+4 mem_new_24g_paring_addr
+1 mem_new_24g_pairing_sm
+4 mem_new_24g_ch_map1
+4 mem_new_24g_ch_map2
+4 mem_new_24g_ch_map3
+4 mem_new_24g_ch_map4
+4 mem_new_24g_tx_btclk
+1 mem_new_24g_interval
+1 mem_new_24g_interval_min
+1 mem_new_24g_interval_max
+4 mem_new_24g_addr
+1 mem_new_24g_abort_pac
+1 mem_new_24g_sync_pac
+2 mem_new_24g_check_dongle_times
+8 mem_new_24g_enter_hibernate
+4 mem_new_24g_device_addr
+1 mem_new_24g_pac_index
+1 mem_new_24g_no_ack
+3 mem_new_24g_sta_crc
+3 mem_new_24g_last_crc
+1 mem_new_24g_sta_pid
+1 mem_new_24g_last_pid
+1 mem_new_24g_max_retry
+1 mem_new_24g_mode
+32 mem_new_uart_packet
+32 mem_new_24g_common_temp
+1 mem_new_24g_rf_last_sta
+1 mem_new_24g_rf_hop_ch
+1 mem_new_24g_sync_cnt
+1 mem_new_24g_hop_pac_retry
+1 mem_new_24g_rf_work_stage
+1 mem_new_24g_hop_fastly_cnt
+1 mem_new_24g_auto_paring_switch
+1 mem_new_24g_key_wheel_event
+1 mem_new_24g_delay_long_sleep_cnt
+1 mem_new_24g_delay_long_sleep_maxcnt
+1 mem_new_24g_enter_lpm_timer
+2 mem_new_24g_syncword
+1 mem_new_24g_syncword_crc8
+1 mem_new_24g_get_syncword_crc8
+1 mem_new_24g_paccnt
+1 mem_new_24g_ota_enable
+
+1 mem_bt_wakeup_from_long_mult
+1 mem_bt_motion_event
+
+1 mem_tx_power_temp
+1 mem_power_ctrl_level
+1 mem_power_ctrl_pac_succ_cnt
+8 mem_rssi_signal_buf
+1 mem_rssi_signal_index
+1 mem_rssi_hex_received
+1 mem_rssi_avg_received
+
+1 mem_last_txlch
+2 mem_last_txlen
+20 mem_last_txdata
+
+600 mem_device_uuid_list
+0 mem_device_uuid_list_end
+480 mem_device_le_att_list
+0 mem_device_le_att_list_end
+
+1 mem_empty_count_user
+32 mem_hid_buff
+2 mem_adc_0v
+2 mem_adc_3v
+1 mem_hibernate_flag
+2 mem_new_supervision_to
+
+4 mem_le_rx_winsows
+2 mem_le_att_report1
+2 mem_le_att_report2
+1 mem_le_slave_update_param_timer
+1 mem_le_slave_update_mult_timer
+1 mem_le_reconn_enable_notify_timer
+1 mem_le_reconn_flag
+12 mem_le_buff_temp
+2 mem_le_rx_window_inc
+1 mem_le_prepare_tx_retransmited_number
+
+4 mem_last_check_clk
+1 mem_hid_send_handshake
+1 mem_feature_ext_page_number
+11 mem_rf_init_data_new
+
+4 mem_short_lpm_interval_param
+1 mem_short_lpm_enable
+1 mem_short_lpm_tx_cnt
+3 mem_ckln_24g_short_lpm
+1 mem_send_data_24g_short_lpm
+1 mem_short_lpm_interval_cnt
+1 mem_ipc_is_ready
+1 mem_short_data_wheel
+1 mem_ble_data_wheel
+1 mem_ble_data_wheel_lpm_timer
+
+1 mem_bt_read_ipc_count
+1 mem_51_read_sensor_count
+
+1 mem_queue_write_prt
+1 mem_queue_read_ptr
+7 mem_queue_buffer0
+7 mem_queue_buffer1
+7 mem_queue_buffer2
+7 mem_queue_buffer3
+1 mem_ble_read_ipc_fifo_once
+1 mem_ble_send_flag
+
+1 mem_mouse_le_pairing_flag
+1 mem_mult_time_arrive_flag
+
+
+
+1 mem_led_gpio8_blink_timer
+1 mem_led_gpio8_blink_cnt
+1 mem_led_gpio5_blink_timer
+1 mem_led_gpio5_blink_cnt
+
+
+0 mem_32asm_data_end
+
+)
+
+
+//C51 synchronous task
+(
+3 START_C51_CORE
+)
+
+
+//bt mode device number
+(
+0X01 MODE_BT_DEVICE1
+0X02 MODE_BT_DEVICE2
+0X03 MODE_BT_DEVICE3
+0X04 MODE_24G_DEVICE
+)
+
+//mem_24g_rx_packet_flag
+(
+0 FLAG_24G_NOT_RX_PACKET
+1 FLAG_24G_RX_PACKET
+)
+
+//mem_24g_pairing_sm
+(
+0 STATE_24G_PAIRING_NULL
+1 STATE_24G_PAIRING_1
+2 STATE_24G_PAIRING_2
+3 STATE_24G_PAIRING_3
+0X11 STATE_24G_PAIRING_1_WAITING_ACK
+0X12 STATE_24G_PAIRING_2_WAITING_ACK
+0X13 STATE_24G_PAIRING_3_WAITING_ACK
+0XFF STATE_24G_PAIRING_SUCCESS
+)
+
+(
+0x01 ADV_FLAG_LIMITED_DISCOVERABLE
+0x04 ADV_FLAG_BREDR_NOT_SUPPORTED
+)
+
+(
+0 POWER_ON
+1 WORK_PAIRED
+2 WORK_SEARCH
+0 INIT_CLEAR
+)
+
+(
+1 NEW_QUEUE_ELE_COUNT
+32 NEW_QUEUE_ELE_LENGTH
+
+0x4f50 p_mem_hci_log
+)
+
+(
+7 RSSI_BUF_LEN
+0x77 RSSI_DIS_MIN_24G
+0x82 RSSI_DIS_MAX_24G
+
+0x75 RSSI_DIS_MIN_BLE
+0x80 RSSI_DIS_MAX_BLE
+)
+
Index: btms/format/utility.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/utility.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/utility.format	(working copy)
@@ -0,0 +1,102 @@
+/**
+*  @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
+
+1 mem_c51_flag
+1 mem_c51_lmp_lock
+1 mem_lmp_bb_disconnect_reason
+)
+
Index: btms/format/var.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/format/var.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/linkkey.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/linkkey.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/linkkey.pl	(working copy)
@@ -0,0 +1,15 @@
+system("e mem_link_keyl10 > .t");
+open file, ".t";
+while(<file>) {
+	if(/:\s*(.*)\s*$/) {
+		@line = split(/ /,$1);
+		push @key, @line;
+	}
+}
+close file;
+unlink(".t");
+@key = reverse @key if($ARGV[0] =~ /r/);
+for($i = 0;$i < @key;$i++) {
+	print $key[$i];
+}
+print "\n";
Index: btms/output/bt_format.meta
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/bt_format.meta	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/bt_format.meta	(working copy)
@@ -0,0 +1,8121 @@
+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
+0x4a5c mem_mouse_uuid_list_end
+0x4a5c mem_mouse_le_att_list
+0x4cb4 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
+0x4729 mem_current_event
+0x472a mem_ipc_lock_rx_data_bt
+0x472b mem_ipc_lock_rx_data_c51
+0x472c mem_ipc_lock_tx_data_bt
+0x472d mem_ipc_lock_tx_data_c51
+0x472e mem_ipc_2bt_fifo_head
+0x47c4 mem_ipc_2bt_fifo_end
+0x47c4 mem_ipc_2bt_read_index
+0x47c6 mem_ipc_2bt_write_index
+0x47c8 mem_ipc_2C51_fifo_head
+0x482c mem_ipc_2C51_fifo_end
+0x482c mem_ipc_2C51_read_index
+0x482e mem_ipc_2C51_write_index
+0x4830 mem_c51_private_area
+0x4894 mem_ipc_tx_evt_buff
+0x4896 mem_ipc_tx_evt
+0x4897 mem_ipc_rx_type
+0x4898 mem_ipc_bt_timer
+0x489a mem_ipc_c51_timer
+0x489c mem_ipc_bt_100ms_timer
+0x489d mem_ipc_c51_100ms_timer
+0x489e mem_ipc_last_check_timer
+0x48a2 mem_new_24g_rxbuf
+0x48c4 mem_new_24g_txbuf
+0x48e4 mem_new_24g_txpayload
+0x4906 mem_new_24g_rxpayload
+0x4926 mem_new_24g_rxdata_length
+0x4927 mem_new_24g_pid
+0x4928 mem_new_24g_datalen
+0x4929 mem_new_24g_data_type
+0x492a mem_new_24g_txlen
+0x492b mem_new_24g_rx_window
+0x492d mem_new_24g_ensure
+0x492e mem_new_24g_txfail_cnt
+0x4930 mem_new_24g_get_ack_fail
+0x4931 mem_new_24g_retry
+0x4932 mem_new_24g_ch
+0x4933 mem_new_24g_current_ch_number
+0x4934 mem_new_24g_paring_addr
+0x4938 mem_new_24g_pairing_sm
+0x4939 mem_new_24g_ch_map1
+0x493d mem_new_24g_ch_map2
+0x4941 mem_new_24g_ch_map3
+0x4945 mem_new_24g_ch_map4
+0x4949 mem_new_24g_tx_btclk
+0x494d mem_new_24g_interval
+0x494e mem_new_24g_interval_min
+0x494f mem_new_24g_interval_max
+0x4950 mem_new_24g_addr
+0x4954 mem_new_24g_abort_pac
+0x4955 mem_new_24g_sync_pac
+0x4956 mem_new_24g_check_dongle_times
+0x4958 mem_new_24g_enter_hibernate
+0x4960 mem_new_24g_device_addr
+0x4964 mem_new_24g_pac_index
+0x4965 mem_new_24g_no_ack
+0x4966 mem_new_24g_sta_crc
+0x4969 mem_new_24g_last_crc
+0x496c mem_new_24g_sta_pid
+0x496d mem_new_24g_last_pid
+0x496e mem_new_24g_max_retry
+0x496f mem_new_24g_mode
+0x4970 mem_new_uart_packet
+0x4990 mem_new_24g_common_temp
+0x49b0 mem_new_24g_rf_last_sta
+0x49b1 mem_new_24g_rf_hop_ch
+0x49b2 mem_new_24g_sync_cnt
+0x49b3 mem_new_24g_hop_pac_retry
+0x49b4 mem_new_24g_rf_work_stage
+0x49b5 mem_new_24g_hop_fastly_cnt
+0x49b6 mem_new_24g_auto_paring_switch
+0x49b7 mem_new_24g_key_wheel_event
+0x49b8 mem_new_24g_delay_long_sleep_cnt
+0x49b9 mem_new_24g_delay_long_sleep_maxcnt
+0x49ba mem_new_24g_enter_lpm_timer
+0x49bb mem_new_24g_syncword
+0x49bd mem_new_24g_syncword_crc8
+0x49be mem_new_24g_get_syncword_crc8
+0x49bf mem_new_24g_paccnt
+0x49c0 mem_new_24g_ota_enable
+0x49c1 mem_bt_wakeup_from_long_mult
+0x49c2 mem_bt_motion_event
+0x49c3 mem_tx_power_temp
+0x49c4 mem_power_ctrl_level
+0x49c5 mem_power_ctrl_pac_succ_cnt
+0x49c6 mem_rssi_signal_buf
+0x49ce mem_rssi_signal_index
+0x49cf mem_rssi_hex_received
+0x49d0 mem_rssi_avg_received
+0x49d1 mem_last_txlch
+0x49d2 mem_last_txlen
+0x49d4 mem_last_txdata
+0x49e8 mem_device_uuid_list
+0x4c40 mem_device_uuid_list_end
+0x4c40 mem_device_le_att_list
+0x4e20 mem_device_le_att_list_end
+0x4e20 mem_empty_count_user
+0x4e21 mem_hid_buff
+0x4e41 mem_adc_0v
+0x4e43 mem_adc_3v
+0x4e45 mem_hibernate_flag
+0x4e46 mem_new_supervision_to
+0x4e48 mem_le_rx_winsows
+0x4e4c mem_le_att_report1
+0x4e4e mem_le_att_report2
+0x4e50 mem_le_slave_update_param_timer
+0x4e51 mem_le_slave_update_mult_timer
+0x4e52 mem_le_reconn_enable_notify_timer
+0x4e53 mem_le_reconn_flag
+0x4e54 mem_le_buff_temp
+0x4e60 mem_le_rx_window_inc
+0x4e62 mem_le_prepare_tx_retransmited_number
+0x4e63 mem_last_check_clk
+0x4e67 mem_hid_send_handshake
+0x4e68 mem_feature_ext_page_number
+0x4e69 mem_rf_init_data_new
+0x4e74 mem_short_lpm_interval_param
+0x4e78 mem_short_lpm_enable
+0x4e79 mem_short_lpm_tx_cnt
+0x4e7a mem_ckln_24g_short_lpm
+0x4e7d mem_send_data_24g_short_lpm
+0x4e7e mem_short_lpm_interval_cnt
+0x4e7f mem_ipc_is_ready
+0x4e80 mem_short_data_wheel
+0x4e81 mem_ble_data_wheel
+0x4e82 mem_ble_data_wheel_lpm_timer
+0x4e83 mem_bt_read_ipc_count
+0x4e84 mem_51_read_sensor_count
+0x4e85 mem_queue_write_prt
+0x4e86 mem_queue_read_ptr
+0x4e87 mem_queue_buffer0
+0x4e8e mem_queue_buffer1
+0x4e95 mem_queue_buffer2
+0x4e9c mem_queue_buffer3
+0x4ea3 mem_ble_read_ipc_fifo_once
+0x4ea4 mem_ble_send_flag
+0x4ea5 mem_mouse_le_pairing_flag
+0x4ea6 mem_mult_time_arrive_flag
+0x4ea7 mem_led_gpio8_blink_timer
+0x4ea8 mem_led_gpio8_blink_cnt
+0x4ea9 mem_led_gpio5_blink_timer
+0x4eaa mem_led_gpio5_blink_cnt
+0x4eab mem_32asm_data_end
+
+	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
+20 TX_POWER_PAIR
+)
+
+
+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
+4 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
+
+
+0x10 ABORT_DATA
+0x40 RSSI_SENSITIVITY
+
+0x4e G24_PAIR_CH
+
+81000 G24_8125_INTERVAL_PARAM
+78000 G24_78125_INTERVAL_PARAM
+
+
+)
+
+(
+0 disable_24g
+1 tx_24g
+2 rx_24g
+
+0 bit_ack_24g
+)
+
+//mem_24g_interrupt
+(
+0 rx_dr
+1 rx_sync
+4 tx_ds
+5 tx_fail
+)
+
+//mem_24g_data_type
+(
+0x07 bits_data
+//0-2 data type
+3 bit_abort
+4 bit_hop
+5 bit_sync
+//6-7 channel offset
+)
+
+//mem_send_data_24g_short_lpm
+(
+0 SHORT_LPM_STATE_POLLING 	
+1 SHORT_LPM_STATE_DATA
+2 SHORT_LPM_STATE_NODATA
+3 SHORT_LPM_STATE_BUTTON_WHEEL
+)
+
+
+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
+)
+
+(
+0x01 IPC_TYPE_CMD
+0x02 IPC_TYPE_EVT
+0x03 IPC_TYPE_HID
+0x04 IPC_TYPE_SPP
+0x05 IPC_TYPE_BLE
+0x06 IPC_TYPE_24G
+)
+
+(
+0x01 SYC_TASK_LPM
+0x02 SYC_TASK_TIMER
+0x03 SYC_TASK_HIBERNATE
+)
+
+
+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
+0x41 HID_DISCONNECT
+
+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
+0x010010 param_smp_key_dist0
+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
+)
+
+
+(
+0x2902  ATT_Configuration
+)
+
+
+
+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
+)
+
+(
+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
+)
+
+
+
+/* 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_UPDATE_SUPERVISION_TO
+35 BT_CMD_START_24G
+36 BT_CMD_STOP_24G
+37 BT_CMD_PAIR_24G
+38 BT_CMD_TEST_MODE
+39 BT_CMD_START_ADV_RECONN
+40 BT_CMD_AUTO_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
+0x2f BT_EVT_RESET
+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_SUCCESS
+0x3b BT_EVT_24G_ATTEMPT_FAIL
+0x3c BT_EVT_WAKEUP
+0x3d BT_EVT_HIBERNATE_WAKE
+0x3e BT_EVT_CLEAR_LINKKEY
+0x3f BT_EVT_24G_CHEAK_DONGLE_EXIST
+0x40 BT_EVT_LE_NOTIFY_ENABLE
+
+
+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
+)
+
+
+
+
+//C51 synchronous task
+(
+3 START_C51_CORE
+)
+
+
+//bt mode device number
+(
+0X01 MODE_BT_DEVICE1
+0X02 MODE_BT_DEVICE2
+0X03 MODE_BT_DEVICE3
+0X04 MODE_24G_DEVICE
+)
+
+//mem_24g_rx_packet_flag
+(
+0 FLAG_24G_NOT_RX_PACKET
+1 FLAG_24G_RX_PACKET
+)
+
+//mem_24g_pairing_sm
+(
+0 STATE_24G_PAIRING_NULL
+1 STATE_24G_PAIRING_1
+2 STATE_24G_PAIRING_2
+3 STATE_24G_PAIRING_3
+0X11 STATE_24G_PAIRING_1_WAITING_ACK
+0X12 STATE_24G_PAIRING_2_WAITING_ACK
+0X13 STATE_24G_PAIRING_3_WAITING_ACK
+0XFF STATE_24G_PAIRING_SUCCESS
+)
+
+(
+0x01 ADV_FLAG_LIMITED_DISCOVERABLE
+0x04 ADV_FLAG_BREDR_NOT_SUPPORTED
+)
+
+(
+0 POWER_ON
+1 WORK_PAIRED
+2 WORK_SEARCH
+0 INIT_CLEAR
+)
+
+(
+1 NEW_QUEUE_ELE_COUNT
+32 NEW_QUEUE_ELE_LENGTH
+
+0x4f50 p_mem_hci_log
+)
+
+(
+7 RSSI_BUF_LEN
+0x77 RSSI_DIS_MIN_24G
+0x82 RSSI_DIS_MAX_24G
+
+0x75 RSSI_DIS_MIN_BLE
+0x80 RSSI_DIS_MAX_BLE
+)
+
+/**
+*  @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
+0x0b2a mem_c51_flag
+0x0b2b mem_c51_lmp_lock
+0x0b2c mem_lmp_bb_disconnect_reason
+
+/************************************************************************/
+/* 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: btms/output/bt_program23.icode
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/bt_program23.icode	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/bt_program23.icode	(working copy)
@@ -0,0 +1,22088 @@
+ 00000000  0x00000036 bmark1  0x00000025 , 0x0000000f 
+ 00000001  0x00000037 beq  0x00000000 , 0x00000025 
+ 00000002  0x00000038 beq  0x00000003 , 0x00000031 
+ 00000003  0x00000039 beq  0x00000086 , 0x00000037 
+ 00000004  0x0000003a beq  0x0000008a , 0x00000042 
+ 00000005  0x0000003b beq  0x0000008b , 0x00000065 
+ 00000006  0x0000003c beq  0x000000a7 , 0x00000071 
+ 00000007  0x0000003d beq  0x000000a8 , 0x00000078 
+ 00000008  0x0000003e beq  0x000000a9 , 0x0000008c 
+ 00000009  0x0000003f beq  0x000000ac , 0x0000009f 
+ 00000010  0x00000040 beq  0x000000b4 , 0x0000033b 
+ 00000011  0x00000041 beq  0x000000b5 , 0x000000b8 
+ 00000012  0x00000042 beq  0x000000b6 , 0x000000bf 
+ 00000013  0x00000043 beq  0x000000b7 , 0x000000df 
+ 00000014  0x00000044 branch  0x00003b34 
+ 00000015  0x00000047 beq  0x00000005 , 0x0000013a 
+ 00000016  0x00000048 beq  0x00000016 , 0x0000013f 
+ 00000017  0x00000049 beq  0x0000001b , 0x00000143 
+ 00000018  0x0000004a beq  0x00000023 , 0x00000146 
+ 00000019  0x0000004b beq  0x0000002f , 0x0000016a 
+ 00000020  0x0000004c beq  0x00000031 , 0x0000017f 
+ 00000021  0x0000004d beq  0x00000032 , 0x00000191 
+ 00000022  0x0000004e beq  0x00000033 , 0x000001a4 
+ 00000023  0x0000004f beq  0x00000039 , 0x000001b5 
+ 00000024  0x00000050 beq  0x0000003c , 0x000001c2 
+ 00000025  0x00000051 beq  0x0000003d , 0x000001d5 
+ 00000026  0x00000052 beq  0x0000003e , 0x000001db 
+ 00000027  0x00000053 beq  0x0000003f , 0x000001ea 
+ 00000028  0x00000054 beq  0x00000042 , 0x00000208 
+ 00000029  0x00000055 beq  0x0000004d , 0x0000020d 
+ 00000030  0x00000056 beq  0x00000082 , 0x00000227 
+ 00000031  0x00000057 beq  0x00000095 , 0x00000229 
+ 00000032  0x00000058 beq  0x000000f3 , 0x00000230 
+ 00000033  0x00000059 beq  0x000000f7 , 0x0000023c 
+ 00000034  0x0000005a beq  0x000000f8 , 0x00000271 
+ 00000035  0x0000005b beq  0x000000f9 , 0x00000277 
+ 00000036  0x0000005c branch  0x00003b34 
+ 00000037  0x0000005f clear_stack 
+ 00000038  0x00000060 jam  0x00000000 , 0x00004030 
+ 00000039  0x00000061 nbranch  0x00003004 , 0x0000002b 
+ 00000040  0x00000062 fetch  0x00000001 , 0x00004595 
+ 00000041  0x00000063 nbranch  0x0000002f , 0x00000034 
+ 00000042  0x00000064 fetch  0x00000001 , 0x00004e78 
+ 00000043  0x00000065 branch  0x00003004 , 0x00000034 
+ 00000044  0x00000066 jam  0x00000000 , 0x00004e7f 
+ 00000045  0x00000067 bmark0  0x00000026 , 0x00003004 
+ 00000046  0x00000068 nbranch  0x00003004 , 0x0000002b 
+ 00000047  0x0000006a hjam  0x00000003 , 0x00008280 
+ 00000048  0x0000006b branch  0x00003004 
+ 00000049  0x0000006e call  0x00000281 
+ 00000050  0x0000006f call  0x00000418 
+ 00000051  0x00000070 call  0x000002b3 
+ 00000052  0x00000071 fetch  0x00000001 , 0x00004e78 
+ 00000053  0x00000072 nbranch  0x0000036d , 0x00000034 
+ 00000054  0x00000073 branch  0x0000301b 
+ 00000055  0x00000077 branch  0x000039a3 , 0x00000021 
+ 00000056  0x00000078 hjam  0x000000d4 , 0x00000955 
+ 00000057  0x00000079 nop  0x00000004 
+ 00000058  0x0000007a hjam  0x000000d2 , 0x00000955 
+ 00000059  0x0000007b nop  0x00000004 
+ 00000060  0x0000007c hjam  0x000000d1 , 0x00000955 
+ 00000061  0x0000007d nop  0x00000004 
+ 00000062  0x0000007e branch  0x000039ae 
+ 00000063  0x00000080 fetch  0x00000001 , 0x00004280 
+ 00000064  0x00000081 beq  0x00000014 , 0x000039ae 
+ 00000065  0x00000082 branch  0x0000399c 
+ 00000066  0x00000085 storet  0x00000001 , 0x00000017 
+ 00000067  0x00000086 add  0x00000002 , 0x00000000 , 0x00000011 
+ 00000068  0x00000087 call  0x00003a13 
+ 00000069  0x00000088 setarg  0x00000500 
+ 00000070  0x00000089 call  0x00003b35 
+ 00000071  0x0000008b hjam  0x00000001 , 0x00008906 
+ 00000072  0x0000008c hjam  0x0000003c , 0x00008900 
+ 00000073  0x0000008d hjam  0x000000e0 , 0x00008901 
+ 00000074  0x0000008e hjam  0x00000012 , 0x0000096d 
+ 00000075  0x0000008f nop  0x0000000a 
+ 00000076  0x00000090 hjam  0x00000001 , 0x00008902 
+ 00000077  0x00000091 hjam  0x0000003d , 0x00008902 
+ 00000078  0x00000092 nop  0x0000000a 
+ 00000079  0x00000093 hjam  0x000000b7 , 0x00008903 
+ 00000080  0x00000094 nop  0x0000000a 
+ 00000081  0x00000095 hjam  0x0000007f , 0x00008902 
+ 00000082  0x00000097 branch  0x00000062 
+ 00000083  0x00000099 fetch  0x00000001 , 0x00004280 
+ 00000084  0x0000009a beq  0x00000014 , 0x00000062 
+ 00000085  0x0000009b bbit1  0x00000001 , 0x0000005c 
+ 00000086  0x0000009c bbit1  0x00000002 , 0x0000005c 
+ 00000087  0x0000009e hjam  0x0000005b , 0x0000894c 
+ 00000088  0x0000009f hjam  0x00000096 , 0x0000894d 
+ 00000089  0x000000a0 hjam  0x0000002c , 0x0000894e 
+ 00000090  0x000000a1 hjam  0x00000046 , 0x0000894f 
+ 00000091  0x000000a2 branch  0x00000060 
+ 00000092  0x000000a4 hjam  0x000000fb , 0x0000894c 
+ 00000093  0x000000a5 hjam  0x000000ef , 0x0000894d 
+ 00000094  0x000000a6 hjam  0x000000ec , 0x0000894e 
+ 00000095  0x000000a7 hjam  0x0000005e , 0x0000894f 
+ 00000096  0x000000a9 fetch  0x00000001 , 0x00004280 
+ 00000097  0x000000aa branch  0x000039dc 
+ 00000098  0x000000ad hjam  0x000000c5 , 0x00008956 
+ 00000099  0x000000ae hjam  0x000000d0 , 0x00008955 
+ 00000100  0x000000af rtn 
+ 00000101  0x000000b2 call  0x00003cd2 
+ 00000102  0x000000b3 call  0x00003a5f 
+ 00000103  0x000000b4 hjam  0x00000006 , 0x00008042 
+ 00000104  0x000000b5 hfetch  0x00000001 , 0x00008968 
+ 00000105  0x000000b6 set1  0x00000007 , 0x0000003f 
+ 00000106  0x000000b7 hstore  0x00000001 , 0x00008968 
+ 00000107  0x000000b8 set0  0x00000007 , 0x0000003f 
+ 00000108  0x000000b9 hstore  0x00000001 , 0x00008968 
+ 00000109  0x000000ba set1  0x00000007 , 0x0000003f 
+ 00000110  0x000000bb hstore  0x00000001 , 0x00008968 
+ 00000111  0x000000bc hjam  0x00000005 , 0x00008042 
+ 00000112  0x000000bd branch  0x00003a0c 
+ 00000113  0x000000c0 call  0x00003c2b 
+ 00000114  0x000000c1 fetch  0x00000001 , 0x00004e45 
+ 00000115  0x000000c2 rtn  0x00000034 
+ 00000116  0x000000c3 jam  0x00000000 , 0x00004e45 
+ 00000117  0x000000c4 copy  0x00000022 , 0x0000003f 
+ 00000118  0x000000c5 store  0x00000004 , 0x0000489e 
+ 00000119  0x000000c6 rtn 
+ 00000120  0x000000c9 rtnmark1  0x00000026 
+ 00000121  0x000000ca call  0x00003be2 
+ 00000122  0x000000cb fetch  0x00000003 , 0x0000420f 
+ 00000123  0x000000cc rtn  0x00000034 
+ 00000124  0x000000cd fetch  0x00000002 , 0x00004042 
+ 00000125  0x000000ce arg  0x0000ffff , 0x00000002 
+ 00000126  0x000000cf isub  0x00000002 , 0x0000003e 
+ 00000127  0x000000d0 rtn  0x00000005 
+ 00000128  0x000000d1 fetch  0x00000001 , 0x00004131 
+ 00000129  0x000000d2 rtn  0x00000034 
+ 00000130  0x000000d3 call  0x00004816 
+ 00000131  0x000000d4 nrtn  0x00000034 
+ 00000132  0x000000d5 call  0x00003d0e 
+ 00000133  0x000000d6 nrtn  0x00000034 
+ 00000134  0x000000d7 call  0x00003a7b 
+ 00000135  0x000000d8 fetch  0x00000001 , 0x000046e2 
+ 00000136  0x000000d9 branch  0x00003c5e , 0x00000034 
+ 00000137  0x000000da fetch  0x00000001 , 0x00004639 
+ 00000138  0x000000db rtn  0x00000034 
+ 00000139  0x000000dc branch  0x00003c5e 
+ 00000140  0x000000df fetch  0x00000001 , 0x00004595 
+ 00000141  0x000000e0 branch  0x00000099 , 0x00000034 
+ 00000142  0x000000e1 fetch  0x00000001 , 0x0000009f 
+ 00000143  0x000000e2 nbranch  0x00000099 , 0x00000034 
+ 00000144  0x000000e3 fetch  0x00000001 , 0x00004e83 
+ 00000145  0x000000e4 fetcht  0x00000001 , 0x00004e84 
+ 00000146  0x000000e5 isub  0x00000002 , 0x0000003e 
+ 00000147  0x000000e6 nrtn  0x00000005 
+ 00000148  0x000000e7 fetch  0x00000001 , 0x00004e81 
+ 00000149  0x000000e8 nrtn  0x00000034 
+ 00000150  0x000000e9 setarg  0x00000000 
+ 00000151  0x000000ea store  0x00000008 , 0x000000a0 
+ 00000152  0x000000eb branch  0x00003c6a 
+ 00000153  0x000000ed call  0x000000a4 
+ 00000154  0x000000ee nrtn  0x00000028 
+ 00000155  0x000000ef fetch  0x00000001 , 0x00000b2b 
+ 00000156  0x000000f0 nrtn  0x00000034 
+ 00000157  0x000000f1 jam  0x00000000 , 0x000049c1 
+ 00000158  0x000000f2 branch  0x00003c6a 
+ 00000159  0x000000f5 call  0x000000a4 
+ 00000160  0x000000f6 nrtn  0x00000028 
+ 00000161  0x000000f7 fetch  0x00000001 , 0x00000b2b 
+ 00000162  0x000000f8 nrtn  0x00000034 
+ 00000163  0x000000f9 branch  0x00003c8c 
+ 00000164  0x000000fc call  0x000000af 
+ 00000165  0x000000fd nrtn  0x00000028 
+ 00000166  0x000000fe call  0x000000ac 
+ 00000167  0x000000ff nrtn  0x00000028 
+ 00000168  0x00000100 jam  0x00000001 , 0x00000b2b 
+ 00000169  0x00000101 jam  0x00000001 , 0x00000b2a 
+ 00000170  0x00000102 call  0x000000b4 
+ 00000171  0x00000103 branch  0x000000af 
+ 00000172  0x00000108 fetch  0x00000002 , 0x0000482c 
+ 00000173  0x00000109 fetcht  0x00000002 , 0x0000482e 
+ 00000174  0x0000010a branch  0x000000b1 
+ 00000175  0x0000010c fetch  0x00000002 , 0x000047c4 
+ 00000176  0x0000010d fetcht  0x00000002 , 0x000047c6 
+ 00000177  0x0000010f isub  0x00000002 , 0x0000003e 
+ 00000178  0x00000110 branch  0x000064c0 , 0x00000005 
+ 00000179  0x00000111 branch  0x000031d4 
+ 00000180  0x00000114 fetch  0x00000001 , 0x00000b2a 
+ 00000181  0x00000115 nop  0x0000000a 
+ 00000182  0x00000116 bne  0x00000000 , 0x000000b4 
+ 00000183  0x00000117 rtn 
+ 00000184  0x0000011b jam  0x00000027 , 0x00000016 
+ 00000185  0x0000011c jam  0x00000000 , 0x00000150 
+ 00000186  0x0000011d jam  0x00000000 , 0x0000017e 
+ 00000187  0x0000011e jam  0x00000000 , 0x0000017f 
+ 00000188  0x0000011f setarg  0x00000000 
+ 00000189  0x00000120 store  0x00000005 , 0x000008d2 
+ 00000190  0x00000121 rtn 
+ 00000191  0x00000124 arg  0x000046f0 , 0x00000011 
+ 00000192  0x00000125 call  0x00007f95 
+ 00000193  0x00000126 rtn  0x00000034 
+ 00000194  0x00000128 copy  0x0000003f , 0x00000013 
+ 00000195  0x00000129 call  0x000000c5 
+ 00000196  0x0000012a branch  0x00003d9b 
+ 00000197  0x0000012c rtneq  0x00000018 
+ 00000198  0x0000012d beq  0x00000014 , 0x000000ca 
+ 00000199  0x0000012e beq  0x00000015 , 0x000000d2 
+ 00000200  0x0000012f beq  0x00000029 , 0x000000dd 
+ 00000201  0x00000130 branch  0x00003d73 
+ 00000202  0x00000134 jam  0x00000000 , 0x00004e83 
+ 00000203  0x00000135 jam  0x00000000 , 0x00004212 
+ 00000204  0x00000136 jam  0x00000000 , 0x00004ea6 
+ 00000205  0x00000137 jam  0x00000078 , 0x00004e51 
+ 00000206  0x00000138 call  0x00003e61 
+ 00000207  0x00000139 call  0x00003e59 
+ 00000208  0x0000013a call  0x00003e7f 
+ 00000209  0x0000013b branch  0x00003dc2 
+ 00000210  0x0000013e jam  0x00000000 , 0x00004ea4 
+ 00000211  0x0000013f call  0x000002fa 
+ 00000212  0x00000140 jam  0x00000000 , 0x000044b2 
+ 00000213  0x00000141 jam  0x00000000 , 0x00004212 
+ 00000214  0x00000142 jam  0x00000000 , 0x00004ea6 
+ 00000215  0x00000143 jam  0x00000000 , 0x00004e51 
+ 00000216  0x00000145 jam  0x00000000 , 0x0000456a 
+ 00000217  0x00000146 fetcht  0x00000002 , 0x00004e4e 
+ 00000218  0x00000147 storet  0x00000002 , 0x000044f8 
+ 00000219  0x00000148 call  0x000052a0 
+ 00000220  0x00000149 branch  0x00003dc6 
+ 00000221  0x0000014c call  0x00000128 
+ 00000222  0x0000014d branch  0x00007e3b 
+ 00000223  0x00000150 storet  0x00000001 , 0x0000024e 
+ 00000224  0x00000151 fetch  0x00000001 , 0x0000489c 
+ 00000225  0x00000152 increase  0x00000001 , 0x0000003f 
+ 00000226  0x00000153 store  0x00000001 , 0x0000489c 
+ 00000227  0x00000155 fetch  0x00000001 , 0x0000024e 
+ 00000228  0x00000156 rtn  0x00000034 
+ 00000229  0x00000157 increase  0xffffffff , 0x0000003f 
+ 00000230  0x00000158 store  0x00000001 , 0x0000024e 
+ 00000231  0x0000015a call  0x0000012b 
+ 00000232  0x0000015b call  0x0000010e 
+ 00000233  0x0000015c call  0x00000134 
+ 00000234  0x0000015e call  0x00000121 
+ 00000235  0x00000160 call  0x000000ee 
+ 00000236  0x00000161 call  0x000000fe 
+ 00000237  0x00000163 branch  0x000000e3 
+ 00000238  0x00000167 fetch  0x00000001 , 0x00004ea7 
+ 00000239  0x00000168 rtn  0x00000034 
+ 00000240  0x00000169 increase  0xffffffff , 0x0000003f 
+ 00000241  0x0000016a store  0x00000001 , 0x00004ea7 
+ 00000242  0x0000016b nrtn  0x00000034 
+ 00000243  0x0000016c fetch  0x00000001 , 0x00004ea8 
+ 00000244  0x0000016d increase  0x00000001 , 0x0000003f 
+ 00000245  0x0000016e and_into  0x00000001 , 0x0000003f 
+ 00000246  0x0000016f store  0x00000001 , 0x00004ea8 
+ 00000247  0x00000170 beq  0x00000000 , 0x000000fa 
+ 00000248  0x00000171 beq  0x00000001 , 0x000000fc 
+ 00000249  0x00000172 rtn 
+ 00000250  0x00000174 arg  0x00000008 , 0x00000002 
+ 00000251  0x00000175 branch  0x000064fd 
+ 00000252  0x00000177 arg  0x00000008 , 0x00000002 
+ 00000253  0x00000178 branch  0x000064ff 
+ 00000254  0x0000017b fetch  0x00000001 , 0x00004ea9 
+ 00000255  0x0000017c rtn  0x00000034 
+ 00000256  0x0000017d increase  0xffffffff , 0x0000003f 
+ 00000257  0x0000017e store  0x00000001 , 0x00004ea9 
+ 00000258  0x0000017f nrtn  0x00000034 
+ 00000259  0x00000180 fetch  0x00000001 , 0x00004eaa 
+ 00000260  0x00000181 increase  0x00000001 , 0x0000003f 
+ 00000261  0x00000182 and_into  0x00000001 , 0x0000003f 
+ 00000262  0x00000183 store  0x00000001 , 0x00004eaa 
+ 00000263  0x00000184 beq  0x00000000 , 0x0000010a 
+ 00000264  0x00000185 beq  0x00000001 , 0x0000010c 
+ 00000265  0x00000186 rtn 
+ 00000266  0x00000188 arg  0x00000005 , 0x00000002 
+ 00000267  0x00000189 branch  0x000064fd 
+ 00000268  0x0000018b arg  0x00000005 , 0x00000002 
+ 00000269  0x0000018c branch  0x000064ff 
+ 00000270  0x00000191 fetch  0x00000001 , 0x00004ea6 
+ 00000271  0x00000192 rtn  0x00000034 
+ 00000272  0x00000193 fetch  0x00000001 , 0x00004212 
+ 00000273  0x00000194 compare  0x00000020 , 0x0000003f , 0x000000ff 
+ 00000274  0x00000195 ncall  0x00000118 , 0x00000001 
+ 00000275  0x00000196 fetch  0x00000001 , 0x00004131 
+ 00000276  0x00000197 call  0x00000116 , 0x00000034 
+ 00000277  0x00000198 rtn 
+ 00000278  0x0000019a jam  0x00000001 , 0x00004131 
+ 00000279  0x0000019b rtn 
+ 00000280  0x0000019d jam  0x00000020 , 0x00004212 
+ 00000281  0x0000019e rtn 
+ 00000282  0x000001a0 fetch  0x00000001 , 0x000049ba 
+ 00000283  0x000001a1 rtn  0x00000034 
+ 00000284  0x000001a2 jam  0x00000000 , 0x00004e80 
+ 00000285  0x000001a3 increase  0xffffffff , 0x0000003f 
+ 00000286  0x000001a4 store  0x00000001 , 0x000049ba 
+ 00000287  0x000001a5 nrtn  0x00000034 
+ 00000288  0x000001a6 rtn 
+ 00000289  0x000001a9 fetch  0x00000001 , 0x00004e82 
+ 00000290  0x000001aa rtn  0x00000034 
+ 00000291  0x000001ab increase  0xffffffff , 0x0000003f 
+ 00000292  0x000001ac store  0x00000001 , 0x00004e82 
+ 00000293  0x000001ad nrtn  0x00000034 
+ 00000294  0x000001ae jam  0x00000000 , 0x00004e81 
+ 00000295  0x000001af rtn 
+ 00000296  0x000001b8 call  0x00003e7f 
+ 00000297  0x000001b9 jam  0x00000012 , 0x000009bd 
+ 00000298  0x000001ba branch  0x00007d90 
+ 00000299  0x000001bd fetch  0x00000001 , 0x00004e51 
+ 00000300  0x000001be rtn  0x00000034 
+ 00000301  0x000001bf increase  0xffffffff , 0x0000003f 
+ 00000302  0x000001c0 store  0x00000001 , 0x00004e51 
+ 00000303  0x000001c1 nrtn  0x00000034 
+ 00000304  0x000001c2 jam  0x00000020 , 0x00004212 
+ 00000305  0x000001c3 jam  0x00000001 , 0x00004131 
+ 00000306  0x000001c4 jam  0x00000001 , 0x00004ea6 
+ 00000307  0x000001c5 rtn 
+ 00000308  0x000001c8 fetch  0x00000001 , 0x00004e52 
+ 00000309  0x000001c9 rtn  0x00000034 
+ 00000310  0x000001ca increase  0xffffffff , 0x0000003f 
+ 00000311  0x000001cb store  0x00000001 , 0x00004e52 
+ 00000312  0x000001cc nrtn  0x00000034 
+ 00000313  0x000001cd branch  0x00003e6d 
+ 00000314  0x000001d2 call  0x00004968 
+ 00000315  0x000001d3 call  0x00004b51 
+ 00000316  0x000001d4 call  0x00004bd8 
+ 00000317  0x000001d5 call  0x000005ea 
+ 00000318  0x000001d6 branch  0x00004945 
+ 00000319  0x000001d9 call  0x00003a50 
+ 00000320  0x000001da copy  0x0000003f , 0x00000011 
+ 00000321  0x000001db call  0x00000628 
+ 00000322  0x000001dc branch  0x00004a3d 
+ 00000323  0x000001df fetch  0x00000004 , 0x00004e48 
+ 00000324  0x000001e0 store  0x00000004 , 0x00004596 
+ 00000325  0x000001e1 branch  0x00004a8c 
+ 00000326  0x000001e4 jam  0x00000001 , 0x00004131 
+ 00000327  0x000001e5 fetch  0x00000002 , 0x0000037c 
+ 00000328  0x000001e6 fetcht  0x00000002 , 0x00000382 
+ 00000329  0x000001e7 isub  0x00000002 , 0x0000003f 
+ 00000330  0x000001e8 store  0x00000002 , 0x000009be 
+ 00000331  0x000001e9 fetch  0x00000001 , 0x00000362 
+ 00000332  0x000001ea set0  0x00000005 , 0x0000003f 
+ 00000333  0x000001eb set0  0x00000003 , 0x0000003f 
+ 00000334  0x000001ec store  0x00000001 , 0x00000362 
+ 00000335  0x000001ed fetch  0x00000004 , 0x00000366 
+ 00000336  0x000001ee fetcht  0x00000002 , 0x00000364 
+ 00000337  0x000001ef storet  0x00000002 , 0x000009c6 
+ 00000338  0x000001f0 isub  0x00000002 , 0x00000011 
+ 00000339  0x000001f1 fetch  0x00000001 , 0x0000445b 
+ 00000340  0x000001f2 store  0x00000001 , 0x0000038d 
+ 00000341  0x000001f3 ifetcht  0x00000002 , 0x00000006 
+ 00000342  0x000001f4 ifetch  0x00000002 , 0x00000006 
+ 00000343  0x000001f5 lshift2  0x0000003f , 0x0000003f 
+ 00000344  0x000001f6 store  0x00000002 , 0x00000364 
+ 00000345  0x000001f7 lshift2  0x00000002 , 0x00000002 
+ 00000346  0x000001f8 iadd  0x00000002 , 0x0000003f 
+ 00000347  0x000001f9 ifetcht  0x00000004 , 0x00000006 
+ 00000348  0x000001fa storet  0x00000004 , 0x0000038e 
+ 00000349  0x000001fb iadd  0x00000011 , 0x0000003f 
+ 00000350  0x000001fc copy  0x0000003f , 0x00000014 
+ 00000351  0x000001fd fetch  0x00000002 , 0x00000364 
+ 00000352  0x000001fe fetcht  0x00000002 , 0x000009c6 
+ 00000353  0x000001ff isub  0x00000002 , 0x0000003f 
+ 00000354  0x00000200 fetcht  0x00000002 , 0x000009be 
+ 00000355  0x00000201 imul32  0x00000002 , 0x0000003f 
+ 00000356  0x00000202 iadd  0x00000014 , 0x0000003f 
+ 00000357  0x00000203 store  0x00000004 , 0x00000366 
+ 00000358  0x00000204 call  0x00005199 
+ 00000359  0x00000205 fetch  0x00000002 , 0x00000390 
+ 00000360  0x00000206 store  0x00000002 , 0x00004561 
+ 00000361  0x00000207 rtn 
+ 00000362  0x0000020a fetch  0x00000001 , 0x00000379 
+ 00000363  0x0000020b bbit1  0x00000005 , 0x0000017b 
+ 00000364  0x0000020c call  0x000005dc 
+ 00000365  0x0000020d jam  0x00000000 , 0x00004e62 
+ 00000366  0x0000020e fetch  0x00000001 , 0x00004e20 
+ 00000367  0x0000020f nbranch  0x00000175 , 0x00000034 
+ 00000368  0x00000210 fetch  0x00000001 , 0x00004ea5 
+ 00000369  0x00000211 beq  0x00000001 , 0x00000179 
+ 00000370  0x00000212 fetch  0x00000001 , 0x00000303 
+ 00000371  0x00000213 branch  0x00004bde , 0x00000034 
+ 00000372  0x00000214 branch  0x00004f87 
+ 00000373  0x00000216 fetch  0x00000001 , 0x00004e20 
+ 00000374  0x00000217 increase  0xffffffff , 0x0000003f 
+ 00000375  0x00000218 store  0x00000001 , 0x00004e20 
+ 00000376  0x00000219 branch  0x00004f87 
+ 00000377  0x0000021b jam  0x00000003 , 0x00004e20 
+ 00000378  0x0000021c branch  0x00004bde 
+ 00000379  0x0000021f fetch  0x00000001 , 0x00004e62 
+ 00000380  0x00000220 increase  0x00000001 , 0x0000003f 
+ 00000381  0x00000221 store  0x00000001 , 0x00004e62 
+ 00000382  0x00000222 branch  0x000005e0 
+ 00000383  0x00000225 fetch  0x00000001 , 0x00004467 
+ 00000384  0x00000226 beq  0x00000006 , 0x00000183 
+ 00000385  0x00000227 beq  0x00000002 , 0x0000018a 
+ 00000386  0x00000228 branch  0x00004bfb 
+ 00000387  0x0000022b fetch  0x00000001 , 0x00004e53 
+ 00000388  0x0000022c beq  0x00000001 , 0x00000187 
+ 00000389  0x0000022d call  0x00003e6d 
+ 00000390  0x00000233 branch  0x00004c86 
+ 00000391  0x00000235 call  0x00000128 
+ 00000392  0x00000236 jam  0x00000003 , 0x00004e52 
+ 00000393  0x00000237 branch  0x00004c90 
+ 00000394  0x0000023a setarg  0x00000013 
+ 00000395  0x0000023b istore  0x00000001 , 0x00000005 
+ 00000396  0x0000023c call  0x00004c58 
+ 00000397  0x0000023d setarg  0x0000000a 
+ 00000398  0x0000023e store  0x00000002 , 0x00000390 
+ 00000399  0x0000023f store  0x00000002 , 0x00004561 
+ 00000400  0x00000240 rtn 
+ 00000401  0x00000243 fetch  0x00000001 , 0x0000446b 
+ 00000402  0x00000244 beq  0x00000002 , 0x00000198 
+ 00000403  0x00000245 beq  0x00000006 , 0x0000019f 
+ 00000404  0x00000246 beq  0x00000007 , 0x00000196 
+ 00000405  0x00000247 branch  0x00004c18 
+ 00000406  0x00000249 jam  0x00000000 , 0x00004ea5 
+ 00000407  0x0000024a branch  0x00004d17 
+ 00000408  0x0000024d setarg  0x01000302 
+ 00000409  0x0000024e store  0x00000003 , 0x000044dc 
+ 00000410  0x0000024f setarg  0x00000001 
+ 00000411  0x00000250 istore  0x00000001 , 0x00000005 
+ 00000412  0x00000251 setarg  0x00010010 
+ 00000413  0x00000252 istore  0x00000003 , 0x00000005 
+ 00000414  0x00000253 branch  0x00004ccd 
+ 00000415  0x00000256 jam  0x00000029 , 0x000009bd 
+ 00000416  0x00000257 call  0x00007d86 
+ 00000417  0x00000258 jam  0x00000047 , 0x000009bd 
+ 00000418  0x00000259 call  0x00004bd6 
+ 00000419  0x0000025a branch  0x00004d01 
+ 00000420  0x0000025d fetch  0x00000001 , 0x0000446b 
+ 00000421  0x0000025e beq  0x0000001b , 0x000001a8 
+ 00000422  0x0000025f beq  0x0000001d , 0x000001a8 
+ 00000423  0x00000260 branch  0x00004c2b 
+ 00000424  0x00000264 fetcht  0x00000002 , 0x00004e4e 
+ 00000425  0x00000265 storet  0x00000002 , 0x0000446c 
+ 00000426  0x00000266 fetch  0x00000001 , 0x00004e86 
+ 00000427  0x00000267 add  0x0000003f , 0x00000001 , 0x00000002 
+ 00000428  0x00000268 and  0x00000002 , 0x00000003 , 0x00000002 
+ 00000429  0x00000269 storet  0x00000001 , 0x00004e86 
+ 00000430  0x0000026a mul32  0x0000003f , 0x00000007 , 0x0000003f 
+ 00000431  0x0000026b arg  0x00004e87 , 0x00000006 
+ 00000432  0x0000026c iadd  0x00000006 , 0x00000006 
+ 00000433  0x0000026d ifetch  0x00000007 , 0x00000006 
+ 00000434  0x0000026e store  0x00000007 , 0x0000446e 
+ 00000435  0x0000026f arg  0x0000000e , 0x00000002 
+ 00000436  0x00000270 branch  0x00004f89 
+ 00000437  0x00000273 storet  0x00000001 , 0x00004466 
+ 00000438  0x00000274 compare  0x00000002 , 0x00000001 , 0x00000003 
+ 00000439  0x00000275 nbranch  0x000001ba , 0x00000001 
+ 00000440  0x00000276 add  0x00000002 , 0xfffffffc , 0x0000003f 
+ 00000441  0x00000277 store  0x00000002 , 0x00004467 
+ 00000442  0x00000279 fetcht  0x00000001 , 0x00000379 
+ 00000443  0x0000027a call  0x000001bd 
+ 00000444  0x0000027b branch  0x00004f92 
+ 00000445  0x0000027d fetch  0x00000001 , 0x00004ea5 
+ 00000446  0x0000027e beq  0x00000001 , 0x000001c0 
+ 00000447  0x0000027f branch  0x00004bd0 
+ 00000448  0x00000281 setarg  0x00000000 
+ 00000449  0x00000282 rtn 
+ 00000450  0x00000285 copy  0x00000013 , 0x0000003f 
+ 00000451  0x00000286 beq  0x00000000 , 0x000001c8 
+ 00000452  0x00000287 beq  0x00000002 , 0x000001cb 
+ 00000453  0x00000288 beq  0x00000003 , 0x000001cf 
+ 00000454  0x00000289 beq  0x0000000a , 0x000001d3 
+ 00000455  0x0000028a branch  0x00004fb9 
+ 00000456  0x0000028d jam  0x00000000 , 0x00004131 
+ 00000457  0x0000028e jam  0x0000003c , 0x00004e51 
+ 00000458  0x0000028f branch  0x0000501f 
+ 00000459  0x00000292 call  0x00005033 
+ 00000460  0x00000294 setarg  0x00000000 
+ 00000461  0x00000295 store  0x00000008 , 0x00004544 
+ 00000462  0x00000296 rtn 
+ 00000463  0x00000299 call  0x00005039 
+ 00000464  0x0000029a fetch  0x00000001 , 0x0000456a 
+ 00000465  0x0000029b rtneq  0x00000002 
+ 00000466  0x0000029c branch  0x00006418 
+ 00000467  0x0000029f jam  0x0000002b , 0x000009bd 
+ 00000468  0x000002a0 branch  0x00004bd6 
+ 00000469  0x000002a3 ifetch  0x00000001 , 0x00000006 
+ 00000470  0x000002a4 beq  0x00000001 , 0x000001d8 
+ 00000471  0x000002a5 branch  0x00004ffe 
+ 00000472  0x000002a7 jam  0x00000001 , 0x00004ea5 
+ 00000473  0x000002a8 jam  0x00000003 , 0x00004e20 
+ 00000474  0x000002a9 branch  0x00005069 
+ 00000475  0x000002ac ifetch  0x00000003 , 0x00000006 
+ 00000476  0x000002ad store  0x00000003 , 0x0000039a 
+ 00000477  0x000002ae beq  0x00000012 , 0x000001df 
+ 00000478  0x000002af branch  0x00005011 
+ 00000479  0x000002b2 jam  0x00000001 , 0x00004131 
+ 00000480  0x000002b3 call  0x000001e5 
+ 00000481  0x000002b4 call  0x00005125 
+ 00000482  0x000002b5 nrtn  0x00000005 
+ 00000483  0x000002b7 jam  0x00000013 , 0x000009bd 
+ 00000484  0x000002b8 branch  0x00004bd6 
+ 00000485  0x000002ba fetch  0x00000001 , 0x00000303 
+ 00000486  0x000002bb increase  0xfffffff9 , 0x0000003f 
+ 00000487  0x000002bc icopy  0x00000039 
+ 00000488  0x000002bd copy  0x00000039 , 0x00000012 
+ 00000489  0x000002be branch  0x00005135 
+ 00000490  0x000002c2 fetch  0x00000001 , 0x000043ff 
+ 00000491  0x000002c3 rtn  0x00000034 
+ 00000492  0x000002c4 arg  0x00000001 , 0x00000007 
+ 00000493  0x000002c5 call  0x00007ee2 
+ 00000494  0x000002c6 nrtn  0x00000034 
+ 00000495  0x000002c7 disable  0x00000029 
+ 00000496  0x000002c8 enable  0x00000010 
+ 00000497  0x000002c9 call  0x00004b1e 
+ 00000498  0x000002ca call  0x000049d4 
+ 00000499  0x000002cb call  0x00004a8a 
+ 00000500  0x000002cc nbranch  0x000001fc , 0x0000002d 
+ 00000501  0x000002cd fetch  0x00000001 , 0x00000003 
+ 00000502  0x000002ce increase  0x00000001 , 0x0000003f 
+ 00000503  0x000002cf store  0x00000001 , 0x00000003 
+ 00000504  0x000002d0 fetch  0x00000001 , 0x00000302 
+ 00000505  0x000002d1 and  0x0000003f , 0x0000000f , 0x0000003f 
+ 00000506  0x000002d2 beq  0x00000003 , 0x00000206 
+ 00000507  0x000002d3 beq  0x00000005 , 0x000051af 
+ 00000508  0x000002d5 fetch  0x00000001 , 0x00000016 
+ 00000509  0x000002d6 bne  0x00000027 , 0x0000517d 
+ 00000510  0x000002d7 random  0x0000003f 
+ 00000511  0x000002d8 arg  0x000001ff , 0x00000002 
+ 00000512  0x000002d9 iand  0x00000002 , 0x0000003f 
+ 00000513  0x000002da add  0x0000003f , 0x000000fa , 0x0000003f 
+ 00000514  0x000002dc increase  0xffffffff , 0x0000003f 
+ 00000515  0x000002dd nop  0x00000026 
+ 00000516  0x000002de nbranch  0x00000202 , 0x00000034 
+ 00000517  0x000002df branch  0x00005196 
+ 00000518  0x000002e2 call  0x00004ac5 
+ 00000519  0x000002e3 branch  0x000001fc 
+ 00000520  0x000002e6 fetch  0x00000004 , 0x00004596 
+ 00000521  0x000002e7 arg  0x0000ea60 , 0x00000002 
+ 00000522  0x000002e8 iadd  0x00000002 , 0x0000003f 
+ 00000523  0x000002e9 store  0x00000004 , 0x00004596 
+ 00000524  0x000002ea branch  0x000051a9 
+ 00000525  0x000002ee disable  0x0000002b 
+ 00000526  0x000002ef branch  0x00000210 , 0x0000002e 
+ 00000527  0x000002f0 nbranch  0x0000021f , 0x0000002d 
+ 00000528  0x000002f2 call  0x00003cb7 
+ 00000529  0x000002f3 fetch  0x00000002 , 0x00004161 
+ 00000530  0x000002f4 store  0x00000002 , 0x00000370 
+ 00000531  0x000002f5 fetch  0x00000001 , 0x00000302 
+ 00000532  0x000002f6 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00000533  0x000002f7 nbranch  0x00003ccb , 0x00000001 
+ 00000534  0x000002f8 fetch  0x00000001 , 0x00004465 
+ 00000535  0x000002f9 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00000536  0x000002fa nbranch  0x00003ccb , 0x00000001 
+ 00000537  0x000002fb call  0x00004bd0 
+ 00000538  0x000002fc nbranch  0x00003ccb , 0x00000034 
+ 00000539  0x000002fd fetch  0x00000001 , 0x00004e62 
+ 00000540  0x000002fe sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00000541  0x000002ff nbranch  0x00003ccb , 0x00000002 
+ 00000542  0x00000300 branch  0x00005297 
+ 00000543  0x00000303 fetcht  0x00000002 , 0x00004161 
+ 00000544  0x00000304 fetch  0x00000002 , 0x00004e60 
+ 00000545  0x00000305 iadd  0x00000002 , 0x00000002 
+ 00000546  0x00000306 rshift  0x00000002 , 0x00000002 
+ 00000547  0x00000307 fetch  0x00000002 , 0x00000370 
+ 00000548  0x00000308 iadd  0x00000002 , 0x0000003f 
+ 00000549  0x00000309 store  0x00000002 , 0x00000370 
+ 00000550  0x0000030a branch  0x00003cc3 
+ 00000551  0x0000030e bmark1  0x0000002a , 0x0000623d 
+ 00000552  0x0000030f branch  0x00006250 
+ 00000553  0x00000312 hfetch  0x00000004 , 0x00008078 
+ 00000554  0x00000313 hfetcht  0x00000004 , 0x0000807c 
+ 00000555  0x00000314 ior  0x00000002 , 0x0000003f 
+ 00000556  0x00000315 invert  0x0000003f , 0x0000003f 
+ 00000557  0x00000316 iand  0x00000011 , 0x0000003f 
+ 00000558  0x00000317 hstore  0x00000004 , 0x00008070 
+ 00000559  0x00000318 rtn 
+ 00000560  0x0000031b copy  0x00000011 , 0x0000003f 
+ 00000561  0x0000031c rtn  0x00000034 
+ 00000562  0x0000031d increase  0xffffff60 , 0x00000002 
+ 00000563  0x0000031e increase  0xffffff60 , 0x00000002 
+ 00000564  0x0000031f set0  0x0000001c , 0x00000002 
+ 00000565  0x00000320 storet  0x00000004 , 0x00004703 
+ 00000566  0x00000321 copy  0x0000003f , 0x00000002 
+ 00000567  0x00000322 arg  0x000046f0 , 0x00000011 
+ 00000568  0x00000323 call  0x00007fa6 
+ 00000569  0x00000324 nrtn  0x00000034 
+ 00000570  0x00000325 copy  0x00000002 , 0x0000003f 
+ 00000571  0x00000326 branch  0x00007d7d 
+ 00000572  0x0000032a call  0x00007d80 
+ 00000573  0x0000032b arg  0x000046f8 , 0x00000011 
+ 00000574  0x0000032c call  0x00007f95 
+ 00000575  0x0000032d copy  0x0000003f , 0x00000002 
+ 00000576  0x0000032e call  0x00007d84 
+ 00000577  0x0000032f copy  0x00000002 , 0x0000003f 
+ 00000578  0x00000330 rtn  0x00000034 
+ 00000579  0x00000331 beq  0x00000023 , 0x00000249 
+ 00000580  0x00000332 beq  0x00000024 , 0x0000024d 
+ 00000581  0x00000333 beq  0x00000025 , 0x00000251 
+ 00000582  0x00000334 beq  0x0000000d , 0x00000253 
+ 00000583  0x00000335 beq  0x00000027 , 0x00000260 
+ 00000584  0x00000336 branch  0x00007db3 
+ 00000585  0x00000339 fetch  0x00000001 , 0x000049c3 
+ 00000586  0x0000033a store  0x00000001 , 0x00004280 
+ 00000587  0x0000033b jam  0x000000ff , 0x00004938 
+ 00000588  0x0000033c branch  0x00000670 
+ 00000589  0x0000033e fetch  0x00000001 , 0x000049c3 
+ 00000590  0x0000033f store  0x00000001 , 0x00004280 
+ 00000591  0x00000340 set0  0x00000026 , 0x00000000 
+ 00000592  0x00000341 branch  0x0000497d 
+ 00000593  0x00000343 jam  0x00000014 , 0x00004280 
+ 00000594  0x00000344 branch  0x00000641 
+ 00000595  0x00000348 set0  0x00000026 , 0x00000000 
+ 00000596  0x00000349 jam  0x00000000 , 0x00004131 
+ 00000597  0x0000034a random  0x0000003f 
+ 00000598  0x0000034b store  0x00000001 , 0x0000453e 
+ 00000599  0x0000034c jam  0x00000000 , 0x00004e53 
+ 00000600  0x0000034d fetcht  0x00000002 , 0x00004e4e 
+ 00000601  0x0000034e storet  0x00000002 , 0x000044f8 
+ 00000602  0x0000034f call  0x000052a0 
+ 00000603  0x00000350 arg  0x00000005 , 0x00000012 
+ 00000604  0x00000352 call  0x0000026a 
+ 00000605  0x00000354 copy  0x00000012 , 0x0000003f 
+ 00000606  0x00000355 istore  0x00000001 , 0x00000006 
+ 00000607  0x00000356 branch  0x00007e07 
+ 00000608  0x00000359 set0  0x00000026 , 0x00000000 
+ 00000609  0x0000035a jam  0x00000000 , 0x00004131 
+ 00000610  0x0000035b jam  0x00000001 , 0x00004e53 
+ 00000611  0x0000035c fetcht  0x00000002 , 0x00004e4e 
+ 00000612  0x0000035d call  0x00004f6a 
+ 00000613  0x0000035e copy  0x00000011 , 0x00000005 
+ 00000614  0x0000035f setarg  0x00000001 
+ 00000615  0x00000360 istore  0x00000001 , 0x00000005 
+ 00000616  0x00000361 arg  0x00000004 , 0x00000012 
+ 00000617  0x00000362 branch  0x0000025c 
+ 00000618  0x00000369 arg  0x00004401 , 0x00000011 
+ 00000619  0x0000036b ifetch  0x00000001 , 0x00000011 
+ 00000620  0x0000036c rtn  0x00000034 
+ 00000621  0x0000036d iadd  0x00000006 , 0x00000011 
+ 00000622  0x0000036e ifetch  0x00000001 , 0x00000006 
+ 00000623  0x0000036f rtneq  0x00000001 
+ 00000624  0x00000370 branch  0x0000026b 
+ 00000625  0x00000374 call  0x000058c5 
+ 00000626  0x00000375 nbranch  0x00007de5 , 0x00000034 
+ 00000627  0x00000377 fetch  0x00000001 , 0x000009bd 
+ 00000628  0x00000378 bmark0  0x00000009 , 0x00007de0 
+ 00000629  0x0000037b beq  0x0000001f , 0x00000296 
+ 00000630  0x0000037d branch  0x00007dd0 
+ 00000631  0x0000038f jam  0x00000003 , 0x00000b2a 
+ 00000632  0x00000390 call  0x000000b4 
+ 00000633  0x00000393 jam  0x0000005a , 0x00004e45 
+ 00000634  0x00000394 call  0x00003cfc 
+ 00000635  0x00000395 hfetch  0x00000004 , 0x00008138 
+ 00000636  0x00000396 set0  0x0000000f , 0x0000003f 
+ 00000637  0x00000397 hstore  0x00000004 , 0x0000804c 
+ 00000638  0x00000398 call  0x00003cf4 
+ 00000639  0x00000399 arg  0xffffffff , 0x00000002 
+ 00000640  0x0000039a branch  0x00003c11 
+ 00000641  0x0000039e fetcht  0x00000004 , 0x0000489e 
+ 00000642  0x0000039f copy  0x00000022 , 0x0000003f 
+ 00000643  0x000003a0 isub  0x00000002 , 0x0000003f 
+ 00000644  0x000003a2 arg  0x00000640 , 0x00000002 
+ 00000645  0x000003a3 idiv  0x00000002 
+ 00000646  0x000003a4 call  0x00007f53 
+ 00000647  0x000003a5 quotient  0x0000003f 
+ 00000648  0x000003a6 rtn  0x00000034 
+ 00000649  0x000003a7 copy  0x00000022 , 0x00000002 
+ 00000650  0x000003a8 storet  0x00000004 , 0x0000489e 
+ 00000651  0x000003a9 fetcht  0x00000002 , 0x00004898 
+ 00000652  0x000003aa byteswap  0x00000002 , 0x00000002 
+ 00000653  0x000003ab iadd  0x00000002 , 0x0000003f 
+ 00000654  0x000003ac byteswap  0x0000003f , 0x0000003f 
+ 00000655  0x000003ad store  0x00000002 , 0x00004898 
+ 00000656  0x000003ae byteswap  0x0000003f , 0x0000003f 
+ 00000657  0x000003af and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00000658  0x000003b0 rtnne  0x00000000 
+ 00000659  0x000003b1 call  0x000002a9 
+ 00000660  0x000003b2 nrtn  0x0000002c 
+ 00000661  0x000003b4 fetch  0x00000001 , 0x000042cf 
+ 00000662  0x000003b6 rtn 
+ 00000663  0x000003bc hfetch  0x00000001 , 0x00008053 
+ 00000664  0x000003bd set1  0x00000007 , 0x0000003f 
+ 00000665  0x000003be hstore  0x00000001 , 0x00008053 
+ 00000666  0x000003bf hfetch  0x00000001 , 0x00008973 
+ 00000667  0x000003c0 or_into  0x00000030 , 0x0000003f 
+ 00000668  0x000003c1 hstore  0x00000001 , 0x00008973 
+ 00000669  0x000003c2 hjam  0x0000007c , 0x00008906 
+ 00000670  0x000003c3 hjam  0x000000aa , 0x00008972 
+ 00000671  0x000003c4 nop  0x00001388 
+ 00000672  0x000003c5 hfetcht  0x00000002 , 0x00008150 
+ 00000673  0x000003c6 hfetch  0x00000001 , 0x00008053 
+ 00000674  0x000003c7 set0  0x00000007 , 0x0000003f 
+ 00000675  0x000003c8 hstore  0x00000001 , 0x00008053 
+ 00000676  0x000003c9 byteswap  0x00000002 , 0x00000002 
+ 00000677  0x000003ca storet  0x00000002 , 0x000042d1 
+ 00000678  0x000003cb rtn 
+ 00000679  0x000003ce enable  0x0000002c 
+ 00000680  0x000003cf rtn 
+ 00000681  0x000003d1 disable  0x0000002c 
+ 00000682  0x000003d2 call  0x00004bd0 
+ 00000683  0x000003d3 call  0x000002a7 , 0x00000034 
+ 00000684  0x000003d4 fetch  0x00000001 , 0x00004954 
+ 00000685  0x000003d5 ncall  0x000002a7 , 0x00000034 
+ 00000686  0x000003d6 rtn 
+ 00000687  0x000003d9 jam  0x00000001 , 0x00004ea3 
+ 00000688  0x000003da call  0x000002b3 
+ 00000689  0x000003db jam  0x00000000 , 0x00004ea3 
+ 00000690  0x000003dc rtn 
+ 00000691  0x000003df call  0x000000af 
+ 00000692  0x000003e0 rtn  0x00000028 
+ 00000693  0x000003e1 byteswap  0x0000003f , 0x0000003f 
+ 00000694  0x000003e2 copy  0x0000003f , 0x00000006 
+ 00000695  0x000003e3 call  0x000002d9 
+ 00000696  0x000003e4 store  0x00000001 , 0x00004897 
+ 00000697  0x000003e5 beq  0x00000001 , 0x000002c4 
+ 00000698  0x000003e6 beq  0x00000006 , 0x000002f5 
+ 00000699  0x000003e7 copy  0x0000003f , 0x00000002 
+ 00000700  0x000003e8 copy  0x00000006 , 0x00000011 
+ 00000701  0x000003e9 fetch  0x00000001 , 0x00004040 
+ 00000702  0x000003ea bbit0  0x00000000 , 0x000002ce 
+ 00000703  0x000003eb copy  0x00000011 , 0x00000006 
+ 00000704  0x000003ec rtnmark0  0x00000009 
+ 00000705  0x000003ed copy  0x00000002 , 0x0000003f 
+ 00000706  0x000003ee beq  0x00000005 , 0x0000030c 
+ 00000707  0x000003ef branch  0x00003b31 
+ 00000708  0x000003f2 call  0x000002d9 
+ 00000709  0x000003f3 call  0x000002d9 
+ 00000710  0x000003f4 store  0x00000001 , 0x000009bd 
+ 00000711  0x000003f5 call  0x000002c9 
+ 00000712  0x000003f6 branch  0x00007d90 
+ 00000713  0x000003f9 call  0x000002dc 
+ 00000714  0x000003fa copy  0x00000006 , 0x00000002 
+ 00000715  0x000003fb byteswap  0x00000002 , 0x00000002 
+ 00000716  0x000003fc storet  0x00000002 , 0x000047c4 
+ 00000717  0x000003fd rtn 
+ 00000718  0x00000400 copy  0x00000011 , 0x00000006 
+ 00000719  0x00000401 arg  0x000000f5 , 0x00000005 
+ 00000720  0x00000402 branch  0x000002d1 
+ 00000721  0x00000405 call  0x000002d9 
+ 00000722  0x00000406 copy  0x0000003f , 0x00000039 
+ 00000723  0x00000408 call  0x000002d5 
+ 00000724  0x00000409 branch  0x000002c9 
+ 00000725  0x0000040c call  0x000002d9 
+ 00000726  0x0000040d istore  0x00000001 , 0x00000005 
+ 00000727  0x0000040e loop  0x000002d5 
+ 00000728  0x0000040f rtn 
+ 00000729  0x00000412 call  0x000002dc 
+ 00000730  0x00000413 ifetch  0x00000001 , 0x00000006 
+ 00000731  0x00000414 rtn 
+ 00000732  0x00000417 setarg  0x000047c4 
+ 00000733  0x00000418 isub  0x00000006 , 0x0000003e 
+ 00000734  0x00000419 nrtn  0x00000005 
+ 00000735  0x0000041a arg  0x0000472e , 0x00000006 
+ 00000736  0x0000041b rtn 
+ 00000737  0x0000041e arg  0x00000003 , 0x00000039 
+ 00000738  0x0000041f arg  0x00004894 , 0x00000006 
+ 00000739  0x00000421 copy  0x00000006 , 0x00000011 
+ 00000740  0x00000422 fetch  0x00000002 , 0x0000482e 
+ 00000741  0x00000423 byteswap  0x0000003f , 0x0000003f 
+ 00000742  0x00000424 copy  0x0000003f , 0x00000005 
+ 00000743  0x00000425 copy  0x00000011 , 0x00000006 
+ 00000744  0x00000427 ifetch  0x00000001 , 0x00000006 
+ 00000745  0x00000428 istore  0x00000001 , 0x00000005 
+ 00000746  0x00000429 call  0x000002f0 
+ 00000747  0x0000042a loop  0x000002e8 
+ 00000748  0x0000042b copy  0x00000005 , 0x0000003f 
+ 00000749  0x0000042c byteswap  0x0000003f , 0x0000003f 
+ 00000750  0x0000042d store  0x00000002 , 0x0000482e 
+ 00000751  0x0000042e rtn 
+ 00000752  0x00000430 setarg  0x0000482c 
+ 00000753  0x00000431 isub  0x00000005 , 0x0000003e 
+ 00000754  0x00000432 nrtn  0x00000005 
+ 00000755  0x00000433 arg  0x000047c8 , 0x00000005 
+ 00000756  0x00000434 rtn 
+ 00000757  0x00000437 rtnmark0  0x00000027 
+ 00000758  0x00000438 call  0x000002d9 
+ 00000759  0x00000439 icopy  0x00000039 
+ 00000760  0x0000043a store  0x00000001 , 0x00004970 
+ 00000761  0x0000043b branch  0x000002d3 
+ 00000762  0x0000043f setarg  0x00000000 
+ 00000763  0x00000440 store  0x00000003 , 0x00004e85 
+ 00000764  0x00000441 rtn 
+ 00000765  0x00000444 rtnmark1  0x00000026 
+ 00000766  0x00000445 fetch  0x00000001 , 0x00004595 
+ 00000767  0x00000446 rtn  0x00000034 
+ 00000768  0x00000447 call  0x000000af 
+ 00000769  0x00000448 rtn  0x00000028 
+ 00000770  0x00000449 byteswap  0x0000003f , 0x0000003f 
+ 00000771  0x0000044a copy  0x0000003f , 0x00000006 
+ 00000772  0x0000044b call  0x000002d9 
+ 00000773  0x0000044c store  0x00000001 , 0x00004897 
+ 00000774  0x0000044d copy  0x00000006 , 0x00000011 
+ 00000775  0x0000044e bne  0x00000005 , 0x000002ce 
+ 00000776  0x0000044f copy  0x00000006 , 0x00000012 
+ 00000777  0x00000450 call  0x00004bd4 
+ 00000778  0x00000451 nrtn  0x00000034 
+ 00000779  0x00000452 branch  0x00000311 
+ 00000780  0x00000455 copy  0x00000006 , 0x00000012 
+ 00000781  0x00000456 fetch  0x00000001 , 0x00004ea3 
+ 00000782  0x00000457 rtn  0x00000034 
+ 00000783  0x00000458 call  0x00004bd0 
+ 00000784  0x00000459 nrtn  0x00000034 
+ 00000785  0x0000045b fetcht  0x00000002 , 0x00004e4e 
+ 00000786  0x0000045c call  0x00004f6a 
+ 00000787  0x0000045d rtnbit0  0x00000000 
+ 00000788  0x0000045e fetch  0x00000001 , 0x00004595 
+ 00000789  0x0000045f rtneq  0x00000000 
+ 00000790  0x00000460 fetch  0x00000001 , 0x00004e83 
+ 00000791  0x00000461 pincrease  0x00000001 
+ 00000792  0x00000462 store  0x00000001 , 0x00004e83 
+ 00000793  0x00000463 fetch  0x00000001 , 0x00004e85 
+ 00000794  0x00000464 add  0x0000003f , 0x00000001 , 0x00000002 
+ 00000795  0x00000465 and  0x00000002 , 0x00000003 , 0x00000002 
+ 00000796  0x00000466 storet  0x00000001 , 0x00004e85 
+ 00000797  0x00000467 mul32  0x0000003f , 0x00000007 , 0x0000003f 
+ 00000798  0x00000468 arg  0x00004e87 , 0x00000005 
+ 00000799  0x00000469 iadd  0x00000005 , 0x00000005 
+ 00000800  0x0000046a copy  0x00000012 , 0x00000006 
+ 00000801  0x0000046b call  0x000002d9 
+ 00000802  0x0000046c icopy  0x00000039 
+ 00000803  0x0000046d call  0x000002d3 
+ 00000804  0x0000046e call  0x00000328 
+ 00000805  0x0000046f rtn  0x0000002c 
+ 00000806  0x00000470 jam  0x0000001b , 0x000009bd 
+ 00000807  0x00000471 branch  0x00004bd6 
+ 00000808  0x00000474 disable  0x0000002c 
+ 00000809  0x00000475 fetch  0x00000001 , 0x00004ea4 
+ 00000810  0x00000476 rtneq  0x00000005 
+ 00000811  0x00000477 enable  0x0000002c 
+ 00000812  0x00000478 increase  0x00000001 , 0x0000003f 
+ 00000813  0x00000479 store  0x00000001 , 0x00004ea4 
+ 00000814  0x0000047a sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00000815  0x0000047b nrtn  0x00000002 
+ 00000816  0x0000047c jam  0x00000040 , 0x00004896 
+ 00000817  0x0000047d branch  0x000002e1 
+ 00000818  0x00000486 setarg  0x0000472e 
+ 00000819  0x00000487 byteswap  0x0000003f , 0x0000003f 
+ 00000820  0x00000488 store  0x00000002 , 0x000047c4 
+ 00000821  0x00000489 store  0x00000002 , 0x000047c6 
+ 00000822  0x0000048a setarg  0x000047c8 
+ 00000823  0x0000048b byteswap  0x0000003f , 0x0000003f 
+ 00000824  0x0000048c store  0x00000002 , 0x0000482c 
+ 00000825  0x0000048d store  0x00000002 , 0x0000482e 
+ 00000826  0x0000048e rtn 
+ 00000827  0x00000492 arg  0x00000008 , 0x00000002 
+ 00000828  0x00000493 call  0x000064e8 
+ 00000829  0x00000494 arg  0x00000005 , 0x00000002 
+ 00000830  0x00000495 call  0x000064e8 
+ 00000831  0x00000498 call  0x0000524a 
+ 00000832  0x0000049b jam  0x00000000 , 0x00000b2a 
+ 00000833  0x0000049c jam  0x00000006 , 0x0000016c 
+ 00000834  0x0000049d call  0x00003e7f 
+ 00000835  0x000004a0 setarg  0x000003a3 
+ 00000836  0x000004a1 store  0x00000002 , 0x00004296 
+ 00000837  0x000004a4 setarg  0x000002af 
+ 00000838  0x000004a6 store  0x00000002 , 0x00004290 
+ 00000839  0x000004a7 setarg  0x0000039c 
+ 00000840  0x000004a8 store  0x00000002 , 0x0000428c 
+ 00000841  0x000004a9 ncall  0x00000332 , 0x0000002b 
+ 00000842  0x000004aa call  0x00000373 , 0x0000002b 
+ 00000843  0x000004ab call  0x00003d3e 
+ 00000844  0x000004ac fetch  0x00000001 , 0x00004e45 
+ 00000845  0x000004ad beq  0x0000005a , 0x00000387 
+ 00000846  0x000004ae branch  0x00000385 , 0x0000002b 
+ 00000847  0x000004af fetch  0x00000001 , 0x00004280 
+ 00000848  0x000004b0 store  0x00000001 , 0x000049c3 
+ 00000849  0x000004b1 call  0x000005d9 
+ 00000850  0x000004b2 fetch  0x00000002 , 0x00004e41 
+ 00000851  0x000004b3 byteswap  0x0000003f , 0x0000003f 
+ 00000852  0x000004b4 store  0x00000002 , 0x00004e41 
+ 00000853  0x000004b5 fetch  0x00000002 , 0x00004e43 
+ 00000854  0x000004b6 byteswap  0x0000003f , 0x0000003f 
+ 00000855  0x000004b7 store  0x00000002 , 0x00004e43 
+ 00000856  0x000004b8 call  0x00000392 
+ 00000857  0x000004b9 call  0x000003bd 
+ 00000858  0x000004ba fetch  0x00000008 , 0x000009c6 
+ 00000859  0x000004bb nbranch  0x00000360 , 0x00000034 
+ 00000860  0x000004bc fetch  0x00000002 , 0x00004ad4 
+ 00000861  0x000004bd byteswap  0x0000003f , 0x0000003f 
+ 00000862  0x000004be branch  0x00000360 , 0x00000034 
+ 00000863  0x000004bf store  0x00000002 , 0x00004e43 
+ 00000864  0x000004c1 jam  0x0000002f , 0x00004896 
+ 00000865  0x000004c3 fetch  0x00000001 , 0x00004e78 
+ 00000866  0x000004c4 nbranch  0x00000368 , 0x00000034 
+ 00000867  0x000004c5 call  0x00000295 
+ 00000868  0x000004c6 call  0x000002e1 
+ 00000869  0x000004c7 call  0x000002fd 
+ 00000870  0x000004c8 hjam  0x00000003 , 0x00008280 
+ 00000871  0x000004c9 rtn 
+ 00000872  0x000004cb call  0x00003c29 , 0x0000002b 
+ 00000873  0x000004cc arg  0x00000d00 , 0x0000000b 
+ 00000874  0x000004cd until  0x00000023 , 0x00000026 
+ 00000875  0x000004ce copy  0x00000022 , 0x0000003f 
+ 00000876  0x000004cf store  0x00000003 , 0x00004e7a 
+ 00000877  0x000004d1 fetch  0x00000002 , 0x0000470b 
+ 00000878  0x000004d2 rtnbit1  0x0000000b 
+ 00000879  0x000004d3 rtnbit1  0x00000006 
+ 00000880  0x000004d4 call  0x00003d60 
+ 00000881  0x000004d5 call  0x000004c8 
+ 00000882  0x000004d6 branch  0x0000036d 
+ 00000883  0x000004d9 copy  0x00000027 , 0x0000003f 
+ 00000884  0x000004da bmark0  0x00000026 , 0x0000037d 
+ 00000885  0x000004dd branch  0x00000378 , 0x00000034 
+ 00000886  0x000004df jam  0x000000bb , 0x000049b9 
+ 00000887  0x000004e0 rtn 
+ 00000888  0x000004e2 jam  0x00000000 , 0x000049b9 
+ 00000889  0x000004e3 fetch  0x00000001 , 0x000049b7 
+ 00000890  0x000004e4 rtn  0x00000034 
+ 00000891  0x000004e5 jam  0x00000000 , 0x000049b7 
+ 00000892  0x000004e6 branch  0x00000376 
+ 00000893  0x000004ea branch  0x00000380 , 0x00000034 
+ 00000894  0x000004eb jam  0x00000002 , 0x000049c1 
+ 00000895  0x000004ec rtn 
+ 00000896  0x000004ee fetch  0x00000001 , 0x000049c2 
+ 00000897  0x000004ef rtn  0x00000034 
+ 00000898  0x000004f0 jam  0x00000000 , 0x000049c2 
+ 00000899  0x000004f1 jam  0x00000001 , 0x000049c1 
+ 00000900  0x000004f2 rtn 
+ 00000901  0x000004f5 jam  0x0000003c , 0x00004896 
+ 00000902  0x000004f6 branch  0x00000361 
+ 00000903  0x000004f8 copy  0x00000027 , 0x0000003f 
+ 00000904  0x000004f9 branch  0x00000279 , 0x00000034 
+ 00000905  0x000004fa call  0x0000530d 
+ 00000906  0x000004fb call  0x000042eb 
+ 00000907  0x000004fc setarg  0x00000000 
+ 00000908  0x000004fd store  0x00000008 , 0x00004040 
+ 00000909  0x000004fe store  0x00000002 , 0x0000470b 
+ 00000910  0x000004ff store  0x00000002 , 0x00004898 
+ 00000911  0x00000500 store  0x00000002 , 0x0000489a 
+ 00000912  0x00000501 jam  0x0000003d , 0x00004896 
+ 00000913  0x00000502 branch  0x00000361 
+ 00000914  0x00000505 call  0x000062c4 
+ 00000915  0x00000506 setarg  0x000007e2 
+ 00000916  0x00000507 arg  0x000009c6 , 0x00000011 
+ 00000917  0x00000508 arg  0x0000000c , 0x00000002 
+ 00000918  0x00000509 call  0x0000630d 
+ 00000919  0x0000050a call  0x000062c7 
+ 00000920  0x0000050b fetch  0x00000008 , 0x000009c6 
+ 00000921  0x0000050c rtn  0x00000034 
+ 00000922  0x0000050d fetch  0x00000001 , 0x000042cf 
+ 00000923  0x0000050e rtn 
+ 00000924  0x00000515 enable  0x00000028 
+ 00000925  0x00000516 hfetch  0x00000004 , 0x00008138 
+ 00000926  0x00000517 setflag  0x00000028 , 0x0000001a , 0x0000003f 
+ 00000927  0x00000518 hstore  0x00000004 , 0x0000804c 
+ 00000928  0x00000519 call  0x00003cf4 
+ 00000929  0x0000051a jam  0x00000001 , 0x0000009f 
+ 00000930  0x0000051c rtn 
+ 00000931  0x00000522 copy  0x00000013 , 0x0000003f 
+ 00000932  0x00000523 and_into  0x000000f0 , 0x0000003f 
+ 00000933  0x00000524 rtneq  0x00000050 
+ 00000934  0x00000525 copy  0x00000013 , 0x0000003f 
+ 00000935  0x00000526 store  0x00000001 , 0x00004896 
+ 00000936  0x00000527 branch  0x000002e1 
+ 00000937  0x0000052b jam  0x00000000 , 0x00004927 
+ 00000938  0x0000052c jam  0x0000004e , 0x00004932 
+ 00000939  0x0000052d fetch  0x00000004 , 0x00004934 
+ 00000940  0x0000052f store  0x00000004 , 0x00004950 
+ 00000941  0x00000530 branch  0x00000466 
+ 00000942  0x00000534 fetcht  0x00000001 , 0x00004933 
+ 00000943  0x00000535 call  0x000003b4 
+ 00000944  0x00000536 increase  0x00000001 , 0x00000002 
+ 00000945  0x00000537 and_into  0x00000003 , 0x00000002 
+ 00000946  0x00000538 storet  0x00000001 , 0x00004933 
+ 00000947  0x00000539 rtn 
+ 00000948  0x0000053c fetch  0x00000001 , 0x00004950 
+ 00000949  0x0000053d and_into  0x00000003 , 0x0000003f 
+ 00000950  0x0000053e mul32  0x0000003f , 0x00000004 , 0x00000011 
+ 00000951  0x0000053f setarg  0x00004939 
+ 00000952  0x00000540 iadd  0x00000011 , 0x0000003f 
+ 00000953  0x00000541 iadd  0x00000002 , 0x00000006 
+ 00000954  0x00000542 ifetch  0x00000001 , 0x00000006 
+ 00000955  0x00000543 store  0x00000001 , 0x00004932 
+ 00000956  0x00000544 rtn 
+ 00000957  0x00000547 fetch  0x00000004 , 0x000009c6 
+ 00000958  0x00000548 store  0x00000004 , 0x00004960 
+ 00000959  0x00000549 nrtn  0x00000034 
+ 00000960  0x0000054a fetch  0x00000004 , 0x00004140 
+ 00000961  0x0000054b store  0x00000004 , 0x00004960 
+ 00000962  0x0000054c rtn 
+ 00000963  0x00000550 jam  0x00000001 , 0x000049b0 
+ 00000964  0x00000551 jam  0x00000000 , 0x000049b2 
+ 00000965  0x00000553 fetch  0x00000001 , 0x00004929 
+ 00000966  0x00000554 and_into  0x00000007 , 0x0000003f 
+ 00000967  0x00000555 store  0x00000001 , 0x00004929 
+ 00000968  0x00000556 rtn 
+ 00000969  0x00000559 fetch  0x00000001 , 0x00004929 
+ 00000970  0x0000055a set1  0x00000004 , 0x0000003f 
+ 00000971  0x0000055b store  0x00000001 , 0x00004929 
+ 00000972  0x0000055d store  0x00000001 , 0x000048e4 
+ 00000973  0x0000055e rtn 
+ 00000974  0x00000560 fetch  0x00000001 , 0x00004929 
+ 00000975  0x00000561 set0  0x00000004 , 0x0000003f 
+ 00000976  0x00000562 store  0x00000001 , 0x00004929 
+ 00000977  0x00000563 rtn 
+ 00000978  0x00000566 call  0x000005e0 
+ 00000979  0x00000567 fetch  0x00000001 , 0x000049b4 
+ 00000980  0x00000568 beq  0x00000001 , 0x000003d7 
+ 00000981  0x00000569 beq  0x00000002 , 0x000003db 
+ 00000982  0x0000056a rtn 
+ 00000983  0x0000056c jam  0x00000002 , 0x000049b2 
+ 00000984  0x0000056e jam  0x00000000 , 0x000049b3 
+ 00000985  0x0000056f jam  0x00000000 , 0x000049b0 
+ 00000986  0x00000570 branch  0x000003c5 
+ 00000987  0x00000573 jam  0x00000000 , 0x000049b1 
+ 00000988  0x00000574 branch  0x000003d8 
+ 00000989  0x00000577 fetch  0x00000002 , 0x0000492e 
+ 00000990  0x00000578 increase  0x00000001 , 0x0000003f 
+ 00000991  0x00000579 store  0x00000002 , 0x0000492e 
+ 00000992  0x0000057a bbit1  0x00000006 , 0x00000545 
+ 00000993  0x0000057b fetch  0x00000001 , 0x000049b1 
+ 00000994  0x0000057c beq  0x00000001 , 0x000003e6 
+ 00000995  0x0000057d jam  0x00000001 , 0x000049b1 
+ 00000996  0x0000057f fetch  0x00000001 , 0x000049b1 
+ 00000997  0x00000580 bne  0x00000001 , 0x000003c5 
+ 00000998  0x00000582 fetch  0x00000001 , 0x000049b5 
+ 00000999  0x00000583 increase  0x00000001 , 0x0000003f 
+ 00001000  0x00000584 store  0x00000001 , 0x000049b5 
+ 00001001  0x00000585 beq  0x00000004 , 0x000003ed 
+ 00001002  0x00000586 call  0x000003ae 
+ 00001003  0x00000587 jam  0x00000002 , 0x0000496e 
+ 00001004  0x00000588 branch  0x00000504 
+ 00001005  0x0000058b call  0x000005e0 
+ 00001006  0x0000058c jam  0x00000000 , 0x000049b5 
+ 00001007  0x0000058d branch  0x000003c5 
+ 00001008  0x00000590 jam  0x00000002 , 0x000049b2 
+ 00001009  0x00000592 jam  0x00000001 , 0x000049b0 
+ 00001010  0x00000593 jam  0x00000000 , 0x000049b1 
+ 00001011  0x00000594 branch  0x000003c5 
+ 00001012  0x00000597 fetch  0x00000001 , 0x000049b4 
+ 00001013  0x00000598 beq  0x00000003 , 0x000003f1 
+ 00001014  0x00000599 fetch  0x00000001 , 0x00004929 
+ 00001015  0x0000059a isolate0  0x00000004 , 0x0000003f 
+ 00001016  0x0000059b branch  0x000003c3 , 0x00000001 
+ 00001017  0x0000059c fetch  0x00000001 , 0x000049b4 
+ 00001018  0x0000059d beq  0x00000001 , 0x000003f0 
+ 00001019  0x0000059e beq  0x00000002 , 0x000003f1 
+ 00001020  0x0000059f rtn 
+ 00001021  0x000005a2 fetch  0x00000001 , 0x00004938 
+ 00001022  0x000005a3 rtnne  0x000000ff 
+ 00001023  0x000005a4 call  0x00000402 
+ 00001024  0x000005a5 ncall  0x0000040a , 0x0000002c 
+ 00001025  0x000005a6 rtn 
+ 00001026  0x000005a9 disable  0x0000002c 
+ 00001027  0x000005aa fetch  0x00000001 , 0x000049b0 
+ 00001028  0x000005ab rtnne  0x00000001 
+ 00001029  0x000005ac fetch  0x00000001 , 0x000049b2 
+ 00001030  0x000005ad rtnne  0x00000000 
+ 00001031  0x000005ae jam  0x00000001 , 0x000049b4 
+ 00001032  0x000005af jam  0x00000004 , 0x0000496e 
+ 00001033  0x000005b0 branch  0x000002a7 
+ 00001034  0x000005b3 fetch  0x00000001 , 0x000049b2 
+ 00001035  0x000005b4 branch  0x00000412 , 0x00000034 
+ 00001036  0x000005b5 increase  0xffffffff , 0x0000003f 
+ 00001037  0x000005b6 store  0x00000001 , 0x000049b2 
+ 00001038  0x000005b7 jam  0x00000002 , 0x000049b4 
+ 00001039  0x000005b8 call  0x000003ae 
+ 00001040  0x000005b9 jam  0x00000004 , 0x0000496e 
+ 00001041  0x000005ba rtn 
+ 00001042  0x000005bd jam  0x00000003 , 0x000049b4 
+ 00001043  0x000005be fetch  0x00000001 , 0x000049b1 
+ 00001044  0x000005bf nbranch  0x000003e4 , 0x00000034 
+ 00001045  0x000005c0 call  0x000003ae 
+ 00001046  0x000005c1 jam  0x00000002 , 0x0000496e 
+ 00001047  0x000005c2 rtn 
+ 00001048  0x000005c6 rtnmark0  0x00000026 
+ 00001049  0x000005c7 set1  0x00000027 , 0x00000000 
+ 00001050  0x000005c8 fetcht  0x00000004 , 0x00004949 
+ 00001051  0x000005c9 copy  0x00000022 , 0x0000003f 
+ 00001052  0x000005ca isub  0x00000002 , 0x0000003e 
+ 00001053  0x000005cb ncall  0x00000431 , 0x00000002 
+ 00001054  0x000005cc copy  0x0000003f , 0x00000012 
+ 00001055  0x000005cd fetch  0x00000004 , 0x00004949 
+ 00001056  0x000005ce fetcht  0x00000001 , 0x0000494d 
+ 00001057  0x000005cf iadd  0x00000002 , 0x00000002 
+ 00001058  0x000005d0 copy  0x00000012 , 0x0000003f 
+ 00001059  0x000005d1 isub  0x00000002 , 0x0000003e 
+ 00001060  0x000005d2 nbranch  0x0000042f , 0x00000002 
+ 00001061  0x000005d3 set0  0x0000001c , 0x0000003f 
+ 00001062  0x000005d4 store  0x00000004 , 0x00004949 
+ 00001063  0x000005d5 call  0x00000434 
+ 00001064  0x000005d6 call  0x00000441 
+ 00001065  0x000005d7 branch  0x00000496 , 0x00000028 
+ 00001066  0x000005d8 call  0x000003fd 
+ 00001067  0x000005da call  0x00000504 
+ 00001068  0x000005db fetch  0x00000001 , 0x00004938 
+ 00001069  0x000005dc sub  0x0000003f , 0x000000ff , 0x0000003e 
+ 00001070  0x000005dd call  0x000005ea , 0x00000005 
+ 00001071  0x000005df set0  0x00000027 , 0x00000000 
+ 00001072  0x000005e0 rtn 
+ 00001073  0x000005e3 rtn  0x00000005 
+ 00001074  0x000005e4 set1  0x0000001c , 0x0000003f 
+ 00001075  0x000005e5 rtn 
+ 00001076  0x000005e8 fetch  0x00000001 , 0x00004964 
+ 00001077  0x000005e9 increase  0x00000001 , 0x0000003f 
+ 00001078  0x000005ea store  0x00000001 , 0x00004964 
+ 00001079  0x000005eb beq  0x00000004 , 0x0000043a 
+ 00001080  0x000005ec beq  0x00000005 , 0x0000043d 
+ 00001081  0x000005ed rtn 
+ 00001082  0x000005ef fetch  0x00000001 , 0x0000494f 
+ 00001083  0x000005f0 store  0x00000001 , 0x0000494d 
+ 00001084  0x000005f1 rtn 
+ 00001085  0x000005f3 jam  0x00000000 , 0x00004964 
+ 00001086  0x000005f4 fetch  0x00000001 , 0x0000494e 
+ 00001087  0x000005f5 store  0x00000001 , 0x0000494d 
+ 00001088  0x000005f6 rtn 
+ 00001089  0x000005fa fetch  0x00000001 , 0x00004938 
+ 00001090  0x000005fb bne  0x000000ff , 0x00000645 
+ 00001091  0x000005fd call  0x000002b3 
+ 00001092  0x000005fe branch  0x0000044f , 0x00000028 
+ 00001093  0x000005ff fetch  0x00000001 , 0x00004897 
+ 00001094  0x00000600 bne  0x00000006 , 0x000064c0 
+ 00001095  0x0000060b call  0x00000452 
+ 00001096  0x0000060c call  0x00000473 
+ 00001097  0x0000060e jam  0x00000001 , 0x0000492d 
+ 00001098  0x0000060f rtn 
+ 00001099  0x00000612 jam  0x00000000 , 0x00004e79 
+ 00001100  0x00000613 jam  0x00000000 , 0x00004e78 
+ 00001101  0x00000614 jam  0x0000000a , 0x000049ba 
+ 00001102  0x00000615 rtn 
+ 00001103  0x0000061b fetch  0x00000001 , 0x0000492d 
+ 00001104  0x0000061c beq  0x00000001 , 0x000031d4 
+ 00001105  0x0000061d rtn 
+ 00001106  0x00000622 fetch  0x00000001 , 0x000049b9 
+ 00001107  0x00000623 store  0x00000001 , 0x000049b8 
+ 00001108  0x00000625 fetch  0x00000001 , 0x00004970 
+ 00001109  0x00000626 copy  0x0000003f , 0x00000011 
+ 00001110  0x00000627 arg  0x00004971 , 0x00000012 
+ 00001111  0x00000628 jam  0x00000000 , 0x00004954 
+ 00001112  0x0000062a call  0x000003c5 
+ 00001113  0x0000062b store  0x00000001 , 0x00004990 
+ 00001114  0x0000062d add  0x00000011 , 0x00000001 , 0x00000002 
+ 00001115  0x0000062e arg  0x00004991 , 0x00000005 
+ 00001116  0x00000631 copy  0x00000011 , 0x00000039 
+ 00001117  0x00000632 copy  0x00000012 , 0x00000006 
+ 00001118  0x00000633 call  0x00007ecd 
+ 00001119  0x00000634 arg  0x00004990 , 0x00000011 
+ 00001120  0x00000636 rtnmark0  0x00000027 
+ 00001121  0x00000637 storet  0x00000001 , 0x00004928 
+ 00001122  0x00000638 copy  0x00000002 , 0x00000039 
+ 00001123  0x00000639 arg  0x000048c4 , 0x00000005 
+ 00001124  0x0000063a copy  0x00000011 , 0x00000006 
+ 00001125  0x0000063b branch  0x00007ecd 
+ 00001126  0x00000640 arg  0x00000000 , 0x00000011 
+ 00001127  0x00000641 arg  0x00000004 , 0x00000039 
+ 00001128  0x00000642 arg  0x00004950 , 0x00000006 
+ 00001129  0x00000644 ifetch  0x00000001 , 0x00000006 
+ 00001130  0x00000645 iadd  0x00000011 , 0x00000011 
+ 00001131  0x00000646 loop  0x00000469 
+ 00001132  0x00000647 copy  0x00000011 , 0x0000003f 
+ 00001133  0x00000648 store  0x00000002 , 0x000049bb 
+ 00001134  0x00000649 fetch  0x00000001 , 0x000049bb 
+ 00001135  0x0000064a fetcht  0x00000001 , 0x000049bc 
+ 00001136  0x0000064b iadd  0x00000002 , 0x0000003f 
+ 00001137  0x0000064c store  0x00000001 , 0x000049bd 
+ 00001138  0x0000064d rtn 
+ 00001139  0x00000651 fetch  0x00000001 , 0x00004928 
+ 00001140  0x00000652 increase  0x00000002 , 0x0000003f 
+ 00001141  0x00000653 store  0x00000001 , 0x0000492a 
+ 00001142  0x00000655 fetch  0x00000001 , 0x00004929 
+ 00001143  0x00000656 store  0x00000001 , 0x000048e4 
+ 00001144  0x00000658 fetch  0x00000001 , 0x00004928 
+ 00001145  0x00000659 lshift3  0x0000003f , 0x0000003f 
+ 00001146  0x0000065a fetcht  0x00000001 , 0x00004927 
+ 00001147  0x0000065b and  0x00000002 , 0x00000003 , 0x00000002 
+ 00001148  0x0000065c lshift  0x00000002 , 0x00000002 
+ 00001149  0x0000065d ior  0x00000002 , 0x0000003f 
+ 00001150  0x0000065e fetcht  0x00000001 , 0x00004965 
+ 00001151  0x0000065f iadd  0x00000002 , 0x0000003f 
+ 00001152  0x00000660 istore  0x00000001 , 0x00000005 
+ 00001153  0x00000662 fetch  0x00000001 , 0x00004928 
+ 00001154  0x00000663 iforce  0x00000039 
+ 00001155  0x00000664 arg  0x000048c4 , 0x00000006 
+ 00001156  0x00000665 branch  0x00007ecd 
+ 00001157  0x00000668 jam  0x00000001 , 0x00004954 
+ 00001158  0x00000669 jam  0x00000000 , 0x000049b1 
+ 00001159  0x0000066a call  0x000003c5 
+ 00001160  0x0000066b store  0x00000001 , 0x00004990 
+ 00001161  0x0000066c setarg  0x00000000 
+ 00001162  0x0000066d store  0x00000007 , 0x00004991 
+ 00001163  0x0000066e fetch  0x00000004 , 0x00004960 
+ 00001164  0x0000066f store  0x00000004 , 0x00004998 
+ 00001165  0x00000670 arg  0x0000000c , 0x00000002 
+ 00001166  0x00000671 arg  0x00004990 , 0x00000011 
+ 00001167  0x00000672 call  0x00000460 
+ 00001168  0x00000673 fetch  0x00000001 , 0x00004929 
+ 00001169  0x00000674 set1  0x00000003 , 0x0000003f 
+ 00001170  0x00000675 store  0x00000001 , 0x00004929 
+ 00001171  0x00000676 call  0x00000473 
+ 00001172  0x00000677 call  0x00000449 
+ 00001173  0x00000678 branch  0x0000042b 
+ 00001174  0x0000067b rtn 
+ 00001175  0x00000682 fetch  0x00000001 , 0x00004954 
+ 00001176  0x00000683 branch  0x00000485 , 0x00000034 
+ 00001177  0x00000684 fetcht  0x00000001 , 0x000049b8 
+ 00001178  0x00000685 increase  0x00000001 , 0x00000002 
+ 00001179  0x00000686 storet  0x00000001 , 0x000049b8 
+ 00001180  0x00000687 fetch  0x00000001 , 0x000049b9 
+ 00001181  0x00000688 isub  0x00000002 , 0x0000003e 
+ 00001182  0x00000689 rtn  0x00000002 
+ 00001183  0x0000068a jam  0x00000000 , 0x000049b8 
+ 00001184  0x0000068c call  0x000000a4 
+ 00001185  0x0000068d nrtn  0x00000028 
+ 00001186  0x0000068e fetch  0x00000001 , 0x00000b2b 
+ 00001187  0x0000068f nrtn  0x00000034 
+ 00001188  0x00000690 fetch  0x00000001 , 0x000049ba 
+ 00001189  0x00000691 nrtn  0x00000034 
+ 00001190  0x00000692 jam  0x00000000 , 0x00004e80 
+ 00001191  0x00000693 call  0x00003be2 
+ 00001192  0x00000694 fetch  0x00000003 , 0x0000420f 
+ 00001193  0x00000695 rtn  0x00000034 
+ 00001194  0x00000696 fetch  0x00000008 , 0x00004958 
+ 00001195  0x00000697 call  0x00007f16 
+ 00001196  0x00000698 storet  0x00000004 , 0x000041fb 
+ 00001197  0x00000699 branch  0x00003c11 
+ 00001198  0x0000069c fetch  0x00000001 , 0x000042b8 
+ 00001199  0x0000069d isolate0  0x00000002 , 0x0000003f 
+ 00001200  0x0000069e branch  0x000004b8 , 0x00000001 
+ 00001201  0x0000069f fetch  0x00000001 , 0x00004e79 
+ 00001202  0x000006a0 rtneq  0x00000005 
+ 00001203  0x000006a1 increase  0x00000001 , 0x0000003f 
+ 00001204  0x000006a2 store  0x00000001 , 0x00004e79 
+ 00001205  0x000006a3 rtnne  0x00000005 
+ 00001206  0x000006a5 jam  0x00000001 , 0x00004e78 
+ 00001207  0x000006a6 rtn 
+ 00001208  0x000006a9 fetch  0x00000001 , 0x00004e79 
+ 00001209  0x000006aa rtneq  0x00000014 
+ 00001210  0x000006ab increase  0x00000001 , 0x0000003f 
+ 00001211  0x000006ac store  0x00000001 , 0x00004e79 
+ 00001212  0x000006ad rtnne  0x00000014 
+ 00001213  0x000006ae fetch  0x00000001 , 0x000042b8 
+ 00001214  0x000006af set1  0x00000002 , 0x0000003f 
+ 00001215  0x000006b0 store  0x00000001 , 0x000042b8 
+ 00001216  0x000006b1 branch  0x000004b6 
+ 00001217  0x000006b4 fetch  0x00000001 , 0x00004e79 
+ 00001218  0x000006b5 rtn  0x00000034 
+ 00001219  0x000006b6 increase  0xffffffff , 0x0000003f 
+ 00001220  0x000006b7 store  0x00000001 , 0x00004e79 
+ 00001221  0x000006b8 nrtn  0x00000034 
+ 00001222  0x000006b9 jam  0x00000000 , 0x00004e78 
+ 00001223  0x000006ba rtn 
+ 00001224  0x000006bd set1  0x00000027 , 0x00000000 
+ 00001225  0x000006be call  0x000002b3 
+ 00001226  0x000006bf branch  0x000004cd , 0x00000028 
+ 00001227  0x000006c0 fetch  0x00000001 , 0x00004897 
+ 00001228  0x000006c1 beq  0x00000006 , 0x000004dc 
+ 00001229  0x000006c3 fetch  0x00000001 , 0x00004e7d 
+ 00001230  0x000006c4 beq  0x00000001 , 0x000004d4 
+ 00001231  0x000006c5 beq  0x00000002 , 0x00000496 
+ 00001232  0x000006c6 beq  0x00000003 , 0x000004d2 
+ 00001233  0x000006c7 rtn 
+ 00001234  0x000006ca jam  0x00000000 , 0x00004e79 
+ 00001235  0x000006cb jam  0x00000000 , 0x00004e78 
+ 00001236  0x000006cd call  0x000004ae 
+ 00001237  0x000006ce jam  0x00000000 , 0x00004e7d 
+ 00001238  0x000006cf arg  0x00000007 , 0x00000039 
+ 00001239  0x000006d0 copy  0x00000039 , 0x0000003f 
+ 00001240  0x000006d1 store  0x00000001 , 0x00004970 
+ 00001241  0x000006d2 arg  0x00004e21 , 0x00000006 
+ 00001242  0x000006d3 call  0x00007ecd 
+ 00001243  0x000006d4 disable  0x00000028 
+ 00001244  0x000006d6 call  0x00000447 
+ 00001245  0x000006d7 call  0x000003fd 
+ 00001246  0x000006d8 call  0x00000504 
+ 00001247  0x000006d9 call  0x000005ea 
+ 00001248  0x000006db call  0x00003be2 
+ 00001249  0x000006dc fetch  0x00000003 , 0x0000420f 
+ 00001250  0x000006dd rtn  0x00000034 
+ 00001251  0x000006de fetch  0x00000001 , 0x00004131 
+ 00001252  0x000006df rtn  0x00000034 
+ 00001253  0x000006e0 fetch  0x00000001 , 0x00004e80 
+ 00001254  0x000006e1 beq  0x00000001 , 0x000004e9 
+ 00001255  0x000006e2 setarg  0x00000000 
+ 00001256  0x000006e3 store  0x00000008 , 0x000000a0 
+ 00001257  0x000006e5 call  0x000004f9 
+ 00001258  0x000006e6 arg  0x00000d00 , 0x0000000b 
+ 00001259  0x000006e7 until  0x00000023 , 0x00000026 
+ 00001260  0x000006e8 fetcht  0x00000003 , 0x00004e7a 
+ 00001261  0x000006e9 copy  0x00000022 , 0x0000003f 
+ 00001262  0x000006ea isub  0x00000002 , 0x0000003f 
+ 00001263  0x000006eb and_into  0x000000ff , 0x0000003f 
+ 00001264  0x000006ec arg  0x00000ea6 , 0x00000002 
+ 00001265  0x000006ed imul32  0x00000002 , 0x00000002 
+ 00001266  0x000006ee fetch  0x00000004 , 0x00004e74 
+ 00001267  0x000006ef isub  0x00000002 , 0x0000003f 
+ 00001268  0x000006f0 branch  0x00003c7f , 0x00000002 
+ 00001269  0x000006f1 fetch  0x00000001 , 0x00004218 
+ 00001270  0x000006f2 increase  0x00000001 , 0x0000003f 
+ 00001271  0x000006f3 store  0x00000004 , 0x000041fb 
+ 00001272  0x000006f4 branch  0x00003c86 
+ 00001273  0x000006f6 setarg  0x00013c68 
+ 00001274  0x000006f7 store  0x00000004 , 0x00004e74 
+ 00001275  0x000006f8 fetch  0x00000001 , 0x00004e7e 
+ 00001276  0x000006f9 increase  0x00000001 , 0x0000003f 
+ 00001277  0x000006fa bne  0x00000005 , 0x000004ff 
+ 00001278  0x000006fb setarg  0x00000000 
+ 00001279  0x000006fd store  0x00000001 , 0x00004e7e 
+ 00001280  0x000006fe rtnbit0  0x00000000 
+ 00001281  0x000006ff setarg  0x000130b0 
+ 00001282  0x00000700 store  0x00000004 , 0x00004e74 
+ 00001283  0x00000701 rtn 
+ 00001284  0x00000705 jam  0x00000001 , 0x00004ea7 
+ 00001285  0x00000707 jam  0x00000000 , 0x00004931 
+ 00001286  0x00000709 arg  0x00000d00 , 0x0000000b 
+ 00001287  0x0000070a until  0x00000023 , 0x00000026 
+ 00001288  0x0000070b call  0x0000051e 
+ 00001289  0x0000070c fetch  0x00000001 , 0x00004965 
+ 00001290  0x0000070d rtneq  0x00000001 
+ 00001291  0x0000070e nbranch  0x0000052d , 0x00000018 
+ 00001292  0x0000070f nbranch  0x0000052d , 0x0000002f 
+ 00001293  0x00000711 jam  0x00000001 , 0x00004ea9 
+ 00001294  0x00000713 call  0x0000054c 
+ 00001295  0x00000714 call  0x000005dc 
+ 00001296  0x00000716 fetch  0x00000001 , 0x00004927 
+ 00001297  0x00000717 increase  0x00000001 , 0x0000003f 
+ 00001298  0x00000718 store  0x00000001 , 0x00004927 
+ 00001299  0x00000719 fetch  0x00000001 , 0x00004938 
+ 00001300  0x0000071a bne  0x000000ff , 0x0000051c 
+ 00001301  0x0000071b call  0x000003f4 
+ 00001302  0x0000071d setarg  0x00000000 
+ 00001303  0x0000071e store  0x00000002 , 0x0000492e 
+ 00001304  0x0000071f store  0x00000001 , 0x00004930 
+ 00001305  0x00000720 store  0x00000001 , 0x000049b3 
+ 00001306  0x00000721 jam  0x00000000 , 0x0000492d 
+ 00001307  0x00000722 rtn 
+ 00001308  0x00000724 call  0x000005d9 
+ 00001309  0x00000725 branch  0x00000660 
+ 00001310  0x00000728 disable  0x0000002f 
+ 00001311  0x00000729 call  0x0000056c 
+ 00001312  0x0000072a fetch  0x00000001 , 0x00004965 
+ 00001313  0x0000072b beq  0x00000001 , 0x0000052b 
+ 00001314  0x0000072c force  0x00000000 , 0x00000015 
+ 00001315  0x0000072d fetch  0x00000004 , 0x00004950 
+ 00001316  0x0000072e iforce  0x00000009 
+ 00001317  0x0000072f fetcht  0x00000001 , 0x00000017 
+ 00001318  0x00000730 call  0x000039b9 
+ 00001319  0x00000731 call  0x000039bf 
+ 00001320  0x00000732 call  0x00000596 
+ 00001321  0x00000733 call  0x000005d5 , 0x0000002f 
+ 00001322  0x00000734 rtn 
+ 00001323  0x00000736 call  0x000005d5 
+ 00001324  0x00000737 branch  0x00000510 
+ 00001325  0x0000073a fetch  0x00000001 , 0x00004930 
+ 00001326  0x0000073b increase  0x00000001 , 0x0000003f 
+ 00001327  0x0000073c store  0x00000001 , 0x00004930 
+ 00001328  0x0000073d fetch  0x00000001 , 0x00004938 
+ 00001329  0x0000073e bne  0x000000ff , 0x00000541 
+ 00001330  0x0000073f fetcht  0x00000001 , 0x00004931 
+ 00001331  0x00000740 increase  0x00000001 , 0x00000002 
+ 00001332  0x00000741 storet  0x00000001 , 0x00004931 
+ 00001333  0x00000742 fetch  0x00000001 , 0x0000496e 
+ 00001334  0x00000743 isub  0x00000002 , 0x0000003f 
+ 00001335  0x00000744 nbranch  0x00000506 , 0x00000034 
+ 00001336  0x00000745 fetch  0x00000001 , 0x000049b4 
+ 00001337  0x00000746 beq  0x00000003 , 0x000003dd 
+ 00001338  0x00000747 fetch  0x00000001 , 0x000049b3 
+ 00001339  0x00000748 increase  0x00000001 , 0x0000003f 
+ 00001340  0x00000749 store  0x00000001 , 0x000049b3 
+ 00001341  0x0000074a beq  0x00000002 , 0x000003d2 
+ 00001342  0x0000074b call  0x000003c9 
+ 00001343  0x0000074c jam  0x00000001 , 0x0000496e 
+ 00001344  0x0000074d branch  0x00000504 
+ 00001345  0x00000750 fetch  0x00000001 , 0x00004930 
+ 00001346  0x00000751 rtnne  0x000000ff 
+ 00001347  0x00000752 jam  0x00000000 , 0x00004930 
+ 00001348  0x00000753 branch  0x0000054a 
+ 00001349  0x00000756 setarg  0x00000000 
+ 00001350  0x00000757 store  0x00000002 , 0x0000492e 
+ 00001351  0x00000758 jam  0x00000000 , 0x00004131 
+ 00001352  0x00000759 jam  0x00000000 , 0x00004e79 
+ 00001353  0x0000075a jam  0x00000000 , 0x00004e78 
+ 00001354  0x0000075c jam  0x0000003b , 0x00004896 
+ 00001355  0x0000075d branch  0x000002e1 
+ 00001356  0x00000760 call  0x00000553 
+ 00001357  0x00000761 fetch  0x00000001 , 0x00004926 
+ 00001358  0x00000762 rtn  0x00000034 
+ 00001359  0x00000763 iforce  0x00000039 
+ 00001360  0x00000764 arg  0x000048a4 , 0x00000006 
+ 00001361  0x00000765 arg  0x00004906 , 0x00000005 
+ 00001362  0x00000766 branch  0x00007ecd 
+ 00001363  0x0000076a fetch  0x00000001 , 0x000048a3 
+ 00001364  0x0000076b rshift3  0x0000003f , 0x0000003f 
+ 00001365  0x0000076c store  0x00000001 , 0x00004926 
+ 00001366  0x0000076e increase  0x00000001 , 0x0000003f 
+ 00001367  0x0000076f arg  0x000048a3 , 0x00000006 
+ 00001368  0x00000770 iadd  0x00000006 , 0x00000006 
+ 00001369  0x00000771 ifetch  0x00000003 , 0x00000006 
+ 00001370  0x00000772 store  0x00000003 , 0x00004966 
+ 00001371  0x00000774 fetch  0x00000001 , 0x000048a3 
+ 00001372  0x00000775 rshift  0x0000003f , 0x0000003f 
+ 00001373  0x00000776 and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00001374  0x00000777 store  0x00000001 , 0x0000496c 
+ 00001375  0x00000778 rtn 
+ 00001376  0x0000077c disable  0x00000009 
+ 00001377  0x0000077d disable  0x00000007 
+ 00001378  0x0000077e setarg  0x00555555 
+ 00001379  0x0000077f iforce  0x0000000f 
+ 00001380  0x00000780 fetch  0x00000001 , 0x00004932 
+ 00001381  0x00000781 reverse  0x0000003f , 0x00000002 
+ 00001382  0x00000782 set1  0x00000001 , 0x00000002 
+ 00001383  0x00000783 rshift  0x00000002 , 0x0000000e 
+ 00001384  0x00000784 rtn 
+ 00001385  0x00000787 call  0x000039b1 
+ 00001386  0x00000788 fetcht  0x00000001 , 0x00004932 
+ 00001387  0x00000789 branch  0x000039c9 
+ 00001388  0x0000078c call  0x00004976 
+ 00001389  0x0000078d fetch  0x00000004 , 0x00004950 
+ 00001390  0x0000078e iforce  0x00000009 
+ 00001391  0x0000078f call  0x00000560 
+ 00001392  0x00000790 call  0x00000569 
+ 00001393  0x00000791 set1  0x00000000 , 0x00000015 
+ 00001394  0x00000792 enable  0x0000001d 
+ 00001395  0x00000793 enable  0x00000020 
+ 00001396  0x00000794 disable  0x00000021 
+ 00001397  0x00000795 rshift16  0x00000009 , 0x0000003f 
+ 00001398  0x00000796 rshift8  0x0000003f , 0x0000003f 
+ 00001399  0x00000797 rshift4  0x0000003f , 0x0000003f 
+ 00001400  0x00000798 inject  0x00000003 , 0x00000028 
+ 00001401  0x00000799 disable  0x0000001d 
+ 00001402  0x0000079a enable  0x0000001b 
+ 00001403  0x0000079b enable  0x00000007 
+ 00001404  0x0000079c enable  0x00000009 
+ 00001405  0x0000079e fetch  0x00000001 , 0x000049bd 
+ 00001406  0x0000079f inject  0x00000003 , 0x00000008 
+ 00001407  0x000007a1 fetch  0x00000001 , 0x0000492a 
+ 00001408  0x000007a2 iforce  0x00000039 
+ 00001409  0x000007a3 arg  0x000048e4 , 0x00000006 
+ 00001410  0x000007a5 ifetch  0x00000001 , 0x00000006 
+ 00001411  0x000007a6 inject  0x00000003 , 0x00000008 
+ 00001412  0x000007a7 loop  0x00000582 
+ 00001413  0x000007a8 enable  0x00000008 
+ 00001414  0x000007a9 inject  0x00000003 , 0x00000018 
+ 00001415  0x000007aa disable  0x00000008 
+ 00001416  0x000007ab until  0x0000003e , 0x00000027 
+ 00001417  0x000007ac nop  0x00000064 
+ 00001418  0x000007ad disable  0x0000001d 
+ 00001419  0x000007ae disable  0x0000001b 
+ 00001420  0x000007af rtn 
+ 00001421  0x000007b2 call  0x00004976 
+ 00001422  0x000007b3 fetch  0x00000004 , 0x00004950 
+ 00001423  0x000007b4 iforce  0x00000009 
+ 00001424  0x000007b5 call  0x000039b1 
+ 00001425  0x000007b6 fetcht  0x00000001 , 0x00004932 
+ 00001426  0x000007b7 call  0x000039b9 
+ 00001427  0x000007b8 setarg  0x00000500 
+ 00001428  0x000007b9 call  0x00003b35 
+ 00001429  0x000007ba call  0x000039bf 
+ 00001430  0x000007bc call  0x00000560 
+ 00001431  0x000007bd disable  0x0000002f 
+ 00001432  0x000007be enable  0x0000000d 
+ 00001433  0x000007bf enable  0x00000021 
+ 00001434  0x000007c0 disable  0x00000020 
+ 00001435  0x000007c1 enable  0x00000010 
+ 00001436  0x000007c2 fetch  0x00000002 , 0x0000492b 
+ 00001437  0x000007c3 iforce  0x0000001b 
+ 00001438  0x000007c4 correlate  0x0000003e , 0x00000003 
+ 00001439  0x000007c5 nbranch  0x000005d8 , 0x00000018 
+ 00001440  0x000007c6 disable  0x0000000d 
+ 00001441  0x000007c7 enable  0x0000000b 
+ 00001442  0x000007c8 enable  0x00000007 
+ 00001443  0x000007c9 enable  0x00000009 
+ 00001444  0x000007cb parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00001445  0x000007cc rshift3  0x0000000c , 0x0000003f 
+ 00001446  0x000007cd store  0x00000001 , 0x000049be 
+ 00001447  0x000007ce call  0x00000466 
+ 00001448  0x000007cf fetcht  0x00000001 , 0x000049be 
+ 00001449  0x000007d0 isub  0x00000002 , 0x0000003e 
+ 00001450  0x000007d1 nbranch  0x000005d5 , 0x00000005 
+ 00001451  0x000007d3 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00001452  0x000007d4 rshift3  0x0000000c , 0x0000003f 
+ 00001453  0x000007d5 store  0x00000001 , 0x000048a2 
+ 00001454  0x000007d6 fetch  0x00000001 , 0x0000496f 
+ 00001455  0x000007d7 sub  0x0000003f , 0x00000002 , 0x0000003e 
+ 00001456  0x000007d8 branch  0x000005b5 , 0x00000005 
+ 00001457  0x000007d9 fetch  0x00000001 , 0x000048a2 
+ 00001458  0x000007da fetcht  0x00000001 , 0x00004929 
+ 00001459  0x000007db icompare  0x00000007 , 0x00000002 
+ 00001460  0x000007dc nbranch  0x000005d5 , 0x00000001 
+ 00001461  0x000007de parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00001462  0x000007df rshift3  0x0000000c , 0x0000003f 
+ 00001463  0x000007e0 istore  0x00000001 , 0x00000005 
+ 00001464  0x000007e1 rshift3  0x0000003f , 0x0000003f 
+ 00001465  0x000007e2 and  0x0000003f , 0x0000001f , 0x00000039 
+ 00001466  0x000007e3 branch  0x000005bf , 0x00000005 
+ 00001467  0x000007e5 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00001468  0x000007e6 rshift3  0x0000000c , 0x0000003f 
+ 00001469  0x000007e7 istore  0x00000001 , 0x00000005 
+ 00001470  0x000007e8 loop  0x000005bb 
+ 00001471  0x000007eb copy  0x00000005 , 0x00000011 
+ 00001472  0x000007ec parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00001473  0x000007ed rshift3  0x0000000c , 0x0000003f 
+ 00001474  0x000007ee store  0x00000001 , 0x000049cf 
+ 00001475  0x000007ef copy  0x00000011 , 0x00000005 
+ 00001476  0x000007f1 parse  0x00000003 , 0x00000000 , 0x00000018 
+ 00001477  0x000007f2 enable  0x00000010 
+ 00001478  0x000007f3 arg  0x00000664 , 0x0000001b 
+ 00001479  0x000007f4 rshift32  0x0000003f , 0x0000003f 
+ 00001480  0x000007f5 rshift16  0x0000003f , 0x0000003f 
+ 00001481  0x000007f6 istore  0x00000003 , 0x00000005 
+ 00001482  0x000007f7 disable  0x0000000b 
+ 00001483  0x000007f8 branch  0x000005d5 , 0x00000006 
+ 00001484  0x000007f9 enable  0x0000002f 
+ 00001485  0x000007fa fetch  0x00000001 , 0x00000017 
+ 00001486  0x000007fb add  0x0000003f , 0x00000000 , 0x00000011 
+ 00001487  0x000007fc call  0x00003a13 
+ 00001488  0x000007fd disable  0x0000000d 
+ 00001489  0x000007fe call  0x000039b1 
+ 00001490  0x000007ff fetch  0x00000001 , 0x000049cf 
+ 00001491  0x00000800 copy  0x0000003f , 0x00000011 
+ 00001492  0x00000801 branch  0x00000628 
+ 00001493  0x00000804 disable  0x0000001b 
+ 00001494  0x00000805 disable  0x0000000b 
+ 00001495  0x00000806 branch  0x000036c6 
+ 00001496  0x00000809 branch  0x000005d5 
+ 00001497  0x0000080c jam  0x00000001 , 0x000049c4 
+ 00001498  0x0000080d jam  0x00000000 , 0x000049c5 
+ 00001499  0x0000080e rtn 
+ 00001500  0x00000810 fetch  0x00000001 , 0x000049c5 
+ 00001501  0x00000811 increase  0x00000001 , 0x0000003f 
+ 00001502  0x00000812 store  0x00000001 , 0x000049c5 
+ 00001503  0x00000813 rtn 
+ 00001504  0x00000815 fetch  0x00000001 , 0x000049c5 
+ 00001505  0x00000816 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00001506  0x00000817 ncall  0x000005e8 , 0x00000002 
+ 00001507  0x00000818 fetch  0x00000001 , 0x000049c5 
+ 00001508  0x00000819 rtneq  0x00000000 
+ 00001509  0x0000081a increase  0xffffffff , 0x0000003f 
+ 00001510  0x0000081b store  0x00000001 , 0x000049c5 
+ 00001511  0x0000081c rtn 
+ 00001512  0x0000081e jam  0x00000002 , 0x000049c5 
+ 00001513  0x0000081f rtn 
+ 00001514  0x00000822 arg  0x000049c6 , 0x00000011 
+ 00001515  0x00000823 call  0x00000631 
+ 00001516  0x00000824 storet  0x00000001 , 0x000049d0 
+ 00001517  0x00000825 isolate1  0x00000026 , 0x00000000 
+ 00001518  0x00000826 call  0x000005f8 , 0x00000001 
+ 00001519  0x00000827 ncall  0x000005fc , 0x00000001 
+ 00001520  0x00000828 isub  0x00000002 , 0x0000003e 
+ 00001521  0x00000829 nbranch  0x00000615 , 0x00000002 
+ 00001522  0x0000082b fetch  0x00000001 , 0x000049c5 
+ 00001523  0x0000082c sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00001524  0x0000082d nbranch  0x00000600 , 0x00000002 
+ 00001525  0x0000082e fetch  0x00000001 , 0x000049c5 
+ 00001526  0x0000082f beq  0x00000000 , 0x00000615 
+ 00001527  0x00000830 rtn 
+ 00001528  0x00000833 setarg  0x00000082 
+ 00001529  0x00000834 rtn 
+ 00001530  0x00000836 setarg  0x00000077 
+ 00001531  0x00000837 rtn 
+ 00001532  0x00000839 setarg  0x00000080 
+ 00001533  0x0000083a rtn 
+ 00001534  0x0000083c setarg  0x00000075 
+ 00001535  0x0000083d rtn 
+ 00001536  0x00000840 fetch  0x00000001 , 0x000049c5 
+ 00001537  0x00000841 rtnne  0x00000046 
+ 00001538  0x00000842 jam  0x00000000 , 0x000049c5 
+ 00001539  0x00000844 fetcht  0x00000001 , 0x000049d0 
+ 00001540  0x00000845 isolate1  0x00000026 , 0x00000000 
+ 00001541  0x00000846 call  0x000005fa , 0x00000001 
+ 00001542  0x00000847 ncall  0x000005fe , 0x00000001 
+ 00001543  0x00000848 isub  0x00000002 , 0x0000003e 
+ 00001544  0x00000849 nrtn  0x00000002 
+ 00001545  0x0000084a fetch  0x00000001 , 0x000049c4 
+ 00001546  0x0000084b beq  0x00000000 , 0x00000621 
+ 00001547  0x0000084c increase  0xffffffff , 0x0000003f 
+ 00001548  0x0000084d store  0x00000001 , 0x000049c4 
+ 00001549  0x0000084e beq  0x00000000 , 0x00000621 
+ 00001550  0x00000851 hjam  0x000000d0 , 0x00008955 
+ 00001551  0x00000852 hjam  0x000000e0 , 0x00008956 
+ 00001552  0x00000853 hjam  0x0000004c , 0x00008957 
+ 00001553  0x00000854 hjam  0x0000006c , 0x00008958 
+ 00001554  0x00000855 hjam  0x00000050 , 0x00008959 
+ 00001555  0x00000856 jam  0x00000001 , 0x00004280 
+ 00001556  0x00000857 rtn 
+ 00001557  0x0000085a fetch  0x00000001 , 0x000049c4 
+ 00001558  0x0000085b beq  0x00000002 , 0x0000061a 
+ 00001559  0x0000085c increase  0x00000001 , 0x0000003f 
+ 00001560  0x0000085d store  0x00000001 , 0x000049c4 
+ 00001561  0x0000085e beq  0x00000001 , 0x0000060e 
+ 00001562  0x00000860 hjam  0x000000d0 , 0x00008955 
+ 00001563  0x00000861 hjam  0x000000e0 , 0x00008956 
+ 00001564  0x00000862 hjam  0x0000004c , 0x00008957 
+ 00001565  0x00000863 hjam  0x0000003c , 0x00008958 
+ 00001566  0x00000864 hjam  0x00000010 , 0x00008959 
+ 00001567  0x00000865 jam  0x00000004 , 0x00004280 
+ 00001568  0x00000866 rtn 
+ 00001569  0x00000869 hjam  0x000000d0 , 0x00008955 
+ 00001570  0x0000086a hjam  0x000000c0 , 0x00008956 
+ 00001571  0x0000086b hjam  0x0000004c , 0x00008957 
+ 00001572  0x0000086c hjam  0x0000006c , 0x00008958 
+ 00001573  0x0000086d hjam  0x00000050 , 0x00008959 
+ 00001574  0x0000086e jam  0x00000010 , 0x00004280 
+ 00001575  0x0000086f rtn 
+ 00001576  0x00000872 fetcht  0x00000001 , 0x000049ce 
+ 00001577  0x00000873 setarg  0x000049c6 
+ 00001578  0x00000874 iadd  0x00000002 , 0x00000005 
+ 00001579  0x00000875 copy  0x00000011 , 0x0000003f 
+ 00001580  0x00000876 istore  0x00000001 , 0x00000005 
+ 00001581  0x00000877 increase  0x00000001 , 0x00000002 
+ 00001582  0x00000878 and_into  0x00000007 , 0x00000002 
+ 00001583  0x00000879 storet  0x00000001 , 0x000049ce 
+ 00001584  0x0000087a rtn 
+ 00001585  0x0000087c arg  0x00000000 , 0x00000002 
+ 00001586  0x0000087d arg  0x00000008 , 0x00000039 
+ 00001587  0x0000087e copy  0x00000011 , 0x00000006 
+ 00001588  0x00000880 ifetch  0x00000001 , 0x00000006 
+ 00001589  0x00000881 iadd  0x00000002 , 0x00000002 
+ 00001590  0x00000882 loop  0x00000634 
+ 00001591  0x00000883 rshift3  0x00000002 , 0x0000003f 
+ 00001592  0x00000884 copy  0x0000003f , 0x00000002 
+ 00001593  0x00000885 rtnmark0  0x00000026 
+ 00001594  0x00000887 div  0x0000003f , 0x0000000a 
+ 00001595  0x00000888 call  0x00007f53 
+ 00001596  0x00000889 quotient  0x0000003f 
+ 00001597  0x0000088a lshift4  0x0000003f , 0x0000003f 
+ 00001598  0x0000088b remainder  0x00000002 
+ 00001599  0x0000088c ior  0x00000002 , 0x00000002 
+ 00001600  0x0000088d rtn 
+ 00001601  0x00000891 set1  0x00000026 , 0x00000000 
+ 00001602  0x00000892 call  0x000003a9 
+ 00001603  0x00000894 jam  0x00000001 , 0x00004938 
+ 00001604  0x00000895 rtn 
+ 00001605  0x00000898 fetch  0x00000001 , 0x0000492d 
+ 00001606  0x00000899 beq  0x00000001 , 0x000031d4 
+ 00001607  0x0000089a fetch  0x00000001 , 0x00004938 
+ 00001608  0x0000089b beq  0x00000001 , 0x0000064c 
+ 00001609  0x0000089c beq  0x00000002 , 0x0000064f 
+ 00001610  0x0000089d beq  0x00000003 , 0x00000652 
+ 00001611  0x0000089e branch  0x00003b31 
+ 00001612  0x000008a1 jam  0x00000011 , 0x00004938 
+ 00001613  0x000008a2 jam  0x000000aa , 0x00004990 
+ 00001614  0x000008a3 branch  0x00000654 
+ 00001615  0x000008a5 jam  0x00000012 , 0x00004938 
+ 00001616  0x000008a6 jam  0x00000055 , 0x00004990 
+ 00001617  0x000008a7 branch  0x00000654 
+ 00001618  0x000008a9 jam  0x00000013 , 0x00004938 
+ 00001619  0x000008aa jam  0x00000022 , 0x00004990 
+ 00001620  0x000008ac fetch  0x00000001 , 0x00004929 
+ 00001621  0x000008ad and_into  0x00000007 , 0x0000003f 
+ 00001622  0x000008ae store  0x00000001 , 0x00004991 
+ 00001623  0x000008af fetch  0x00000004 , 0x00004960 
+ 00001624  0x000008b0 store  0x00000004 , 0x00004992 
+ 00001625  0x000008b2 jam  0x00000000 , 0x00004996 
+ 00001626  0x000008b3 arg  0x00004990 , 0x00000011 
+ 00001627  0x000008b4 arg  0x00000007 , 0x00000002 
+ 00001628  0x000008b5 call  0x00000460 
+ 00001629  0x000008b6 call  0x00000473 
+ 00001630  0x000008b7 call  0x00000449 
+ 00001631  0x000008b8 branch  0x000031d4 
+ 00001632  0x000008bb fetch  0x00000001 , 0x00004938 
+ 00001633  0x000008bc rtneq  0x000000ff 
+ 00001634  0x000008bd beq  0x00000011 , 0x00000666 
+ 00001635  0x000008be beq  0x00000012 , 0x00000668 
+ 00001636  0x000008bf beq  0x00000013 , 0x0000066a 
+ 00001637  0x000008c0 rtn 
+ 00001638  0x000008c3 jam  0x00000002 , 0x00004938 
+ 00001639  0x000008c4 branch  0x00000516 
+ 00001640  0x000008c6 jam  0x00000003 , 0x00004938 
+ 00001641  0x000008c7 branch  0x00000516 
+ 00001642  0x000008c9 jam  0x000000ff , 0x00004938 
+ 00001643  0x000008ca jam  0x00000039 , 0x00004896 
+ 00001644  0x000008cb call  0x000002e1 
+ 00001645  0x000008cc fetch  0x00000004 , 0x00004908 
+ 00001646  0x000008cd call  0x000003ac 
+ 00001647  0x000008ce branch  0x00000516 
+ 00001648  0x000008d1 set0  0x00000026 , 0x00000000 
+ 00001649  0x000008d2 call  0x000003ae 
+ 00001650  0x000008d3 fetch  0x00000004 , 0x00004950 
+ 00001651  0x000008d4 call  0x00000466 
+ 00001652  0x000008d5 fetch  0x00000001 , 0x00004938 
+ 00001653  0x000008d6 rtnne  0x000000ff 
+ 00001654  0x000008d7 call  0x00000686 
+ 00001655  0x000008d9 setarg  0x00000000 
+ 00001656  0x000008da store  0x00000002 , 0x00004956 
+ 00001657  0x000008dc nop  0x000007d0 
+ 00001658  0x000008dd fetch  0x00000001 , 0x00004956 
+ 00001659  0x000008de beq  0x000000ff , 0x0000054a 
+ 00001660  0x000008df call  0x0000051e 
+ 00001661  0x000008e0 nbranch  0x00000690 , 0x00000018 
+ 00001662  0x000008e1 nbranch  0x00000690 , 0x0000002f 
+ 00001663  0x000008e3 jam  0x00000001 , 0x00004131 
+ 00001664  0x000008e4 set1  0x00000026 , 0x00000000 
+ 00001665  0x000008e5 setarg  0x00000000 
+ 00001666  0x000008e6 store  0x00000002 , 0x00004956 
+ 00001667  0x000008e7 jam  0x0000003a , 0x000009bd 
+ 00001668  0x000008e8 call  0x00007d86 
+ 00001669  0x000008e9 branch  0x00007e0d 
+ 00001670  0x000008ec set1  0x00000027 , 0x00000000 
+ 00001671  0x000008ed jam  0x000000ff , 0x00004990 
+ 00001672  0x000008ee fetch  0x00000001 , 0x00004929 
+ 00001673  0x000008ef store  0x00000001 , 0x00004991 
+ 00001674  0x000008f0 fetch  0x00000004 , 0x00004960 
+ 00001675  0x000008f1 store  0x00000004 , 0x00004992 
+ 00001676  0x000008f2 arg  0x00000006 , 0x00000002 
+ 00001677  0x000008f3 arg  0x00004990 , 0x00000011 
+ 00001678  0x000008f4 call  0x00000460 
+ 00001679  0x000008f5 branch  0x00000473 
+ 00001680  0x000008f8 fetch  0x00000002 , 0x00004956 
+ 00001681  0x000008f9 increase  0x00000001 , 0x0000003f 
+ 00001682  0x000008fa store  0x00000002 , 0x00004956 
+ 00001683  0x000008fb call  0x000003ae 
+ 00001684  0x000008fc branch  0x00000679 
+ 00012288  0x00000913 call  0x00003bab 
+ 00012289  0x00000917 hjam  0x00000008 , 0x00008006 
+ 00012290  0x00000918 set0  0x00000025 , 0x00000000 
+ 00012291  0x00000919 bpatch  0x00000000 , 0x00004000 
+ 00012292  0x0000091a hfetch  0x00000001 , 0x0000813b 
+ 00012293  0x0000091b store  0x00000001 , 0x000042b8 
+ 00012294  0x0000091c call  0x000060e3 
+ 00012295  0x0000091d clear_stack 
+ 00012296  0x0000091e ncall  0x00007f6b , 0x0000002b 
+ 00012297  0x0000091f call  0x000039fc 
+ 00012298  0x00000920 call  0x0000621d 
+ 00012299  0x00000921 call  0x00003b3c 
+ 00012300  0x00000922 call  0x000042ea 
+ 00012301  0x00000923 set0  0x00000025 , 0x00000000 
+ 00012302  0x00000924 bpatch  0x00000001 , 0x00004000 
+ 00012303  0x00000925 call  0x00006607 
+ 00012304  0x00000926 call  0x0000530c 
+ 00012305  0x00000927 call  0x00007cef 
+ 00012306  0x00000928 call  0x00003d4b 
+ 00012307  0x00000929 ncall  0x00006571 , 0x0000002b 
+ 00012308  0x0000092a set0  0x00000025 , 0x00000000 
+ 00012309  0x0000092b bpatch  0x00000002 , 0x00004000 
+ 00012310  0x0000092c call  0x00003d55 , 0x0000002b 
+ 00012311  0x0000092d call  0x000075e0 
+ 00012312  0x0000092e call  0x00003c29 , 0x0000002b 
+ 00012313  0x00000930 set0  0x00000025 , 0x00000000 
+ 00012314  0x00000931 bpatch  0x00000003 , 0x00004000 
+ 00012315  0x00000932 call  0x000076f7 
+ 00012316  0x00000933 call  0x00007acf 
+ 00012317  0x00000934 call  0x000075e3 
+ 00012318  0x00000935 call  0x00004911 
+ 00012319  0x00000936 set0  0x00000025 , 0x00000000 
+ 00012320  0x00000937 bpatch  0x00000004 , 0x00004000 
+ 00012321  0x00000938 call  0x00003043 
+ 00012322  0x00000939 call  0x00003d60 
+ 00012323  0x0000093a call  0x0000309e 
+ 00012324  0x0000093b call  0x0000333e 
+ 00012325  0x0000093c call  0x000033b3 
+ 00012326  0x0000093d call  0x00003029 
+ 00012327  0x0000093e call  0x00003c53 
+ 00012328  0x0000093f branch  0x00003019 
+ 00012329  0x00000942 call  0x0000302e 
+ 00012330  0x00000943 rtnmark0  0x00000009 
+ 00012331  0x00000944 set0  0x00000009 , 0x00000000 
+ 00012332  0x00000945 call  0x00003260 
+ 00012333  0x00000946 branch  0x0000497d 
+ 00012334  0x00000949 set0  0x00000025 , 0x00000000 
+ 00012335  0x0000094a bpatch  0x00000005 , 0x00004000 
+ 00012336  0x0000094b call  0x0000329f 
+ 00012337  0x0000094c nbranch  0x00003038 , 0x00000005 
+ 00012338  0x0000094d call  0x00003246 
+ 00012339  0x0000094e add  0x00000011 , 0x00000001 , 0x00000006 
+ 00012340  0x0000094f ifetch  0x00000001 , 0x00000006 
+ 00012341  0x00000950 bbit1  0x00000000 , 0x00004915 
+ 00012342  0x00000951 bbit1  0x00000001 , 0x00003188 
+ 00012343  0x00000952 branch  0x0000341f 
+ 00012344  0x00000954 set0  0x00000025 , 0x00000000 
+ 00012345  0x00000955 bpatch  0x00000006 , 0x00004000 
+ 00012346  0x00000956 call  0x00003269 
+ 00012347  0x00000957 copy  0x00000039 , 0x0000003e 
+ 00012348  0x00000958 rtn  0x00000005 
+ 00012349  0x00000959 call  0x00003246 
+ 00012350  0x0000095a fetch  0x00000001 , 0x00000030 
+ 00012351  0x0000095b bbit1  0x00000003 , 0x000030e8 
+ 00012352  0x0000095c fetch  0x00000001 , 0x00000031 
+ 00012353  0x0000095d bbit1  0x00000001 , 0x00003188 
+ 00012354  0x0000095e branch  0x0000341f 
+ 00012355  0x00000967 fetch  0x00000001 , 0x00004271 
+ 00012356  0x00000968 rtn  0x00000034 
+ 00012357  0x00000969 beq  0x00000001 , 0x00003053 
+ 00012358  0x0000096a beq  0x00000002 , 0x00003058 
+ 00012359  0x0000096b beq  0x00000003 , 0x0000305b 
+ 00012360  0x0000096c beq  0x00000005 , 0x00003060 
+ 00012361  0x0000096d beq  0x0000001b , 0x00003050 
+ 00012362  0x0000096e call  0x00003297 
+ 00012363  0x0000096f rtn  0x00000005 
+ 00012364  0x00000970 call  0x0000329a 
+ 00012365  0x00000971 rtn  0x00000005 
+ 00012366  0x00000973 jam  0x00000000 , 0x00004271 
+ 00012367  0x00000974 rtn 
+ 00012368  0x00000977 jam  0x0000001b , 0x000003bf 
+ 00012369  0x00000978 jam  0x00000000 , 0x00004271 
+ 00012370  0x00000979 rtn 
+ 00012371  0x0000097c set1  0x0000001c , 0x00000000 
+ 00012372  0x0000097d set0  0x0000001e , 0x00000000 
+ 00012373  0x0000097e jam  0x000000ff , 0x0000008e 
+ 00012374  0x0000097f jam  0x0000001f , 0x0000008c 
+ 00012375  0x00000980 branch  0x0000304e 
+ 00012376  0x00000983 set0  0x0000001c , 0x00000000 
+ 00012377  0x00000984 force  0x00000000 , 0x0000001b 
+ 00012378  0x00000985 branch  0x0000304e 
+ 00012379  0x00000988 call  0x0000329a 
+ 00012380  0x00000989 rtn  0x00000005 
+ 00012381  0x0000098a force  0x00000001 , 0x00000002 
+ 00012382  0x0000098b jam  0x00000005 , 0x0000016d 
+ 00012383  0x0000098c branch  0x00003068 
+ 00012384  0x0000098f set0  0x00000025 , 0x00000000 
+ 00012385  0x00000990 bpatch  0x00000007 , 0x00004000 
+ 00012386  0x00000992 fetch  0x00000006 , 0x00004273 
+ 00012387  0x00000993 branch  0x0000304e , 0x00000034 
+ 00012388  0x00000994 jam  0x00000001 , 0x0000470a 
+ 00012389  0x00000996 jam  0x00000003 , 0x00000055 
+ 00012390  0x00000997 branch  0x00003067 
+ 00012391  0x0000099a force  0x00000025 , 0x00000002 
+ 00012392  0x0000099c set0  0x00000025 , 0x00000000 
+ 00012393  0x0000099d bpatch  0x00000008 , 0x00004001 
+ 00012394  0x0000099e fetch  0x00000001 , 0x000000f0 
+ 00012395  0x0000099f branch  0x0000306f , 0x00000034 
+ 00012396  0x000009a0 lshift3  0x0000003f , 0x0000003f 
+ 00012397  0x000009a1 lshift4  0x0000003f , 0x0000003f 
+ 00012398  0x000009a2 increase  0xffffffff , 0x0000003f 
+ 00012399  0x000009a4 store  0x00000001 , 0x00004146 
+ 00012400  0x000009a5 store  0x00000001 , 0x000000ef 
+ 00012401  0x000009a6 jam  0x0000001f , 0x0000008d 
+ 00012402  0x000009a7 set0  0x0000000c , 0x00000000 
+ 00012403  0x000009a8 call  0x0000327a 
+ 00012404  0x000009a9 nbranch  0x00003091 , 0x00000005 
+ 00012405  0x000009aa call  0x00003b11 
+ 00012406  0x000009ab store  0x00000001 , 0x00000077 
+ 00012407  0x000009ac storet  0x00000001 , 0x0000007c 
+ 00012408  0x000009ad fetch  0x00000006 , 0x00004273 
+ 00012409  0x000009ae store  0x00000006 , 0x00000040 
+ 00012410  0x000009af set0  0x00000025 , 0x00000000 
+ 00012411  0x000009b0 bpatch  0x00000009 , 0x00004001 
+ 00012412  0x000009b1 call  0x00007ee2 
+ 00012413  0x000009b2 force  0x00000000 , 0x0000003f 
+ 00012414  0x000009b3 compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00012415  0x000009b4 nsetflag  0x00000001 , 0x00000005 , 0x0000003f 
+ 00012416  0x000009b5 set1  0x00000003 , 0x0000003f 
+ 00012417  0x000009b6 store  0x00000001 , 0x00000030 
+ 00012418  0x000009b7 jam  0x00000003 , 0x000009bd 
+ 00012419  0x000009b8 call  0x00007d86 
+ 00012420  0x000009b9 force  0x00000000 , 0x0000003f 
+ 00012421  0x000009ba setflag  0x00000001 , 0x00000004 , 0x0000003f 
+ 00012422  0x000009bb store  0x00000001 , 0x0000004c 
+ 00012423  0x000009bc setarg  0x00000000 
+ 00012424  0x000009bd set1  0x00000001 , 0x0000003f 
+ 00012425  0x000009be store  0x00000001 , 0x00000031 
+ 00012426  0x000009bf enable  0x00000029 
+ 00012427  0x000009c0 call  0x00003260 
+ 00012428  0x000009c1 disable  0x00000029 
+ 00012429  0x000009c2 force  0x00000004 , 0x00000007 
+ 00012430  0x000009c3 fetch  0x00000002 , 0x00004159 
+ 00012431  0x000009c4 call  0x00007ed4 
+ 00012432  0x000009c5 branch  0x0000304e 
+ 00012433  0x000009c7 set0  0x00000025 , 0x00000000 
+ 00012434  0x000009c8 bpatch  0x0000000a , 0x00004001 
+ 00012435  0x000009c9 fetch  0x00000006 , 0x00004273 
+ 00012436  0x000009ca store  0x00000006 , 0x00000040 
+ 00012437  0x000009cb compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00012438  0x000009cc branch  0x00003098 , 0x00000001 
+ 00012439  0x000009cd branch  0x0000304e 
+ 00012440  0x000009cf arg  0x00000100 , 0x00000005 
+ 00012441  0x000009d0 arg  0x00000008 , 0x00000039 
+ 00012442  0x000009d1 call  0x00007e91 
+ 00012443  0x000009d2 jam  0x00000004 , 0x000009bd 
+ 00012444  0x000009d3 call  0x00007d86 
+ 00012445  0x000009d4 branch  0x0000304e 
+ 00012446  0x000009dc rtnmark0  0x0000001c 
+ 00012447  0x000009dd force  0x00000002 , 0x00000007 
+ 00012448  0x000009de call  0x00007ee2 
+ 00012449  0x000009df nsetflag  0x00000034 , 0x0000001c , 0x00000000 
+ 00012450  0x000009e0 nbranch  0x000030a4 , 0x00000034 
+ 00012451  0x000009e1 rtn 
+ 00012452  0x000009e6 set0  0x00000025 , 0x00000000 
+ 00012453  0x000009e7 bpatch  0x0000000b , 0x00004001 
+ 00012454  0x000009e8 fetcht  0x00000002 , 0x0000415b 
+ 00012455  0x000009e9 force  0x00000004 , 0x00000007 
+ 00012456  0x000009ea call  0x0000379f 
+ 00012457  0x000009eb rtn  0x00000028 
+ 00012458  0x000009ec call  0x00003937 
+ 00012459  0x000009ed force  0x00000000 , 0x00000024 
+ 00012460  0x000009ef rtn  0x00000003 
+ 00012461  0x000009f0 set0  0x0000000b , 0x00000000 
+ 00012462  0x000009f1 set0  0x00000000 , 0x00000000 
+ 00012463  0x000009f3 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00012464  0x000009f4 isolate1  0x0000001e , 0x00000000 
+ 00012465  0x000009f5 setflag  0x00000001 , 0x00000002 , 0x00000024 
+ 00012466  0x000009f6 compare  0x00000000 , 0x00000021 , 0x00000002 
+ 00012467  0x000009f7 nbranch  0x000030d0 , 0x00000001 
+ 00012468  0x000009fa set0  0x00000025 , 0x00000000 
+ 00012469  0x000009fb bpatch  0x0000000c , 0x00004001 
+ 00012470  0x000009fc fetch  0x00000001 , 0x00000012 
+ 00012471  0x000009fd increase  0x00000001 , 0x0000003f 
+ 00012472  0x000009fe store  0x00000001 , 0x00000012 
+ 00012473  0x000009ff call  0x0000396e 
+ 00012474  0x00000a00 call  0x00003967 
+ 00012475  0x00000a01 call  0x0000398b 
+ 00012476  0x00000a02 call  0x00003aee 
+ 00012477  0x00000a03 call  0x00003af4 
+ 00012478  0x00000a04 call  0x00003b05 
+ 00012479  0x00000a05 call  0x000036c6 
+ 00012480  0x00000a06 call  0x000030c2 
+ 00012481  0x00000a07 branch  0x000030ac 
+ 00012482  0x00000a0a set0  0x00000025 , 0x00000000 
+ 00012483  0x00000a0b bpatch  0x0000000d , 0x00004001 
+ 00012484  0x00000a0c fetch  0x00000001 , 0x0000008c 
+ 00012485  0x00000a0d increase  0xffffffff , 0x0000003f 
+ 00012486  0x00000a0e store  0x00000001 , 0x0000008c 
+ 00012487  0x00000a0f rtn  0x00000002 
+ 00012488  0x00000a10 jam  0x0000001f , 0x0000008c 
+ 00012489  0x00000a11 fetch  0x00000001 , 0x0000008e 
+ 00012490  0x00000a12 increase  0xffffffff , 0x0000003f 
+ 00012491  0x00000a13 store  0x00000001 , 0x0000008e 
+ 00012492  0x00000a14 rtn  0x00000002 
+ 00012493  0x00000a15 setflip  0x0000001e , 0x00000000 
+ 00012494  0x00000a16 jam  0x000000ff , 0x0000008e 
+ 00012495  0x00000a17 rtn 
+ 00012496  0x00000a1a set0  0x00000025 , 0x00000000 
+ 00012497  0x00000a1b bpatch  0x0000000e , 0x00004001 
+ 00012498  0x00000a1c call  0x0000396e 
+ 00012499  0x00000a1d call  0x00003960 
+ 00012500  0x00000a1e call  0x0000398b 
+ 00012501  0x00000a1f call  0x00003afa 
+ 00012502  0x00000a20 call  0x00003a7f 
+ 00012503  0x00000a21 call  0x00003aa3 
+ 00012504  0x00000a22 branch  0x000030db , 0x00000018 
+ 00012505  0x00000a23 call  0x000030c2 
+ 00012506  0x00000a24 branch  0x000030af 
+ 00012507  0x00000a26 set0  0x00000025 , 0x00000000 
+ 00012508  0x00000a27 bpatch  0x0000000f , 0x00004001 
+ 00012509  0x00000a28 call  0x00003a50 
+ 00012510  0x00000a29 call  0x00003b0d 
+ 00012511  0x00000a2a call  0x00003584 
+ 00012512  0x00000a2b set0  0x00000001 , 0x00000000 
+ 00012513  0x00000a2c rtnmark0  0x0000000b 
+ 00012514  0x00000a2e set0  0x00000025 , 0x00000000 
+ 00012515  0x00000a2f bpatch  0x00000010 , 0x00004002 
+ 00012516  0x00000a31 fetch  0x00000001 , 0x00000013 
+ 00012517  0x00000a32 increase  0x00000001 , 0x0000003f 
+ 00012518  0x00000a33 store  0x00000001 , 0x00000013 
+ 00012519  0x00000a34 rtn 
+ 00012520  0x00000a3d set0  0x00000025 , 0x00000000 
+ 00012521  0x00000a3e bpatch  0x00000011 , 0x00004002 
+ 00012522  0x00000a3f enable  0x00000029 
+ 00012523  0x00000a40 enable  0x00000030 
+ 00012524  0x00000a41 fetch  0x00000002 , 0x00004155 
+ 00012525  0x00000a42 branch  0x000030f1 , 0x00000034 
+ 00012526  0x00000a43 force  0x0000000d , 0x00000007 
+ 00012527  0x00000a44 call  0x00007ee2 
+ 00012528  0x00000a45 nrtn  0x00000034 
+ 00012529  0x00000a47 set0  0x00000025 , 0x00000000 
+ 00012530  0x00000a48 bpatch  0x00000012 , 0x00004002 
+ 00012531  0x00000a49 fetcht  0x00000002 , 0x00004157 
+ 00012532  0x00000a4a force  0x00000028 , 0x00000007 
+ 00012533  0x00000a4b call  0x0000379f 
+ 00012534  0x00000a4c branch  0x0000312f , 0x00000028 
+ 00012535  0x00000a4d force  0x00000004 , 0x00000007 
+ 00012536  0x00000a4e call  0x00007ee2 
+ 00012537  0x00000a4f nbranch  0x00003108 , 0x00000034 
+ 00012538  0x00000a50 fetch  0x00000001 , 0x0000004c 
+ 00012539  0x00000a51 bbit1  0x00000004 , 0x000030fd 
+ 00012540  0x00000a52 branch  0x00003100 
+ 00012541  0x00000a54 arg  0x00000100 , 0x00000005 
+ 00012542  0x00000a55 arg  0x00000008 , 0x00000039 
+ 00012543  0x00000a56 call  0x00007e91 
+ 00012544  0x00000a58 set0  0x00000025 , 0x00000000 
+ 00012545  0x00000a59 bpatch  0x00000013 , 0x00004002 
+ 00012546  0x00000a5a jam  0x00000000 , 0x00000030 
+ 00012547  0x00000a5b call  0x0000530d 
+ 00012548  0x00000a5c jam  0x00000000 , 0x0000470a 
+ 00012549  0x00000a5d jam  0x00000013 , 0x000009bd 
+ 00012550  0x00000a5e call  0x00007d86 
+ 00012551  0x00000a5f branch  0x0000312f 
+ 00012552  0x00000a62 set0  0x00000025 , 0x00000000 
+ 00012553  0x00000a63 bpatch  0x00000014 , 0x00004002 
+ 00012554  0x00000a64 force  0x00000000 , 0x0000000b 
+ 00012555  0x00000a65 until  0x00000023 , 0x00000026 
+ 00012556  0x00000a66 fetch  0x00000001 , 0x000000f1 
+ 00012557  0x00000a67 increase  0xffffffff , 0x0000003f 
+ 00012558  0x00000a68 ixor  0x00000022 , 0x0000003f 
+ 00012559  0x00000a69 compare  0x00000000 , 0x0000003f , 0x00000003 
+ 00012560  0x00000a6a nbranch  0x00003108 , 0x00000001 
+ 00012561  0x00000a6b deposit  0x00000004 
+ 00012562  0x00000a6c store  0x00000001 , 0x00000180 
+ 00012563  0x00000a6d force  0x00000000 , 0x00000026 
+ 00012564  0x00000a6e force  0x00000000 , 0x00000024 
+ 00012565  0x00000a71 set0  0x00000025 , 0x00000000 
+ 00012566  0x00000a72 bpatch  0x00000015 , 0x00004002 
+ 00012567  0x00000a73 branch  0x0000312f , 0x00000003 
+ 00012568  0x00000a74 call  0x00003972 
+ 00012569  0x00000a75 arg  0x00000600 , 0x0000000b 
+ 00012570  0x00000a76 until  0x00000023 , 0x00000026 
+ 00012571  0x00000a78 set0  0x00000025 , 0x00000000 
+ 00012572  0x00000a79 bpatch  0x00000016 , 0x00004002 
+ 00012573  0x00000a7a fetch  0x00000004 , 0x000000f1 
+ 00012574  0x00000a7b iforce  0x00000021 
+ 00012575  0x00000a7c increase  0x00000001 , 0x0000003f 
+ 00012576  0x00000a7d store  0x00000004 , 0x000000f1 
+ 00012577  0x00000a7e isolate1  0x0000000c , 0x00000000 
+ 00012578  0x00000a7f setflag  0x00000001 , 0x00000002 , 0x00000024 
+ 00012579  0x00000a80 compare  0x00000000 , 0x00000021 , 0x00000002 
+ 00012580  0x00000a81 nbranch  0x00003145 , 0x00000001 
+ 00012581  0x00000a82 fetch  0x00000001 , 0x0000000c 
+ 00012582  0x00000a83 increase  0x00000001 , 0x0000003f 
+ 00012583  0x00000a84 store  0x00000001 , 0x0000000c 
+ 00012584  0x00000a85 call  0x00003967 
+ 00012585  0x00000a86 call  0x00003aee 
+ 00012586  0x00000a87 call  0x00003af4 
+ 00012587  0x00000a88 call  0x00003b05 
+ 00012588  0x00000a89 call  0x000036c6 
+ 00012589  0x00000a8a call  0x00003136 
+ 00012590  0x00000a8b branch  0x00003115 
+ 00012591  0x00000a8d set0  0x00000025 , 0x00000000 
+ 00012592  0x00000a8e bpatch  0x00000017 , 0x00004002 
+ 00012593  0x00000a8f disable  0x00000029 
+ 00012594  0x00000a90 fetch  0x00000002 , 0x00004155 
+ 00012595  0x00000a91 rtn  0x00000034 
+ 00012596  0x00000a92 force  0x0000000d , 0x00000007 
+ 00012597  0x00000a93 branch  0x00007ed4 
+ 00012598  0x00000a96 set0  0x00000025 , 0x00000000 
+ 00012599  0x00000a97 bpatch  0x00000018 , 0x00004003 
+ 00012600  0x00000a98 fetch  0x00000001 , 0x0000008d 
+ 00012601  0x00000a99 increase  0xffffffff , 0x0000003f 
+ 00012602  0x00000a9a store  0x00000001 , 0x0000008d 
+ 00012603  0x00000a9b rtn  0x00000002 
+ 00012604  0x00000a9c jam  0x0000001f , 0x0000008d 
+ 00012605  0x00000a9d fetch  0x00000001 , 0x000000ef 
+ 00012606  0x00000a9e increase  0xffffffff , 0x0000003f 
+ 00012607  0x00000a9f store  0x00000001 , 0x000000ef 
+ 00012608  0x00000aa0 rtn  0x00000002 
+ 00012609  0x00000aa1 setflip  0x0000000c , 0x00000000 
+ 00012610  0x00000aa2 fetch  0x00000001 , 0x00004146 
+ 00012611  0x00000aa3 store  0x00000001 , 0x000000ef 
+ 00012612  0x00000aa4 rtn 
+ 00012613  0x00000aa7 set0  0x00000025 , 0x00000000 
+ 00012614  0x00000aa8 bpatch  0x00000019 , 0x00004003 
+ 00012615  0x00000aa9 call  0x00003960 
+ 00012616  0x00000aaa call  0x00003afa 
+ 00012617  0x00000aab call  0x00003a7f 
+ 00012618  0x00000aac call  0x00003aa3 
+ 00012619  0x00000aad branch  0x0000314e , 0x00000018 
+ 00012620  0x00000aae call  0x00003136 
+ 00012621  0x00000aaf branch  0x0000311b 
+ 00012622  0x00000ab1 call  0x000036c6 
+ 00012623  0x00000ab2 fetch  0x00000001 , 0x0000000d 
+ 00012624  0x00000ab3 increase  0x00000001 , 0x0000003f 
+ 00012625  0x00000ab4 store  0x00000001 , 0x0000000d 
+ 00012626  0x00000ab5 force  0x00000000 , 0x0000001b 
+ 00012627  0x00000ab6 fetch  0x00000004 , 0x000000f1 
+ 00012628  0x00000ab8 set0  0x00000025 , 0x00000000 
+ 00012629  0x00000ab9 bpatch  0x0000001a , 0x00004003 
+ 00012630  0x00000aba call  0x00003aec 
+ 00012631  0x00000abb call  0x00003972 
+ 00012632  0x00000abc increase  0x00000001 , 0x00000026 
+ 00012633  0x00000abe and_into  0x000001fd , 0x00000021 
+ 00012634  0x00000abf and_into  0x000001fc , 0x00000024 
+ 00012635  0x00000ac0 call  0x00003967 
+ 00012636  0x00000ac1 call  0x00003aee 
+ 00012637  0x00000ac2 call  0x00003af4 
+ 00012638  0x00000ac3 call  0x00003b05 
+ 00012639  0x00000ac4 deposit  0x00000022 
+ 00012640  0x00000ac5 store  0x00000004 , 0x00000160 
+ 00012641  0x00000ac6 force  0x00000000 , 0x00000004 
+ 00012642  0x00000ac7 force  0x00000002 , 0x00000001 
+ 00012643  0x00000ac8 call  0x00003b0d 
+ 00012644  0x00000ac9 call  0x000037ee 
+ 00012645  0x00000acb set0  0x00000025 , 0x00000000 
+ 00012646  0x00000acc bpatch  0x0000001b , 0x00004003 
+ 00012647  0x00000acd call  0x00003aea 
+ 00012648  0x00000ace or_into  0x00000002 , 0x00000021 
+ 00012649  0x00000acf and_into  0x000001fc , 0x00000024 
+ 00012650  0x00000ad0 call  0x00003960 
+ 00012651  0x00000ad1 call  0x00003afa 
+ 00012652  0x00000ad2 call  0x00003a7f 
+ 00012653  0x00000ad3 call  0x00003aa3 
+ 00012654  0x00000ad4 call  0x000036c6 , 0x00000018 
+ 00012655  0x00000ad5 branch  0x00003175 , 0x00000018 
+ 00012656  0x00000ad6 fetch  0x00000001 , 0x00000010 
+ 00012657  0x00000ad7 branch  0x00003115 , 0x00000034 
+ 00012658  0x00000ad8 increase  0xffffffff , 0x0000003f 
+ 00012659  0x00000ad9 store  0x00000001 , 0x00000010 
+ 00012660  0x00000ada branch  0x00003154 
+ 00012661  0x00000add set0  0x00000025 , 0x00000000 
+ 00012662  0x00000ade bpatch  0x0000001c , 0x00004003 
+ 00012663  0x00000adf fetch  0x00000001 , 0x0000000e 
+ 00012664  0x00000ae0 increase  0x00000001 , 0x0000003f 
+ 00012665  0x00000ae1 store  0x00000001 , 0x0000000e 
+ 00012666  0x00000ae2 call  0x0000348d 
+ 00012667  0x00000ae4 call  0x00003337 
+ 00012668  0x00000ae5 branch  0x00003180 , 0x00000018 
+ 00012669  0x00000ae6 call  0x000034b0 
+ 00012670  0x00000ae7 nbranch  0x0000317b , 0x00000034 
+ 00012671  0x00000ae8 branch  0x00003115 
+ 00012672  0x00000aeb set0  0x00000025 , 0x00000000 
+ 00012673  0x00000aec bpatch  0x0000001d , 0x00004003 
+ 00012674  0x00000aed fetch  0x00000001 , 0x00000030 
+ 00012675  0x00000aee set0  0x00000003 , 0x0000003f 
+ 00012676  0x00000aef store  0x00000001 , 0x00000030 
+ 00012677  0x00000af0 call  0x00003499 
+ 00012678  0x00000af1 disable  0x00000029 
+ 00012679  0x00000af2 rtn 
+ 00012680  0x00000af6 set0  0x00000025 , 0x00000000 
+ 00012681  0x00000af7 bpatch  0x0000001e , 0x00004003 
+ 00012682  0x00000af8 enable  0x00000029 
+ 00012683  0x00000af9 enable  0x00000030 
+ 00012684  0x00000afa call  0x0000321a 
+ 00012685  0x00000afb rtn  0x00000028 
+ 00012686  0x00000afc call  0x00003d42 
+ 00012687  0x00000afd call  0x00003aec 
+ 00012688  0x00000afe add  0x00000022 , 0x00000001 , 0x00000021 
+ 00012689  0x00000aff call  0x00003979 
+ 00012690  0x00000b00 force  0x00000003 , 0x00000024 
+ 00012691  0x00000b01 call  0x000068dc 
+ 00012692  0x00000b02 call  0x000034e7 
+ 00012693  0x00000b03 call  0x00003967 
+ 00012694  0x00000b04 call  0x00003aee 
+ 00012695  0x00000b05 call  0x00003af4 
+ 00012696  0x00000b06 call  0x00003b05 
+ 00012697  0x00000b07 call  0x000037ec 
+ 00012698  0x00000b09 set0  0x00000025 , 0x00000000 
+ 00012699  0x00000b0a bpatch  0x0000001f , 0x00004003 
+ 00012700  0x00000b0b call  0x0000531f 
+ 00012701  0x00000b0c call  0x00003328 
+ 00012702  0x00000b0d nbranch  0x000031a4 , 0x0000002d 
+ 00012703  0x00000b0e call  0x00003b2c 
+ 00012704  0x00000b0f call  0x000037ac 
+ 00012705  0x00000b10 fetch  0x00000001 , 0x0000000f 
+ 00012706  0x00000b11 increase  0x00000001 , 0x0000003f 
+ 00012707  0x00000b12 store  0x00000001 , 0x0000000f 
+ 00012708  0x00000b14 set0  0x00000025 , 0x00000000 
+ 00012709  0x00000b15 bpatch  0x00000020 , 0x00004004 
+ 00012710  0x00000b16 call  0x000068c0 
+ 00012711  0x00000b17 call  0x000031b0 
+ 00012712  0x00000b18 nrtn  0x00000029 
+ 00012713  0x00000b19 call  0x00003775 
+ 00012714  0x00000b1a nbranch  0x000031ad , 0x00000034 
+ 00012715  0x00000b1c disable  0x00000029 
+ 00012716  0x00000b1d rtn 
+ 00012717  0x00000b20 call  0x000034e7 
+ 00012718  0x00000b21 call  0x0000331d 
+ 00012719  0x00000b22 branch  0x0000319a 
+ 00012720  0x00000b26 branch  0x000031b3 , 0x0000002d 
+ 00012721  0x00000b27 call  0x00003b22 
+ 00012722  0x00000b28 branch  0x000031c1 , 0x00000002 
+ 00012723  0x00000b2a call  0x000031cd 
+ 00012724  0x00000b2b nbranch  0x000031c1 , 0x00000028 
+ 00012725  0x00000b2c fetch  0x00000001 , 0x0000004c 
+ 00012726  0x00000b2d rtnbit0  0x00000004 
+ 00012727  0x00000b2e rtnbit1  0x00000003 
+ 00012728  0x00000b2f fetch  0x00000001 , 0x0000004b 
+ 00012729  0x00000b30 rtnbit1  0x00000003 
+ 00012730  0x00000b31 call  0x000031d6 
+ 00012731  0x00000b32 nrtn  0x00000034 
+ 00012732  0x00000b33 fetch  0x00000001 , 0x0000016d 
+ 00012733  0x00000b34 increase  0xffffffff , 0x0000003f 
+ 00012734  0x00000b35 store  0x00000001 , 0x0000016d 
+ 00012735  0x00000b36 nrtn  0x00000034 
+ 00012736  0x00000b37 branch  0x0000561d 
+ 00012737  0x00000b3a set0  0x00000025 , 0x00000000 
+ 00012738  0x00000b3b bpatch  0x00000021 , 0x00004004 
+ 00012739  0x00000b3c call  0x000034b8 
+ 00012740  0x00000b3d disable  0x00000029 
+ 00012741  0x00000b3e fetch  0x00000001 , 0x0000004c 
+ 00012742  0x00000b3f bbit1  0x00000004 , 0x000031c8 
+ 00012743  0x00000b40 rtn 
+ 00012744  0x00000b43 fetch  0x00000001 , 0x0000004c 
+ 00012745  0x00000b44 rtnbit1  0x00000003 
+ 00012746  0x00000b46 arg  0x00000100 , 0x00000005 
+ 00012747  0x00000b47 arg  0x00000008 , 0x00000039 
+ 00012748  0x00000b48 branch  0x00007e91 
+ 00012749  0x00000b4b set0  0x00000025 , 0x00000000 
+ 00012750  0x00000b4c bpatch  0x00000022 , 0x00004004 
+ 00012751  0x00000b4d enable  0x00000028 
+ 00012752  0x00000b4e fetch  0x00000001 , 0x0000004b 
+ 00012753  0x00000b4f rtnbit0  0x00000003 
+ 00012754  0x00000b50 call  0x000031d6 
+ 00012755  0x00000b51 nrtn  0x00000034 
+ 00012756  0x00000b53 disable  0x00000028 
+ 00012757  0x00000b54 rtn 
+ 00012758  0x00000b57 fetch  0x00000001 , 0x00000072 
+ 00012759  0x00000b58 increase  0xffffffff , 0x0000003f 
+ 00012760  0x00000b59 store  0x00000001 , 0x00000072 
+ 00012761  0x00000b5a rtn 
+ 00012762  0x00000b5d set0  0x00000025 , 0x00000000 
+ 00012763  0x00000b5e bpatch  0x00000023 , 0x00004004 
+ 00012764  0x00000b5f fetch  0x00000001 , 0x00000030 
+ 00012765  0x00000b60 bbit1  0x00000007 , 0x000031e4 
+ 00012766  0x00000b61 fetch  0x00000001 , 0x000008d9 
+ 00012767  0x00000b62 branch  0x000031e4 , 0x00000034 
+ 00012768  0x00000b63 jam  0x00000000 , 0x000008d9 
+ 00012769  0x00000b64 jam  0x00000018 , 0x000009bd 
+ 00012770  0x00000b65 call  0x00007d86 
+ 00012771  0x00000b66 branch  0x000031e4 
+ 00012772  0x00000b68 set0  0x00000025 , 0x00000000 
+ 00012773  0x00000b69 bpatch  0x00000024 , 0x00004004 
+ 00012774  0x00000b6a call  0x00003294 
+ 00012775  0x00000b6b fetch  0x00000001 , 0x00000030 
+ 00012776  0x00000b6c set1  0x00000007 , 0x0000003f 
+ 00012777  0x00000b6d store  0x00000001 , 0x00000030 
+ 00012778  0x00000b6e jam  0x00000001 , 0x0000425d 
+ 00012779  0x00000b6f fetch  0x00000001 , 0x00000055 
+ 00012780  0x00000b70 bne  0x00000016 , 0x000031ed 
+ 00012781  0x00000b72 rtn 
+ 00012782  0x00000b75 jam  0x00000001 , 0x000008d9 
+ 00012783  0x00000b77 fetch  0x00000001 , 0x00000030 
+ 00012784  0x00000b78 set0  0x00000007 , 0x0000003f 
+ 00012785  0x00000b79 store  0x00000001 , 0x00000030 
+ 00012786  0x00000b7a rtn 
+ 00012787  0x00000b7f set0  0x00000025 , 0x00000000 
+ 00012788  0x00000b80 bpatch  0x00000025 , 0x00004004 
+ 00012789  0x00000b81 disable  0x00000028 
+ 00012790  0x00000b82 fetch  0x00000001 , 0x00000030 
+ 00012791  0x00000b83 rtnbit0  0x00000001 
+ 00012792  0x00000b84 fetch  0x00000002 , 0x00000032 
+ 00012793  0x00000b85 nrtn  0x00000034 
+ 00012794  0x00000b86 fetch  0x00000004 , 0x00000034 
+ 00012795  0x00000b87 branch  0x000031fe , 0x00000030 
+ 00012796  0x00000b88 isub  0x00000028 , 0x0000003f 
+ 00012797  0x00000b89 branch  0x000031ff 
+ 00012798  0x00000b8b isub  0x00000022 , 0x0000003f 
+ 00012799  0x00000b8d sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00012800  0x00000b8e nrtn  0x00000002 
+ 00012801  0x00000b8f fetch  0x00000001 , 0x00000030 
+ 00012802  0x00000b90 set0  0x00000001 , 0x0000003f 
+ 00012803  0x00000b91 store  0x00000001 , 0x00000030 
+ 00012804  0x00000b92 enable  0x00000028 
+ 00012805  0x00000b93 rtn 
+ 00012806  0x00000b97 copy  0x0000003f , 0x00000002 
+ 00012807  0x00000b98 set0  0x00000025 , 0x00000000 
+ 00012808  0x00000b99 bpatch  0x00000026 , 0x00004004 
+ 00012809  0x00000b9a store  0x00000004 , 0x00000034 
+ 00012810  0x00000b9c jam  0x00000001 , 0x000045f4 
+ 00012811  0x00000b9d fetch  0x00000001 , 0x00000030 
+ 00012812  0x00000b9e set1  0x00000001 , 0x0000003f 
+ 00012813  0x00000b9f store  0x00000001 , 0x00000030 
+ 00012814  0x00000ba0 force  0x00000000 , 0x0000003f 
+ 00012815  0x00000ba1 store  0x00000002 , 0x00000032 
+ 00012816  0x00000ba2 jam  0x00000001 , 0x00000073 
+ 00012817  0x00000ba3 jam  0x00000000 , 0x00000074 
+ 00012818  0x00000ba4 jam  0x00000000 , 0x0000008b 
+ 00012819  0x00000ba5 fetch  0x00000004 , 0x00000034 
+ 00012820  0x00000ba6 copy  0x00000022 , 0x00000002 
+ 00012821  0x00000ba7 isub  0x00000002 , 0x0000003f 
+ 00012822  0x00000ba8 rshift2  0x0000003f , 0x0000003f 
+ 00012823  0x00000ba9 increase  0xfffffff8 , 0x0000003f 
+ 00012824  0x00000baa store  0x00000001 , 0x0000008a 
+ 00012825  0x00000bab rtn 
+ 00012826  0x00000baf set0  0x00000025 , 0x00000000 
+ 00012827  0x00000bb0 bpatch  0x00000027 , 0x00004004 
+ 00012828  0x00000bb1 call  0x000031f3 
+ 00012829  0x00000bb2 nrtn  0x00000028 
+ 00012830  0x00000bb3 disable  0x00000028 
+ 00012831  0x00000bb4 jam  0x00000020 , 0x00000011 
+ 00012832  0x00000bb5 set0  0x0000000b , 0x00000000 
+ 00012833  0x00000bb7 call  0x00003aec 
+ 00012834  0x00000bb8 call  0x0000332b 
+ 00012835  0x00000bb9 bmark1  0x0000000b , 0x0000322f 
+ 00012836  0x00000bba call  0x000034b0 
+ 00012837  0x00000bbb nbranch  0x00003221 , 0x00000034 
+ 00012838  0x00000bbd set0  0x00000025 , 0x00000000 
+ 00012839  0x00000bbe bpatch  0x00000028 , 0x00004005 
+ 00012840  0x00000bbf disable  0x00000028 
+ 00012841  0x00000bc0 deposit  0x00000022 
+ 00012842  0x00000bc1 store  0x00000004 , 0x0000416a 
+ 00012843  0x00000bc2 enable  0x00000030 
+ 00012844  0x00000bc3 enable  0x00000029 
+ 00012845  0x00000bc4 jam  0x0000002a , 0x000009bd 
+ 00012846  0x00000bc5 branch  0x00007d86 
+ 00012847  0x00000bc8 set0  0x00000025 , 0x00000000 
+ 00012848  0x00000bc9 bpatch  0x00000029 , 0x00004005 
+ 00012849  0x00000bca call  0x00003aea 
+ 00012850  0x00000bcb call  0x00003320 
+ 00012851  0x00000bcc disable  0x00000030 
+ 00012852  0x00000bcd disable  0x00000029 
+ 00012853  0x00000bce call  0x000038a7 
+ 00012854  0x00000bcf call  0x0000348d 
+ 00012855  0x00000bd1 set0  0x00000025 , 0x00000000 
+ 00012856  0x00000bd2 bpatch  0x0000002a , 0x00004005 
+ 00012857  0x00000bd3 call  0x000034d9 
+ 00012858  0x00000bd4 branch  0x0000323e , 0x0000002d 
+ 00012859  0x00000bd5 call  0x000034b0 
+ 00012860  0x00000bd6 nbranch  0x00003237 , 0x00000034 
+ 00012861  0x00000bd7 branch  0x00003226 
+ 00012862  0x00000bd9 fetch  0x00000001 , 0x00000031 
+ 00012863  0x00000bda set0  0x00000001 , 0x0000003f 
+ 00012864  0x00000bdb store  0x00000001 , 0x00000031 
+ 00012865  0x00000bdc call  0x00003b2c 
+ 00012866  0x00000bdd call  0x000038d1 
+ 00012867  0x00000bde enable  0x00000028 
+ 00012868  0x00000bdf jam  0x0000002b , 0x000009bd 
+ 00012869  0x00000be0 branch  0x00007d86 
+ 00012870  0x00000be6 set0  0x00000025 , 0x00000000 
+ 00012871  0x00000be7 bpatch  0x0000002b , 0x00004005 
+ 00012872  0x00000be8 set1  0x00000009 , 0x00000000 
+ 00012873  0x00000be9 deposit  0x00000011 
+ 00012874  0x00000bea store  0x00000002 , 0x0000001e 
+ 00012875  0x00000beb force  0x00000050 , 0x00000039 
+ 00012876  0x00000bec arg  0x00000362 , 0x00000005 
+ 00012877  0x00000bed add  0x00000011 , 0x00000001 , 0x00000006 
+ 00012878  0x00000bee ifetch  0x00000001 , 0x00000006 
+ 00012879  0x00000bef copy  0x00000011 , 0x00000006 
+ 00012880  0x00000bf0 bbit1  0x00000000 , 0x00007ecd 
+ 00012881  0x00000bf1 arg  0x00000030 , 0x00000005 
+ 00012882  0x00000bf2 call  0x00007ecd 
+ 00012883  0x00000bf3 disable  0x0000002e 
+ 00012884  0x00000bf4 fetch  0x00000001 , 0x00000077 
+ 00012885  0x00000bf5 iforce  0x00000004 
+ 00012886  0x00000bf6 jam  0x00000001 , 0x0000008a 
+ 00012887  0x00000bf7 branch  0x00003259 , 0x00000029 
+ 00012888  0x00000bf8 jam  0x00000001 , 0x0000008a 
+ 00012889  0x00000bfa fetch  0x00000001 , 0x00000030 
+ 00012890  0x00000bfb rtnbit0  0x00000001 
+ 00012891  0x00000bfc fetch  0x00000001 , 0x00000073 
+ 00012892  0x00000bfd store  0x00000001 , 0x0000008a 
+ 00012893  0x00000bfe fetch  0x00000001 , 0x00000074 
+ 00012894  0x00000bff store  0x00000001 , 0x0000008b 
+ 00012895  0x00000c00 rtn 
+ 00012896  0x00000c03 set0  0x00000025 , 0x00000000 
+ 00012897  0x00000c04 bpatch  0x0000002c , 0x00004005 
+ 00012898  0x00000c05 fetch  0x00000002 , 0x0000001e 
+ 00012899  0x00000c06 iforce  0x00000005 
+ 00012900  0x00000c07 force  0x00000050 , 0x00000039 
+ 00012901  0x00000c08 arg  0x00000362 , 0x00000006 
+ 00012902  0x00000c09 branch  0x00007ecd , 0x00000036 
+ 00012903  0x00000c0a arg  0x00000030 , 0x00000006 
+ 00012904  0x00000c0b branch  0x00007ecd 
+ 00012905  0x00000c10 fetch  0x00000001 , 0x00004281 
+ 00012906  0x00000c11 copy  0x0000003f , 0x00000039 
+ 00012907  0x00000c12 fetcht  0x00000001 , 0x00000015 
+ 00012908  0x00000c14 increase  0x00000001 , 0x00000002 
+ 00012909  0x00000c15 compare  0x00000003 , 0x00000002 , 0x000000ff 
+ 00012910  0x00000c16 nbranch  0x00003270 , 0x00000001 
+ 00012911  0x00000c17 arg  0x00000000 , 0x00000002 
+ 00012912  0x00000c19 storet  0x00000001 , 0x00000015 
+ 00012913  0x00000c1a mul32  0x00000002 , 0x00000050 , 0x0000003f 
+ 00012914  0x00000c1b arg  0x00004040 , 0x00000011 
+ 00012915  0x00000c1c iadd  0x00000011 , 0x00000011 
+ 00012916  0x00000c1d ifetch  0x00000001 , 0x00000011 
+ 00012917  0x00000c1e bbit1  0x00000001 , 0x00003278 
+ 00012918  0x00000c1f rtnbit1  0x00000000 
+ 00012919  0x00000c20 rtnbit1  0x00000003 
+ 00012920  0x00000c22 loop  0x0000326c 
+ 00012921  0x00000c23 rtn 
+ 00012922  0x00000c26 set0  0x00000025 , 0x00000000 
+ 00012923  0x00000c27 bpatch  0x0000002d , 0x00004005 
+ 00012924  0x00000c28 arg  0x000032ad , 0x00000013 
+ 00012925  0x00000c29 call  0x000032a2 
+ 00012926  0x00000c2a nrtn  0x00000005 
+ 00012927  0x00000c2b deposit  0x00000011 
+ 00012928  0x00000c2c store  0x00000002 , 0x0000001e 
+ 00012929  0x00000c2d force  0x00000000 , 0x0000003e 
+ 00012930  0x00000c2e rtn 
+ 00012931  0x00000c33 call  0x000037a9 
+ 00012932  0x00000c34 branch  0x0000328b , 0x00000001 
+ 00012933  0x00000c35 fetch  0x00000002 , 0x0000001e 
+ 00012934  0x00000c36 add  0x0000003f , 0x00000017 , 0x00000005 
+ 00012935  0x00000c37 fetch  0x00000001 , 0x00000047 
+ 00012936  0x00000c38 istore  0x00000001 , 0x00000005 
+ 00012937  0x00000c39 arg  0x000032ed , 0x00000013 
+ 00012938  0x00000c3a branch  0x000032a2 
+ 00012939  0x00000c3d fetch  0x00000001 , 0x00000047 
+ 00012940  0x00000c3e isolate1  0x00000003 , 0x0000003f 
+ 00012941  0x00000c3f branch  0x00003290 , 0x00000001 
+ 00012942  0x00000c40 force  0x00000001 , 0x0000003e 
+ 00012943  0x00000c41 rtn 
+ 00012944  0x00000c43 force  0x00000000 , 0x0000003e 
+ 00012945  0x00000c44 rtn 
+ 00012946  0x00000c48 arg  0x000032ea , 0x00000013 
+ 00012947  0x00000c49 branch  0x000032a2 
+ 00012948  0x00000c4c fetcht  0x00000002 , 0x0000001e 
+ 00012949  0x00000c4d arg  0x00003312 , 0x00000013 
+ 00012950  0x00000c4e branch  0x000032a2 
+ 00012951  0x00000c53 fetcht  0x00000001 , 0x00004272 
+ 00012952  0x00000c55 arg  0x000032b8 , 0x00000013 
+ 00012953  0x00000c56 branch  0x000032a2 
+ 00012954  0x00000c59 set0  0x00000025 , 0x00000000 
+ 00012955  0x00000c5a bpatch  0x0000002e , 0x00004005 
+ 00012956  0x00000c5b fetcht  0x00000006 , 0x00004273 
+ 00012957  0x00000c5d arg  0x000032b1 , 0x00000013 
+ 00012958  0x00000c5e branch  0x000032a2 
+ 00012959  0x00000c61 arg  0x000032be , 0x00000013 
+ 00012960  0x00000c62 branch  0x000032a2 
+ 00012961  0x00000c65 arg  0x00003309 , 0x00000013 
+ 00012962  0x00000c67 set0  0x00000025 , 0x00000000 
+ 00012963  0x00000c68 bpatch  0x0000002f , 0x00004005 
+ 00012964  0x00000c69 arg  0x00004040 , 0x00000011 
+ 00012965  0x00000c6a fetch  0x00000001 , 0x00004281 
+ 00012966  0x00000c6b copy  0x0000003f , 0x00000039 
+ 00012967  0x00000c6d ifetch  0x00000001 , 0x00000011 
+ 00012968  0x00000c6e copy  0x00000013 , 0x0000003d 
+ 00012969  0x00000c70 increase  0x00000050 , 0x00000011 
+ 00012970  0x00000c71 loop  0x000032a7 
+ 00012971  0x00000c72 force  0x00000001 , 0x0000003e 
+ 00012972  0x00000c73 rtn 
+ 00012973  0x00000c76 bbit1  0x00000000 , 0x000032a9 
+ 00012974  0x00000c77 bbit1  0x00000003 , 0x000032a9 
+ 00012975  0x00000c78 force  0x00000000 , 0x0000003e 
+ 00012976  0x00000c79 rtn 
+ 00012977  0x00000c7c bbit1  0x00000003 , 0x000032b3 
+ 00012978  0x00000c7d bbit0  0x00000000 , 0x000032a9 
+ 00012979  0x00000c7f add  0x00000011 , 0x00000010 , 0x00000006 
+ 00012980  0x00000c80 ifetch  0x00000006 , 0x00000006 
+ 00012981  0x00000c81 isub  0x00000002 , 0x0000003e 
+ 00012982  0x00000c82 rtn  0x00000005 
+ 00012983  0x00000c83 branch  0x000032a9 
+ 00012984  0x00000c86 bbit0  0x00000000 , 0x000032a9 
+ 00012985  0x00000c87 add  0x00000011 , 0x00000016 , 0x00000006 
+ 00012986  0x00000c88 ifetch  0x00000001 , 0x00000006 
+ 00012987  0x00000c89 isub  0x00000002 , 0x0000003e 
+ 00012988  0x00000c8a rtn  0x00000005 
+ 00012989  0x00000c8b branch  0x000032a9 
+ 00012990  0x00000c8e bbit0  0x00000001 , 0x000032a9 
+ 00012991  0x00000c90 call  0x000032f6 
+ 00012992  0x00000c91 call  0x000032da 
+ 00012993  0x00000c92 isub  0x00000002 , 0x0000003f 
+ 00012994  0x00000c93 increase  0x00000001 , 0x0000003f 
+ 00012995  0x00000c94 branch  0x000032d4 , 0x00000002 
+ 00012996  0x00000c95 copy  0x00000006 , 0x00000012 
+ 00012997  0x00000c96 store  0x00000009 , 0x000009c6 
+ 00012998  0x00000c97 fetch  0x00000001 , 0x00004565 
+ 00012999  0x00000c98 nbranch  0x000032cc , 0x00000034 
+ 00013000  0x00000c99 fetch  0x00000009 , 0x000009c6 
+ 00013001  0x00000c9a copy  0x00000012 , 0x00000006 
+ 00013002  0x00000c9b increase  0x00000005 , 0x0000003f 
+ 00013003  0x00000c9c branch  0x000032cf 
+ 00013004  0x00000c9e fetch  0x00000009 , 0x000009c6 
+ 00013005  0x00000c9f copy  0x00000012 , 0x00000006 
+ 00013006  0x00000ca0 increase  0x00000014 , 0x0000003f 
+ 00013007  0x00000ca2 nbranch  0x000032a9 , 0x00000002 
+ 00013008  0x00000ca4 copy  0x00000002 , 0x00000021 
+ 00013009  0x00000ca5 call  0x00003302 
+ 00013010  0x00000ca6 force  0x00000000 , 0x0000003e 
+ 00013011  0x00000ca7 rtn 
+ 00013012  0x00000cab iforce  0x00000012 
+ 00013013  0x00000cac add  0x00000011 , 0x00000002 , 0x00000006 
+ 00013014  0x00000cad ifetch  0x00000002 , 0x00000006 
+ 00013015  0x00000cae branch  0x000032d0 , 0x00000034 
+ 00013016  0x00000caf call  0x00003302 
+ 00013017  0x00000cb0 branch  0x000032bf 
+ 00013018  0x00000cb3 rshift16  0x0000003f , 0x0000000b 
+ 00013019  0x00000cb4 rshift8  0x0000000b , 0x0000000b 
+ 00013020  0x00000cb5 branch  0x000032e4 , 0x00000005 
+ 00013021  0x00000cb6 compare  0x0000000f , 0x0000000b , 0x0000000f 
+ 00013022  0x00000cb7 nrtn  0x00000001 
+ 00013023  0x00000cb8 rshift16  0x00000002 , 0x0000000b 
+ 00013024  0x00000cb9 rshift8  0x0000000b , 0x0000000b 
+ 00013025  0x00000cba nrtn  0x00000005 
+ 00013026  0x00000cbb set1  0x0000001c , 0x00000002 
+ 00013027  0x00000cbc rtn 
+ 00013028  0x00000cbe rshift16  0x00000002 , 0x0000000b 
+ 00013029  0x00000cbf rshift8  0x0000000b , 0x0000000b 
+ 00013030  0x00000cc0 compare  0x0000000f , 0x0000000b , 0x0000000f 
+ 00013031  0x00000cc1 nrtn  0x00000001 
+ 00013032  0x00000cc2 set1  0x0000001c , 0x0000003f 
+ 00013033  0x00000cc3 rtn 
+ 00013034  0x00000cc6 bbit0  0x00000000 , 0x000032a9 
+ 00013035  0x00000cc7 force  0x00000000 , 0x0000003e 
+ 00013036  0x00000cc8 rtn 
+ 00013037  0x00000ccb bbit0  0x00000000 , 0x000032a9 
+ 00013038  0x00000ccc add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013039  0x00000ccd ifetch  0x00000001 , 0x00000006 
+ 00013040  0x00000cce bbit1  0x00000000 , 0x000032a9 
+ 00013041  0x00000ccf add  0x00000011 , 0x00000017 , 0x00000006 
+ 00013042  0x00000cd0 ifetch  0x00000001 , 0x00000006 
+ 00013043  0x00000cd1 bbit0  0x00000003 , 0x000032a9 
+ 00013044  0x00000cd2 force  0x00000000 , 0x0000003e 
+ 00013045  0x00000cd3 rtn 
+ 00013046  0x00000cd6 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013047  0x00000cd7 ifetcht  0x00000001 , 0x00000006 
+ 00013048  0x00000cd8 deposit  0x00000022 
+ 00013049  0x00000cd9 isolate1  0x00000001 , 0x00000002 
+ 00013050  0x00000cda add  0x00000011 , 0x00000004 , 0x00000006 
+ 00013051  0x00000cdb ifetcht  0x00000004 , 0x00000006 
+ 00013052  0x00000cdc rtn  0x00000001 
+ 00013053  0x00000cdd add  0x00000011 , 0x00000008 , 0x00000006 
+ 00013054  0x00000cde ifetch  0x00000006 , 0x00000006 
+ 00013055  0x00000cdf call  0x000038e5 
+ 00013056  0x00000ce0 deposit  0x00000028 
+ 00013057  0x00000ce1 rtn 
+ 00013058  0x00000ce4 add  0x00000011 , 0x00000002 , 0x00000006 
+ 00013059  0x00000ce5 add  0x00000011 , 0x00000004 , 0x00000005 
+ 00013060  0x00000ce6 ifetch  0x00000002 , 0x00000006 
+ 00013061  0x00000ce7 iadd  0x00000002 , 0x0000000b 
+ 00013062  0x00000ce8 deposit  0x0000000b 
+ 00013063  0x00000ce9 istore  0x00000004 , 0x00000005 
+ 00013064  0x00000cea branch  0x000049dc 
+ 00013065  0x00000cee bbit0  0x00000001 , 0x000032a9 
+ 00013066  0x00000cef call  0x000032f6 
+ 00013067  0x00000cf0 iadd  0x0000001b , 0x0000003f 
+ 00013068  0x00000cf1 iadd  0x0000001b , 0x0000003f 
+ 00013069  0x00000cf2 iadd  0x00000007 , 0x0000003f 
+ 00013070  0x00000cf3 isub  0x00000002 , 0x0000003e 
+ 00013071  0x00000cf4 nbranch  0x000032a9 , 0x00000002 
+ 00013072  0x00000cf5 force  0x00000000 , 0x0000003e 
+ 00013073  0x00000cf6 rtn 
+ 00013074  0x00000cf9 bbit0  0x00000000 , 0x000032a9 
+ 00013075  0x00000cfa deposit  0x00000002 
+ 00013076  0x00000cfb isub  0x00000011 , 0x0000003e 
+ 00013077  0x00000cfc branch  0x000032a9 , 0x0000003e 
+ 00013078  0x00000cfd add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013079  0x00000cfe ifetch  0x00000001 , 0x00000006 
+ 00013080  0x00000cff bbit1  0x00000000 , 0x000032a9 
+ 00013081  0x00000d00 ifetch  0x00000001 , 0x00000011 
+ 00013082  0x00000d01 set0  0x00000007 , 0x0000003f 
+ 00013083  0x00000d02 istore  0x00000001 , 0x00000011 
+ 00013084  0x00000d03 branch  0x000032a9 
+ 00013085  0x00000d07 set0  0x00000025 , 0x00000000 
+ 00013086  0x00000d08 bpatch  0x00000030 , 0x00004006 
+ 00013087  0x00000d09 call  0x00003aec 
+ 00013088  0x00000d0b add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013089  0x00000d0c call  0x00003979 
+ 00013090  0x00000d0d force  0x00000003 , 0x00000024 
+ 00013091  0x00000d0e call  0x00003967 
+ 00013092  0x00000d0f call  0x00003aee 
+ 00013093  0x00000d10 call  0x00003af4 
+ 00013094  0x00000d11 call  0x00003b05 
+ 00013095  0x00000d12 branch  0x000037ec 
+ 00013096  0x00000d15 set0  0x00000025 , 0x00000000 
+ 00013097  0x00000d16 bpatch  0x00000031 , 0x00004006 
+ 00013098  0x00000d17 call  0x00003aea 
+ 00013099  0x00000d19 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013100  0x00000d1a call  0x00003979 
+ 00013101  0x00000d1b force  0x00000003 , 0x00000024 
+ 00013102  0x00000d1c call  0x00003960 
+ 00013103  0x00000d1d call  0x00003481 
+ 00013104  0x00000d1e call  0x00003a86 
+ 00013105  0x00000d1f call  0x00003afa 
+ 00013106  0x00000d20 call  0x00003a7f 
+ 00013107  0x00000d22 call  0x00003aa3 
+ 00013108  0x00000d23 nrtn  0x00000018 
+ 00013109  0x00000d24 call  0x00003a50 
+ 00013110  0x00000d25 branch  0x00003582 
+ 00013111  0x00000d2a set0  0x00000025 , 0x00000000 
+ 00013112  0x00000d2b bpatch  0x00000032 , 0x00004006 
+ 00013113  0x00000d2c fetch  0x00000001 , 0x00000180 
+ 00013114  0x00000d2d iforce  0x00000004 
+ 00013115  0x00000d2e force  0x00000001 , 0x00000001 
+ 00013116  0x00000d2f call  0x0000331d 
+ 00013117  0x00000d30 branch  0x00003328 
+ 00013118  0x00000d3c fetch  0x00000001 , 0x00004133 
+ 00013119  0x00000d3d rtnbit0  0x00000000 
+ 00013120  0x00000d3e force  0x00000005 , 0x00000007 
+ 00013121  0x00000d3f call  0x00007ee2 
+ 00013122  0x00000d40 nrtn  0x00000034 
+ 00013123  0x00000d41 fetcht  0x00000002 , 0x0000414d 
+ 00013124  0x00000d42 force  0x00000004 , 0x00000007 
+ 00013125  0x00000d43 call  0x0000379f 
+ 00013126  0x00000d44 rtn  0x00000028 
+ 00013127  0x00000d45 call  0x0000334e 
+ 00013128  0x00000d46 force  0x00000005 , 0x00000007 
+ 00013129  0x00000d47 fetch  0x00000002 , 0x0000414f 
+ 00013130  0x00000d48 nbranch  0x00007ed4 , 0x00000018 
+ 00013131  0x00000d49 random  0x0000003f 
+ 00013132  0x00000d4a iand  0x00000035 , 0x0000003f 
+ 00013133  0x00000d4b branch  0x00007ed4 
+ 00013134  0x00000d4f set0  0x00000025 , 0x00000000 
+ 00013135  0x00000d50 bpatch  0x00000033 , 0x00004006 
+ 00013136  0x00000d51 jam  0x00000000 , 0x00000180 
+ 00013137  0x00000d52 disable  0x00000030 
+ 00013138  0x00000d53 disable  0x0000002e 
+ 00013139  0x00000d54 call  0x00003937 
+ 00013140  0x00000d55 and  0x00000022 , 0x000001fc , 0x00000021 
+ 00013141  0x00000d56 force  0x00000001 , 0x00000024 
+ 00013142  0x00000d57 call  0x0000396e 
+ 00013143  0x00000d58 call  0x00003960 
+ 00013144  0x00000d59 setflip  0x0000001d , 0x00000000 
+ 00013145  0x00000d5a fetch  0x00000001 , 0x00000006 
+ 00013146  0x00000d5b increase  0x00000001 , 0x0000003f 
+ 00013147  0x00000d5c store  0x00000001 , 0x00000006 
+ 00013148  0x00000d5d call  0x0000398b 
+ 00013149  0x00000d5e call  0x00003a7f 
+ 00013150  0x00000d5f call  0x00003aab 
+ 00013151  0x00000d60 nrtn  0x00000018 
+ 00013152  0x00000d61 set0  0x00000025 , 0x00000000 
+ 00013153  0x00000d62 bpatch  0x00000034 , 0x00004006 
+ 00013154  0x00000d63 force  0x00000000 , 0x0000001b 
+ 00013155  0x00000d64 call  0x00003992 
+ 00013156  0x00000d65 fetch  0x00000001 , 0x00000007 
+ 00013157  0x00000d66 increase  0x00000001 , 0x0000003f 
+ 00013158  0x00000d67 store  0x00000001 , 0x00000007 
+ 00013159  0x00000d68 call  0x0000396e 
+ 00013160  0x00000d69 call  0x00003aea 
+ 00013161  0x00000d6a or_into  0x00000002 , 0x00000021 
+ 00013162  0x00000d6b force  0x00000001 , 0x00000024 
+ 00013163  0x00000d6c call  0x00003967 
+ 00013164  0x00000d6d call  0x0000398b 
+ 00013165  0x00000d6e call  0x00003aee 
+ 00013166  0x00000d6f call  0x00003aff 
+ 00013167  0x00000d70 deposit  0x00000022 
+ 00013168  0x00000d71 store  0x00000004 , 0x00000160 
+ 00013169  0x00000d72 call  0x00003b05 
+ 00013170  0x00000d73 force  0x00000002 , 0x00000001 
+ 00013171  0x00000d74 force  0x00000000 , 0x00000004 
+ 00013172  0x00000d75 call  0x00003b0d 
+ 00013173  0x00000d76 call  0x000037ee 
+ 00013174  0x00000d77 call  0x0000337a 
+ 00013175  0x00000d78 and_into  0x000001fd , 0x00000021 
+ 00013176  0x00000d79 increase  0x00000001 , 0x00000026 
+ 00013177  0x00000d7a rtn 
+ 00013178  0x00000d7d set0  0x00000025 , 0x00000000 
+ 00013179  0x00000d7e bpatch  0x00000035 , 0x00004006 
+ 00013180  0x00000d7f fetch  0x00000001 , 0x00004171 
+ 00013181  0x00000d80 rtn  0x00000034 
+ 00013182  0x00000d81 arg  0x000001b1 , 0x00000005 
+ 00013183  0x00000d82 fetch  0x00000001 , 0x000045ae 
+ 00013184  0x00000d83 copy  0x0000003f , 0x00000039 
+ 00013185  0x00000d84 increase  0x00000001 , 0x0000003f 
+ 00013186  0x00000d85 istore  0x00000001 , 0x00000005 
+ 00013187  0x00000d86 copy  0x00000005 , 0x00000002 
+ 00013188  0x00000d87 increase  0x00000001 , 0x0000003f 
+ 00013189  0x00000d88 store  0x00000002 , 0x0000427e 
+ 00013190  0x00000d89 copy  0x00000002 , 0x00000005 
+ 00013191  0x00000d8a setarg  0x00000009 
+ 00013192  0x00000d8b istore  0x00000001 , 0x00000005 
+ 00013193  0x00000d8c arg  0x000045af , 0x00000006 
+ 00013194  0x00000d8d call  0x00007ecd 
+ 00013195  0x00000d8f arg  0x00004625 , 0x00000013 
+ 00013196  0x00000d90 arg  0x00000004 , 0x00000039 
+ 00013197  0x00000d91 call  0x0000339d 
+ 00013198  0x00000d92 arg  0x0000460f , 0x00000013 
+ 00013199  0x00000d93 arg  0x00000001 , 0x00000039 
+ 00013200  0x00000d94 call  0x0000339d 
+ 00013201  0x00000d96 force  0x0000000a , 0x00000001 
+ 00013202  0x00000d97 jam  0x00000002 , 0x0000427d 
+ 00013203  0x00000d98 setarg  0x000001b1 
+ 00013204  0x00000d99 store  0x00000002 , 0x0000016e 
+ 00013205  0x00000d9a call  0x00003aea 
+ 00013206  0x00000d9b call  0x00003967 
+ 00013207  0x00000d9c call  0x00003aee 
+ 00013208  0x00000d9d call  0x00003aff 
+ 00013209  0x00000d9e call  0x00003b05 
+ 00013210  0x00000d9f call  0x00003b0d 
+ 00013211  0x00000da0 call  0x000037ee 
+ 00013212  0x00000da1 rtn 
+ 00013213  0x00000da5 copy  0x00000005 , 0x00000002 
+ 00013214  0x00000da6 copy  0x00000013 , 0x00000006 
+ 00013215  0x00000da7 ifetch  0x00000001 , 0x00000006 
+ 00013216  0x00000da8 rtn  0x00000034 
+ 00013217  0x00000daa lshift  0x0000003f , 0x0000003f 
+ 00013218  0x00000dab loop  0x000033a1 
+ 00013219  0x00000dac copy  0x0000003f , 0x00000011 
+ 00013220  0x00000dad increase  0x00000002 , 0x0000003f 
+ 00013221  0x00000dae copy  0x0000003f , 0x00000007 
+ 00013222  0x00000daf fetch  0x00000002 , 0x0000427e 
+ 00013223  0x00000db0 iadd  0x00000007 , 0x0000003f 
+ 00013224  0x00000db1 store  0x00000002 , 0x0000427e 
+ 00013225  0x00000db2 copy  0x00000002 , 0x00000005 
+ 00013226  0x00000db3 copy  0x00000011 , 0x0000003f 
+ 00013227  0x00000db4 increase  0x00000001 , 0x0000003f 
+ 00013228  0x00000db5 istore  0x00000001 , 0x00000005 
+ 00013229  0x00000db6 copy  0x00000013 , 0x00000006 
+ 00013230  0x00000db7 ifetch  0x00000001 , 0x00000006 
+ 00013231  0x00000db8 ifetch  0x00000001 , 0x00000006 
+ 00013232  0x00000db9 istore  0x00000001 , 0x00000005 
+ 00013233  0x00000dba copy  0x00000011 , 0x00000039 
+ 00013234  0x00000dbb branch  0x00007ecd 
+ 00013235  0x00000dc2 fetch  0x00000001 , 0x00004133 
+ 00013236  0x00000dc3 rtnbit0  0x00000001 
+ 00013237  0x00000dc4 force  0x00000006 , 0x00000007 
+ 00013238  0x00000dc5 call  0x00007ee2 
+ 00013239  0x00000dc6 nrtn  0x00000034 
+ 00013240  0x00000dc7 fetcht  0x00000002 , 0x00004151 
+ 00013241  0x00000dc8 force  0x00000028 , 0x00000007 
+ 00013242  0x00000dc9 call  0x0000379f 
+ 00013243  0x00000dca rtn  0x00000028 
+ 00013244  0x00000dcb force  0x00000000 , 0x00000004 
+ 00013245  0x00000dcc jam  0x00000008 , 0x00000010 
+ 00013246  0x00000dcd set0  0x0000000b , 0x00000000 
+ 00013247  0x00000dce call  0x000033c3 
+ 00013248  0x00000dcf force  0x00000006 , 0x00000007 
+ 00013249  0x00000dd0 fetch  0x00000002 , 0x00004153 
+ 00013250  0x00000dd1 branch  0x00007ed4 
+ 00013251  0x00000dd5 set0  0x00000025 , 0x00000000 
+ 00013252  0x00000dd6 bpatch  0x00000036 , 0x00004006 
+ 00013253  0x00000dd7 disable  0x00000030 
+ 00013254  0x00000dd8 call  0x00003937 
+ 00013255  0x00000dd9 fetch  0x00000001 , 0x00000008 
+ 00013256  0x00000dda increase  0x00000001 , 0x0000003f 
+ 00013257  0x00000ddb store  0x00000001 , 0x00000008 
+ 00013258  0x00000ddc force  0x00000000 , 0x00000026 
+ 00013259  0x00000ddd call  0x00003979 
+ 00013260  0x00000dde add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013261  0x00000ddf force  0x00000002 , 0x00000024 
+ 00013262  0x00000de0 set0  0x00000025 , 0x00000000 
+ 00013263  0x00000de1 bpatch  0x00000037 , 0x00004006 
+ 00013264  0x00000de2 call  0x00003960 
+ 00013265  0x00000de3 call  0x00003a7f 
+ 00013266  0x00000de4 call  0x00003aab 
+ 00013267  0x00000de5 nrtn  0x00000018 
+ 00013268  0x00000de6 call  0x00003992 
+ 00013269  0x00000de7 fetch  0x00000001 , 0x00000009 
+ 00013270  0x00000de8 increase  0x00000001 , 0x0000003f 
+ 00013271  0x00000de9 store  0x00000001 , 0x00000009 
+ 00013272  0x00000dea force  0x00000000 , 0x0000001b 
+ 00013273  0x00000deb call  0x00003aea 
+ 00013274  0x00000dec or_into  0x00000002 , 0x00000021 
+ 00013275  0x00000ded force  0x00000001 , 0x00000024 
+ 00013276  0x00000dee call  0x00003967 
+ 00013277  0x00000def call  0x00003aee 
+ 00013278  0x00000df0 call  0x00003aff 
+ 00013279  0x00000df1 call  0x00003b05 
+ 00013280  0x00000df2 call  0x000036c6 
+ 00013281  0x00000df3 force  0x00000000 , 0x00000004 
+ 00013282  0x00000df4 arg  0x00000600 , 0x0000000b 
+ 00013283  0x00000df5 until  0x00000029 , 0x00000026 
+ 00013284  0x00000df6 or_into  0x00000003 , 0x00000028 
+ 00013285  0x00000df7 and_into  0x000001fd , 0x00000021 
+ 00013286  0x00000df9 set0  0x00000025 , 0x00000000 
+ 00013287  0x00000dfa bpatch  0x00000038 , 0x00004007 
+ 00013288  0x00000dfb increase  0x00000001 , 0x00000026 
+ 00013289  0x00000dfc call  0x00003960 
+ 00013290  0x00000dfd call  0x00003a7f 
+ 00013291  0x00000dfe call  0x00003a9d 
+ 00013292  0x00000dff nbranch  0x000033f0 , 0x00000018 
+ 00013293  0x00000e00 call  0x00003b0d 
+ 00013294  0x00000e01 call  0x00003584 
+ 00013295  0x00000e02 bmark1  0x0000000b , 0x000033f8 
+ 00013296  0x00000e04 set0  0x00000025 , 0x00000000 
+ 00013297  0x00000e05 bpatch  0x00000039 , 0x00004007 
+ 00013298  0x00000e06 fetch  0x00000001 , 0x00000010 
+ 00013299  0x00000e07 rtn  0x00000034 
+ 00013300  0x00000e08 increase  0xffffffff , 0x0000003f 
+ 00013301  0x00000e09 store  0x00000001 , 0x00000010 
+ 00013302  0x00000e0a call  0x00003aec 
+ 00013303  0x00000e0b branch  0x000033e6 
+ 00013304  0x00000e0f set0  0x00000025 , 0x00000000 
+ 00013305  0x00000e10 bpatch  0x0000003a , 0x00004007 
+ 00013306  0x00000e11 set0  0x00000001 , 0x00000028 
+ 00013307  0x00000e12 set1  0x00000000 , 0x00000028 
+ 00013308  0x00000e13 fetch  0x00000001 , 0x0000000a 
+ 00013309  0x00000e14 increase  0x00000001 , 0x0000003f 
+ 00013310  0x00000e15 store  0x00000001 , 0x0000000a 
+ 00013311  0x00000e16 call  0x00003aea 
+ 00013312  0x00000e17 or_into  0x00000002 , 0x00000021 
+ 00013313  0x00000e18 call  0x00003967 
+ 00013314  0x00000e19 call  0x00003aee 
+ 00013315  0x00000e1a call  0x00003aff 
+ 00013316  0x00000e1b call  0x00003b05 
+ 00013317  0x00000e1c call  0x000036c6 
+ 00013318  0x00000e1e compare  0x00000003 , 0x00000028 , 0x00000003 
+ 00013319  0x00000e1f branch  0x0000340a , 0x00000001 
+ 00013320  0x00000e20 until  0x0000003e , 0x00000017 
+ 00013321  0x00000e21 branch  0x00003406 
+ 00013322  0x00000e23 fetch  0x00000004 , 0x00000164 
+ 00013323  0x00000e24 or_into  0x00000003 , 0x0000003f 
+ 00013324  0x00000e25 icopy  0x00000028 
+ 00013325  0x00000e28 set0  0x00000025 , 0x00000000 
+ 00013326  0x00000e29 bpatch  0x0000003b , 0x00004007 
+ 00013327  0x00000e2a fetch  0x00000006 , 0x00000177 
+ 00013328  0x00000e2b store  0x00000006 , 0x00000040 
+ 00013329  0x00000e2c call  0x0000348d 
+ 00013330  0x00000e2e call  0x000034d9 
+ 00013331  0x00000e2f branch  0x00003417 , 0x0000002d 
+ 00013332  0x00000e30 call  0x000034b0 
+ 00013333  0x00000e31 nbranch  0x00003412 , 0x00000034 
+ 00013334  0x00000e32 rtn 
+ 00013335  0x00000e36 set0  0x00000025 , 0x00000000 
+ 00013336  0x00000e37 bpatch  0x0000003c , 0x00004007 
+ 00013337  0x00000e38 call  0x00003499 
+ 00013338  0x00000e39 call  0x0000327a 
+ 00013339  0x00000e3a nrtn  0x00000005 
+ 00013340  0x00000e3b jam  0x00000000 , 0x00000031 
+ 00013341  0x00000e3c call  0x000038d1 
+ 00013342  0x00000e3d branch  0x00003260 
+ 00013343  0x00000e41 set0  0x00000025 , 0x00000000 
+ 00013344  0x00000e42 bpatch  0x0000003d , 0x00004007 
+ 00013345  0x00000e43 call  0x000038e1 
+ 00013346  0x00000e44 call  0x00003447 
+ 00013347  0x00000e45 rtn  0x00000028 
+ 00013348  0x00000e47 set0  0x00000025 , 0x00000000 
+ 00013349  0x00000e48 bpatch  0x0000003e , 0x00004007 
+ 00013350  0x00000e49 call  0x00003d42 
+ 00013351  0x00000e4a call  0x000068c0 
+ 00013352  0x00000e4b call  0x00003579 
+ 00013353  0x00000e4c nbranch  0x00003434 , 0x0000002d 
+ 00013354  0x00000e4d call  0x00003b2c 
+ 00013355  0x00000e4e call  0x000068dc 
+ 00013356  0x00000e4f call  0x000034e7 
+ 00013357  0x00000e50 call  0x000037de 
+ 00013358  0x00000e51 call  0x000037ac 
+ 00013359  0x00000e52 call  0x0000531f 
+ 00013360  0x00000e53 fetch  0x00000001 , 0x0000000b 
+ 00013361  0x00000e54 increase  0x00000001 , 0x0000003f 
+ 00013362  0x00000e55 store  0x00000001 , 0x0000000b 
+ 00013363  0x00000e56 call  0x000038d1 
+ 00013364  0x00000e58 set0  0x00000025 , 0x00000000 
+ 00013365  0x00000e59 bpatch  0x0000003f , 0x00004007 
+ 00013366  0x00000e5a call  0x00003ca0 
+ 00013367  0x00000e5b call  0x00003b22 
+ 00013368  0x00000e5c branch  0x0000343e , 0x00000002 
+ 00013369  0x00000e5d call  0x000031cd 
+ 00013370  0x00000e5e nbranch  0x0000343e , 0x00000028 
+ 00013371  0x00000e5f call  0x00003775 
+ 00013372  0x00000e60 nbranch  0x00003424 , 0x00000034 
+ 00013373  0x00000e61 rtn 
+ 00013374  0x00000e64 set0  0x00000025 , 0x00000000 
+ 00013375  0x00000e65 bpatch  0x00000040 , 0x00004008 
+ 00013376  0x00000e66 jam  0x00000000 , 0x00000150 
+ 00013377  0x00000e67 jam  0x00000000 , 0x0000017e 
+ 00013378  0x00000e68 call  0x000034b8 
+ 00013379  0x00000e69 set0  0x00000011 , 0x00000000 
+ 00013380  0x00000e6a call  0x00007f80 
+ 00013381  0x00000e6b fetch  0x00000001 , 0x00000030 
+ 00013382  0x00000e6c rtn 
+ 00013383  0x00000e70 set0  0x00000025 , 0x00000000 
+ 00013384  0x00000e71 bpatch  0x00000041 , 0x00004008 
+ 00013385  0x00000e72 call  0x000031f3 
+ 00013386  0x00000e73 nrtn  0x00000028 
+ 00013387  0x00000e74 copy  0x00000004 , 0x00000002 
+ 00013388  0x00000e75 call  0x00003b11 
+ 00013389  0x00000e76 store  0x00000001 , 0x00000180 
+ 00013390  0x00000e77 copy  0x00000002 , 0x00000004 
+ 00013391  0x00000e78 jam  0x00000020 , 0x00000011 
+ 00013392  0x00000e7a set0  0x00000025 , 0x00000000 
+ 00013393  0x00000e7b bpatch  0x00000042 , 0x00004008 
+ 00013394  0x00000e7c call  0x00003aec 
+ 00013395  0x00000e7d force  0x00000002 , 0x00000001 
+ 00013396  0x00000e7e call  0x000037d5 
+ 00013397  0x00000e7f deposit  0x00000022 
+ 00013398  0x00000e80 store  0x00000004 , 0x00000160 
+ 00013399  0x00000e81 call  0x000037ec 
+ 00013400  0x00000e82 call  0x00003aea 
+ 00013401  0x00000e83 enable  0x0000002f 
+ 00013402  0x00000e84 call  0x0000355a 
+ 00013403  0x00000e85 branch  0x00003463 , 0x00000018 
+ 00013404  0x00000e86 call  0x00003992 
+ 00013405  0x00000e87 call  0x000034b0 
+ 00013406  0x00000e88 nbranch  0x00003450 , 0x00000034 
+ 00013407  0x00000e89 rtnmark0  0x00000004 
+ 00013408  0x00000e8a jam  0x00000034 , 0x0000007c 
+ 00013409  0x00000e8b set1  0x00000003 , 0x00000000 
+ 00013410  0x00000e8c rtn 
+ 00013411  0x00000e8e enable  0x00000030 
+ 00013412  0x00000e8f call  0x0000348d 
+ 00013413  0x00000e90 call  0x00003937 
+ 00013414  0x00000e92 set0  0x00000025 , 0x00000000 
+ 00013415  0x00000e93 bpatch  0x00000043 , 0x00004008 
+ 00013416  0x00000e94 call  0x00003337 
+ 00013417  0x00000e95 branch  0x00003470 , 0x00000018 
+ 00013418  0x00000e96 call  0x000034b0 
+ 00013419  0x00000e97 nbranch  0x00003466 , 0x00000034 
+ 00013420  0x00000e98 disable  0x00000030 
+ 00013421  0x00000e99 deposit  0x00000028 
+ 00013422  0x00000e9a store  0x00000004 , 0x0000416a 
+ 00013423  0x00000e9b rtn 
+ 00013424  0x00000e9d enable  0x00000029 
+ 00013425  0x00000e9e bmark0  0x00000004 , 0x00003476 
+ 00013426  0x00000e9f set0  0x00000004 , 0x00000000 
+ 00013427  0x00000ea0 jam  0x00000003 , 0x0000007c 
+ 00013428  0x00000ea1 jam  0x00000033 , 0x0000007d 
+ 00013429  0x00000ea2 call  0x00005903 
+ 00013430  0x00000ea4 deposit  0x00000004 
+ 00013431  0x00000ea5 store  0x00000001 , 0x00000077 
+ 00013432  0x00000ea6 force  0x00000000 , 0x0000003f 
+ 00013433  0x00000ea7 store  0x00000006 , 0x00000038 
+ 00013434  0x00000ea8 fetch  0x00000001 , 0x00000031 
+ 00013435  0x00000ea9 set1  0x00000001 , 0x0000003f 
+ 00013436  0x00000eaa store  0x00000001 , 0x00000031 
+ 00013437  0x00000eab call  0x00003b2c 
+ 00013438  0x00000eac disable  0x00000029 
+ 00013439  0x00000ead enable  0x00000028 
+ 00013440  0x00000eae rtn 
+ 00013441  0x00000eb3 set0  0x00000025 , 0x00000000 
+ 00013442  0x00000eb4 bpatch  0x00000044 , 0x00004008 
+ 00013443  0x00000eb5 disable  0x0000002d 
+ 00013444  0x00000eb6 set0  0x00000005 , 0x00000000 
+ 00013445  0x00000eb7 set0  0x0000000a , 0x00000000 
+ 00013446  0x00000eb8 set0  0x00000010 , 0x00000000 
+ 00013447  0x00000eb9 set0  0x0000000f , 0x00000000 
+ 00013448  0x00000eba fetch  0x00000001 , 0x00000047 
+ 00013449  0x00000ebb set0  0x00000005 , 0x0000003f 
+ 00013450  0x00000ebc set1  0x00000004 , 0x0000003f 
+ 00013451  0x00000ebd store  0x00000001 , 0x00000047 
+ 00013452  0x00000ebe rtn 
+ 00013453  0x00000ec1 set0  0x00000025 , 0x00000000 
+ 00013454  0x00000ec2 bpatch  0x00000045 , 0x00004008 
+ 00013455  0x00000ec3 jam  0x00000020 , 0x00000011 
+ 00013456  0x00000ec4 jam  0x00000050 , 0x00000047 
+ 00013457  0x00000ec5 fetch  0x00000002 , 0x0000415f 
+ 00013458  0x00000ec6 store  0x00000002 , 0x0000003e 
+ 00013459  0x00000ec7 deposit  0x00000022 
+ 00013460  0x00000ec8 store  0x00000004 , 0x0000416a 
+ 00013461  0x00000ec9 rtn  0x00000030 
+ 00013462  0x00000eca deposit  0x00000028 
+ 00013463  0x00000ecb store  0x00000004 , 0x0000416a 
+ 00013464  0x00000ecc rtn 
+ 00013465  0x00000ecf set0  0x00000025 , 0x00000000 
+ 00013466  0x00000ed0 bpatch  0x00000046 , 0x00004008 
+ 00013467  0x00000ed1 call  0x0000531b 
+ 00013468  0x00000ed2 call  0x000034b4 
+ 00013469  0x00000ed3 store  0x00000001 , 0x00000046 
+ 00013470  0x00000ed4 setarg  0x00000000 
+ 00013471  0x00000ed5 store  0x00000002 , 0x00000286 
+ 00013472  0x00000ed6 setarg  0x00001c80 
+ 00013473  0x00000ed7 store  0x00000002 , 0x00000051 
+ 00013474  0x00000ed8 fetch  0x00000001 , 0x00000030 
+ 00013475  0x00000ed9 set1  0x00000000 , 0x0000003f 
+ 00013476  0x00000eda store  0x00000001 , 0x00000030 
+ 00013477  0x00000edb jam  0x00000000 , 0x0000004b 
+ 00013478  0x00000edc jam  0x00000000 , 0x0000004c 
+ 00013479  0x00000edd jam  0x00000000 , 0x0000009f 
+ 00013480  0x00000ede branch  0x00003b2c 
+ 00013481  0x00000ee2 set0  0x00000025 , 0x00000000 
+ 00013482  0x00000ee3 bpatch  0x00000047 , 0x00004008 
+ 00013483  0x00000ee4 force  0x00000000 , 0x0000003f 
+ 00013484  0x00000ee5 store  0x00000008 , 0x00004261 
+ 00013485  0x00000ee6 istore  0x00000008 , 0x00000005 
+ 00013486  0x00000ee7 call  0x000031ef 
+ 00013487  0x00000ee8 branch  0x00003294 
+ 00013488  0x00000eeb fetch  0x00000001 , 0x00000011 
+ 00013489  0x00000eec increase  0xffffffff , 0x0000003f 
+ 00013490  0x00000eed store  0x00000001 , 0x00000011 
+ 00013491  0x00000eee rtn 
+ 00013492  0x00000ef1 fetch  0x00000001 , 0x0000416f 
+ 00013493  0x00000ef2 increase  0x00000001 , 0x0000003f 
+ 00013494  0x00000ef3 store  0x00000001 , 0x0000416f 
+ 00013495  0x00000ef4 rtn 
+ 00013496  0x00000ef8 set0  0x00000025 , 0x00000000 
+ 00013497  0x00000ef9 bpatch  0x00000048 , 0x00004009 
+ 00013498  0x00000efa fetch  0x00000001 , 0x00004271 
+ 00013499  0x00000efb beq  0x00000003 , 0x000034be 
+ 00013500  0x00000efc fetch  0x00000001 , 0x00000048 
+ 00013501  0x00000efd bne  0x00000001 , 0x000034c2 
+ 00013502  0x00000eff call  0x00003f9d 
+ 00013503  0x00000f00 nbranch  0x000034c2 , 0x00000005 
+ 00013504  0x00000f01 call  0x000031ca 
+ 00013505  0x00000f02 jam  0x00000000 , 0x00004271 
+ 00013506  0x00000f04 set0  0x00000025 , 0x00000000 
+ 00013507  0x00000f05 bpatch  0x00000049 , 0x00004009 
+ 00013508  0x00000f06 call  0x00003e12 
+ 00013509  0x00000f07 call  0x0000376a 
+ 00013510  0x00000f08 jam  0x00000002 , 0x000009bd 
+ 00013511  0x00000f09 call  0x00007d86 
+ 00013512  0x00000f0a call  0x0000530d 
+ 00013513  0x00000f0b call  0x000042eb 
+ 00013514  0x00000f0c call  0x000075f4 
+ 00013515  0x00000f0d fetch  0x00000001 , 0x00000030 
+ 00013516  0x00000f0e set0  0x00000000 
+ 00013517  0x00000f0f store  0x00000001 , 0x00000030 
+ 00013518  0x00000f10 jam  0x00000000 , 0x0000470a 
+ 00013519  0x00000f12 fetch  0x00000001 , 0x0000004c 
+ 00013520  0x00000f13 compare  0x00000000 , 0x0000003f , 0x000000c0 
+ 00013521  0x00000f14 branch  0x000034d3 , 0x00000001 
+ 00013522  0x00000f15 set0  0x00000001 , 0x00000000 
+ 00013523  0x00000f17 fetch  0x00000001 , 0x00000047 
+ 00013524  0x00000f18 bbit0  0x00000003 , 0x000034d5 
+ 00013525  0x00000f1a fetch  0x00000001 , 0x0000004b 
+ 00013526  0x00000f1b rtnbit0  0x00000006 
+ 00013527  0x00000f1c set0  0x00000002 , 0x00000000 
+ 00013528  0x00000f1d rtn 
+ 00013529  0x00000f20 set0  0x00000025 , 0x00000000 
+ 00013530  0x00000f21 bpatch  0x0000004a , 0x00004009 
+ 00013531  0x00000f22 fetch  0x00000001 , 0x00000173 
+ 00013532  0x00000f23 rtn  0x00000034 
+ 00013533  0x00000f24 icopy  0x00000004 
+ 00013534  0x00000f25 call  0x00003579 
+ 00013535  0x00000f26 nrtn  0x0000002d 
+ 00013536  0x00000f27 force  0x00000000 , 0x00000001 
+ 00013537  0x00000f28 call  0x000037de 
+ 00013538  0x00000f29 deposit  0x00000004 
+ 00013539  0x00000f2a store  0x00000001 , 0x00000077 
+ 00013540  0x00000f2b force  0x00000000 , 0x0000003f 
+ 00013541  0x00000f2c store  0x00000001 , 0x00000173 
+ 00013542  0x00000f2d rtn 
+ 00013543  0x00000f34 set0  0x00000025 , 0x00000000 
+ 00013544  0x00000f35 bpatch  0x0000004b , 0x00004009 
+ 00013545  0x00000f36 fetch  0x00000001 , 0x00000030 
+ 00013546  0x00000f37 bbit0  0x00000002 , 0x000034f5 
+ 00013547  0x00000f38 force  0x00000007 , 0x00000001 
+ 00013548  0x00000f39 bmark0  0x00000007 , 0x000034f4 
+ 00013549  0x00000f3a call  0x000037a9 
+ 00013550  0x00000f3b nbranch  0x000034f5 , 0x00000001 
+ 00013551  0x00000f3c branch  0x000034f5 , 0x0000002e 
+ 00013552  0x00000f3d call  0x00003523 
+ 00013553  0x00000f3e setarg  0x00000002 
+ 00013554  0x00000f3f store  0x00000002 , 0x00004168 
+ 00013555  0x00000f40 rtn 
+ 00013556  0x00000f42 nrtn  0x0000002e 
+ 00013557  0x00000f44 set0  0x00000025 , 0x00000000 
+ 00013558  0x00000f45 bpatch  0x0000004c , 0x00004009 
+ 00013559  0x00000f46 call  0x00003283 
+ 00013560  0x00000f47 nbranch  0x00003508 , 0x00000005 
+ 00013561  0x00000f48 fetch  0x00000001 , 0x00000047 
+ 00013562  0x00000f49 bbit0  0x00000003 , 0x00003511 
+ 00013563  0x00000f4b bmark1  0x00000005 , 0x00003515 
+ 00013564  0x00000f4c fetch  0x00000001 , 0x0000017e 
+ 00013565  0x00000f4d bbit1  0x00000006 , 0x0000351c 
+ 00013566  0x00000f4e fetch  0x00000002 , 0x00004168 
+ 00013567  0x00000f4f increase  0xffffffff , 0x0000003f 
+ 00013568  0x00000f50 store  0x00000002 , 0x00004168 
+ 00013569  0x00000f51 branch  0x00003505 , 0x00000034 
+ 00013570  0x00000f52 fetch  0x00000001 , 0x00004165 
+ 00013571  0x00000f53 iforce  0x00000001 
+ 00013572  0x00000f54 rtn 
+ 00013573  0x00000f57 set0  0x00000025 , 0x00000000 
+ 00013574  0x00000f58 bpatch  0x0000004d , 0x00004009 
+ 00013575  0x00000f59 call  0x00003703 
+ 00013576  0x00000f5b call  0x000037a9 
+ 00013577  0x00000f5c branch  0x00003511 , 0x00000001 
+ 00013578  0x00000f5d call  0x00005621 
+ 00013579  0x00000f5e branch  0x00003520 , 0x00000028 
+ 00013580  0x00000f5f fetch  0x00000001 , 0x0000004b 
+ 00013581  0x00000f60 bbit1  0x00000006 , 0x00003522 
+ 00013582  0x00000f61 bmark1  0x00000005 , 0x00003515 
+ 00013583  0x00000f62 fetch  0x00000001 , 0x0000017e 
+ 00013584  0x00000f63 bbit1  0x00000006 , 0x0000351c 
+ 00013585  0x00000f65 force  0x00000001 , 0x00000001 
+ 00013586  0x00000f66 rtn  0x00000029 
+ 00013587  0x00000f67 force  0x00000000 , 0x00000001 
+ 00013588  0x00000f68 rtn 
+ 00013589  0x00000f6a set0  0x00000025 , 0x00000000 
+ 00013590  0x00000f6b bpatch  0x0000004e , 0x00004009 
+ 00013591  0x00000f6c fetch  0x00000001 , 0x00000019 
+ 00013592  0x00000f6d iforce  0x00000001 
+ 00013593  0x00000f6e rtnne  0x00000001 
+ 00013594  0x00000f6f force  0x00000000 , 0x00000001 
+ 00013595  0x00000f70 rtn 
+ 00013596  0x00000f72 fetch  0x00000001 , 0x00000157 
+ 00013597  0x00000f73 and  0x0000003f , 0x0000000f , 0x00000001 
+ 00013598  0x00000f74 set1  0x00000005 , 0x00000000 
+ 00013599  0x00000f75 rtn 
+ 00013600  0x00000f77 force  0x00000013 , 0x00000001 
+ 00013601  0x00000f78 branch  0x00003523 
+ 00013602  0x00000f7a call  0x0000352d 
+ 00013603  0x00000f7d set0  0x00000025 , 0x00000000 
+ 00013604  0x00000f7e bpatch  0x0000004f , 0x00004009 
+ 00013605  0x00000f7f fetcht  0x00000001 , 0x00000047 
+ 00013606  0x00000f80 set1  0x00000003 , 0x00000002 
+ 00013607  0x00000f81 storet  0x00000001 , 0x00000047 
+ 00013608  0x00000f82 deposit  0x00000001 
+ 00013609  0x00000f83 store  0x00000001 , 0x00004165 
+ 00013610  0x00000f84 setarg  0x0000ffff 
+ 00013611  0x00000f85 store  0x00000002 , 0x00004168 
+ 00013612  0x00000f86 rtn 
+ 00013613  0x00000f89 set0  0x00000025 , 0x00000000 
+ 00013614  0x00000f8a bpatch  0x00000050 , 0x0000400a 
+ 00013615  0x00000f8b fetch  0x00000001 , 0x0000004c 
+ 00013616  0x00000f8c isolate1  0x00000005 , 0x0000003f 
+ 00013617  0x00000f8d fetch  0x00000002 , 0x0000427e 
+ 00013618  0x00000f8e branch  0x00003544 , 0x00000001 
+ 00013619  0x00000f8f force  0x00000003 , 0x00000001 
+ 00013620  0x00000f90 sub  0x0000003f , 0x00000011 , 0x0000003e 
+ 00013621  0x00000f91 rtn  0x00000002 
+ 00013622  0x00000f92 force  0x00000004 , 0x00000001 
+ 00013623  0x00000f93 sub  0x0000003f , 0x0000001b , 0x0000003e 
+ 00013624  0x00000f94 rtn  0x00000002 
+ 00013625  0x00000f95 force  0x0000000a , 0x00000001 
+ 00013626  0x00000f96 sub  0x0000003f , 0x00000079 , 0x0000003e 
+ 00013627  0x00000f97 rtn  0x00000002 
+ 00013628  0x00000f98 force  0x0000000b , 0x00000001 
+ 00013629  0x00000f99 sub  0x0000003f , 0x000000b7 , 0x0000003e 
+ 00013630  0x00000f9a rtn  0x00000002 
+ 00013631  0x00000f9b force  0x0000000e , 0x00000001 
+ 00013632  0x00000f9c sub  0x0000003f , 0x000000e0 , 0x0000003e 
+ 00013633  0x00000f9d rtn  0x00000002 
+ 00013634  0x00000f9e force  0x0000000f , 0x00000001 
+ 00013635  0x00000f9f rtn 
+ 00013636  0x00000fa1 force  0x00000003 , 0x00000001 
+ 00013637  0x00000fa2 sub  0x0000003f , 0x00000011 , 0x0000003e 
+ 00013638  0x00000fa3 rtn  0x00000002 
+ 00013639  0x00000fa4 force  0x00000004 , 0x00000001 
+ 00013640  0x00000fa5 sub  0x0000003f , 0x00000036 , 0x0000003e 
+ 00013641  0x00000fa6 rtn  0x00000002 
+ 00013642  0x00000fa7 force  0x0000000a , 0x00000001 
+ 00013643  0x00000fa8 arg  0x0000016f , 0x00000002 
+ 00013644  0x00000fa9 isub  0x00000002 , 0x0000003e 
+ 00013645  0x00000faa nrtn  0x00000002 
+ 00013646  0x00000fab force  0x0000000e , 0x00000001 
+ 00013647  0x00000fac arg  0x000002a7 , 0x00000002 
+ 00013648  0x00000fad isub  0x00000002 , 0x0000003e 
+ 00013649  0x00000fae nrtn  0x00000002 
+ 00013650  0x00000faf force  0x0000000f , 0x00000001 
+ 00013651  0x00000fb0 rtn 
+ 00013652  0x00000fba fetch  0x00000001 , 0x00000030 
+ 00013653  0x00000fbb bbit0  0x00000001 , 0x00003559 
+ 00013654  0x00000fbc fetch  0x00000002 , 0x00000032 
+ 00013655  0x00000fbd branch  0x00003559 , 0x00000034 
+ 00013656  0x00000fbe nbranch  0x0000355b , 0x0000002e 
+ 00013657  0x00000fc0 call  0x00003aec 
+ 00013658  0x00000fc2 add  0x00000028 , 0x00000001 , 0x00000021 
+ 00013659  0x00000fc4 enable  0x00000010 
+ 00013660  0x00000fc5 fetch  0x00000002 , 0x0000003e 
+ 00013661  0x00000fc6 rshift  0x0000003f , 0x0000003f 
+ 00013662  0x00000fc7 arg  0x00000500 , 0x00000002 
+ 00013663  0x00000fc8 iadd  0x00000002 , 0x0000003f 
+ 00013664  0x00000fc9 call  0x00003abd 
+ 00013665  0x00000fca call  0x00003982 
+ 00013666  0x00000fcb force  0x00000003 , 0x00000024 
+ 00013667  0x00000fcc call  0x00003960 
+ 00013668  0x00000fcd call  0x00003481 
+ 00013669  0x00000fce call  0x00003a86 
+ 00013670  0x00000fcf set0  0x00000025 , 0x00000000 
+ 00013671  0x00000fd0 bpatch  0x00000051 , 0x0000400a 
+ 00013672  0x00000fd1 fetch  0x00000002 , 0x0000003e 
+ 00013673  0x00000fd2 rshift  0x0000003f , 0x0000003f 
+ 00013674  0x00000fd3 call  0x00003abd 
+ 00013675  0x00000fd4 call  0x00003a7f 
+ 00013676  0x00000fd5 enable  0x0000000d 
+ 00013677  0x00000fd6 fetch  0x00000002 , 0x0000003e 
+ 00013678  0x00000fd7 arg  0x000003bb , 0x00000002 
+ 00013679  0x00000fd8 iadd  0x00000002 , 0x0000001b 
+ 00013680  0x00000fd9 correlate  0x0000003e , 0x00000003 
+ 00013681  0x00000fda copy  0x0000001a , 0x00000002 
+ 00013682  0x00000fdb storet  0x00000006 , 0x00000099 
+ 00013683  0x00000fdc disable  0x0000000d 
+ 00013684  0x00000fdd nrtn  0x00000018 
+ 00013685  0x00000fde arg  0x000003bb , 0x00000029 
+ 00013686  0x00000fdf copy  0x00000021 , 0x00000028 
+ 00013687  0x00000fe0 branch  0x00003bed , 0x0000002b 
+ 00013688  0x00000fe1 rtn 
+ 00013689  0x00000fe5 set0  0x00000025 , 0x00000000 
+ 00013690  0x00000fe6 bpatch  0x00000052 , 0x0000400a 
+ 00013691  0x00000fe7 call  0x00003554 
+ 00013692  0x00000fe8 nbranch  0x00003992 , 0x00000018 
+ 00013693  0x00000fe9 call  0x00003a50 
+ 00013694  0x00000fea bmark0  0x00000011 , 0x00003582 
+ 00013695  0x00000feb fetch  0x00000002 , 0x000000f5 
+ 00013696  0x00000fec increase  0x00000001 , 0x0000003f 
+ 00013697  0x00000fed store  0x00000002 , 0x000000f5 
+ 00013698  0x00000fef rshift  0x00000021 , 0x00000002 
+ 00013699  0x00000ff0 or  0x00000002 , 0x00000040 , 0x0000000e 
+ 00013700  0x00000ff2 set0  0x00000025 , 0x00000000 
+ 00013701  0x00000ff3 bpatch  0x00000053 , 0x0000400a 
+ 00013702  0x00000ff4 enable  0x00000007 
+ 00013703  0x00000ff5 enable  0x0000000a 
+ 00013704  0x00000ff6 enable  0x0000000b 
+ 00013705  0x00000ff7 parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013706  0x00000ff8 rshift8  0x0000000c , 0x0000003f 
+ 00013707  0x00000ff9 store  0x00000001 , 0x0000015c 
+ 00013708  0x00000ffa parse  0x00000003 , 0x00000000 , 0x00000004 
+ 00013709  0x00000ffb inject  0x00000000 , 0x00000007 
+ 00013710  0x00000ffc copy  0x0000000c , 0x0000003f 
+ 00013711  0x00000ffd store  0x00000001 , 0x00000019 
+ 00013712  0x00000ffe parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013713  0x00000fff rshift8  0x0000000c , 0x0000003f 
+ 00013714  0x00001000 store  0x00000001 , 0x0000015d 
+ 00013715  0x00001001 fetch  0x00000001 , 0x00000019 
+ 00013716  0x00001002 sub  0x0000003f , 0x00000003 , 0x0000003e 
+ 00013717  0x00001003 branch  0x0000359a , 0x00000002 
+ 00013718  0x00001004 beq  0x00000007 , 0x0000359a 
+ 00013719  0x00001005 fetch  0x00000001 , 0x0000004c 
+ 00013720  0x00001006 isolate1  0x00000005 , 0x0000003f 
+ 00013721  0x00001007 setflag  0x00000001 , 0x00000001 , 0x00000015 
+ 00013722  0x00001009 set0  0x00000025 , 0x00000000 
+ 00013723  0x0000100a bpatch  0x00000054 , 0x0000400a 
+ 00013724  0x0000100b parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013725  0x0000100c disable  0x0000000b 
+ 00013726  0x0000100d disable  0x0000000a 
+ 00013727  0x0000100e branch  0x000036a8 , 0x00000006 
+ 00013728  0x0000100f bmark0  0x00000011 , 0x000035a4 
+ 00013729  0x00001010 fetch  0x00000002 , 0x000000f7 
+ 00013730  0x00001011 increase  0x00000001 , 0x0000003f 
+ 00013731  0x00001012 store  0x00000002 , 0x000000f7 
+ 00013732  0x00001014 set0  0x00000025 , 0x00000000 
+ 00013733  0x00001015 bpatch  0x00000055 , 0x0000400a 
+ 00013734  0x00001016 fetch  0x00000001 , 0x0000015c 
+ 00013735  0x00001017 compare  0x00000000 , 0x0000003f , 0x00000007 
+ 00013736  0x00001018 setflag  0x00000001 , 0x0000000a , 0x00000000 
+ 00013737  0x00001019 branch  0x000035b5 , 0x00000001 
+ 00013738  0x0000101a icompare  0x00000007 , 0x00000004 
+ 00013739  0x0000101b branch  0x000035b4 , 0x00000001 
+ 00013740  0x0000101c bmark0  0x00000007 , 0x000036c6 
+ 00013741  0x0000101d fetcht  0x00000001 , 0x000000af 
+ 00013742  0x0000101e icompare  0x00000007 , 0x00000002 
+ 00013743  0x0000101f nbranch  0x000036c6 , 0x00000001 
+ 00013744  0x00001020 fetch  0x00000001 , 0x00000047 
+ 00013745  0x00001021 set0  0x00000005 , 0x0000003f 
+ 00013746  0x00001022 set1  0x00000004 , 0x0000003f 
+ 00013747  0x00001023 store  0x00000001 , 0x00000047 
+ 00013748  0x00001025 enable  0x0000002d 
+ 00013749  0x00001027 set0  0x00000025 , 0x00000000 
+ 00013750  0x00001028 bpatch  0x00000056 , 0x0000400a 
+ 00013751  0x00001029 fetch  0x00000001 , 0x00000019 
+ 00013752  0x0000102a icopy  0x00000001 
+ 00013753  0x0000102b bmark1  0x0000000a , 0x000035c5 
+ 00013754  0x0000102c fetcht  0x00000001 , 0x0000015d 
+ 00013755  0x0000102d fetch  0x00000001 , 0x00000047 
+ 00013756  0x0000102e set0  0x00000000 , 0x0000003f 
+ 00013757  0x0000102f isolate1  0x00000000 , 0x00000002 
+ 00013758  0x00001030 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00013759  0x00001031 isolate1  0x00000001 , 0x00000002 
+ 00013760  0x00001032 setflag  0x00000001 , 0x00000001 , 0x0000003f 
+ 00013761  0x00001033 store  0x00000001 , 0x00000047 
+ 00013762  0x00001034 isolate0  0x00000001 , 0x00000002 
+ 00013763  0x00001035 branch  0x000035c5 , 0x00000001 
+ 00013764  0x00001036 call  0x00003703 
+ 00013765  0x00001038 set0  0x00000025 , 0x00000000 
+ 00013766  0x00001039 bpatch  0x00000057 , 0x0000400a 
+ 00013767  0x0000103a arg  0x00000000 , 0x00000002 
+ 00013768  0x0000103b call  0x00003ab4 
+ 00013769  0x0000103c and  0x00000001 , 0x0000000f , 0x0000003f 
+ 00013770  0x0000103d beq  0x00000001 , 0x000035f4 
+ 00013771  0x0000103e beq  0x00000000 , 0x000036c6 
+ 00013772  0x0000103f beq  0x00000002 , 0x000036d3 
+ 00013773  0x00001040 fetcht  0x00000001 , 0x0000015d 
+ 00013774  0x00001041 fetch  0x00000001 , 0x00000047 
+ 00013775  0x00001042 icompare  0x00000004 , 0x00000002 
+ 00013776  0x00001043 nbranch  0x000035d4 , 0x00000001 
+ 00013777  0x00001044 bmark0  0x0000000a , 0x000035d3 
+ 00013778  0x00001045 bbit0  0x00000007 , 0x000035d4 
+ 00013779  0x00001047 set1  0x0000000f , 0x00000000 
+ 00013780  0x00001049 set0  0x00000025 , 0x00000000 
+ 00013781  0x0000104a bpatch  0x00000058 , 0x0000400b 
+ 00013782  0x0000104b deposit  0x00000001 
+ 00013783  0x0000104c beq  0x00000003 , 0x000035f6 
+ 00013784  0x0000104d beq  0x00000004 , 0x000035fa 
+ 00013785  0x0000104e beq  0x00000007 , 0x000035e4 
+ 00013786  0x0000104f beq  0x00000008 , 0x000035f9 
+ 00013787  0x00001050 arg  0x00000004 , 0x00000002 
+ 00013788  0x00001051 call  0x00003ab4 
+ 00013789  0x00001052 beq  0x0000000a , 0x000035f5 
+ 00013790  0x00001053 beq  0x0000000b , 0x000035f8 
+ 00013791  0x00001054 arg  0x00000008 , 0x00000002 
+ 00013792  0x00001055 call  0x00003ab4 
+ 00013793  0x00001056 beq  0x0000000e , 0x000035f5 
+ 00013794  0x00001057 beq  0x0000000f , 0x000035f8 
+ 00013795  0x00001058 rtn 
+ 00013796  0x0000105c set0  0x00000025 , 0x00000000 
+ 00013797  0x0000105d bpatch  0x00000059 , 0x0000400b 
+ 00013798  0x0000105e enable  0x0000000d 
+ 00013799  0x0000105f enable  0x00000009 
+ 00013800  0x00001060 enable  0x0000000e 
+ 00013801  0x00001061 arg  0x000000d0 , 0x00000005 
+ 00013802  0x00001062 force  0x0000001e , 0x00000039 
+ 00013803  0x00001064 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013804  0x00001065 rshift3  0x0000000c , 0x0000003f 
+ 00013805  0x00001066 istore  0x00000001 , 0x00000005 
+ 00013806  0x00001067 loop  0x000035eb 
+ 00013807  0x00001068 bmark0  0x00000007 , 0x000036c6 
+ 00013808  0x00001069 parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00013809  0x0000106a nsetflag  0x00000006 , 0x00000008 , 0x00000000 
+ 00013810  0x0000106b branch  0x000036b5 , 0x00000006 
+ 00013811  0x0000106c branch  0x00003696 
+ 00013812  0x00001070 branch  0x000036c6 
+ 00013813  0x00001074 set1  0x00000010 , 0x00000000 
+ 00013814  0x00001076 enable  0x0000000c 
+ 00013815  0x00001077 branch  0x000035fb 
+ 00013816  0x0000107b set1  0x00000010 , 0x00000000 
+ 00013817  0x0000107d set1  0x00000002 , 0x00000015 
+ 00013818  0x0000107f enable  0x0000000d 
+ 00013819  0x00001081 set0  0x00000025 , 0x00000000 
+ 00013820  0x00001082 bpatch  0x0000005a , 0x0000400b 
+ 00013821  0x00001083 bmark1  0x00000001 , 0x000036c6 
+ 00013822  0x00001084 isolate0  0x00000001 , 0x00000015 
+ 00013823  0x00001085 branch  0x00003608 , 0x00000001 
+ 00013824  0x00001086 disable  0x00000007 
+ 00013825  0x00001087 enable  0x0000000d 
+ 00013826  0x00001088 disable  0x0000000c 
+ 00013827  0x00001089 add  0x00000022 , 0x00000002 , 0x0000000b 
+ 00013828  0x0000108a correlate  0x00000022 , 0x00000026 
+ 00013829  0x0000108b nbranch  0x000036b5 , 0x00000018 
+ 00013830  0x0000108c set1  0x00000010 , 0x00000000 
+ 00013831  0x0000108d enable  0x00000007 
+ 00013832  0x0000108f set0  0x00000025 , 0x00000000 
+ 00013833  0x00001090 bpatch  0x0000005b , 0x0000400b 
+ 00013834  0x00001091 enable  0x0000000e 
+ 00013835  0x00001092 enable  0x00000009 
+ 00013836  0x00001093 parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013837  0x00001094 rshift8  0x0000000c , 0x0000003f 
+ 00013838  0x00001095 store  0x00000001 , 0x0000017f 
+ 00013839  0x00001096 parse  0x00000003 , 0x00000000 , 0x00000005 
+ 00013840  0x00001097 bmark1  0x00000010 , 0x00003614 
+ 00013841  0x00001098 rshift3  0x0000000c , 0x00000039 
+ 00013842  0x00001099 rshift3  0x00000039 , 0x00000039 
+ 00013843  0x0000109a branch  0x00003617 
+ 00013844  0x0000109c parse  0x00000003 , 0x00000000 , 0x00000005 
+ 00013845  0x0000109d rshift  0x0000000c , 0x00000039 
+ 00013846  0x0000109e parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013847  0x000010a0 set0  0x00000025 , 0x00000000 
+ 00013848  0x000010a1 bpatch  0x0000005c , 0x0000400b 
+ 00013849  0x000010a2 deposit  0x00000039 
+ 00013850  0x000010a3 store  0x00000002 , 0x0000015e 
+ 00013851  0x000010a4 branch  0x0000365b , 0x00000034 
+ 00013852  0x000010a5 isub  0x00000035 , 0x0000003e 
+ 00013853  0x000010a6 branch  0x000036b5 , 0x00000002 
+ 00013854  0x000010a7 set0  0x00000025 , 0x00000000 
+ 00013855  0x000010a8 bpatch  0x0000005d , 0x0000400b 
+ 00013856  0x000010a9 set0  0x00000000 , 0x00000000 
+ 00013857  0x000010aa fetch  0x00000001 , 0x0000017f 
+ 00013858  0x000010ab and_into  0x00000003 , 0x0000003f 
+ 00013859  0x000010ac arg  0x00000475 , 0x00000005 
+ 00013860  0x000010ad beq  0x00000003 , 0x0000362b 
+ 00013861  0x000010ae bmark1  0x00000011 , 0x00003657 
+ 00013862  0x000010b0 fetch  0x00000001 , 0x0000017f 
+ 00013863  0x000010b1 and_into  0x00000003 , 0x0000003f 
+ 00013864  0x000010b2 beq  0x00000002 , 0x00003630 
+ 00013865  0x000010b3 beq  0x00000001 , 0x00003645 
+ 00013866  0x000010b4 branch  0x000036b5 
+ 00013867  0x000010b7 fetch  0x00000002 , 0x0000015e 
+ 00013868  0x000010b8 sub  0x0000003f , 0x00000070 , 0x0000003e 
+ 00013869  0x000010b9 nbranch  0x000036b5 , 0x00000002 
+ 00013870  0x000010ba bmark1  0x0000000f , 0x00003696 
+ 00013871  0x000010bb branch  0x00003657 
+ 00013872  0x000010bf set0  0x00000025 , 0x00000000 
+ 00013873  0x000010c0 bpatch  0x0000005e , 0x0000400b 
+ 00013874  0x000010c1 bmark1  0x0000000f , 0x00003696 
+ 00013875  0x000010c2 fetch  0x00000002 , 0x0000015e 
+ 00013876  0x000010c3 arg  0x000002e0 , 0x00000002 
+ 00013877  0x000010c4 isub  0x00000002 , 0x0000003e 
+ 00013878  0x000010c5 branch  0x000036b5 , 0x00000002 
+ 00013879  0x000010c6 fetch  0x00000001 , 0x0000028c 
+ 00013880  0x000010c7 bbit0  0x00000000 , 0x0000363b 
+ 00013881  0x000010c8 bbit0  0x00000001 , 0x00003640 
+ 00013882  0x000010c9 branch  0x000036c6 
+ 00013883  0x000010cb jam  0x00000001 , 0x0000028a 
+ 00013884  0x000010cc fetch  0x00000002 , 0x00000286 
+ 00013885  0x000010cd bne  0x00000000 , 0x000036c6 
+ 00013886  0x000010ce arg  0x00001000 , 0x00000005 
+ 00013887  0x000010cf branch  0x00003657 
+ 00013888  0x000010d1 jam  0x00000002 , 0x0000028a 
+ 00013889  0x000010d2 fetch  0x00000002 , 0x00000288 
+ 00013890  0x000010d3 bne  0x00000000 , 0x000036c6 
+ 00013891  0x000010d4 arg  0x00001400 , 0x00000005 
+ 00013892  0x000010d5 branch  0x00003657 
+ 00013893  0x000010d8 set0  0x00000025 , 0x00000000 
+ 00013894  0x000010d9 bpatch  0x0000005f , 0x0000400b 
+ 00013895  0x000010da bmark1  0x0000000f , 0x00003696 
+ 00013896  0x000010db fetch  0x00000002 , 0x0000015e 
+ 00013897  0x000010dc arg  0x000002e0 , 0x00000002 
+ 00013898  0x000010dd isub  0x00000002 , 0x0000003e 
+ 00013899  0x000010de branch  0x000036b5 , 0x00000002 
+ 00013900  0x000010df fetch  0x00000001 , 0x0000028a 
+ 00013901  0x000010e0 beq  0x00000001 , 0x00003650 
+ 00013902  0x000010e1 beq  0x00000002 , 0x00003654 
+ 00013903  0x000010e2 branch  0x000036c6 
+ 00013904  0x000010e4 arg  0x00001000 , 0x00000005 
+ 00013905  0x000010e5 fetch  0x00000002 , 0x00000286 
+ 00013906  0x000010e6 iadd  0x00000005 , 0x00000005 
+ 00013907  0x000010e7 branch  0x00003657 
+ 00013908  0x000010e9 arg  0x00001400 , 0x00000005 
+ 00013909  0x000010ea fetch  0x00000002 , 0x00000288 
+ 00013910  0x000010eb iadd  0x00000005 , 0x00000005 
+ 00013911  0x000010ed parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013912  0x000010ee rshift3  0x0000000c , 0x0000003f 
+ 00013913  0x000010ef istore  0x00000001 , 0x00000005 
+ 00013914  0x000010f0 loop  0x00003657 
+ 00013915  0x000010f2 set0  0x00000025 , 0x00000000 
+ 00013916  0x000010f3 bpatch  0x00000060 , 0x0000400c 
+ 00013917  0x000010f4 parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00013918  0x000010f5 branch  0x000036af , 0x00000006 
+ 00013919  0x000010f6 fetch  0x00000001 , 0x000043f3 
+ 00013920  0x000010f7 beq  0x00000001 , 0x000036c6 
+ 00013921  0x000010f8 bmark1  0x00000011 , 0x00003682 
+ 00013922  0x000010f9 bmark1  0x0000000f , 0x000036c3 
+ 00013923  0x000010fa fetch  0x00000001 , 0x0000017f 
+ 00013924  0x000010fb compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00013925  0x000010fc branch  0x00003682 , 0x00000001 
+ 00013926  0x000010fd fetch  0x00000002 , 0x0000015e 
+ 00013927  0x000010fe branch  0x00003682 , 0x00000034 
+ 00013928  0x000010ff set0  0x00000025 , 0x00000000 
+ 00013929  0x00001100 bpatch  0x00000061 , 0x0000400c 
+ 00013930  0x00001101 fetch  0x00000001 , 0x0000028a 
+ 00013931  0x00001102 beq  0x00000001 , 0x0000366e 
+ 00013932  0x00001103 beq  0x00000002 , 0x00003678 
+ 00013933  0x00001104 branch  0x00003b31 
+ 00013934  0x00001106 fetch  0x00000002 , 0x00000286 
+ 00013935  0x00001107 fetcht  0x00000002 , 0x0000015e 
+ 00013936  0x00001108 iadd  0x00000002 , 0x0000003f 
+ 00013937  0x00001109 store  0x00000002 , 0x00000286 
+ 00013938  0x0000110a beq  0x00000000 , 0x00003b31 
+ 00013939  0x0000110b fetcht  0x00000002 , 0x00001000 
+ 00013940  0x0000110c increase  0x00000004 , 0x00000002 
+ 00013941  0x0000110d isub  0x00000002 , 0x0000003e 
+ 00013942  0x0000110e call  0x000037cd , 0x00000005 
+ 00013943  0x0000110f branch  0x00003682 
+ 00013944  0x00001111 fetch  0x00000002 , 0x00000288 
+ 00013945  0x00001112 fetcht  0x00000002 , 0x0000015e 
+ 00013946  0x00001113 iadd  0x00000002 , 0x0000003f 
+ 00013947  0x00001114 store  0x00000002 , 0x00000288 
+ 00013948  0x00001115 beq  0x00000000 , 0x00003b31 
+ 00013949  0x00001116 fetcht  0x00000002 , 0x00001400 
+ 00013950  0x00001117 add  0x00000002 , 0x00000004 , 0x00000002 
+ 00013951  0x00001118 isub  0x00000002 , 0x0000003e 
+ 00013952  0x00001119 call  0x000037d1 , 0x00000005 
+ 00013953  0x0000111a branch  0x00003682 
+ 00013954  0x0000111c set0  0x00000025 , 0x00000000 
+ 00013955  0x0000111d bpatch  0x00000062 , 0x0000400c 
+ 00013956  0x0000111e fetcht  0x00000001 , 0x0000004c 
+ 00013957  0x0000111f fetch  0x00000001 , 0x0000017f 
+ 00013958  0x00001120 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00013959  0x00001121 setflag  0x00000001 , 0x00000006 , 0x00000002 
+ 00013960  0x00001122 nsetflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00013961  0x00001123 storet  0x00000001 , 0x0000004c 
+ 00013962  0x00001124 nbranch  0x0000368c , 0x00000001 
+ 00013963  0x00001125 set1  0x00000001 , 0x00000000 
+ 00013964  0x00001127 bmark0  0x00000011 , 0x00003696 
+ 00013965  0x00001128 isolate1  0x00000006 , 0x00000002 
+ 00013966  0x00001129 branch  0x00003696 , 0x00000001 
+ 00013967  0x0000112a fetch  0x00000002 , 0x000000f9 
+ 00013968  0x0000112b increase  0x00000001 , 0x0000003f 
+ 00013969  0x0000112c store  0x00000002 , 0x000000f9 
+ 00013970  0x0000112d set1  0x00000005 , 0x00000000 
+ 00013971  0x0000112e set0  0x00000007 , 0x00000002 
+ 00013972  0x0000112f set0  0x00000001 , 0x00000000 
+ 00013973  0x00001130 storet  0x00000001 , 0x0000004c 
+ 00013974  0x00001132 set0  0x00000025 , 0x00000000 
+ 00013975  0x00001133 bpatch  0x00000063 , 0x0000400c 
+ 00013976  0x00001134 fetcht  0x00000001 , 0x0000015d 
+ 00013977  0x00001135 fetch  0x00000001 , 0x00000047 
+ 00013978  0x00001136 set1  0x00000005 , 0x0000003f 
+ 00013979  0x00001137 isolate1  0x00000002 , 0x00000002 
+ 00013980  0x00001138 setflag  0x00000001 , 0x00000002 , 0x0000003f 
+ 00013981  0x00001139 isolate1  0x0000000a , 0x00000000 
+ 00013982  0x0000113a setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00013983  0x0000113b store  0x00000001 , 0x00000047 
+ 00013984  0x0000113c fetch  0x00000002 , 0x0000015e 
+ 00013985  0x0000113d nbranch  0x000036c6 , 0x00000034 
+ 00013986  0x0000113e fetch  0x00000001 , 0x0000004c 
+ 00013987  0x0000113f set0  0x00000007 , 0x0000003f 
+ 00013988  0x00001140 store  0x00000001 , 0x0000004c 
+ 00013989  0x00001141 fetch  0x00000001 , 0x0000017f 
+ 00013990  0x00001142 compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00013991  0x00001144 branch  0x000036c6 
+ 00013992  0x00001147 set0  0x00000025 , 0x00000000 
+ 00013993  0x00001148 bpatch  0x00000064 , 0x0000400c 
+ 00013994  0x00001149 disable  0x0000002d 
+ 00013995  0x0000114a fetch  0x00000002 , 0x0000001a 
+ 00013996  0x0000114b increase  0x00000001 , 0x0000003f 
+ 00013997  0x0000114c store  0x00000002 , 0x0000001a 
+ 00013998  0x0000114d branch  0x000036c6 
+ 00013999  0x0000114f fetch  0x00000002 , 0x0000001c 
+ 00014000  0x00001150 increase  0x00000001 , 0x0000003f 
+ 00014001  0x00001151 store  0x00000002 , 0x0000001c 
+ 00014002  0x00001152 call  0x000036b6 
+ 00014003  0x00001153 bmark0  0x00000011 , 0x000036b5 
+ 00014004  0x00001154 set1  0x00000005 , 0x00000000 
+ 00014005  0x00001156 branch  0x000036c6 
+ 00014006  0x00001159 set0  0x00000025 , 0x00000000 
+ 00014007  0x0000115a bpatch  0x00000065 , 0x0000400c 
+ 00014008  0x0000115b fetch  0x00000001 , 0x0000017f 
+ 00014009  0x0000115c compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00014010  0x0000115d nbranch  0x000036bf , 0x00000001 
+ 00014011  0x0000115f fetcht  0x00000001 , 0x0000004c 
+ 00014012  0x00001160 set0  0x00000006 , 0x00000002 
+ 00014013  0x00001161 storet  0x00000001 , 0x0000004c 
+ 00014014  0x00001162 rtn 
+ 00014015  0x00001166 fetcht  0x00000001 , 0x0000004c 
+ 00014016  0x00001167 set0  0x00000007 , 0x00000002 
+ 00014017  0x00001168 storet  0x00000001 , 0x0000004c 
+ 00014018  0x00001169 branch  0x00003eca 
+ 00014019  0x0000116c fetch  0x00000001 , 0x00000047 
+ 00014020  0x0000116d set1  0x00000005 , 0x0000003f 
+ 00014021  0x0000116e store  0x00000001 , 0x00000047 
+ 00014022  0x00001170 set0  0x00000025 , 0x00000000 
+ 00014023  0x00001171 bpatch  0x00000066 , 0x0000400c 
+ 00014024  0x00001172 disable  0x0000001d 
+ 00014025  0x00001173 disable  0x0000001c 
+ 00014026  0x00001174 disable  0x0000000d 
+ 00014027  0x00001175 disable  0x0000000c 
+ 00014028  0x00001176 disable  0x00000009 
+ 00014029  0x00001177 disable  0x0000000e 
+ 00014030  0x00001178 disable  0x00000007 
+ 00014031  0x00001179 branch  0x00003992 , 0x00000021 
+ 00014032  0x0000117a until  0x0000003e , 0x00000027 
+ 00014033  0x0000117b nop  0x00000064 
+ 00014034  0x0000117c branch  0x00003992 
+ 00014035  0x0000117f set0  0x00000025 , 0x00000000 
+ 00014036  0x00001180 bpatch  0x00000067 , 0x0000400c 
+ 00014037  0x00001181 enable  0x00000009 
+ 00014038  0x00001182 enable  0x0000000c 
+ 00014039  0x00001183 parse  0x00000003 , 0x00000000 , 0x00000048 
+ 00014040  0x00001184 isolate1  0x0000003a , 0x0000003f 
+ 00014041  0x00001185 setflag  0x00000001 , 0x00000000 , 0x00000000 
+ 00014042  0x00001186 copy  0x00000020 , 0x00000002 
+ 00014043  0x00001187 ialigned  0x00000020 
+ 00014044  0x00001188 ialigned  0x0000001e 
+ 00014045  0x00001189 pulse  0x00000015 
+ 00014046  0x0000118a setsect  0x00000002 , 0x000fffff 
+ 00014047  0x0000118b setsect  0x00000003 , 0x0000ffff 
+ 00014048  0x0000118c nop  0x00000020 
+ 00014049  0x0000118d iverify  0x0000000d 
+ 00014050  0x0000118e deposit  0x0000002c 
+ 00014051  0x0000118f store  0x00000003 , 0x00000177 
+ 00014052  0x00001190 deposit  0x0000002d 
+ 00014053  0x00001191 store  0x00000001 , 0x0000017a 
+ 00014054  0x00001192 copy  0x00000002 , 0x00000020 
+ 00014055  0x00001193 branch  0x000036e9 , 0x00000001 
+ 00014056  0x00001194 branch  0x000036b5 
+ 00014057  0x00001196 set0  0x00000025 , 0x00000000 
+ 00014058  0x00001197 bpatch  0x00000068 , 0x0000400d 
+ 00014059  0x00001198 parse  0x00000003 , 0x00000000 , 0x00000048 
+ 00014060  0x00001199 ialigned  0x0000001f 
+ 00014061  0x0000119a ialigned  0x00000004 
+ 00014062  0x0000119b ialigned  0x0000002e 
+ 00014063  0x0000119c ialigned  0x00000012 
+ 00014064  0x0000119d force  0x00000000 , 0x0000003f 
+ 00014065  0x0000119e parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00014066  0x0000119f branch  0x000036b5 , 0x00000006 
+ 00014067  0x000011a0 setarg  0x0ffffffc 
+ 00014068  0x000011a1 iand  0x00000012 , 0x0000003f 
+ 00014069  0x000011a2 store  0x00000004 , 0x00000164 
+ 00014070  0x000011a3 deposit  0x0000001d 
+ 00014071  0x000011a4 store  0x00000003 , 0x00000174 
+ 00014072  0x000011a5 deposit  0x0000001c 
+ 00014073  0x000011a6 store  0x00000001 , 0x00000172 
+ 00014074  0x000011a7 deposit  0x00000004 
+ 00014075  0x000011a8 store  0x00000001 , 0x00000173 
+ 00014076  0x000011a9 deposit  0x0000002e 
+ 00014077  0x000011aa store  0x00000002 , 0x0000017b 
+ 00014078  0x000011ab deposit  0x00000021 
+ 00014079  0x000011ac inject  0x00000001 , 0x00000020 
+ 00014080  0x000011ad compare  0x00000002 , 0x00000001 , 0x0000000f 
+ 00014081  0x000011ae setflag  0x00000001 , 0x0000000b , 0x00000000 
+ 00014082  0x000011af branch  0x000036c6 
+ 00014083  0x000011b2 set0  0x00000025 , 0x00000000 
+ 00014084  0x000011b3 bpatch  0x00000069 , 0x0000400d 
+ 00014085  0x000011b4 fetch  0x00000001 , 0x00000047 
+ 00014086  0x000011b5 rtnbit0  0x00000003 
+ 00014087  0x000011b6 set0  0x00000003 , 0x0000003f 
+ 00014088  0x000011b7 setflip  0x00000006 , 0x0000003f 
+ 00014089  0x000011b8 store  0x00000001 , 0x00000047 
+ 00014090  0x000011b9 fetch  0x00000001 , 0x00004165 
+ 00014091  0x000011ba beq  0x00000013 , 0x00003719 
+ 00014092  0x000011bb rtneq  0x00000007 
+ 00014093  0x000011bc fetch  0x00000001 , 0x0000004b 
+ 00014094  0x000011bd rtnbit0  0x00000006 , 0x0000003f 
+ 00014095  0x000011be set0  0x00000006 , 0x0000003f 
+ 00014096  0x000011bf set1  0x00000007 , 0x0000003f 
+ 00014097  0x000011c0 store  0x00000001 , 0x0000004b 
+ 00014098  0x000011c1 set0  0x00000002 , 0x00000000 
+ 00014099  0x000011c2 fetch  0x00000002 , 0x000042d6 
+ 00014100  0x000011c3 nrtn  0x00000034 
+ 00014101  0x000011c4 fetch  0x00000001 , 0x0000004b 
+ 00014102  0x000011c5 set0  0x00000007 , 0x0000003f 
+ 00014103  0x000011c6 store  0x00000001 , 0x0000004b 
+ 00014104  0x000011c7 branch  0x000047fb 
+ 00014105  0x000011ca set0  0x00000025 , 0x00000000 
+ 00014106  0x000011cb bpatch  0x0000006a , 0x0000400d 
+ 00014107  0x000011cc fetch  0x00000001 , 0x000003dd 
+ 00014108  0x000011cd rshift  0x0000003f , 0x0000003f 
+ 00014109  0x000011ce beq  0x00000011 , 0x00003736 
+ 00014110  0x000011cf beq  0x00000012 , 0x0000373f 
+ 00014111  0x000011d0 beq  0x00000018 , 0x0000376a 
+ 00014112  0x000011d1 beq  0x0000007f , 0x00003726 
+ 00014113  0x000011d2 rtnne  0x00000003 
+ 00014114  0x000011d3 fetch  0x00000001 , 0x000003de 
+ 00014115  0x000011d4 beq  0x0000002b , 0x0000372e 
+ 00014116  0x000011d5 beq  0x00000011 , 0x00003729 
+ 00014117  0x000011d6 rtn 
+ 00014118  0x000011d9 fetch  0x00000001 , 0x000003de 
+ 00014119  0x000011da set1  0x00000007 , 0x0000003f 
+ 00014120  0x000011db rtn 
+ 00014121  0x000011dd rtn  0x00000029 
+ 00014122  0x000011de fetch  0x00000001 , 0x00000030 
+ 00014123  0x000011df rtnbit1  0x00000004 
+ 00014124  0x000011e0 jam  0x00000031 , 0x0000007c 
+ 00014125  0x000011e1 rtn 
+ 00014126  0x000011e5 rtn  0x00000029 
+ 00014127  0x000011e6 fetch  0x00000001 , 0x00000031 
+ 00014128  0x000011e7 isolate1  0x00000004 , 0x0000003f 
+ 00014129  0x000011e8 branch  0x00003733 , 0x00000001 
+ 00014130  0x000011ea rtn 
+ 00014131  0x000011ec set0  0x00000004 , 0x0000003f 
+ 00014132  0x000011ed store  0x00000001 , 0x00000031 
+ 00014133  0x000011ee rtn 
+ 00014134  0x000011f1 set0  0x00000025 , 0x00000000 
+ 00014135  0x000011f2 bpatch  0x0000006b , 0x0000400d 
+ 00014136  0x000011f3 fetch  0x00000001 , 0x0000004c 
+ 00014137  0x000011f4 set1  0x00000002 , 0x0000003f 
+ 00014138  0x000011f5 store  0x00000001 , 0x0000004c 
+ 00014139  0x000011f6 hjam  0x00000001 , 0x00008011 
+ 00014140  0x000011f7 fetch  0x00000001 , 0x00000030 
+ 00014141  0x000011f8 isolate1  0x00000004 , 0x0000003f 
+ 00014142  0x000011f9 rtn 
+ 00014143  0x000011fc set0  0x00000025 , 0x00000000 
+ 00014144  0x000011fd bpatch  0x0000006c , 0x0000400d 
+ 00014145  0x000011fe fetch  0x00000001 , 0x0000004c 
+ 00014146  0x000011ff set0  0x00000002 , 0x0000003f 
+ 00014147  0x00001200 store  0x00000001 , 0x0000004c 
+ 00014148  0x00001201 hjam  0x00000000 , 0x00008011 
+ 00014149  0x00001202 rtn 
+ 00014150  0x00001206 set0  0x00000025 , 0x00000000 
+ 00014151  0x00001207 bpatch  0x0000006d , 0x0000400d 
+ 00014152  0x00001208 copy  0x00000022 , 0x0000003f 
+ 00014153  0x00001209 store  0x00000004 , 0x000042b1 
+ 00014154  0x0000120a add  0x00000022 , 0x00000003 , 0x00000011 
+ 00014155  0x0000120b branch  0x0000374d , 0x00000029 
+ 00014156  0x0000120c add  0x00000028 , 0x00000003 , 0x00000011 
+ 00014157  0x0000120e fetcht  0x00000002 , 0x00000032 
+ 00014158  0x0000120f deposit  0x00000011 
+ 00014159  0x00001210 set0  0x0000001b , 0x0000003f 
+ 00014160  0x00001211 idiv  0x00000002 
+ 00014161  0x00001212 fetch  0x00000002 , 0x00000075 
+ 00014162  0x00001213 call  0x00007f53 
+ 00014163  0x00001214 remainder  0x00000013 
+ 00014164  0x00001215 isub  0x00000013 , 0x0000003f 
+ 00014165  0x00001216 branch  0x00003757 , 0x00000002 
+ 00014166  0x00001217 iadd  0x00000002 , 0x0000003f 
+ 00014167  0x00001219 iadd  0x00000011 , 0x0000003f 
+ 00014168  0x0000121a store  0x00000004 , 0x00000034 
+ 00014169  0x0000121b jam  0x00000000 , 0x000045f4 
+ 00014170  0x0000121c fetch  0x00000001 , 0x00000030 
+ 00014171  0x0000121d set1  0x00000001 , 0x0000003f 
+ 00014172  0x0000121e store  0x00000001 , 0x00000030 
+ 00014173  0x0000121f fetch  0x00000001 , 0x00000073 
+ 00014174  0x00001220 store  0x00000001 , 0x0000008a 
+ 00014175  0x00001221 setarg  0x00000000 
+ 00014176  0x00001222 store  0x00000003 , 0x00004209 
+ 00014177  0x00001223 store  0x00000003 , 0x0000420c 
+ 00014178  0x00001224 store  0x00000001 , 0x000041f9 
+ 00014179  0x00001225 jam  0x0000000b , 0x000009bd 
+ 00014180  0x00001226 call  0x00007d86 
+ 00014181  0x00001227 fetch  0x00000002 , 0x00004161 
+ 00014182  0x00001228 store  0x00000002 , 0x0000003e 
+ 00014183  0x00001229 nrtn  0x00000029 
+ 00014184  0x0000122a add  0x00000004 , 0xffffffff , 0x00000007 
+ 00014185  0x0000122b rtn 
+ 00014186  0x0000122e set0  0x00000025 , 0x00000000 
+ 00014187  0x0000122f bpatch  0x0000006e , 0x0000400d 
+ 00014188  0x00001230 fetch  0x00000001 , 0x00000030 
+ 00014189  0x00001231 rtnbit0  0x00000001 
+ 00014190  0x00001232 set0  0x00000001 , 0x0000003f 
+ 00014191  0x00001233 store  0x00000001 , 0x00000030 
+ 00014192  0x00001234 fetch  0x00000002 , 0x0000415f 
+ 00014193  0x00001235 store  0x00000002 , 0x0000003e 
+ 00014194  0x00001236 disable  0x0000002b 
+ 00014195  0x00001237 jam  0x0000000c , 0x000009bd 
+ 00014196  0x00001238 branch  0x00007d86 
+ 00014197  0x0000123c set0  0x00000025 , 0x00000000 
+ 00014198  0x0000123d bpatch  0x0000006f , 0x0000400d 
+ 00014199  0x0000123e enable  0x0000002e 
+ 00014200  0x0000123f fetch  0x00000001 , 0x00000030 
+ 00014201  0x00001240 bbit1  0x00000001 , 0x00003783 
+ 00014202  0x00001241 rtnmark1  0x00000011 
+ 00014203  0x00001242 fetch  0x00000001 , 0x00000047 
+ 00014204  0x00001243 rtnbit1  0x00000003 
+ 00014205  0x00001244 fetch  0x00000001 , 0x00000048 
+ 00014206  0x00001245 nrtn  0x00000034 
+ 00014207  0x00001246 fetch  0x00000001 , 0x0000004b 
+ 00014208  0x00001247 rtnbit1  0x00000006 
+ 00014209  0x00001249 force  0x00000000 , 0x0000003f 
+ 00014210  0x0000124a rtn 
+ 00014211  0x0000124d bbit0  0x00000002 , 0x00003792 
+ 00014212  0x0000124e fetch  0x00000001 , 0x0000008a 
+ 00014213  0x0000124f beq  0x00000002 , 0x00003789 
+ 00014214  0x00001250 fetch  0x00000001 , 0x00000047 
+ 00014215  0x00001251 bbit1  0x00000003 , 0x0000379b 
+ 00014216  0x00001252 bmark0  0x00000008 , 0x0000379b 
+ 00014217  0x00001254 nbranch  0x0000379b , 0x00000029 
+ 00014218  0x00001255 fetch  0x00000001 , 0x00000048 
+ 00014219  0x00001256 nbranch  0x0000379b , 0x00000034 
+ 00014220  0x00001258 fetch  0x00000001 , 0x000000ee 
+ 00014221  0x00001259 increase  0xffffffff , 0x0000003f 
+ 00014222  0x0000125a store  0x00000001 , 0x000000ee 
+ 00014223  0x0000125b nbranch  0x00003781 , 0x00000034 
+ 00014224  0x0000125c jam  0x00000010 , 0x000000ee 
+ 00014225  0x0000125d branch  0x0000379b 
+ 00014226  0x00001260 fetch  0x00000001 , 0x0000008a 
+ 00014227  0x00001261 bne  0x00000001 , 0x0000379b 
+ 00014228  0x00001262 fetch  0x00000001 , 0x0000008b 
+ 00014229  0x00001263 branch  0x0000379b , 0x00000034 
+ 00014230  0x00001264 increase  0xffffffff , 0x0000003f 
+ 00014231  0x00001265 store  0x00000001 , 0x0000008b 
+ 00014232  0x00001266 fetch  0x00000001 , 0x00000047 
+ 00014233  0x00001267 rtnbit1  0x00000003 
+ 00014234  0x00001268 nrtn  0x0000002d 
+ 00014235  0x0000126a fetch  0x00000001 , 0x0000008a 
+ 00014236  0x0000126b increase  0xffffffff , 0x0000003f 
+ 00014237  0x0000126c store  0x00000001 , 0x0000008a 
+ 00014238  0x0000126d rtn 
+ 00014239  0x00001271 set0  0x00000025 , 0x00000000 
+ 00014240  0x00001272 bpatch  0x00000070 , 0x0000400e 
+ 00014241  0x00001273 disable  0x00000010 
+ 00014242  0x00001274 copy  0x00000002 , 0x0000001b 
+ 00014243  0x00001275 call  0x000032a1 
+ 00014244  0x00001276 disable  0x00000028 
+ 00014245  0x00001277 nrtn  0x00000005 
+ 00014246  0x00001278 force  0x00000000 , 0x0000001b 
+ 00014247  0x00001279 enable  0x00000028 
+ 00014248  0x0000127a rtn 
+ 00014249  0x0000127e fetch  0x00000001 , 0x000041f8 
+ 00014250  0x0000127f icompare  0x000000ff , 0x00000004 
+ 00014251  0x00001280 rtn 
+ 00014252  0x00001284 set0  0x00000025 , 0x00000000 
+ 00014253  0x00001285 bpatch  0x00000071 , 0x0000400e 
+ 00014254  0x00001286 set0  0x00000001 , 0x00000000 
+ 00014255  0x00001288 jam  0x00000000 , 0x00000293 
+ 00014256  0x00001289 fetch  0x00000001 , 0x0000028c 
+ 00014257  0x0000128a rtn  0x00000034 
+ 00014258  0x0000128b isolate1  0x00000000 , 0x0000003f 
+ 00014259  0x0000128c arg  0x00001000 , 0x00000006 
+ 00014260  0x0000128d call  0x000042fa , 0x00000001 
+ 00014261  0x0000128e set0  0x00000025 , 0x00000000 
+ 00014262  0x0000128f bpatch  0x00000072 , 0x0000400e 
+ 00014263  0x00001290 fetch  0x00000001 , 0x00000293 
+ 00014264  0x00001291 beq  0x00000001 , 0x000037c1 
+ 00014265  0x00001293 jam  0x00000000 , 0x00000293 
+ 00014266  0x00001294 fetch  0x00000001 , 0x0000028c 
+ 00014267  0x00001295 rtnbit0  0x00000001 
+ 00014268  0x00001296 arg  0x00001400 , 0x00000006 
+ 00014269  0x00001297 call  0x000042fa 
+ 00014270  0x00001298 fetch  0x00000001 , 0x00000293 
+ 00014271  0x00001299 beq  0x00000001 , 0x000037c7 
+ 00014272  0x0000129a rtn 
+ 00014273  0x0000129d fetch  0x00000001 , 0x0000028c 
+ 00014274  0x0000129e set0  0x00000000 , 0x0000003f 
+ 00014275  0x0000129f store  0x00000001 , 0x0000028c 
+ 00014276  0x000012a0 setarg  0x00000000 
+ 00014277  0x000012a1 store  0x00000002 , 0x00000286 
+ 00014278  0x000012a2 rtn 
+ 00014279  0x000012a4 fetch  0x00000001 , 0x0000028c 
+ 00014280  0x000012a5 set0  0x00000001 , 0x0000003f 
+ 00014281  0x000012a6 store  0x00000001 , 0x0000028c 
+ 00014282  0x000012a7 setarg  0x00000000 
+ 00014283  0x000012a8 store  0x00000002 , 0x00000288 
+ 00014284  0x000012a9 rtn 
+ 00014285  0x000012ac fetch  0x00000001 , 0x0000028c 
+ 00014286  0x000012ad set1  0x00000000 , 0x0000003f 
+ 00014287  0x000012ae store  0x00000001 , 0x0000028c 
+ 00014288  0x000012af rtn 
+ 00014289  0x000012b2 fetch  0x00000001 , 0x0000028c 
+ 00014290  0x000012b3 set1  0x00000001 , 0x0000003f 
+ 00014291  0x000012b4 store  0x00000001 , 0x0000028c 
+ 00014292  0x000012b5 rtn 
+ 00014293  0x000012bc set0  0x00000025 , 0x00000000 
+ 00014294  0x000012bd bpatch  0x00000073 , 0x0000400e 
+ 00014295  0x000012be add  0x00000028 , 0x00000001 , 0x00000021 
+ 00014296  0x000012bf call  0x00003982 
+ 00014297  0x000012c0 force  0x00000003 , 0x00000024 
+ 00014298  0x000012c1 call  0x00003967 
+ 00014299  0x000012c2 call  0x00003aee 
+ 00014300  0x000012c3 call  0x00003aff 
+ 00014301  0x000012c4 branch  0x00003b05 
+ 00014302  0x000012c8 set0  0x00000025 , 0x00000000 
+ 00014303  0x000012c9 bpatch  0x00000074 , 0x0000400e 
+ 00014304  0x000012ca call  0x00003aea 
+ 00014305  0x000012cb deposit  0x00000028 
+ 00014306  0x000012cc fetcht  0x00000004 , 0x0000416a 
+ 00014307  0x000012cd isub  0x00000002 , 0x0000003f 
+ 00014308  0x000012ce rtnne  0x00000001 
+ 00014309  0x000012cf compare  0x00000000 , 0x00000001 , 0x0000001f 
+ 00014310  0x000012d0 nbranch  0x000037e9 , 0x00000001 
+ 00014311  0x000012d1 fetch  0x00000001 , 0x00000019 
+ 00014312  0x000012d2 rtn  0x00000034 
+ 00014313  0x000012d4 call  0x000037d5 
+ 00014314  0x000012d5 compare  0x00000010 , 0x00000001 , 0x0000001f 
+ 00014315  0x000012d6 branch  0x000036c6 , 0x00000001 
+ 00014316  0x000012d8 rshift  0x00000021 , 0x00000002 
+ 00014317  0x000012d9 or  0x00000002 , 0x00000040 , 0x0000000e 
+ 00014318  0x000012db set0  0x00000025 , 0x00000000 
+ 00014319  0x000012dc bpatch  0x00000075 , 0x0000400e 
+ 00014320  0x000012dd enable  0x00000007 
+ 00014321  0x000012de enable  0x0000000a 
+ 00014322  0x000012df enable  0x0000001b 
+ 00014323  0x000012e0 set0  0x00000010 , 0x00000000 
+ 00014324  0x000012e1 deposit  0x00000004 
+ 00014325  0x000012e2 inject  0x00000003 , 0x00000003 
+ 00014326  0x000012e3 deposit  0x00000001 
+ 00014327  0x000012e4 inject  0x00000003 , 0x00000004 
+ 00014328  0x000012e5 fetch  0x00000001 , 0x00000047 
+ 00014329  0x000012e6 inject  0x00000000 , 0x00000004 
+ 00014330  0x000012e7 inject  0x00000003 , 0x00000003 
+ 00014331  0x000012e8 enable  0x00000008 
+ 00014332  0x000012e9 inject  0x00000003 , 0x00000008 
+ 00014333  0x000012ea disable  0x0000001b 
+ 00014334  0x000012eb disable  0x00000008 
+ 00014335  0x000012ec disable  0x0000000a 
+ 00014336  0x000012ed set0  0x00000002 , 0x00000015 
+ 00014337  0x000012ee arg  0x00000000 , 0x00000002 
+ 00014338  0x000012ef call  0x00003ab4 
+ 00014339  0x000012f0 set0  0x00000025 , 0x00000000 
+ 00014340  0x000012f1 bpatch  0x00000076 , 0x0000400e 
+ 00014341  0x000012f2 and  0x00000001 , 0x0000001f , 0x0000003f 
+ 00014342  0x000012f3 beq  0x00000013 , 0x00003840 
+ 00014343  0x000012f4 beq  0x00000000 , 0x000036c6 
+ 00014344  0x000012f5 beq  0x00000001 , 0x000036c6 
+ 00014345  0x000012f6 beq  0x00000002 , 0x00003822 
+ 00014346  0x000012f7 beq  0x00000003 , 0x00003852 
+ 00014347  0x000012f8 beq  0x00000004 , 0x00003858 
+ 00014348  0x000012f9 beq  0x00000007 , 0x00003816 
+ 00014349  0x000012fa beq  0x00000008 , 0x00003857 
+ 00014350  0x000012fb arg  0x00000004 , 0x00000002 
+ 00014351  0x000012fc call  0x00003ab4 
+ 00014352  0x000012fd beq  0x0000000a , 0x00003854 
+ 00014353  0x000012fe beq  0x0000000b , 0x0000385a 
+ 00014354  0x000012ff arg  0x00000008 , 0x00000002 
+ 00014355  0x00001300 call  0x00003ab4 
+ 00014356  0x00001301 beq  0x0000000f , 0x0000385a 
+ 00014357  0x00001302 branch  0x00003854 
+ 00014358  0x00001306 set0  0x00000025 , 0x00000000 
+ 00014359  0x00001307 bpatch  0x00000077 , 0x0000400e 
+ 00014360  0x00001308 enable  0x0000001d 
+ 00014361  0x00001309 enable  0x00000009 
+ 00014362  0x0000130a enable  0x0000000e 
+ 00014363  0x0000130b force  0x0000001e , 0x00000039 
+ 00014364  0x0000130c arg  0x000000b2 , 0x00000006 
+ 00014365  0x0000130e ifetch  0x00000001 , 0x00000006 
+ 00014366  0x0000130f inject  0x00000003 , 0x00000008 
+ 00014367  0x00001310 loop  0x0000381d 
+ 00014368  0x00001311 bmark1  0x00000007 , 0x00003885 
+ 00014369  0x00001312 branch  0x000036c6 
+ 00014370  0x00001315 set0  0x00000025 , 0x00000000 
+ 00014371  0x00001316 bpatch  0x00000078 , 0x0000400f 
+ 00014372  0x00001317 fetch  0x00000001 , 0x00000180 
+ 00014373  0x00001318 icopy  0x00000004 
+ 00014374  0x00001319 fetch  0x00000001 , 0x0000008f 
+ 00014375  0x0000131a icopy  0x0000001c 
+ 00014376  0x0000131b fetch  0x00000003 , 0x0000414a 
+ 00014377  0x0000131c icopy  0x0000001d 
+ 00014378  0x0000131d fetch  0x00000002 , 0x00004144 
+ 00014379  0x0000131e icopy  0x0000002e 
+ 00014380  0x0000131f enable  0x00000009 
+ 00014381  0x00001320 enable  0x0000001c 
+ 00014382  0x00001321 copy  0x00000020 , 0x00000011 
+ 00014383  0x00001322 call  0x00003979 
+ 00014384  0x00001323 pulse  0x00000015 
+ 00014385  0x00001324 nop  0x00000020 
+ 00014386  0x00001325 copy  0x00000021 , 0x0000000b 
+ 00014387  0x00001326 fetch  0x00000004 , 0x00000160 
+ 00014388  0x00001327 icopy  0x00000021 
+ 00014389  0x00001328 preload  0x0000001e 
+ 00014390  0x00001329 set1  0x0000003a , 0x0000003f 
+ 00014391  0x0000132a inject  0x00000003 , 0x00000048 
+ 00014392  0x0000132b preload  0x0000001f 
+ 00014393  0x0000132c inject  0x00000003 , 0x00000048 
+ 00014394  0x0000132d copy  0x0000000b , 0x00000021 
+ 00014395  0x0000132e copy  0x00000011 , 0x00000020 
+ 00014396  0x0000132f enable  0x00000008 
+ 00014397  0x00001330 inject  0x00000003 , 0x00000010 
+ 00014398  0x00001331 disable  0x00000008 
+ 00014399  0x00001332 branch  0x000036c6 
+ 00014400  0x00001335 set0  0x00000025 , 0x00000000 
+ 00014401  0x00001336 bpatch  0x00000079 , 0x0000400f 
+ 00014402  0x00001337 enable  0x0000000e 
+ 00014403  0x00001338 enable  0x00000009 
+ 00014404  0x00001339 enable  0x0000001c 
+ 00014405  0x0000133a fetch  0x00000001 , 0x000003dc 
+ 00014406  0x0000133b and  0x0000003f , 0x000001f8 , 0x00000002 
+ 00014407  0x0000133c arg  0x000003dc , 0x00000006 
+ 00014408  0x0000133d increase  0x00000008 , 0x00000002 
+ 00014409  0x0000133f add  0x00000002 , 0xffffffb8 , 0x00000013 
+ 00014410  0x00001340 nbranch  0x0000384f , 0x00000002 
+ 00014411  0x00001341 ifetch  0x00000009 , 0x00000006 
+ 00014412  0x00001342 inject  0x00000003 , 0x00000048 
+ 00014413  0x00001343 copy  0x00000013 , 0x00000002 
+ 00014414  0x00001344 branch  0x00003849 
+ 00014415  0x00001346 ifetch  0x00000009 , 0x00000006 
+ 00014416  0x00001347 iinject  0x00000003 , 0x00000002 
+ 00014417  0x00001348 branch  0x00003885 
+ 00014418  0x0000134b enable  0x0000001c 
+ 00014419  0x0000134c branch  0x0000385d 
+ 00014420  0x0000134f enable  0x0000001c 
+ 00014421  0x00001350 set1  0x00000010 , 0x00000000 
+ 00014422  0x00001351 branch  0x0000385d 
+ 00014423  0x00001354 set1  0x00000002 , 0x00000015 
+ 00014424  0x00001356 enable  0x0000001d 
+ 00014425  0x00001357 branch  0x0000385d 
+ 00014426  0x0000135b set1  0x00000002 , 0x00000015 
+ 00014427  0x0000135c enable  0x0000001d 
+ 00014428  0x0000135d set1  0x00000010 , 0x00000000 
+ 00014429  0x00001360 set0  0x00000025 , 0x00000000 
+ 00014430  0x00001361 bpatch  0x0000007a , 0x0000400f 
+ 00014431  0x00001362 fetch  0x00000001 , 0x0000004c 
+ 00014432  0x00001363 bbit0  0x00000005 , 0x00003873 
+ 00014433  0x00001364 sub  0x00000001 , 0x00000003 , 0x0000003e 
+ 00014434  0x00001365 branch  0x00003873 , 0x00000002 
+ 00014435  0x00001366 disable  0x0000000e 
+ 00014436  0x00001367 disable  0x0000001c 
+ 00014437  0x00001368 enable  0x0000001d 
+ 00014438  0x00001369 disable  0x00000007 
+ 00014439  0x0000136a set1  0x00000001 , 0x00000015 
+ 00014440  0x0000136b isolate1  0x00000002 , 0x00000015 
+ 00014441  0x0000136c branch  0x0000386d , 0x00000001 
+ 00014442  0x0000136d setarg  0x000abeee 
+ 00014443  0x0000136e inject  0x00000003 , 0x00000014 
+ 00014444  0x0000136f branch  0x00003871 
+ 00014445  0x00001371 setarg  0x005faeba 
+ 00014446  0x00001372 inject  0x00000003 , 0x00000018 
+ 00014447  0x00001373 setarg  0x00000012 
+ 00014448  0x00001374 inject  0x00000003 , 0x00000006 
+ 00014449  0x00001376 enable  0x00000007 
+ 00014450  0x00001377 set1  0x00000010 , 0x00000000 
+ 00014451  0x00001379 enable  0x0000000e 
+ 00014452  0x0000137a enable  0x00000009 
+ 00014453  0x0000137b bmark1  0x00000005 , 0x0000388e 
+ 00014454  0x0000137c fetch  0x00000001 , 0x0000427d 
+ 00014455  0x0000137d inject  0x00000003 , 0x00000003 
+ 00014456  0x0000137e fetch  0x00000002 , 0x0000427e 
+ 00014457  0x0000137f iforce  0x00000039 
+ 00014458  0x00001380 bmark1  0x00000010 , 0x0000387d 
+ 00014459  0x00001381 inject  0x00000003 , 0x00000005 
+ 00014460  0x00001382 branch  0x0000387e 
+ 00014461  0x00001384 inject  0x00000003 , 0x0000000d 
+ 00014462  0x00001386 deposit  0x00000039 
+ 00014463  0x00001387 branch  0x00003885 , 0x00000034 
+ 00014464  0x00001388 fetch  0x00000002 , 0x0000016e 
+ 00014465  0x00001389 iforce  0x00000006 
+ 00014466  0x0000138b ifetch  0x00000001 , 0x00000006 
+ 00014467  0x0000138c inject  0x00000003 , 0x00000008 
+ 00014468  0x0000138d loop  0x00003882 
+ 00014469  0x00001391 enable  0x00000008 
+ 00014470  0x00001392 inject  0x00000003 , 0x00000010 
+ 00014471  0x00001393 disable  0x00000008 
+ 00014472  0x00001394 call  0x00003523 
+ 00014473  0x00001395 fetch  0x00000001 , 0x0000004c 
+ 00014474  0x00001396 bbit0  0x00000005 , 0x000036c6 
+ 00014475  0x00001397 force  0x00000000 , 0x0000003f 
+ 00014476  0x00001398 inject  0x00000003 , 0x00000006 
+ 00014477  0x00001399 branch  0x000036c6 
+ 00014478  0x0000139d set0  0x00000025 , 0x00000000 
+ 00014479  0x0000139e bpatch  0x0000007b , 0x0000400f 
+ 00014480  0x0000139f bmark1  0x00000010 , 0x00003897 
+ 00014481  0x000013a1 fetch  0x00000001 , 0x0000017f 
+ 00014482  0x000013a2 inject  0x00000003 , 0x00000003 
+ 00014483  0x000013a3 fetch  0x00000001 , 0x0000015e 
+ 00014484  0x000013a4 iforce  0x00000013 
+ 00014485  0x000013a5 inject  0x00000003 , 0x00000005 
+ 00014486  0x000013a6 branch  0x0000389c 
+ 00014487  0x000013a8 fetch  0x00000001 , 0x0000017f 
+ 00014488  0x000013a9 inject  0x00000003 , 0x00000003 
+ 00014489  0x000013aa fetch  0x00000002 , 0x0000015e 
+ 00014490  0x000013ab iforce  0x00000013 
+ 00014491  0x000013ac inject  0x00000003 , 0x0000000d 
+ 00014492  0x000013ae arg  0x00000475 , 0x00000006 
+ 00014493  0x000013b0 copy  0x00000013 , 0x0000003e 
+ 00014494  0x000013b1 branch  0x000038a3 , 0x00000005 
+ 00014495  0x000013b2 ifetch  0x00000001 , 0x00000006 
+ 00014496  0x000013b3 inject  0x00000003 , 0x00000008 
+ 00014497  0x000013b4 increase  0xffffffff , 0x00000013 
+ 00014498  0x000013b5 branch  0x0000389d 
+ 00014499  0x000013b7 fetch  0x00000002 , 0x000000fb 
+ 00014500  0x000013b8 increase  0x00000001 , 0x0000003f 
+ 00014501  0x000013b9 store  0x00000002 , 0x000000fb 
+ 00014502  0x000013ba branch  0x00003885 
+ 00014503  0x000013be fetch  0x00000004 , 0x00000164 
+ 00014504  0x000013bf add  0x0000003f , 0x00000007 , 0x00000011 
+ 00014505  0x000013c0 fetch  0x00000002 , 0x00000170 
+ 00014506  0x000013c1 nbranch  0x000038ad , 0x00000034 
+ 00014507  0x000013c2 increase  0xfffffffd , 0x00000011 
+ 00014508  0x000013c3 branch  0x000038b5 
+ 00014509  0x000013c5 mul32  0x0000003f , 0x0000000c , 0x0000003f 
+ 00014510  0x000013c6 hfetcht  0x00000002 , 0x00008040 
+ 00014511  0x000013c7 increase  0x00000001 , 0x00000002 
+ 00014512  0x000013c9 isub  0x00000002 , 0x0000003f 
+ 00014513  0x000013ca nbranch  0x000038b4 , 0x00000002 
+ 00014514  0x000013cb increase  0xffffffff , 0x00000011 
+ 00014515  0x000013cc branch  0x000038b0 
+ 00014516  0x000013ce sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00014517  0x000013d0 until  0x0000003e , 0x00000023 
+ 00014518  0x000013d1 compare  0x00000000 , 0x00000022 , 0x00000003 
+ 00014519  0x000013d2 nbranch  0x000038b5 , 0x00000001 
+ 00014520  0x000013d3 iforce  0x00000029 
+ 00014521  0x000013d4 copy  0x00000011 , 0x00000028 
+ 00014522  0x000013d5 iforce  0x00000029 
+ 00014523  0x000013d6 rtn 
+ 00014524  0x000013da set0  0x00000025 , 0x00000000 
+ 00014525  0x000013db bpatch  0x0000007c , 0x0000400f 
+ 00014526  0x000013dc until  0x0000003e , 0x00000022 
+ 00014527  0x000013dd deposit  0x0000001a 
+ 00014528  0x000013de iforce  0x00000006 
+ 00014529  0x000013df rshift16 , 0x0000003f , 0x0000003f 
+ 00014530  0x000013e0 isub  0x00000022 , 0x00000039 
+ 00014531  0x000013e1 and_into  0x00000003 , 0x00000039 
+ 00014532  0x000013e2 nbranch  0x000038c7 , 0x00000005 
+ 00014533  0x000013e3 force  0x00000000 , 0x0000003f 
+ 00014534  0x000013e4 branch  0x000038cb 
+ 00014535  0x000013e6 arg  0x00000ea6 , 0x00000002 
+ 00014536  0x000013e7 force  0x00000000 , 0x0000003f 
+ 00014537  0x000013e9 iadd  0x00000002 , 0x0000003f 
+ 00014538  0x000013ea loop  0x000038c9 
+ 00014539  0x000013ec iadd  0x00000006 , 0x0000003f 
+ 00014540  0x000013ed div  0x0000003f , 0x0000000c 
+ 00014541  0x000013ee call  0x00007f53 
+ 00014542  0x000013ef quotient  0x0000003f 
+ 00014543  0x000013f0 store  0x00000002 , 0x00000170 
+ 00014544  0x000013f1 rtn 
+ 00014545  0x000013f4 set0  0x00000025 , 0x00000000 
+ 00014546  0x000013f5 bpatch  0x0000007d , 0x0000400f 
+ 00014547  0x000013f6 deposit  0x0000001a 
+ 00014548  0x000013f7 copy  0x00000019 , 0x00000002 
+ 00014549  0x000013f8 isub  0x00000002 , 0x0000003e 
+ 00014550  0x000013f9 nsetflag  0x00000002 , 0x0000002c , 0x0000003f 
+ 00014551  0x000013fa isub  0x00000002 , 0x00000002 
+ 00014552  0x000013fb setarg  0x00000ea6 
+ 00014553  0x000013fc isolate0  0x0000000f , 0x00000002 
+ 00014554  0x000013fd branch  0x000038dd , 0x00000001 
+ 00014555  0x000013fe setarg  0xffff0ea6 
+ 00014556  0x000013ff iadd  0x00000002 , 0x00000002 
+ 00014557  0x00001401 storet  0x00000006 , 0x0000036a 
+ 00014558  0x00001402 rtn  0x00000036 
+ 00014559  0x00001403 storet  0x00000006 , 0x00000038 
+ 00014560  0x00001404 rtn 
+ 00014561  0x00001407 disable  0x00000030 
+ 00014562  0x00001408 fetch  0x00000006 , 0x0000036a 
+ 00014563  0x00001409 branch  0x000038e5 , 0x00000036 
+ 00014564  0x0000140a fetch  0x00000006 , 0x00000038 
+ 00014565  0x0000140c iadd  0x00000019 , 0x00000030 
+ 00014566  0x0000140d increase  0x0000000a , 0x00000030 
+ 00014567  0x0000140e setarg  0x00000ea6 
+ 00014568  0x0000140f isub  0x00000030 , 0x0000003f 
+ 00014569  0x00001410 isolate0  0x0000000f , 0x0000003f 
+ 00014570  0x00001411 branch  0x000038ef , 0x00000001 
+ 00014571  0x00001412 setarg  0x0000f15a 
+ 00014572  0x00001413 iadd  0x00000030 , 0x00000030 
+ 00014573  0x00001415 copy  0x00000030 , 0x0000001a 
+ 00014574  0x00001416 rtn 
+ 00014575  0x00001418 force  0x00000000 , 0x0000003e 
+ 00014576  0x00001419 branch  0x000038ed 
+ 00014577  0x00001421 set0  0x00000025 , 0x00000000 
+ 00014578  0x00001422 bpatch  0x0000007e , 0x0000400f 
+ 00014579  0x00001423 call  0x000039b1 
+ 00014580  0x00001424 copy  0x00000021 , 0x0000003f 
+ 00014581  0x00001425 and_into  0x00000180 , 0x0000003f 
+ 00014582  0x00001426 compare  0x00000003 , 0x00000024 , 0x00000007 
+ 00014583  0x00001427 nbranch  0x000038fb , 0x00000001 
+ 00014584  0x00001428 rshift3  0x0000003f , 0x0000003f 
+ 00014585  0x00001429 iadd  0x00000017 , 0x0000003f 
+ 00014586  0x0000142a branch  0x000038fc 
+ 00014587  0x0000142c copy  0x00000017 , 0x0000003f 
+ 00014588  0x0000142e div  0x0000003f , 0x0000004f 
+ 00014589  0x0000142f pulse  0x00000015 
+ 00014590  0x00001430 call  0x00007f53 
+ 00014591  0x00001431 remainder  0x00000011 
+ 00014592  0x00001432 add  0x00000011 , 0xffffffd8 , 0x00000002 
+ 00014593  0x00001433 branch  0x00003904 , 0x00000002 
+ 00014594  0x00001434 lshift  0x00000011 , 0x00000002 
+ 00014595  0x00001435 branch  0x00003906 
+ 00014596  0x00001437 lshift  0x00000002 , 0x00000002 
+ 00014597  0x00001438 increase  0x00000001 , 0x00000002 
+ 00014598  0x0000143a set0  0x00000025 , 0x00000000 
+ 00014599  0x0000143b bpatch  0x0000007f , 0x0000400f 
+ 00014600  0x0000143c fetch  0x00000001 , 0x00000031 
+ 00014601  0x0000143d bbit0  0x00000003 , 0x00003918 
+ 00014602  0x0000143f fetch  0x00000004 , 0x00004172 
+ 00014603  0x00001440 isub  0x00000021 , 0x0000003e 
+ 00014604  0x00001441 branch  0x00003918 , 0x00000002 
+ 00014605  0x00001442 call  0x00003937 
+ 00014606  0x00001443 fetch  0x00000001 , 0x00004179 
+ 00014607  0x00001444 rtn  0x00000034 
+ 00014608  0x00001445 fetch  0x00000001 , 0x00000031 
+ 00014609  0x00001446 set1  0x00000002 , 0x0000003f 
+ 00014610  0x00001447 store  0x00000001 , 0x00000031 
+ 00014611  0x00001448 fetch  0x00000005 , 0x00004187 
+ 00014612  0x00001449 store  0x00000005 , 0x0000417a 
+ 00014613  0x0000144a ifetch  0x00000005 , 0x00000006 
+ 00014614  0x0000144b store  0x00000005 , 0x0000417f 
+ 00014615  0x0000144c call  0x0000393c 
+ 00014616  0x0000144e fetch  0x00000001 , 0x00000031 
+ 00014617  0x0000144f rtnbit0  0x00000002 
+ 00014618  0x00001450 isolate1  0x00000001 , 0x00000021 
+ 00014619  0x00001451 branch  0x00003934 , 0x00000001 
+ 00014620  0x00001452 rshift3  0x00000002 , 0x00000011 
+ 00014621  0x00001453 and  0x00000002 , 0x00000007 , 0x00000007 
+ 00014622  0x00001454 setarg  0x0000417a 
+ 00014623  0x00001455 iadd  0x00000011 , 0x00000011 
+ 00014624  0x00001456 ifetch  0x00000001 , 0x00000011 
+ 00014625  0x00001457 qisolate0  0x0000003f 
+ 00014626  0x00001458 branch  0x00003925 , 0x00000001 
+ 00014627  0x00001459 deposit  0x00000002 
+ 00014628  0x0000145a branch  0x00003931 
+ 00014629  0x0000145c fetch  0x00000001 , 0x00004184 
+ 00014630  0x0000145d iforce  0x00000012 
+ 00014631  0x0000145e deposit  0x00000021 
+ 00014632  0x0000145f and_into  0x00000180 , 0x0000003f 
+ 00014633  0x00001460 rshift3  0x0000003f , 0x0000003f 
+ 00014634  0x00001461 iadd  0x00000017 , 0x0000003f 
+ 00014635  0x00001462 idiv  0x00000012 
+ 00014636  0x00001463 setarg  0x00004192 
+ 00014637  0x00001464 call  0x00007f53 
+ 00014638  0x00001465 remainder  0x00000011 
+ 00014639  0x00001466 iadd  0x00000011 , 0x00000006 
+ 00014640  0x00001467 ifetch  0x00000001 , 0x00000006 
+ 00014641  0x00001469 store  0x00000001 , 0x00004185 
+ 00014642  0x0000146a iforce  0x00000002 
+ 00014643  0x0000146b rtn 
+ 00014644  0x0000146e fetch  0x00000001 , 0x00004185 
+ 00014645  0x0000146f iforce  0x00000002 
+ 00014646  0x00001470 rtn 
+ 00014647  0x00001473 fetch  0x00000001 , 0x00000031 
+ 00014648  0x00001474 set0  0x00000002 , 0x0000003f 
+ 00014649  0x00001475 set0  0x00000003 , 0x0000003f 
+ 00014650  0x00001476 store  0x00000001 , 0x00000031 
+ 00014651  0x00001477 rtn 
+ 00014652  0x0000147e set0  0x00000025 , 0x00000000 
+ 00014653  0x0000147f bpatch  0x00000080 , 0x00004010 
+ 00014654  0x00001480 arg  0x00004192 , 0x00000005 
+ 00014655  0x00001481 force  0x0000000a , 0x00000039 
+ 00014656  0x00001482 call  0x00007e91 
+ 00014657  0x00001483 arg  0x00004192 , 0x00000005 
+ 00014658  0x00001484 force  0x00000000 , 0x00000013 
+ 00014659  0x00001485 force  0x00000002 , 0x00000007 
+ 00014660  0x00001487 fetch  0x00000005 , 0x0000417a 
+ 00014661  0x00001488 iforce  0x00000002 
+ 00014662  0x00001489 compare  0x00000002 , 0x00000007 , 0x000000ff 
+ 00014663  0x0000148a branch  0x00003949 , 0x00000001 
+ 00014664  0x0000148b rshift  0x00000002 , 0x00000002 
+ 00014665  0x0000148d isolate0  0x00000000 , 0x00000002 
+ 00014666  0x0000148e branch  0x0000394d , 0x00000001 
+ 00014667  0x0000148f deposit  0x00000013 
+ 00014668  0x00001490 istore  0x00000001 , 0x00000005 
+ 00014669  0x00001492 rshift2  0x00000002 , 0x00000002 
+ 00014670  0x00001493 increase  0x00000002 , 0x00000013 
+ 00014671  0x00001494 compare  0x00000028 , 0x00000013 , 0x000000fe 
+ 00014672  0x00001495 nbranch  0x00003956 , 0x00000001 
+ 00014673  0x00001496 fetch  0x00000005 , 0x0000417f 
+ 00014674  0x00001497 iforce  0x00000002 
+ 00014675  0x00001498 compare  0x00000002 , 0x00000007 , 0x000000ff 
+ 00014676  0x00001499 branch  0x00003956 , 0x00000001 
+ 00014677  0x0000149a rshift  0x00000002 , 0x00000002 
+ 00014678  0x0000149c sub  0x00000013 , 0x0000004e , 0x0000003e 
+ 00014679  0x0000149d branch  0x00003949 , 0x00000002 
+ 00014680  0x0000149e force  0x00000001 , 0x00000013 
+ 00014681  0x0000149f increase  0xffffffff , 0x00000007 
+ 00014682  0x000014a0 nbranch  0x00003944 , 0x00000005 
+ 00014683  0x000014a1 arg  0x00004192 , 0x00000011 
+ 00014684  0x000014a2 deposit  0x00000005 
+ 00014685  0x000014a3 isub  0x00000011 , 0x0000003f 
+ 00014686  0x000014a4 store  0x00000001 , 0x00004184 
+ 00014687  0x000014a5 rtn 
+ 00014688  0x000014a8 set0  0x00000025 , 0x00000000 
+ 00014689  0x000014a9 bpatch  0x00000081 , 0x00004010 
+ 00014690  0x000014aa call  0x000038f1 
+ 00014691  0x000014ab fetch  0x00000001 , 0x0000017e 
+ 00014692  0x000014ac bbit0  0x00000005 , 0x00003966 
+ 00014693  0x000014ad fetcht  0x00000001 , 0x000003f2 
+ 00014694  0x000014af branch  0x000039b9 
+ 00014695  0x000014b3 set0  0x00000025 , 0x00000000 
+ 00014696  0x000014b4 bpatch  0x00000082 , 0x00004010 
+ 00014697  0x000014b5 call  0x000038f1 
+ 00014698  0x000014b6 fetch  0x00000001 , 0x0000017e 
+ 00014699  0x000014b7 bbit0  0x00000004 , 0x0000396d 
+ 00014700  0x000014b8 fetcht  0x00000001 , 0x000003f1 
+ 00014701  0x000014ba branch  0x000039c9 
+ 00014702  0x000014be force  0x00000000 , 0x0000002d 
+ 00014703  0x000014bf fetch  0x00000003 , 0x00004147 
+ 00014704  0x000014c0 iforce  0x0000002c 
+ 00014705  0x000014c1 rtn 
+ 00014706  0x000014c4 set0  0x00000025 , 0x00000000 
+ 00014707  0x000014c5 bpatch  0x00000083 , 0x00004010 
+ 00014708  0x000014c6 fetch  0x00000001 , 0x00004276 
+ 00014709  0x000014c7 icopy  0x0000002d 
+ 00014710  0x000014c8 fetch  0x00000003 , 0x00004273 
+ 00014711  0x000014c9 icopy  0x0000002c 
+ 00014712  0x000014ca rtn 
+ 00014713  0x000014cd set0  0x00000025 , 0x00000000 
+ 00014714  0x000014ce bpatch  0x00000084 , 0x00004010 
+ 00014715  0x000014cf fetch  0x00000002 , 0x00004144 
+ 00014716  0x000014d0 icopy  0x0000002e 
+ 00014717  0x000014d1 fetch  0x00000001 , 0x00004143 
+ 00014718  0x000014d2 icopy  0x0000002d 
+ 00014719  0x000014d3 fetch  0x00000003 , 0x00004140 
+ 00014720  0x000014d4 icopy  0x0000002c 
+ 00014721  0x000014d5 rtn 
+ 00014722  0x000014d8 set0  0x00000025 , 0x00000000 
+ 00014723  0x000014d9 bpatch  0x00000085 , 0x00004010 
+ 00014724  0x000014da fetch  0x00000002 , 0x00000044 
+ 00014725  0x000014db icopy  0x0000002e 
+ 00014726  0x000014dc fetch  0x00000001 , 0x00000043 
+ 00014727  0x000014dd icopy  0x0000002d 
+ 00014728  0x000014de fetch  0x00000003 , 0x00000040 
+ 00014729  0x000014df icopy  0x0000002c 
+ 00014730  0x000014e0 rtn 
+ 00014731  0x000014e4 bmark1  0x00000020 , 0x0000398e 
+ 00014732  0x000014e5 rtnmark0  0x0000001d 
+ 00014733  0x000014e6 rtnmark0  0x0000001f 
+ 00014734  0x000014e8 and_into  0xffffff00 , 0x0000002c 
+ 00014735  0x000014e9 pulse  0x00000015 
+ 00014736  0x000014ea nop  0x00000020 
+ 00014737  0x000014eb rtn 
+ 00014738  0x000014ef set0  0x00000025 , 0x00000000 
+ 00014739  0x000014f0 bpatch  0x00000086 , 0x00004010 
+ 00014740  0x000014f1 branch  0x000039a3 , 0x00000021 
+ 00014741  0x000014f2 hjam  0x000000d4 , 0x00000955 
+ 00014742  0x000014f3 nop  0x00000004 
+ 00014743  0x000014f4 hjam  0x000000d2 , 0x00000955 
+ 00014744  0x000014f5 nop  0x00000004 
+ 00014745  0x000014f6 hjam  0x000000d1 , 0x00000955 
+ 00014746  0x000014f7 nop  0x00000004 
+ 00014747  0x000014f8 fetch  0x00000001 , 0x00004280 
+ 00014748  0x000014fa bbit1  0x00000000 , 0x000039a1 
+ 00014749  0x000014fb bbit1  0x00000001 , 0x000039ae 
+ 00014750  0x000014fc bbit1  0x00000002 , 0x000039a1 
+ 00014751  0x000014fd bbit1  0x00000003 , 0x000039ae 
+ 00014752  0x000014fe bbit1  0x00000004 , 0x000039ae 
+ 00014753  0x00001501 hjam  0x000000d0 , 0x00000955 
+ 00014754  0x00001502 hjam  0x000000e0 , 0x00000956 
+ 00014755  0x00001504 force  0x00000000 , 0x00000015 
+ 00014756  0x00001505 disable  0x00000021 
+ 00014757  0x00001506 disable  0x00000020 
+ 00014758  0x00001507 pulse  0x0000001e 
+ 00014759  0x00001508 hjam  0x00000000 , 0x00008902 
+ 00014760  0x00001509 hjam  0x00000000 , 0x00008901 
+ 00014761  0x0000150a hjam  0x00000000 , 0x00008900 
+ 00014762  0x0000150b hjam  0x00000000 , 0x00008903 
+ 00014763  0x0000150c hjam  0x00000070 , 0x00008904 
+ 00014764  0x0000150d hjam  0x00000000 , 0x00008906 
+ 00014765  0x0000150e rtn 
+ 00014766  0x00001514 hjam  0x000000d0 , 0x00000955 
+ 00014767  0x00001515 hjam  0x000000c0 , 0x00000956 
+ 00014768  0x00001516 branch  0x000039a3 
+ 00014769  0x00001519 set0  0x00000025 , 0x00000000 
+ 00014770  0x0000151a bpatch  0x00000087 , 0x00004010 
+ 00014771  0x0000151b hjam  0x00000000 , 0x00008902 
+ 00014772  0x0000151c hjam  0x00000000 , 0x00008901 
+ 00014773  0x0000151d hjam  0x00000018 , 0x00008900 
+ 00014774  0x0000151e hjam  0x000000a7 , 0x00008903 
+ 00014775  0x0000151f hjam  0x0000007f , 0x00008904 
+ 00014776  0x00001520 rtn 
+ 00014777  0x00001523 set0  0x00000025 , 0x00000000 
+ 00014778  0x00001524 bpatch  0x00000088 , 0x00004011 
+ 00014779  0x00001526 storet  0x00000001 , 0x00000017 
+ 00014780  0x00001527 add  0x00000002 , 0x00000004 , 0x00000011 
+ 00014781  0x00001528 hjam  0x00000007 , 0x0000096d 
+ 00014782  0x00001529 branch  0x00003a13 
+ 00014783  0x0000152b set0  0x00000025 , 0x00000000 
+ 00014784  0x0000152c bpatch  0x00000089 , 0x00004011 
+ 00014785  0x0000152d hjam  0x000000cf , 0x00008901 
+ 00014786  0x0000152e nop  0x0000000a 
+ 00014787  0x0000152f hjam  0x000000ff , 0x00008900 
+ 00014788  0x00001530 hjam  0x000000af , 0x00008903 
+ 00014789  0x00001531 hjam  0x000000ff , 0x00008904 
+ 00014790  0x00001532 nop  0x0000000a 
+ 00014791  0x00001533 hjam  0x000000a0 , 0x00008902 
+ 00014792  0x00001534 rtn 
+ 00014793  0x00001538 set0  0x00000025 , 0x00000000 
+ 00014794  0x00001539 bpatch  0x0000008a , 0x00004011 
+ 00014795  0x0000153a storet  0x00000001 , 0x00000017 
+ 00014796  0x0000153b add  0x00000002 , 0x00000000 , 0x00000011 
+ 00014797  0x0000153c call  0x00003a13 
+ 00014798  0x0000153d setarg  0x00000500 
+ 00014799  0x0000153e call  0x00003b35 
+ 00014800  0x00001540 hjam  0x00000001 , 0x00008906 
+ 00014801  0x00001541 hjam  0x0000003c , 0x00008900 
+ 00014802  0x00001542 hjam  0x000000e0 , 0x00008901 
+ 00014803  0x00001543 hjam  0x00000012 , 0x0000096d 
+ 00014804  0x00001544 nop  0x0000000a 
+ 00014805  0x00001545 hjam  0x00000001 , 0x00008902 
+ 00014806  0x00001546 hjam  0x0000003d , 0x00008902 
+ 00014807  0x00001547 nop  0x0000000a 
+ 00014808  0x00001548 hjam  0x000000b7 , 0x00008903 
+ 00014809  0x00001549 nop  0x0000000a 
+ 00014810  0x0000154a hjam  0x0000007f , 0x00008902 
+ 00014811  0x0000154b fetch  0x00000001 , 0x00004280 
+ 00014812  0x0000154d bbit1  0x00000000 , 0x000039e1 
+ 00014813  0x0000154e bbit1  0x00000001 , 0x000039e5 
+ 00014814  0x0000154f bbit1  0x00000002 , 0x000039e9 
+ 00014815  0x00001550 bbit1  0x00000003 , 0x000039ed 
+ 00014816  0x00001551 bbit1  0x00000004 , 0x000039f1 
+ 00014817  0x00001553 hjam  0x000000f0 , 0x00000956 
+ 00014818  0x00001554 call  0x000039f5 
+ 00014819  0x00001555 hjam  0x000000d8 , 0x00000955 
+ 00014820  0x00001556 rtn 
+ 00014821  0x00001559 hjam  0x000000df , 0x00000956 
+ 00014822  0x0000155a call  0x000039f5 
+ 00014823  0x0000155b hjam  0x000000df , 0x00000955 
+ 00014824  0x0000155c rtn 
+ 00014825  0x0000155f hjam  0x000000ff , 0x00000956 
+ 00014826  0x00001560 call  0x000039f5 
+ 00014827  0x00001561 hjam  0x000000df , 0x00000955 
+ 00014828  0x00001562 rtn 
+ 00014829  0x00001564 hjam  0x000000ce , 0x00000956 
+ 00014830  0x00001565 call  0x000039f5 
+ 00014831  0x00001566 hjam  0x000000d8 , 0x00000955 
+ 00014832  0x00001567 rtn 
+ 00014833  0x0000156a hjam  0x000000cb , 0x00000956 
+ 00014834  0x0000156b call  0x000039f5 
+ 00014835  0x0000156c hjam  0x000000d8 , 0x00000955 
+ 00014836  0x0000156d rtn 
+ 00014837  0x00001570 nop  0x00000004 
+ 00014838  0x00001571 hjam  0x000000d1 , 0x00000955 
+ 00014839  0x00001572 nop  0x00000004 
+ 00014840  0x00001573 hjam  0x000000d2 , 0x00000955 
+ 00014841  0x00001574 nop  0x00000004 
+ 00014842  0x00001575 hjam  0x000000d4 , 0x00000955 
+ 00014843  0x00001576 rtn 
+ 00014844  0x0000157a hjam  0x00000006 , 0x00008042 
+ 00014845  0x0000157b call  0x00003b64 
+ 00014846  0x0000157d fetch  0x00000002 , 0x00004163 
+ 00014847  0x0000157e bbit0  0x0000000e , 0x000039fe 
+ 00014848  0x0000157f iforce  0x00000006 
+ 00014849  0x00001580 arg  0x00008900 , 0x00000002 
+ 00014850  0x00001582 ifetch  0x00000001 , 0x00000006 
+ 00014851  0x00001583 beq  0x000000ff , 0x00003a08 
+ 00014852  0x00001584 ior  0x00000002 , 0x00000005 
+ 00014853  0x00001585 ifetch  0x00000001 , 0x00000006 
+ 00014854  0x00001586 istore  0x00000001 , 0x00000005 
+ 00014855  0x00001587 branch  0x00003a02 
+ 00014856  0x00001589 set0  0x00000025 , 0x00000000 
+ 00014857  0x0000158a bpatch  0x0000008b , 0x00004011 
+ 00014858  0x0000158b call  0x00003cd2 
+ 00014859  0x0000158c call  0x00003a5f 
+ 00014860  0x0000158e setarg  0x000007d0 
+ 00014861  0x0000158f iadd  0x00000022 , 0x0000003f 
+ 00014862  0x00001590 store  0x00000004 , 0x00000168 
+ 00014863  0x00001591 set1  0x00000003 , 0x00000015 
+ 00014864  0x00001592 force  0x00000000 , 0x00000015 
+ 00014865  0x00001593 ncall  0x00003a2b , 0x0000002b 
+ 00014866  0x00001594 branch  0x00003a3f 
+ 00014867  0x00001598 set0  0x00000025 , 0x00000000 
+ 00014868  0x00001599 bpatch  0x0000008c , 0x00004011 
+ 00014869  0x0000159a setarg  0x00000960 
+ 00014870  0x0000159b iadd  0x00000011 , 0x00000002 
+ 00014871  0x0000159c fetch  0x00000001 , 0x0000415d 
+ 00014872  0x0000159d hjam  0x00000004 , 0x0000895f 
+ 00014873  0x0000159e imul32  0x00000002 , 0x0000003f 
+ 00014874  0x0000159f fetcht  0x00000001 , 0x0000415e 
+ 00014875  0x000015a0 idiv  0x00000002 
+ 00014876  0x000015a1 call  0x00007f53 
+ 00014877  0x000015a2 quotient  0x00000011 
+ 00014878  0x000015a3 remainder  0x0000003f 
+ 00014879  0x000015a4 lshift16  0x0000003f , 0x0000003f 
+ 00014880  0x000015a5 lshift4  0x0000003f , 0x0000003f 
+ 00014881  0x000015a6 idiv  0x00000002 
+ 00014882  0x000015a7 call  0x00007f53 
+ 00014883  0x000015a8 quotient  0x0000003f 
+ 00014884  0x000015a9 lshift8  0x0000003f , 0x0000003f 
+ 00014885  0x000015aa lshift  0x0000003f , 0x0000003f 
+ 00014886  0x000015ab ior  0x00000011 , 0x0000003f 
+ 00014887  0x000015ac hstore  0x00000004 , 0x00008960 
+ 00014888  0x000015ad hjam  0x00000044 , 0x0000895f 
+ 00014889  0x000015ae hjam  0x000000c4 , 0x0000895f 
+ 00014890  0x000015af rtn 
+ 00014891  0x000015b3 set0  0x00000025 , 0x00000000 
+ 00014892  0x000015b4 bpatch  0x0000008d , 0x00004011 
+ 00014893  0x000015b5 hjam  0x00000002 , 0x00008906 
+ 00014894  0x000015b6 setarg  0x0003d090 
+ 00014895  0x000015b7 call  0x00003b35 
+ 00014896  0x000015b8 hjam  0x0000007f , 0x00008900 
+ 00014897  0x000015b9 nop  0x00000082 
+ 00014898  0x000015ba hjam  0x00000030 , 0x00008952 
+ 00014899  0x000015bb hjam  0x000000d0 , 0x00008901 
+ 00014900  0x000015bc hjam  0x00000070 , 0x00008952 
+ 00014901  0x000015bd hjam  0x000000f0 , 0x00008952 
+ 00014902  0x000015be force  0x00000032 , 0x00000039 
+ 00014903  0x000015c0 hfetch  0x00000001 , 0x00008980 
+ 00014904  0x000015c1 bbit1  0x00000005 , 0x00003a3a 
+ 00014905  0x000015c2 loop  0x00003a37 
+ 00014906  0x000015c4 store  0x00000001 , 0x0000416e 
+ 00014907  0x000015c5 hjam  0x00000000 , 0x00008901 
+ 00014908  0x000015c6 hjam  0x00000000 , 0x00008900 
+ 00014909  0x000015c7 hjam  0x00000000 , 0x00008906 
+ 00014910  0x000015c8 rtn 
+ 00014911  0x000015cb set0  0x00000025 , 0x00000000 
+ 00014912  0x000015cc bpatch  0x0000008e , 0x00004011 
+ 00014913  0x000015cd fetch  0x00000001 , 0x0000416e 
+ 00014914  0x000015ce set1  0x00000005 , 0x0000003f 
+ 00014915  0x000015cf hstore  0x00000001 , 0x00008952 
+ 00014916  0x000015d0 hfetcht  0x00000001 , 0x00008950 
+ 00014917  0x000015d1 and_into  0x00000007 , 0x00000002 
+ 00014918  0x000015d2 lshift3  0x0000003f , 0x0000003f 
+ 00014919  0x000015d3 ior  0x00000002 , 0x0000003f 
+ 00014920  0x000015d4 hstore  0x00000001 , 0x00008950 
+ 00014921  0x000015d5 hfetch  0x00000001 , 0x00008951 
+ 00014922  0x000015d6 set0  0x00000000 , 0x0000003f 
+ 00014923  0x000015d7 hstore  0x00000001 , 0x00008951 
+ 00014924  0x000015d8 hfetch  0x00000001 , 0x00008952 
+ 00014925  0x000015d9 set0  0x00000005 , 0x0000003f 
+ 00014926  0x000015da hstore  0x00000001 , 0x00008952 
+ 00014927  0x000015db rtn 
+ 00014928  0x000015de set0  0x00000025 , 0x00000000 
+ 00014929  0x000015df bpatch  0x0000008f , 0x00004011 
+ 00014930  0x000015e0 hfetch  0x00000002 , 0x00008981 
+ 00014931  0x000015e1 rshift4  0x0000003f , 0x0000003f 
+ 00014932  0x000015e2 rshift3  0x0000003f , 0x0000003f 
+ 00014933  0x000015e3 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00014934  0x000015e4 and_into  0x000000ff , 0x0000003f 
+ 00014935  0x000015e5 div  0x0000003f , 0x0000000a 
+ 00014936  0x000015e6 call  0x00007f53 
+ 00014937  0x000015e7 quotient  0x0000003f 
+ 00014938  0x000015e8 lshift4  0x0000003f , 0x0000003f 
+ 00014939  0x000015e9 remainder  0x00000002 
+ 00014940  0x000015ea ior  0x00000002 , 0x0000003f 
+ 00014941  0x000015eb store  0x00000001 , 0x00000018 
+ 00014942  0x000015ec rtn 
+ 00014943  0x000015f0 hjam  0x00000006 , 0x00008042 
+ 00014944  0x000015f1 hfetch  0x00000001 , 0x0000896b 
+ 00014945  0x000015f2 set0  0x00000004 , 0x0000003f 
+ 00014946  0x000015f3 set0  0x00000005 , 0x0000003f 
+ 00014947  0x000015f4 hstore  0x00000001 , 0x0000896b 
+ 00014948  0x000015f5 hjam  0x00000000 , 0x00008905 
+ 00014949  0x000015f6 hjam  0x00000000 , 0x00008904 
+ 00014950  0x000015f7 hjam  0x00000070 , 0x00008904 
+ 00014951  0x000015f8 hjam  0x000000ff , 0x00008905 
+ 00014952  0x000015f9 hfetch  0x00000001 , 0x0000896b 
+ 00014953  0x000015fa set1  0x00000004 , 0x0000003f 
+ 00014954  0x000015fb set1  0x00000005 , 0x0000003f 
+ 00014955  0x000015fc hstore  0x00000001 , 0x0000896b 
+ 00014956  0x000015fd call  0x00003a7d 
+ 00014957  0x000015fe hfetch  0x00000001 , 0x00008968 
+ 00014958  0x000015ff set1  0x00000007 , 0x0000003f 
+ 00014959  0x00001600 hstore  0x00000001 , 0x00008968 
+ 00014960  0x00001601 set0  0x00000007 , 0x0000003f 
+ 00014961  0x00001602 hstore  0x00000001 , 0x00008968 
+ 00014962  0x00001603 set1  0x00000007 , 0x0000003f 
+ 00014963  0x00001604 hstore  0x00000001 , 0x00008968 
+ 00014964  0x00001606 hjam  0x00000004 , 0x00008042 
+ 00014965  0x00001607 hfetch  0x00000001 , 0x0000896b 
+ 00014966  0x00001608 and_into  0x000000cf , 0x0000003f 
+ 00014967  0x00001609 hstore  0x00000001 , 0x0000896b 
+ 00014968  0x0000160a or_into  0x00000030 , 0x0000003f 
+ 00014969  0x0000160b hstore  0x00000001 , 0x0000896b 
+ 00014970  0x0000160c rtn 
+ 00014971  0x00001610 setarg  0x00000f0f 
+ 00014972  0x00001611 branch  0x00003ceb 
+ 00014973  0x00001614 setarg  0x0000080f 
+ 00014974  0x00001615 branch  0x00003ceb 
+ 00014975  0x0000161a set0  0x00000025 , 0x00000000 
+ 00014976  0x0000161b bpatch  0x00000090 , 0x00004012 
+ 00014977  0x0000161c call  0x000039bf 
+ 00014978  0x0000161d disable  0x00000020 
+ 00014979  0x0000161e enable  0x00000021 
+ 00014980  0x0000161f pulse  0x00000016 
+ 00014981  0x00001620 rtn 
+ 00014982  0x00001623 set0  0x00000025 , 0x00000000 
+ 00014983  0x00001624 bpatch  0x00000091 , 0x00004012 
+ 00014984  0x00001625 fetch  0x00000001 , 0x0000004c 
+ 00014985  0x00001626 isolate1  0x00000002 , 0x0000003f 
+ 00014986  0x00001627 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00014987  0x00001628 hstore  0x00000001 , 0x00008011 
+ 00014988  0x00001629 arg  0x00000062 , 0x00000006 
+ 00014989  0x0000162a ifetch  0x00000009 , 0x00000006 
+ 00014990  0x0000162b iforce  0x00000032 
+ 00014991  0x0000162c ifetch  0x00000007 , 0x00000006 
+ 00014992  0x0000162d iforce  0x00000033 
+ 00014993  0x0000162e fetch  0x00000001 , 0x00000054 
+ 00014994  0x0000162f add  0x0000003f , 0xffffffff , 0x00000034 
+ 00014995  0x00001630 pulse  0x0000001a 
+ 00014996  0x00001631 rtn 
+ 00014997  0x00001634 deposit  0x0000001a 
+ 00014998  0x00001635 store  0x00000006 , 0x00000099 
+ 00014999  0x00001636 disable  0x0000000d 
+ 00015000  0x00001637 nbranch  0x00003992 , 0x00000018 
+ 00015001  0x00001638 arg  0x000003bb , 0x00000029 
+ 00015002  0x00001639 increase  0x00000001 , 0x00000028 
+ 00015003  0x0000163a and_into  0x000001fc , 0x00000028 
+ 00015004  0x0000163b rtn 
+ 00015005  0x00001640 enable  0x0000000d 
+ 00015006  0x00001642 correlate  0x0000003e , 0x00000017 
+ 00015007  0x00001643 branch  0x00003a95 , 0x00000018 
+ 00015008  0x00001644 compare  0x00000002 , 0x00000028 , 0x00000002 
+ 00015009  0x00001645 nbranch  0x00003a9e , 0x00000001 
+ 00015010  0x00001646 branch  0x00003a95 
+ 00015011  0x00001649 set0  0x00000025 , 0x00000000 
+ 00015012  0x0000164a bpatch  0x00000092 , 0x00004012 
+ 00015013  0x0000164b arg  0x00000600 , 0x0000000b 
+ 00015014  0x0000164c enable  0x0000000d 
+ 00015015  0x0000164d correlate  0x00000023 , 0x00000026 
+ 00015016  0x0000164e disable  0x0000000d 
+ 00015017  0x0000164f nbranch  0x00003992 , 0x00000018 
+ 00015018  0x00001650 rtn 
+ 00015019  0x00001653 set0  0x00000025 , 0x00000000 
+ 00015020  0x00001654 bpatch  0x00000093 , 0x00004012 
+ 00015021  0x00001655 enable  0x0000000d 
+ 00015022  0x00001656 correlate  0x0000003e , 0x00000003 
+ 00015023  0x00001657 disable  0x0000000d 
+ 00015024  0x00001658 nbranch  0x00003992 , 0x00000018 
+ 00015025  0x00001659 arg  0x000003bb , 0x00000029 
+ 00015026  0x0000165a and_into  0x000001fc , 0x00000028 
+ 00015027  0x0000165b rtn 
+ 00015028  0x0000165f set0  0x00000025 , 0x00000000 
+ 00015029  0x00001660 bpatch  0x00000094 , 0x00004012 
+ 00015030  0x00001661 iforce  0x00000011 
+ 00015031  0x00001662 deposit  0x00000021 
+ 00015032  0x00001663 iadd  0x00000002 , 0x0000000b 
+ 00015033  0x00001664 copy  0x0000000b , 0x0000003f 
+ 00015034  0x00001665 store  0x00000004 , 0x0000416a 
+ 00015035  0x00001666 deposit  0x00000011 
+ 00015036  0x00001667 rtn 
+ 00015037  0x0000166b copy  0x0000003f , 0x00000002 
+ 00015038  0x0000166c set0  0x00000025 , 0x00000000 
+ 00015039  0x0000166d bpatch  0x00000095 , 0x00004012 
+ 00015040  0x0000166e copy  0x00000002 , 0x0000003f 
+ 00015041  0x0000166f call  0x00007f1d 
+ 00015042  0x00001670 lshift16  0x00000021 , 0x0000003f 
+ 00015043  0x00001671 set1  0x0000002c , 0x0000003f 
+ 00015044  0x00001672 call  0x00007f06 
+ 00015045  0x00001673 set0  0x0000002c , 0x0000003f 
+ 00015046  0x00001674 call  0x00003b1a 
+ 00015047  0x00001675 call  0x00007f06 
+ 00015048  0x00001676 rtn  0x00000028 
+ 00015049  0x00001677 call  0x00007f10 
+ 00015050  0x00001678 iforce  0x0000001b 
+ 00015051  0x00001679 until  0x0000003e , 0x00000003 
+ 00015052  0x0000167a rtn 
+ 00015053  0x0000167e set0  0x00000025 , 0x00000000 
+ 00015054  0x0000167f bpatch  0x00000096 , 0x00004012 
+ 00015055  0x00001680 branch  0x00003ad3 , 0x00000030 
+ 00015056  0x00001681 until  0x00000029 , 0x00000026 
+ 00015057  0x00001683 copy  0x00000028 , 0x00000002 
+ 00015058  0x00001684 branch  0x00003ad6 
+ 00015059  0x00001686 branch  0x00003ad5 , 0x0000002e 
+ 00015060  0x00001687 until  0x00000023 , 0x00000026 
+ 00015061  0x00001689 copy  0x00000022 , 0x00000002 
+ 00015062  0x0000168b branch  0x00003ae3 , 0x00000028 
+ 00015063  0x0000168c compare  0x00000001 , 0x00000002 , 0x00000003 
+ 00015064  0x0000168d nbranch  0x00003acd , 0x00000001 
+ 00015065  0x0000168f set0  0x00000025 , 0x00000000 
+ 00015066  0x00001690 bpatch  0x00000097 , 0x00004012 
+ 00015067  0x00001691 fetch  0x00000001 , 0x00000030 
+ 00015068  0x00001692 rtnbit0  0x00000000 
+ 00015069  0x00001693 fetch  0x00000004 , 0x0000416a 
+ 00015070  0x00001694 isub  0x00000002 , 0x0000003f 
+ 00015071  0x00001695 nrtn  0x00000002 
+ 00015072  0x00001696 sub  0x0000003f , 0x000000ff , 0x0000003e 
+ 00015073  0x00001697 branch  0x00003acd , 0x00000002 
+ 00015074  0x00001698 rtn 
+ 00015075  0x0000169a compare  0x00000003 , 0x00000002 , 0x00000003 
+ 00015076  0x0000169b nbranch  0x00003acd , 0x00000001 
+ 00015077  0x0000169c branch  0x00003ad9 
+ 00015078  0x0000169f set0  0x00000025 , 0x00000000 
+ 00015079  0x000016a0 bpatch  0x00000098 , 0x00004013 
+ 00015080  0x000016a1 arg  0x00000600 , 0x0000000b 
+ 00015081  0x000016a2 branch  0x00003acd 
+ 00015082  0x000016a5 disable  0x00000028 
+ 00015083  0x000016a6 branch  0x00003ae6 
+ 00015084  0x000016a9 enable  0x00000028 
+ 00015085  0x000016aa branch  0x00003ae6 
+ 00015086  0x000016ad set0  0x00000025 , 0x00000000 
+ 00015087  0x000016ae bpatch  0x00000099 , 0x00004013 
+ 00015088  0x000016af call  0x00003a86 
+ 00015089  0x000016b0 disable  0x00000021 
+ 00015090  0x000016b1 enable  0x00000020 
+ 00015091  0x000016b2 rtn 
+ 00015092  0x000016b7 set0  0x00000025 , 0x00000000 
+ 00015093  0x000016b8 bpatch  0x0000009a , 0x00004013 
+ 00015094  0x000016b9 arg  0x00000e43 , 0x0000000b 
+ 00015095  0x000016ba until  0x00000023 , 0x00000026 
+ 00015096  0x000016bb pulse  0x00000016 
+ 00015097  0x000016bc rtn 
+ 00015098  0x000016bf set0  0x00000025 , 0x00000000 
+ 00015099  0x000016c0 bpatch  0x0000009b , 0x00004013 
+ 00015100  0x000016c1 arg  0x00000d00 , 0x0000000b 
+ 00015101  0x000016c2 until  0x00000023 , 0x00000026 
+ 00015102  0x000016c3 rtn 
+ 00015103  0x000016c7 set0  0x00000025 , 0x00000000 
+ 00015104  0x000016c8 bpatch  0x0000009c , 0x00004013 
+ 00015105  0x000016c9 arg  0x00000e43 , 0x0000000b 
+ 00015106  0x000016ca until  0x00000029 , 0x00000026 
+ 00015107  0x000016cb pulse  0x00000016 
+ 00015108  0x000016cc rtn 
+ 00015109  0x000016cf set0  0x00000025 , 0x00000000 
+ 00015110  0x000016d0 bpatch  0x0000009d , 0x00004013 
+ 00015111  0x000016d1 preload  0x00000009 
+ 00015112  0x000016d2 enable  0x0000001d 
+ 00015113  0x000016d3 set1  0x00000000 , 0x00000015 
+ 00015114  0x000016d4 inject  0x00000003 , 0x00000048 
+ 00015115  0x000016d5 disable  0x0000001d 
+ 00015116  0x000016d6 rtn 
+ 00015117  0x000016da copy  0x00000025 , 0x00000002 
+ 00015118  0x000016db or_into  0x00000060 , 0x00000002 
+ 00015119  0x000016dc copy  0x00000002 , 0x0000000e 
+ 00015120  0x000016dd rtn 
+ 00015121  0x000016e3 set0  0x00000025 , 0x00000000 
+ 00015122  0x000016e4 bpatch  0x0000009e , 0x00004013 
+ 00015123  0x000016e5 fetch  0x00000001 , 0x00004130 
+ 00015124  0x000016e6 increase  0x00000001 , 0x0000003f 
+ 00015125  0x000016e7 bne  0x00000007 , 0x00003b17 
+ 00015126  0x000016e8 force  0x00000001 , 0x0000003f 
+ 00015127  0x000016ea store  0x00000001 , 0x00004130 
+ 00015128  0x000016eb iforce  0x00000004 
+ 00015129  0x000016ec rtn 
+ 00015130  0x000016ef copy  0x00000019 , 0x00000002 
+ 00015131  0x000016f0 rtn  0x00000029 
+ 00015132  0x000016f1 copy  0x0000001a , 0x00000002 
+ 00015133  0x000016f2 rtn 
+ 00015134  0x000016f5 deposit  0x00000022 
+ 00015135  0x000016f6 rtn  0x00000029 
+ 00015136  0x000016f7 deposit  0x00000028 
+ 00015137  0x000016f8 rtn 
+ 00015138  0x000016fc set0  0x00000025 , 0x00000000 
+ 00015139  0x000016fd bpatch  0x0000009f , 0x00004013 
+ 00015140  0x000016fe fetcht  0x00000004 , 0x0000004d 
+ 00015141  0x000016ff call  0x00003b1e 
+ 00015142  0x00001700 isub  0x00000002 , 0x0000000b 
+ 00015143  0x00001701 deposit  0x0000000b 
+ 00015144  0x00001702 fetcht  0x00000002 , 0x00000051 
+ 00015145  0x00001703 lshift  0x00000002 , 0x00000002 
+ 00015146  0x00001704 isub  0x00000002 , 0x0000003f 
+ 00015147  0x00001705 rtn 
+ 00015148  0x00001708 set0  0x00000025 , 0x00000000 
+ 00015149  0x00001709 bpatch  0x000000a0 , 0x00004014 
+ 00015150  0x0000170a call  0x00003b1e 
+ 00015151  0x0000170b store  0x00000004 , 0x0000004d 
+ 00015152  0x0000170c rtn 
+ 00015153  0x0000170f set0  0x00000025 , 0x00000000 
+ 00015154  0x00001710 bpatch  0x000000a1 , 0x00004014 
+ 00015155  0x00001711 rtn 
+ 00015156  0x00001714 branch  0x00003b34 
+ 00015157  0x00001717 rtn  0x00000034 
+ 00015158  0x00001719 rshift  0x0000003f , 0x0000003f 
+ 00015159  0x0000171a increase  0xfffffffd , 0x0000003f 
+ 00015160  0x0000171c increase  0xffffffff , 0x0000003f 
+ 00015161  0x0000171d nbranch  0x00003b38 , 0x00000005 
+ 00015162  0x0000171e force  0x00000000 , 0x0000003f 
+ 00015163  0x0000171f rtn 
+ 00015164  0x00001725 arg  0x00000010 , 0x00000039 
+ 00015165  0x00001726 arg  0x00000000 , 0x00000005 
+ 00015166  0x00001727 call  0x00007e91 
+ 00015167  0x00001728 arg  0x00000362 , 0x00000005 
+ 00015168  0x00001729 arg  0x0000000a , 0x00000039 
+ 00015169  0x0000172a call  0x00007e91 
+ 00015170  0x0000172b jam  0x00000000 , 0x000008d6 
+ 00015171  0x0000172c jam  0x00000000 , 0x000009bd 
+ 00015172  0x0000172d jam  0x00000000 , 0x000003b0 
+ 00015173  0x0000172e jam  0x00000000 , 0x0000017e 
+ 00015174  0x0000172f jam  0x00000000 , 0x000003f7 
+ 00015175  0x00001730 set0  0x00000025 , 0x00000000 
+ 00015176  0x00001731 bpatch  0x000000a2 , 0x00004014 
+ 00015177  0x00001732 jam  0x00000000 , 0x0000016c 
+ 00015178  0x00001733 jam  0x00000000 , 0x00000150 
+ 00015179  0x00001734 jam  0x00000000 , 0x0000015b 
+ 00015180  0x00001735 setarg  0x009e8b33 
+ 00015181  0x00001736 store  0x00000003 , 0x00004147 
+ 00015182  0x00001737 setarg  0x00000153 
+ 00015183  0x00001738 store  0x00000002 , 0x00000083 
+ 00015184  0x00001739 jam  0x0000001e , 0x00000085 
+ 00015185  0x0000173a jam  0x00000001 , 0x00000086 
+ 00015186  0x0000173b jam  0x00000007 , 0x00000088 
+ 00015187  0x0000173c setarg  0x0012e904 
+ 00015188  0x0000173d store  0x00000003 , 0x00000080 
+ 00015189  0x00001742 jam  0x00000060 , 0x0000008f 
+ 00015190  0x00001743 jam  0x00000005 , 0x00004170 
+ 00015191  0x00001744 jam  0x00000002 , 0x00000014 
+ 00015192  0x00001745 fetch  0x00000001 , 0x000046e2 
+ 00015193  0x00001746 ncall  0x000071ea , 0x00000034 
+ 00015194  0x00001747 fetch  0x00000001 , 0x00004563 
+ 00015195  0x00001748 ncall  0x00007241 , 0x00000034 
+ 00015196  0x00001749 set0  0x00000025 , 0x00000000 
+ 00015197  0x0000174a bpatch  0x000000a3 , 0x00004014 
+ 00015198  0x0000174b rtn  0x0000002b 
+ 00015199  0x0000174c setarg  0x00000000 
+ 00015200  0x0000174d store  0x00000002 , 0x0000427e 
+ 00015201  0x0000174e rshift  0x00000022 , 0x0000003f 
+ 00015202  0x0000174f store  0x00000004 , 0x00004134 
+ 00015203  0x00001750 rtn 
+ 00015204  0x00001753 hjam  0x0000001f , 0x00000909 
+ 00015205  0x00001754 hjam  0x00000045 , 0x00000912 
+ 00015206  0x00001755 hjam  0x00000000 , 0x00000953 
+ 00015207  0x00001756 hjam  0x00000088 , 0x0000096f 
+ 00015208  0x00001757 hjam  0x00000030 , 0x00000973 
+ 00015209  0x00001758 hjam  0x000000c9 , 0x00000956 
+ 00015210  0x0000175a hjam  0x000000ff , 0x00000907 
+ 00015211  0x0000175b hjam  0x00000001 , 0x00000908 
+ 00015212  0x0000175c hjam  0x000000f8 , 0x0000090a 
+ 00015213  0x0000175d hjam  0x000000ff , 0x0000090b 
+ 00015214  0x0000175e hjam  0x000000fb , 0x0000091a 
+ 00015215  0x0000175f hjam  0x000000fb , 0x0000091b 
+ 00015216  0x00001760 hjam  0x000000fb , 0x0000091c 
+ 00015217  0x00001761 hjam  0x000000f6 , 0x0000091d 
+ 00015218  0x00001762 hjam  0x000000f2 , 0x0000091e 
+ 00015219  0x00001763 hjam  0x000000ee , 0x0000091f 
+ 00015220  0x00001764 hjam  0x000000ea , 0x00000920 
+ 00015221  0x00001765 hjam  0x000000e6 , 0x00000921 
+ 00015222  0x00001766 hjam  0x000000e2 , 0x00000922 
+ 00015223  0x00001767 hjam  0x000000de , 0x00000923 
+ 00015224  0x00001768 hjam  0x000000da , 0x00000924 
+ 00015225  0x00001769 hjam  0x000000d6 , 0x00000925 
+ 00015226  0x0000176a hjam  0x000000d2 , 0x00000926 
+ 00015227  0x0000176b hjam  0x000000ce , 0x00000927 
+ 00015228  0x0000176c hjam  0x000000ca , 0x00000928 
+ 00015229  0x0000176d hjam  0x000000c6 , 0x00000929 
+ 00015230  0x0000176e hjam  0x000000c2 , 0x0000092a 
+ 00015231  0x0000176f hjam  0x000000bd , 0x0000092b 
+ 00015232  0x00001770 hjam  0x000000b9 , 0x0000092c 
+ 00015233  0x00001771 hjam  0x000000b5 , 0x0000092d 
+ 00015234  0x00001772 hjam  0x000000b1 , 0x0000092e 
+ 00015235  0x00001773 hjam  0x000000ad , 0x0000092f 
+ 00015236  0x00001774 hjam  0x000000a9 , 0x00000930 
+ 00015237  0x00001775 hjam  0x00000080 , 0x00000931 
+ 00015238  0x00001776 hjam  0x00000080 , 0x00000932 
+ 00015239  0x00001777 hjam  0x00000080 , 0x00000933 
+ 00015240  0x00001778 hjam  0x000000c0 , 0x00000934 
+ 00015241  0x00001779 hjam  0x000000c1 , 0x00000935 
+ 00015242  0x0000177a hjam  0x000000c2 , 0x00000936 
+ 00015243  0x0000177b hjam  0x000000c3 , 0x00000937 
+ 00015244  0x0000177c hjam  0x000000c4 , 0x00000938 
+ 00015245  0x0000177d hjam  0x000000c5 , 0x00000939 
+ 00015246  0x0000177e hjam  0x000000c6 , 0x0000093a 
+ 00015247  0x0000177f hjam  0x000000c7 , 0x0000093b 
+ 00015248  0x00001780 hjam  0x00000006 , 0x0000093c 
+ 00015249  0x00001781 hjam  0x00000007 , 0x0000093d 
+ 00015250  0x00001782 hjam  0x00000046 , 0x0000093e 
+ 00015251  0x00001783 hjam  0x00000085 , 0x0000093f 
+ 00015252  0x00001784 hjam  0x00000086 , 0x00000940 
+ 00015253  0x00001785 hjam  0x00000087 , 0x00000941 
+ 00015254  0x00001786 hjam  0x000000c6 , 0x00000942 
+ 00015255  0x00001787 hjam  0x000000c7 , 0x00000943 
+ 00015256  0x00001788 hjam  0x000000d6 , 0x00000944 
+ 00015257  0x00001789 hjam  0x000000d7 , 0x00000945 
+ 00015258  0x0000178a hjam  0x000000e6 , 0x00000946 
+ 00015259  0x0000178b hjam  0x000000f5 , 0x00000947 
+ 00015260  0x0000178c hjam  0x00000000 , 0x00000948 
+ 00015261  0x0000178d hjam  0x000000f8 , 0x00000949 
+ 00015262  0x0000178e hjam  0x0000007f , 0x0000094a 
+ 00015263  0x0000178f hjam  0x000000fb , 0x0000094c 
+ 00015264  0x00001790 hjam  0x000000ef , 0x0000094d 
+ 00015265  0x00001791 hjam  0x000000ec , 0x0000094e 
+ 00015266  0x00001792 hjam  0x0000005e , 0x0000094f 
+ 00015267  0x00001793 hjam  0x0000004c , 0x00000957 
+ 00015268  0x00001794 hjam  0x0000006c , 0x00000958 
+ 00015269  0x00001795 hjam  0x00000050 , 0x00000959 
+ 00015270  0x00001796 hjam  0x000000e4 , 0x00000968 
+ 00015271  0x00001797 hjam  0x00000000 , 0x00000969 
+ 00015272  0x00001798 hjam  0x00000000 , 0x0000096a 
+ 00015273  0x00001799 hjam  0x00000030 , 0x0000096b 
+ 00015274  0x0000179a rtn 
+ 00015275  0x000017a4 setarg  0x0000ee21 
+ 00015276  0x000017a5 hstore  0x00000002 , 0x00008050 
+ 00015277  0x000017a6 hfetch  0x00000001 , 0x0000813e 
+ 00015278  0x000017a7 bbit0  0x00000003 , 0x0000613b 
+ 00015279  0x000017a8 enable  0x0000002b 
+ 00015280  0x000017a9 bbit0  0x00000007 , 0x00003bb6 
+ 00015281  0x000017aa disable  0x0000002b 
+ 00015282  0x000017ab deposit  0x00000027 
+ 00015283  0x000017ac nbranch  0x00003bb6 , 0x00000034 
+ 00015284  0x000017ad arg  0xffffffff , 0x00000002 
+ 00015285  0x000017ae branch  0x00003c24 
+ 00015286  0x000017b0 hfetch  0x00000003 , 0x0000813c 
+ 00015287  0x000017b1 hstore  0x00000003 , 0x0000804c 
+ 00015288  0x000017b2 ifetch  0x00000001 , 0x00000006 
+ 00015289  0x000017b3 or_into  0x000000ef , 0x0000003f 
+ 00015290  0x000017b4 istore  0x00000001 , 0x00000005 
+ 00015291  0x000017b5 call  0x00003cf6 
+ 00015292  0x000017b6 hfetch  0x00000001 , 0x0000804f 
+ 00015293  0x000017b7 set1  0x00000004 , 0x0000003f 
+ 00015294  0x000017b8 hstore  0x00000001 , 0x0000804f 
+ 00015295  0x000017b9 call  0x00003cf6 
+ 00015296  0x000017ba call  0x00003bc7 , 0x0000002b 
+ 00015297  0x000017bb hfetch  0x00000001 , 0x0000804e 
+ 00015298  0x000017bc set0  0x00000003 , 0x0000003f 
+ 00015299  0x000017bd hstore  0x00000001 , 0x0000804e 
+ 00015300  0x000017be call  0x00003cf6 
+ 00015301  0x000017bf rtn  0x0000002b 
+ 00015302  0x000017c0 branch  0x0000613b 
+ 00015303  0x000017c3 fetch  0x00000001 , 0x00004238 
+ 00015304  0x000017c4 hstore  0x00000001 , 0x00008086 
+ 00015305  0x000017c5 fetch  0x00000003 , 0x0000422d 
+ 00015306  0x000017c6 hstore  0x00000003 , 0x00008080 
+ 00015307  0x000017c7 fetch  0x00000004 , 0x00004221 
+ 00015308  0x000017c8 hstore  0x00000004 , 0x00008074 
+ 00015309  0x000017c9 fetch  0x00000004 , 0x0000421d 
+ 00015310  0x000017ca hstore  0x00000004 , 0x00008070 
+ 00015311  0x000017cb fetch  0x00000008 , 0x00004225 
+ 00015312  0x000017cc hstore  0x00000008 , 0x00008078 
+ 00015313  0x000017cd fetch  0x00000008 , 0x00004230 
+ 00015314  0x000017ce iforce  0x00000000 
+ 00015315  0x000017cf hfetch  0x00000008 , 0x00008140 
+ 00015316  0x000017d0 store  0x00000008 , 0x000000a0 
+ 00015317  0x000017d1 call  0x0000619f 
+ 00015318  0x000017d2 rtn 
+ 00015319  0x000017d5 deposit  0x00000000 
+ 00015320  0x000017d6 store  0x00000008 , 0x00004230 
+ 00015321  0x000017d7 hfetch  0x00000008 , 0x00008070 
+ 00015322  0x000017d8 store  0x00000008 , 0x0000421d 
+ 00015323  0x000017d9 ifetch  0x00000008 , 0x00000006 
+ 00015324  0x000017da istore  0x00000008 , 0x00000005 
+ 00015325  0x000017db hfetch  0x00000003 , 0x00008080 
+ 00015326  0x000017dc store  0x00000003 , 0x0000422d 
+ 00015327  0x000017dd hfetch  0x00000001 , 0x00008086 
+ 00015328  0x000017de store  0x00000001 , 0x00004238 
+ 00015329  0x000017df branch  0x00003cfc 
+ 00015330  0x000017e2 hfetch  0x00000001 , 0x000080b4 
+ 00015331  0x000017e3 nbranch  0x00003be8 , 0x00000034 
+ 00015332  0x000017e4 fetch  0x00000003 , 0x0000420f 
+ 00015333  0x000017e5 nrtn  0x00000034 
+ 00015334  0x000017e6 hjam  0x000000c0 , 0x000080b4 
+ 00015335  0x000017e7 hjam  0x00000080 , 0x00008006 
+ 00015336  0x000017e9 hfetch  0x00000001 , 0x0000812d 
+ 00015337  0x000017ea rtnbit0  0x00000001 
+ 00015338  0x000017eb hfetch  0x00000003 , 0x00008149 
+ 00015339  0x000017ec store  0x00000003 , 0x0000420f 
+ 00015340  0x000017ed rtn 
+ 00015341  0x000017f2 set0  0x00000025 , 0x00000000 
+ 00015342  0x000017f3 bpatch  0x000000a4 , 0x00004014 
+ 00015343  0x000017f4 deposit  0x0000001a 
+ 00015344  0x000017f5 call  0x00007f04 
+ 00015345  0x000017f6 fetcht  0x00000004 , 0x000041ff 
+ 00015346  0x000017f7 sub  0x00000002 , 0x000000ff , 0x0000003e 
+ 00015347  0x000017f8 rtn  0x00000002 
+ 00015348  0x000017f9 lshift8  0x0000003f , 0x0000003f 
+ 00015349  0x000017fa lshift4  0x0000003f , 0x0000003f 
+ 00015350  0x000017fb idiv  0x00000002 
+ 00015351  0x000017fc call  0x00007f53 
+ 00015352  0x000017fd quotient  0x0000003f 
+ 00015353  0x000017fe arg  0x000000c8 , 0x00000002 
+ 00015354  0x000017ff call  0x00007f5e 
+ 00015355  0x00001800 store  0x00000001 , 0x00000098 
+ 00015356  0x00001801 nbranch  0x00003bfe , 0x00000028 
+ 00015357  0x00001802 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00015358  0x00001804 fetcht  0x00000003 , 0x0000420f 
+ 00015359  0x00001805 iadd  0x00000002 , 0x0000003f 
+ 00015360  0x00001806 store  0x00000003 , 0x0000420f 
+ 00015361  0x00001808 setarg  0x00000000 
+ 00015362  0x00001809 store  0x00000004 , 0x000041ff 
+ 00015363  0x0000180a rtn 
+ 00015364  0x0000180e set0  0x00000025 , 0x00000000 
+ 00015365  0x0000180f bpatch  0x000000a5 , 0x00004014 
+ 00015366  0x00001810 call  0x00003cfc 
+ 00015367  0x00001811 hfetch  0x00000004 , 0x00008138 
+ 00015368  0x00001812 set0  0x0000000f , 0x0000003f 
+ 00015369  0x00001813 hstore  0x00000004 , 0x0000804c 
+ 00015370  0x00001814 call  0x00003cf4 
+ 00015371  0x00001816 arg  0xffffffff , 0x00000002 
+ 00015372  0x00001817 fetch  0x00000001 , 0x000041f7 
+ 00015373  0x00001818 store  0x00000001 , 0x0000421c 
+ 00015374  0x00001819 fetch  0x00000001 , 0x0000421a 
+ 00015375  0x0000181a set1  0x00000007 , 0x0000003f 
+ 00015376  0x0000181b store  0x00000001 , 0x0000421a 
+ 00015377  0x0000181f set0  0x00000025 , 0x00000000 
+ 00015378  0x00001820 bpatch  0x000000a6 , 0x00004014 
+ 00015379  0x00001821 call  0x00003a7b 
+ 00015380  0x00001822 fetch  0x00000004 , 0x000041ff 
+ 00015381  0x00001823 iadd  0x00000002 , 0x0000003f 
+ 00015382  0x00001824 store  0x00000004 , 0x000041ff 
+ 00015383  0x00001825 call  0x00003bd7 
+ 00015384  0x00001826 fetch  0x00000005 , 0x00004218 
+ 00015385  0x00001827 hstore  0x00000004 , 0x0000804c 
+ 00015386  0x00001828 rshift32  0x0000003f , 0x00000011 
+ 00015387  0x00001829 until  0x0000003e , 0x00000033 
+ 00015388  0x0000182a deposit  0x00000019 
+ 00015389  0x0000182b store  0x00000006 , 0x00004203 
+ 00015390  0x0000182c hjam  0x00000002 , 0x00008005 
+ 00015391  0x0000182d until  0x0000003e , 0x00000033 
+ 00015392  0x0000182e until  0x0000003e , 0x00000033 
+ 00015393  0x0000182f deposit  0x00000011 
+ 00015394  0x00001830 hstore  0x00000001 , 0x0000804f 
+ 00015395  0x00001831 hjam  0x00000002 , 0x00008005 
+ 00015396  0x00001833 until  0x0000003e , 0x00000033 
+ 00015397  0x00001834 until  0x0000003e , 0x00000033 
+ 00015398  0x00001835 hstoret  0x00000004 , 0x0000804c 
+ 00015399  0x00001836 hjam  0x00000010 , 0x00008005 
+ 00015400  0x00001837 until  0x0000003e , 0x0000003f 
+ 00015401  0x0000183d set0  0x00000025 , 0x00000000 
+ 00015402  0x0000183e bpatch  0x000000a7 , 0x00004014 
+ 00015403  0x0000183f setarg  0x00000000 
+ 00015404  0x00001840 copy  0x00000027 , 0x0000003e 
+ 00015405  0x00001841 branch  0x00003c35 , 0x00000005 
+ 00015406  0x00001842 hfetch  0x00000001 , 0x0000813c 
+ 00015407  0x00001843 hfetcht  0x00000001 , 0x0000813d 
+ 00015408  0x00001844 isub  0x00000002 , 0x0000003e 
+ 00015409  0x00001845 branch  0x00003c33 , 0x00000002 
+ 00015410  0x00001846 deposit  0x00000002 
+ 00015411  0x00001848 isub  0x00000027 , 0x0000003f 
+ 00015412  0x00001849 increase  0x00000001 , 0x0000003f 
+ 00015413  0x0000184b increase  0x00000008 , 0x0000003f 
+ 00015414  0x0000184c until  0x0000003e , 0x00000033 
+ 00015415  0x0000184d iadd  0x00000031 , 0x0000003f 
+ 00015416  0x0000184e fetcht  0x00000004 , 0x000041fb 
+ 00015417  0x0000184f iadd  0x00000002 , 0x0000003f 
+ 00015418  0x00001850 fetcht  0x00000003 , 0x0000420f 
+ 00015419  0x00001851 imul32  0x00000002 , 0x0000003f 
+ 00015420  0x00001852 rshift8  0x0000003f , 0x0000003f 
+ 00015421  0x00001853 rshift4  0x0000003f , 0x0000003f 
+ 00015422  0x00001854 increase  0x0000006e , 0x0000003f 
+ 00015423  0x00001855 arg  0x00000ea6 , 0x00000002 
+ 00015424  0x00001856 idiv  0x00000002 
+ 00015425  0x00001857 call  0x00007f53 
+ 00015426  0x00001858 quotient  0x0000003f 
+ 00015427  0x00001859 lshift16  0x0000003f , 0x0000003f 
+ 00015428  0x0000185a remainder  0x00000002 
+ 00015429  0x0000185b ior  0x00000002 , 0x0000003f 
+ 00015430  0x0000185c fetcht  0x00000006 , 0x00004203 
+ 00015431  0x0000185d call  0x00007ef9 
+ 00015432  0x0000185e copy  0x00000002 , 0x00000019 
+ 00015433  0x0000185f fetch  0x00000006 , 0x00004048 
+ 00015434  0x00001860 call  0x000038e5 
+ 00015435  0x00001861 deposit  0x0000001a 
+ 00015436  0x00001862 store  0x00000006 , 0x000009be 
+ 00015437  0x00001863 deposit  0x00000027 
+ 00015438  0x00001864 istore  0x00000001 , 0x00000005 
+ 00015439  0x00001865 hfetch  0x00000001 , 0x0000811d 
+ 00015440  0x00001866 or_into  0x000000f0 , 0x0000003f 
+ 00015441  0x00001867 istore  0x00000001 , 0x00000005 
+ 00015442  0x00001868 rtn 
+ 00015443  0x0000186b set0  0x00000025 , 0x00000000 
+ 00015444  0x0000186c bpatch  0x000000a8 , 0x00004015 
+ 00015445  0x0000186d call  0x00003be2 
+ 00015446  0x0000186e fetch  0x00000003 , 0x0000420f 
+ 00015447  0x0000186f rtn  0x00000034 
+ 00015448  0x00001870 fetch  0x00000001 , 0x00004131 
+ 00015449  0x00001871 rtn  0x00000034 
+ 00015450  0x00001872 fetch  0x00000001 , 0x000046e2 
+ 00015451  0x00001873 branch  0x00003c5e , 0x00000034 
+ 00015452  0x00001874 fetch  0x00000001 , 0x00004639 
+ 00015453  0x00001875 rtn  0x00000034 
+ 00015454  0x00001877 fetch  0x00000001 , 0x00004565 
+ 00015455  0x00001878 nrtn  0x00000034 
+ 00015456  0x00001879 call  0x00003d0e 
+ 00015457  0x0000187a nrtn  0x00000034 
+ 00015458  0x0000187b fetch  0x00000001 , 0x00004040 
+ 00015459  0x0000187c compare  0x00000003 , 0x0000003f , 0x00000007 
+ 00015460  0x0000187d nbranch  0x00003c8a , 0x00000001 
+ 00015461  0x0000187e fetch  0x00000002 , 0x00004042 
+ 00015462  0x0000187f rtn  0x00000034 
+ 00015463  0x00001880 rtn  0x0000002b 
+ 00015464  0x00001881 set0  0x00000025 , 0x00000000 
+ 00015465  0x00001882 bpatch  0x000000a9 , 0x00004015 
+ 00015466  0x00001884 fetcht  0x00000001 , 0x0000009f 
+ 00015467  0x00001885 fetch  0x00000002 , 0x00004042 
+ 00015468  0x00001886 imul32  0x00000002 , 0x0000003f 
+ 00015469  0x00001887 rshift4  0x00000002 , 0x00000002 
+ 00015470  0x00001888 rshift2  0x00000002 , 0x00000002 
+ 00015471  0x00001889 isub  0x00000002 , 0x0000003f 
+ 00015472  0x0000188a fetcht  0x00000004 , 0x00004044 
+ 00015473  0x0000188b iadd  0x00000002 , 0x0000003f 
+ 00015474  0x0000188c fetcht  0x00000001 , 0x000041f6 
+ 00015475  0x0000188d isub  0x00000002 , 0x0000003f 
+ 00015476  0x0000188e lshift16  0x0000003f , 0x00000030 
+ 00015477  0x0000188f set0  0x00000025 , 0x00000000 
+ 00015478  0x00001890 bpatch  0x000000aa , 0x00004015 
+ 00015479  0x00001891 fetch  0x00000002 , 0x0000404e 
+ 00015480  0x00001892 rshift  0x0000003f , 0x0000003f 
+ 00015481  0x00001893 call  0x00007f1d 
+ 00015482  0x00001894 deposit  0x00000030 
+ 00015483  0x00001895 call  0x00007f06 
+ 00015484  0x00001896 copy  0x0000001a , 0x00000002 
+ 00015485  0x00001897 call  0x00007f04 
+ 00015486  0x00001898 rtn  0x00000028 
+ 00015487  0x0000189a call  0x00007f16 
+ 00015488  0x0000189c set0  0x00000025 , 0x00000000 
+ 00015489  0x0000189d bpatch  0x000000ab , 0x00004015 
+ 00015490  0x0000189e fetch  0x00000001 , 0x00004218 
+ 00015491  0x0000189f isub  0x00000002 , 0x0000003e 
+ 00015492  0x000018a0 branch  0x00003c01 , 0x00000002 
+ 00015493  0x000018a1 storet  0x00000004 , 0x000041fb 
+ 00015494  0x000018a2 call  0x00003d9f 
+ 00015495  0x000018a3 call  0x000048a5 
+ 00015496  0x000018a4 fetcht  0x00000004 , 0x000041fb 
+ 00015497  0x000018a5 branch  0x00003c11 
+ 00015498  0x000018a8 set0  0x00000025 , 0x00000000 
+ 00015499  0x000018a9 bpatch  0x000000ac , 0x00004015 
+ 00015500  0x000018aa fetch  0x00000001 , 0x00004040 
+ 00015501  0x000018ab rtnbit1  0x00000000 
+ 00015502  0x000018ac rtnbit1  0x00000003 
+ 00015503  0x000018ad fetch  0x00000001 , 0x000046e2 
+ 00015504  0x000018ae branch  0x00003c93 , 0x00000034 
+ 00015505  0x000018af fetch  0x00000001 , 0x00004639 
+ 00015506  0x000018b0 rtn  0x00000034 
+ 00015507  0x000018b2 set0  0x00000025 , 0x00000000 
+ 00015508  0x000018b3 bpatch  0x000000ad , 0x00004015 
+ 00015509  0x000018b4 fetch  0x00000001 , 0x000043ff 
+ 00015510  0x000018b5 nbranch  0x00003c99 , 0x00000034 
+ 00015511  0x000018b6 fetch  0x00000001 , 0x00004133 
+ 00015512  0x000018b7 rtn  0x00000034 
+ 00015513  0x000018b9 fetch  0x00000002 , 0x000041f4 
+ 00015514  0x000018ba rtn  0x00000034 
+ 00015515  0x000018bc fetcht  0x00000001 , 0x000041f6 
+ 00015516  0x000018bd isub  0x00000002 , 0x0000003f 
+ 00015517  0x000018be arg  0x00001d4c , 0x00000002 
+ 00015518  0x000018bf imul32  0x00000002 , 0x0000003f 
+ 00015519  0x000018c0 branch  0x00003c7f 
+ 00015520  0x000018c3 set0  0x00000025 , 0x00000000 
+ 00015521  0x000018c4 bpatch  0x000000ae , 0x00004015 
+ 00015522  0x000018c5 disable  0x0000002b 
+ 00015523  0x000018c6 fetch  0x00000001 , 0x00000030 
+ 00015524  0x000018c7 rtnbit0  0x00000001 
+ 00015525  0x000018c8 nbranch  0x00003cbc , 0x0000002d 
+ 00015526  0x000018c9 call  0x00003cb7 
+ 00015527  0x000018ca fetch  0x00000002 , 0x00004161 
+ 00015528  0x000018cb store  0x00000002 , 0x0000003e 
+ 00015529  0x000018cc fetch  0x00000001 , 0x00000047 
+ 00015530  0x000018cd bbit1  0x00000003 , 0x00003ccb 
+ 00015531  0x000018ce bmark0  0x0000000d , 0x00003ccb 
+ 00015532  0x000018cf call  0x00004816 
+ 00015533  0x000018d0 nbranch  0x00003ccb , 0x00000034 
+ 00015534  0x000018d1 fetch  0x00000002 , 0x000042a4 
+ 00015535  0x000018d2 call  0x00007f69 
+ 00015536  0x000018d4 jam  0x00000000 , 0x0000009f 
+ 00015537  0x000018d5 bmark0  0x0000000d , 0x00003ccb 
+ 00015538  0x000018d6 fetch  0x00000001 , 0x00004214 
+ 00015539  0x000018d7 branch  0x00003ccf , 0x00000034 
+ 00015540  0x000018d8 increase  0xffffffff , 0x0000003f 
+ 00015541  0x000018d9 store  0x00000001 , 0x00004214 
+ 00015542  0x000018da rtn 
+ 00015543  0x000018dd jam  0x00000000 , 0x000041f9 
+ 00015544  0x000018de fetch  0x00000003 , 0x00004209 
+ 00015545  0x000018df increase  0x00000001 , 0x0000003f 
+ 00015546  0x000018e0 store  0x00000003 , 0x00004209 
+ 00015547  0x000018e1 rtn 
+ 00015548  0x000018e4 set0  0x00000025 , 0x00000000 
+ 00015549  0x000018e5 bpatch  0x000000af , 0x00004015 
+ 00015550  0x000018e6 fetcht  0x00000002 , 0x00004161 
+ 00015551  0x000018e7 rshift  0x00000002 , 0x00000002 
+ 00015552  0x000018e8 fetch  0x00000002 , 0x0000003e 
+ 00015553  0x000018e9 iadd  0x00000002 , 0x0000003f 
+ 00015554  0x000018ea store  0x00000002 , 0x0000003e 
+ 00015555  0x000018ec jam  0x00000000 , 0x0000009f 
+ 00015556  0x000018ed fetch  0x00000003 , 0x0000420c 
+ 00015557  0x000018ee increase  0x00000001 , 0x0000003f 
+ 00015558  0x000018ef store  0x00000003 , 0x0000420c 
+ 00015559  0x000018f0 fetch  0x00000001 , 0x000041f9 
+ 00015560  0x000018f1 increase  0x00000001 , 0x0000003f 
+ 00015561  0x000018f2 store  0x00000001 , 0x000041f9 
+ 00015562  0x000018f3 rtn 
+ 00015563  0x000018f6 jam  0x00000000 , 0x0000009f 
+ 00015564  0x000018f7 fetch  0x00000001 , 0x00004213 
+ 00015565  0x000018f8 store  0x00000001 , 0x00004214 
+ 00015566  0x000018f9 rtn 
+ 00015567  0x000018fc fetcht  0x00000001 , 0x00004212 
+ 00015568  0x000018fd storet  0x00000001 , 0x0000009f 
+ 00015569  0x000018fe rtn 
+ 00015570  0x00001901 set0  0x00000025 , 0x00000000 
+ 00015571  0x00001902 bpatch  0x000000b0 , 0x00004016 
+ 00015572  0x00001903 fetch  0x00000001 , 0x00004218 
+ 00015573  0x00001904 nrtn  0x00000034 
+ 00015574  0x00001905 hjam  0x00000006 , 0x00008042 
+ 00015575  0x00001906 setarg  0x00000f0c 
+ 00015576  0x00001907 call  0x00003ceb 
+ 00015577  0x00001908 setarg  0x00030d40 
+ 00015578  0x00001909 call  0x00003b35 
+ 00015579  0x0000190a until  0x0000003e , 0x00000033 
+ 00015580  0x0000190b copy  0x00000031 , 0x00000030 
+ 00015581  0x0000190c call  0x00003a7b 
+ 00015582  0x0000190d hjam  0x00000004 , 0x00008042 
+ 00015583  0x0000190e nop  0x0000000a 
+ 00015584  0x0000190f until  0x0000003e , 0x00000033 
+ 00015585  0x00001910 deposit  0x00000031 
+ 00015586  0x00001911 isub  0x00000030 , 0x0000003f 
+ 00015587  0x00001912 increase  0x00000030 , 0x0000003f 
+ 00015588  0x00001913 arg  0x000000ff , 0x00000002 
+ 00015589  0x00001914 call  0x00007f5e 
+ 00015590  0x00001915 store  0x00000001 , 0x00004218 
+ 00015591  0x00001916 nop  0x00007530 
+ 00015592  0x00001917 nop  0x00007530 
+ 00015593  0x00001918 nop  0x00007530 
+ 00015594  0x00001919 rtn 
+ 00015595  0x0000191f arg  0x00000fff , 0x00000005 
+ 00015596  0x00001920 iand  0x00000005 , 0x00000005 
+ 00015597  0x00001921 fetch  0x00000001 , 0x00004215 
+ 00015598  0x00001922 and_into  0x000000f0 , 0x0000003f 
+ 00015599  0x00001923 lshift8  0x0000003f , 0x0000003f 
+ 00015600  0x00001924 ior  0x00000005 , 0x0000003f 
+ 00015601  0x00001925 hstore  0x00000002 , 0x0000804c 
+ 00015602  0x00001926 ifetch  0x00000002 , 0x00000006 
+ 00015603  0x00001927 istore  0x00000002 , 0x00000005 
+ 00015604  0x0000192a setarg  0x00000001 
+ 00015605  0x0000192b branch  0x00003cf7 
+ 00015606  0x0000192e setarg  0x00000002 
+ 00015607  0x00001930 until  0x0000003e , 0x00000033 
+ 00015608  0x00001931 hstore  0x00000001 , 0x00008005 
+ 00015609  0x00001932 until  0x0000003e , 0x00000033 
+ 00015610  0x00001933 until  0x0000003e , 0x00000033 
+ 00015611  0x00001934 rtn 
+ 00015612  0x00001938 set0  0x00000025 , 0x00000000 
+ 00015613  0x00001939 bpatch  0x000000b1 , 0x00004016 
+ 00015614  0x0000193a fetch  0x00000004 , 0x000000a0 
+ 00015615  0x0000193b hstore  0x00000004 , 0x0000804c 
+ 00015616  0x0000193c setarg  0x00000004 
+ 00015617  0x0000193d call  0x00003cf7 
+ 00015618  0x0000193e fetch  0x00000004 , 0x000000a4 
+ 00015619  0x0000193f hstore  0x00000004 , 0x0000804c 
+ 00015620  0x00001940 setarg  0x00000008 
+ 00015621  0x00001941 branch  0x00003cf7 
+ 00015622  0x00001944 fetch  0x00000002 , 0x000041f2 
+ 00015623  0x00001945 qset1  0x0000003f 
+ 00015624  0x00001946 store  0x00000002 , 0x000041f2 
+ 00015625  0x00001947 rtn 
+ 00015626  0x0000194a fetch  0x00000002 , 0x000041f2 
+ 00015627  0x0000194b qset0  0x0000003f 
+ 00015628  0x0000194c store  0x00000002 , 0x000041f2 
+ 00015629  0x0000194d rtn 
+ 00015630  0x00001952 set0  0x00000025 , 0x00000000 
+ 00015631  0x00001953 bpatch  0x000000b2 , 0x00004016 
+ 00015632  0x00001954 call  0x00003d9d 
+ 00015633  0x00001955 fetch  0x00000002 , 0x000041f2 
+ 00015634  0x00001956 copy  0x0000003f , 0x00000011 
+ 00015635  0x00001957 fetch  0x00000001 , 0x0000004c 
+ 00015636  0x00001958 isolate1  0x00000006 , 0x0000003f 
+ 00015637  0x00001959 setflag  0x00000001 , 0x0000000b , 0x00000011 
+ 00015638  0x0000195a fetch  0x00000001 , 0x00000078 
+ 00015639  0x0000195b fetcht  0x00000001 , 0x0000007c 
+ 00015640  0x0000195c iadd  0x00000002 , 0x0000003f 
+ 00015641  0x0000195d fetcht  0x00000001 , 0x00000048 
+ 00015642  0x0000195e iadd  0x00000002 , 0x0000003f 
+ 00015643  0x0000195f nsetflag  0x00000034 , 0x0000000a , 0x00000011 
+ 00015644  0x00001960 set0  0x00000025 , 0x00000000 
+ 00015645  0x00001961 bpatch  0x000000b3 , 0x00004016 
+ 00015646  0x00001962 fetch  0x00000002 , 0x00000286 
+ 00015647  0x00001963 fetcht  0x00000002 , 0x00000288 
+ 00015648  0x00001964 iadd  0x00000002 , 0x0000003f 
+ 00015649  0x00001965 nsetflag  0x00000034 , 0x0000000d , 0x00000011 
+ 00015650  0x00001966 fetch  0x00000005 , 0x000046f0 
+ 00015651  0x00001967 nsetflag  0x00000034 , 0x0000000f , 0x00000011 
+ 00015652  0x00001968 fetch  0x00000005 , 0x000046f8 
+ 00015653  0x00001969 nsetflag  0x00000034 , 0x0000000e , 0x00000011 
+ 00015654  0x0000196a fetch  0x00000001 , 0x00004271 
+ 00015655  0x0000196b nsetflag  0x00000034 , 0x00000008 , 0x00000011 
+ 00015656  0x0000196c fetch  0x00000001 , 0x00004132 
+ 00015657  0x0000196d compare  0x0000000a , 0x0000003f , 0x000000ff 
+ 00015658  0x0000196e call  0x00003d2c , 0x00000001 
+ 00015659  0x0000196f branch  0x00003d31 
+ 00015660  0x00001972 hfetch  0x00000002 , 0x00008112 
+ 00015661  0x00001973 nsetflag  0x00000034 , 0x00000006 , 0x00000011 
+ 00015662  0x00001974 hfetch  0x00000002 , 0x0000810e 
+ 00015663  0x00001975 nsetflag  0x00000034 , 0x00000005 , 0x00000011 
+ 00015664  0x00001976 rtn 
+ 00015665  0x00001979 setarg  0xfffffff8 
+ 00015666  0x0000197a iand  0x00000011 , 0x00000011 
+ 00015667  0x0000197c copy  0x00000011 , 0x0000003f 
+ 00015668  0x0000197d store  0x00000002 , 0x000041f2 
+ 00015669  0x0000197e rtn  0x00000034 
+ 00015670  0x0000197f rtn  0x0000002d 
+ 00015671  0x00001980 enable  0x0000002b 
+ 00015672  0x00001981 rtn 
+ 00015673  0x00001984 hfetch  0x00000004 , 0x00008138 
+ 00015674  0x00001985 set0  0x0000001b , 0x0000003f 
+ 00015675  0x00001986 hstore  0x00000004 , 0x0000804c 
+ 00015676  0x00001987 call  0x00003cf4 
+ 00015677  0x00001988 branch  0x00003b31 
+ 00015678  0x0000198b hfetch  0x00000004 , 0x0000813c 
+ 00015679  0x0000198c set0  0x00000014 , 0x0000003f 
+ 00015680  0x0000198d hstore  0x00000004 , 0x0000804c 
+ 00015681  0x0000198e branch  0x00003cf6 
+ 00015682  0x00001991 fetch  0x00000002 , 0x000041f0 
+ 00015683  0x00001992 bbit1  0x00000000 , 0x00003b31 
+ 00015684  0x00001993 rtn 
+ 00015685  0x00001995 fetch  0x00000002 , 0x000041f0 
+ 00015686  0x00001996 bbit1  0x00000001 , 0x00003b31 
+ 00015687  0x00001997 rtn 
+ 00015688  0x00001999 fetch  0x00000002 , 0x000041f0 
+ 00015689  0x0000199a bbit1  0x00000002 , 0x00003b31 
+ 00015690  0x0000199b rtn 
+ 00015691  0x000019a1 set0  0x00000025 , 0x00000000 
+ 00015692  0x000019a2 bpatch  0x000000b4 , 0x00004016 
+ 00015693  0x000019a3 fetch  0x00000001 , 0x00004132 
+ 00015694  0x000019a4 branch  0x00003d4b , 0x00000034 
+ 00015695  0x000019a8 beq  0x00000003 , 0x0000400c 
+ 00015696  0x000019a9 beq  0x00000009 , 0x00007293 
+ 00015697  0x000019aa beq  0x0000000a , 0x000059dd 
+ 00015698  0x000019ac bbit1  0x00000006 , 0x00005dca 
+ 00015699  0x000019ad bbit1  0x00000007 , 0x0000400c 
+ 00015700  0x000019ae rtn 
+ 00015701  0x000019b1 set0  0x00000025 , 0x00000000 
+ 00015702  0x000019b2 bpatch  0x000000b5 , 0x00004016 
+ 00015703  0x000019b3 jam  0x00000000 , 0x00000150 
+ 00015704  0x000019b4 jam  0x00000000 , 0x0000017e 
+ 00015705  0x000019b5 jam  0x00000000 , 0x0000017f 
+ 00015706  0x000019b6 setarg  0x00000000 
+ 00015707  0x000019b7 store  0x00000005 , 0x000008d2 
+ 00015708  0x000019b8 fetch  0x00000001 , 0x00004132 
+ 00015709  0x000019b9 branch  0x00003d55 , 0x00000034 
+ 00015710  0x000019ba beq  0x0000000a , 0x00005a12 
+ 00015711  0x000019bc rtn 
+ 00015712  0x000019c0 call  0x00007cf4 
+ 00015713  0x000019c1 call  0x00007d9e 
+ 00015714  0x000019c2 call  0x00003d69 
+ 00015715  0x000019c3 fetch  0x00000002 , 0x00004294 
+ 00015716  0x000019c4 branch  0x00007f69 
+ 00015717  0x000019c7 fetch  0x00000002 , 0x00004292 
+ 00015718  0x000019c8 branch  0x00007f69 
+ 00015719  0x000019cb fetch  0x00000002 , 0x00004290 
+ 00015720  0x000019cc branch  0x00007f69 
+ 00015721  0x000019cf set0  0x00000025 , 0x00000000 
+ 00015722  0x000019d0 bpatch  0x000000b6 , 0x00004016 
+ 00015723  0x000019d2 arg  0x000046f0 , 0x00000011 
+ 00015724  0x000019d3 call  0x00007f95 
+ 00015725  0x000019d4 rtn  0x00000034 
+ 00015726  0x000019d6 copy  0x0000003f , 0x00000013 
+ 00015727  0x000019d7 call  0x00003d73 
+ 00015728  0x000019d8 branch  0x00003d9b 
+ 00015729  0x000019db arg  0x00000000 , 0x00000013 
+ 00015730  0x000019dc rtn 
+ 00015731  0x000019e2 beq  0x00000001 , 0x00003d88 
+ 00015732  0x000019e3 beq  0x00000010 , 0x00003dcf 
+ 00015733  0x000019e4 beq  0x00000005 , 0x00003dac 
+ 00015734  0x000019e5 beq  0x00000012 , 0x00003db3 
+ 00015735  0x000019e6 beq  0x00000006 , 0x00003dcb 
+ 00015736  0x000019e7 beq  0x00000004 , 0x00003df6 
+ 00015737  0x000019e8 beq  0x00000002 , 0x00003dfb 
+ 00015738  0x000019e9 beq  0x00000013 , 0x00003df6 
+ 00015739  0x000019ea beq  0x00000014 , 0x00003dc2 
+ 00015740  0x000019eb beq  0x00000015 , 0x00003dc6 
+ 00015741  0x000019ec beq  0x00000003 , 0x00003da5 
+ 00015742  0x000019ed beq  0x0000000b , 0x00003db7 
+ 00015743  0x000019ee beq  0x0000000c , 0x00003dbe 
+ 00015744  0x000019f0 beq  0x00000016 , 0x00003dd3 
+ 00015745  0x000019f1 beq  0x00000018 , 0x00003da1 
+ 00015746  0x000019f2 beq  0x0000002a , 0x00003d91 
+ 00015747  0x000019f3 beq  0x0000002b , 0x00003d8f 
+ 00015748  0x000019f5 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00015749  0x000019f6 and_into  0x000000f0 , 0x0000003f 
+ 00015750  0x000019f7 beq  0x00000050 , 0x00003dd7 
+ 00015751  0x000019f8 rtn 
+ 00015752  0x000019fb fetch  0x00000002 , 0x0000470b 
+ 00015753  0x000019fc set1  0x00000000 , 0x0000003f 
+ 00015754  0x000019fd store  0x00000002 , 0x0000470b 
+ 00015755  0x000019fe fetch  0x00000002 , 0x000042af 
+ 00015756  0x000019ff set0  0x00000000 , 0x0000003f 
+ 00015757  0x00001a00 store  0x00000002 , 0x000042af 
+ 00015758  0x00001a01 rtn 
+ 00015759  0x00001a04 jam  0x00000000 , 0x0000024d 
+ 00015760  0x00001a05 rtn 
+ 00015761  0x00001a08 fetch  0x00000001 , 0x0000024d 
+ 00015762  0x00001a09 increase  0x00000001 , 0x0000003f 
+ 00015763  0x00001a0a store  0x00000001 , 0x0000024d 
+ 00015764  0x00001a0b sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00015765  0x00001a0c branch  0x00003e47 , 0x00000002 
+ 00015766  0x00001a0d jam  0x00000000 , 0x0000024d 
+ 00015767  0x00001a0e fetch  0x00000002 , 0x000042af 
+ 00015768  0x00001a0f set1  0x00000009 , 0x0000003f 
+ 00015769  0x00001a10 store  0x00000002 , 0x000042af 
+ 00015770  0x00001a11 branch  0x00003e52 
+ 00015771  0x00001a14 fetch  0x00000002 , 0x00004296 
+ 00015772  0x00001a15 branch  0x00007f69 
+ 00015773  0x00001a18 fetch  0x00000002 , 0x0000428a 
+ 00015774  0x00001a19 branch  0x00007f69 
+ 00015775  0x00001a1c fetch  0x00000002 , 0x0000428e 
+ 00015776  0x00001a1d branch  0x00007f69 
+ 00015777  0x00001a20 fetch  0x00000002 , 0x000042af 
+ 00015778  0x00001a21 set1  0x00000001 , 0x0000003f 
+ 00015779  0x00001a22 store  0x00000002 , 0x000042af 
+ 00015780  0x00001a23 branch  0x00003e7d 
+ 00015781  0x00001a26 fetch  0x00000002 , 0x0000470b 
+ 00015782  0x00001a27 set1  0x00000007 , 0x0000003f 
+ 00015783  0x00001a28 store  0x00000002 , 0x0000470b 
+ 00015784  0x00001a29 fetch  0x00000002 , 0x000042af 
+ 00015785  0x00001a2a set1  0x00000002 , 0x0000003f 
+ 00015786  0x00001a2b store  0x00000002 , 0x000042af 
+ 00015787  0x00001a2c rtn 
+ 00015788  0x00001a2f fetch  0x00000002 , 0x0000470b 
+ 00015789  0x00001a30 set1  0x00000001 , 0x0000003f 
+ 00015790  0x00001a31 store  0x00000002 , 0x0000470b 
+ 00015791  0x00001a32 fetch  0x00000002 , 0x000042af 
+ 00015792  0x00001a33 set1  0x00000004 , 0x0000003f 
+ 00015793  0x00001a34 store  0x00000002 , 0x000042af 
+ 00015794  0x00001a35 rtn 
+ 00015795  0x00001a38 fetch  0x00000002 , 0x0000470b 
+ 00015796  0x00001a39 set1  0x00000003 , 0x0000003f 
+ 00015797  0x00001a3a store  0x00000002 , 0x0000470b 
+ 00015798  0x00001a3b rtn 
+ 00015799  0x00001a3e fetch  0x00000002 , 0x0000470b 
+ 00015800  0x00001a3f set1  0x00000005 , 0x0000003f 
+ 00015801  0x00001a40 store  0x00000002 , 0x0000470b 
+ 00015802  0x00001a41 fetch  0x00000002 , 0x000042af 
+ 00015803  0x00001a42 set1  0x00000003 , 0x0000003f 
+ 00015804  0x00001a43 store  0x00000002 , 0x000042af 
+ 00015805  0x00001a44 rtn 
+ 00015806  0x00001a47 fetch  0x00000002 , 0x0000470b 
+ 00015807  0x00001a48 set0  0x00000005 , 0x0000003f 
+ 00015808  0x00001a49 store  0x00000002 , 0x0000470b 
+ 00015809  0x00001a4a rtn 
+ 00015810  0x00001a4d fetch  0x00000002 , 0x0000470b 
+ 00015811  0x00001a4e set1  0x00000009 , 0x0000003f 
+ 00015812  0x00001a4f store  0x00000002 , 0x0000470b 
+ 00015813  0x00001a50 rtn 
+ 00015814  0x00001a53 fetch  0x00000002 , 0x0000470b 
+ 00015815  0x00001a54 set0  0x00000009 , 0x0000003f 
+ 00015816  0x00001a55 store  0x00000002 , 0x0000470b 
+ 00015817  0x00001a56 jam  0x00000000 , 0x00004595 
+ 00015818  0x00001a57 branch  0x00003e81 
+ 00015819  0x00001a5a fetch  0x00000002 , 0x0000470b 
+ 00015820  0x00001a5b set1  0x00000002 , 0x0000003f 
+ 00015821  0x00001a5c store  0x00000002 , 0x0000470b 
+ 00015822  0x00001a5d rtn 
+ 00015823  0x00001a60 fetch  0x00000002 , 0x000042af 
+ 00015824  0x00001a61 set1  0x00000000 , 0x0000003f 
+ 00015825  0x00001a62 store  0x00000002 , 0x000042af 
+ 00015826  0x00001a63 rtn 
+ 00015827  0x00001a66 fetch  0x00000002 , 0x000042af 
+ 00015828  0x00001a67 set1  0x00000008 , 0x0000003f 
+ 00015829  0x00001a68 store  0x00000002 , 0x000042af 
+ 00015830  0x00001a69 branch  0x00003e52 
+ 00015831  0x00001a6d set0  0x00000025 , 0x00000000 
+ 00015832  0x00001a6e bpatch  0x000000b7 , 0x00004016 
+ 00015833  0x00001a6f storet  0x00000001 , 0x0000024e 
+ 00015834  0x00001a71 fetch  0x00000001 , 0x0000024e 
+ 00015835  0x00001a72 rtn  0x00000034 
+ 00015836  0x00001a73 increase  0xffffffff , 0x0000003f 
+ 00015837  0x00001a74 store  0x00000001 , 0x0000024e 
+ 00015838  0x00001a75 call  0x00007d02 
+ 00015839  0x00001a76 call  0x00003e3b 
+ 00015840  0x00001a77 call  0x00003de5 
+ 00015841  0x00001a78 call  0x00003ded 
+ 00015842  0x00001a79 fetch  0x00000002 , 0x000042a0 
+ 00015843  0x00001a7a call  0x00007f69 
+ 00015844  0x00001a7b branch  0x00003dda 
+ 00015845  0x00001a7e fetch  0x00000001 , 0x000042aa 
+ 00015846  0x00001a7f rtn  0x00000034 
+ 00015847  0x00001a80 increase  0xffffffff , 0x0000003f 
+ 00015848  0x00001a81 store  0x00000001 , 0x000042aa 
+ 00015849  0x00001a82 nrtn  0x00000034 
+ 00015850  0x00001a83 call  0x00003292 
+ 00015851  0x00001a84 branch  0x00003e79 , 0x00000005 
+ 00015852  0x00001a85 rtn 
+ 00015853  0x00001a87 fetch  0x00000002 , 0x00004707 
+ 00015854  0x00001a88 rtn  0x00000034 
+ 00015855  0x00001a89 increase  0xffffffff , 0x0000003f 
+ 00015856  0x00001a8a store  0x00000002 , 0x00004707 
+ 00015857  0x00001a8b nrtn  0x00000034 
+ 00015858  0x00001a8c call  0x00003e59 
+ 00015859  0x00001a8d call  0x00003e73 
+ 00015860  0x00001a8e fetch  0x00000002 , 0x00004298 
+ 00015861  0x00001a8f branch  0x00007f69 
+ 00015862  0x00001a92 call  0x00003e0f 
+ 00015863  0x00001a94 fetch  0x00000002 , 0x0000470b 
+ 00015864  0x00001a95 set0  0x00000007 , 0x0000003f 
+ 00015865  0x00001a96 store  0x00000002 , 0x0000470b 
+ 00015866  0x00001a97 rtn 
+ 00015867  0x00001a9a jam  0x00000000 , 0x000042aa 
+ 00015868  0x00001a9b fetch  0x00000002 , 0x0000470b 
+ 00015869  0x00001a9c bbit1  0x00000007 , 0x00003e00 
+ 00015870  0x00001a9d isolate0  0x00000001 , 0x0000003f 
+ 00015871  0x00001a9e call  0x00003d71 , 0x00000001 
+ 00015872  0x00001aa0 set0  0x00000025 , 0x00000000 
+ 00015873  0x00001aa1 bpatch  0x000000b8 , 0x00004017 
+ 00015874  0x00001aa2 fetch  0x00000002 , 0x0000470b 
+ 00015875  0x00001aa3 set0  0x00000000 , 0x0000003f 
+ 00015876  0x00001aa4 set0  0x00000001 , 0x0000003f 
+ 00015877  0x00001aa5 set0  0x00000002 , 0x0000003f 
+ 00015878  0x00001aa6 set0  0x00000003 , 0x0000003f 
+ 00015879  0x00001aa7 set0  0x00000007 , 0x0000003f 
+ 00015880  0x00001aa8 store  0x00000002 , 0x0000470b 
+ 00015881  0x00001aa9 branch  0x00003e81 
+ 00015882  0x00001aac call  0x00003e0c 
+ 00015883  0x00001aad branch  0x00003e75 
+ 00015884  0x00001ab1 setarg  0x00000000 
+ 00015885  0x00001ab2 store  0x00000002 , 0x000042ad 
+ 00015886  0x00001ab3 rtn 
+ 00015887  0x00001ab5 setarg  0x00000000 
+ 00015888  0x00001ab6 store  0x00000002 , 0x000042af 
+ 00015889  0x00001ab7 rtn 
+ 00015890  0x00001abb fetch  0x00000002 , 0x000042af 
+ 00015891  0x00001abc store  0x00000002 , 0x000042ad 
+ 00015892  0x00001abd setarg  0x00000000 
+ 00015893  0x00001abe store  0x00000002 , 0x000042af 
+ 00015894  0x00001abf rtn 
+ 00015895  0x00001ac2 fetch  0x00000002 , 0x000042af 
+ 00015896  0x00001ac3 set1  0x00000007 , 0x0000003f 
+ 00015897  0x00001ac4 store  0x00000002 , 0x000042ad 
+ 00015898  0x00001ac5 setarg  0x00000000 
+ 00015899  0x00001ac6 store  0x00000002 , 0x000042af 
+ 00015900  0x00001ac7 rtn 
+ 00015901  0x00001ad0 fetch  0x00000001 , 0x0000470b 
+ 00015902  0x00001ad1 isolate1  0x00000005 , 0x0000003f 
+ 00015903  0x00001ad2 rtn 
+ 00015904  0x00001adb setarg  0x0000aa55 
+ 00015905  0x00001add store  0x00000002 , 0x000009ce 
+ 00015906  0x00001ade set0  0x00000025 , 0x00000000 
+ 00015907  0x00001adf bpatch  0x000000b9 , 0x00004017 
+ 00015908  0x00001ae0 arg  0x00000002 , 0x00000002 
+ 00015909  0x00001ae1 arg  0x000009ce , 0x00000011 
+ 00015910  0x00001ae2 arg  0x000000c3 , 0x00000012 
+ 00015911  0x00001ae3 branch  0x0000626f 
+ 00015912  0x00001ae7 set0  0x00000025 , 0x00000000 
+ 00015913  0x00001ae8 bpatch  0x000000ba , 0x00004017 
+ 00015914  0x00001ae9 arg  0x00000002 , 0x00000002 
+ 00015915  0x00001aea arg  0x000009be , 0x00000011 
+ 00015916  0x00001aeb arg  0x000000c3 , 0x00000012 
+ 00015917  0x00001aec call  0x00006245 
+ 00015918  0x00001aed fetch  0x00000002 , 0x000009be 
+ 00015919  0x00001aee arg  0x0000aa55 , 0x00000002 
+ 00015920  0x00001aef isub  0x00000002 , 0x0000003e 
+ 00015921  0x00001af0 rtn 
+ 00015922  0x00001af4 fetch  0x00000001 , 0x000045f3 
+ 00015923  0x00001af5 store  0x00000001 , 0x000042aa 
+ 00015924  0x00001af6 rtn 
+ 00015925  0x00001af9 arg  0x00000009 , 0x00000007 
+ 00015926  0x00001afa branch  0x00003d06 
+ 00015927  0x00001afd arg  0x00000009 , 0x00000007 
+ 00015928  0x00001afe branch  0x00003d0a 
+ 00015929  0x00001b01 jam  0x00000005 , 0x000042ab 
+ 00015930  0x00001b02 branch  0x00003e35 
+ 00015931  0x00001b04 fetch  0x00000001 , 0x000042ab 
+ 00015932  0x00001b05 rtn  0x00000034 
+ 00015933  0x00001b06 increase  0xffffffff , 0x0000003f 
+ 00015934  0x00001b07 store  0x00000001 , 0x000042ab 
+ 00015935  0x00001b08 nrtn  0x00000034 
+ 00015936  0x00001b09 branch  0x00003e37 
+ 00015937  0x00001b0c jam  0x00000001 , 0x000043f3 
+ 00015938  0x00001b0d rtn 
+ 00015939  0x00001b10 jam  0x00000000 , 0x000043f3 
+ 00015940  0x00001b11 rtn 
+ 00015941  0x00001b14 jam  0x0000000a , 0x000009bd 
+ 00015942  0x00001b15 branch  0x00007d90 
+ 00015943  0x00001b18 jam  0x0000001d , 0x000009bd 
+ 00015944  0x00001b19 branch  0x00007d90 
+ 00015945  0x00001b1c set0  0x00000025 , 0x00000000 
+ 00015946  0x00001b1d bpatch  0x000000bb , 0x00004017 
+ 00015947  0x00001b1e fetch  0x00000001 , 0x000042ac 
+ 00015948  0x00001b1f store  0x00000001 , 0x0000016c 
+ 00015949  0x00001b20 jam  0x00000001 , 0x0000024c 
+ 00015950  0x00001b21 jam  0x00000003 , 0x000009bd 
+ 00015951  0x00001b22 branch  0x00007d90 
+ 00015952  0x00001b25 jam  0x0000001e , 0x000009bd 
+ 00015953  0x00001b26 branch  0x00007d90 
+ 00015954  0x00001b29 jam  0x00000004 , 0x000009bd 
+ 00015955  0x00001b2a branch  0x00007d90 
+ 00015956  0x00001b2d fetch  0x00000002 , 0x00004716 
+ 00015957  0x00001b2e store  0x00000002 , 0x00004707 
+ 00015958  0x00001b30 call  0x00003e6f 
+ 00015959  0x00001b32 jam  0x00000001 , 0x000009bd 
+ 00015960  0x00001b33 branch  0x00007d90 
+ 00015961  0x00001b36 setarg  0x00000000 
+ 00015962  0x00001b37 store  0x00000002 , 0x00004707 
+ 00015963  0x00001b38 jam  0x00000002 , 0x000009bd 
+ 00015964  0x00001b39 branch  0x00007d90 
+ 00015965  0x00001b3c jam  0x0000000f , 0x000009bd 
+ 00015966  0x00001b3d branch  0x00007d90 
+ 00015967  0x00001b40 jam  0x00000010 , 0x000009bd 
+ 00015968  0x00001b41 branch  0x00007d90 
+ 00015969  0x00001b44 jam  0x0000000e , 0x000009bd 
+ 00015970  0x00001b45 branch  0x00007d90 
+ 00015971  0x00001b48 jam  0x0000000d , 0x000009bd 
+ 00015972  0x00001b49 branch  0x00007d90 
+ 00015973  0x00001b4c jam  0x00000017 , 0x000009bd 
+ 00015974  0x00001b4d branch  0x00007d90 
+ 00015975  0x00001b50 jam  0x00000018 , 0x000009bd 
+ 00015976  0x00001b51 branch  0x00007d90 
+ 00015977  0x00001b54 jam  0x00000016 , 0x000009bd 
+ 00015978  0x00001b55 branch  0x00007d90 
+ 00015979  0x00001b58 jam  0x00000011 , 0x000009bd 
+ 00015980  0x00001b59 branch  0x00007d90 
+ 00015981  0x00001b5c jam  0x0000001c , 0x000009bd 
+ 00015982  0x00001b5d branch  0x00007d90 
+ 00015983  0x00001b60 jam  0x00000015 , 0x000009bd 
+ 00015984  0x00001b61 branch  0x00007d90 
+ 00015985  0x00001b64 jam  0x00000014 , 0x000009bd 
+ 00015986  0x00001b65 branch  0x00007d90 
+ 00015987  0x00001b69 jam  0x00000013 , 0x000009bd 
+ 00015988  0x00001b6a branch  0x00007d90 
+ 00015989  0x00001b6d jam  0x00000019 , 0x000009bd 
+ 00015990  0x00001b6e branch  0x00007d90 
+ 00015991  0x00001b71 jam  0x00000006 , 0x000009bd 
+ 00015992  0x00001b72 branch  0x00007d90 
+ 00015993  0x00001b75 jam  0x00000005 , 0x000009bd 
+ 00015994  0x00001b76 branch  0x00007d90 
+ 00015995  0x00001b79 jam  0x0000001f , 0x000009bd 
+ 00015996  0x00001b7a branch  0x00007d90 
+ 00015997  0x00001b7d jam  0x00000020 , 0x000009bd 
+ 00015998  0x00001b7e branch  0x00007d90 
+ 00015999  0x00001b81 set1  0x0000000d , 0x00000000 
+ 00016000  0x00001b82 rtn 
+ 00016001  0x00001b85 set0  0x0000000d , 0x00000000 
+ 00016002  0x00001b86 rtn 
+ 00016003  0x00001b8c set0  0x00000025 , 0x00000000 
+ 00016004  0x00001b8d bpatch  0x000000bc , 0x00004017 
+ 00016005  0x00001b8e fetch  0x00000001 , 0x00004271 
+ 00016006  0x00001b8f nrtn  0x00000034 
+ 00016007  0x00001b91 call  0x00003e8a 
+ 00016008  0x00001b92 ncall  0x00003ea3 , 0x00000028 
+ 00016009  0x00001b93 rtn 
+ 00016010  0x00001b96 set0  0x00000025 , 0x00000000 
+ 00016011  0x00001b97 bpatch  0x000000bd , 0x00004017 
+ 00016012  0x00001b98 copy  0x00000003 , 0x00000011 
+ 00016013  0x00001b99 arg  0x00000004 , 0x00000002 
+ 00016014  0x00001b9a ifetch  0x00000001 , 0x00000003 
+ 00016015  0x00001b9b beq  0x00000001 , 0x00003e95 
+ 00016016  0x00001b9c increase  0x00000001 , 0x00000002 
+ 00016017  0x00001b9d beq  0x00000002 , 0x00003e95 
+ 00016018  0x00001b9e copy  0x00000003 , 0x0000003f 
+ 00016019  0x00001b9f hstore  0x00000002 , 0x00008058 
+ 00016020  0x00001ba0 rtn 
+ 00016021  0x00001ba2 hfetch  0x00000002 , 0x00008112 
+ 00016022  0x00001ba3 isub  0x00000002 , 0x0000003e 
+ 00016023  0x00001ba4 nbranch  0x00003e95 , 0x00000002 
+ 00016024  0x00001ba6 disable  0x00000028 
+ 00016025  0x00001ba7 copy  0x00000011 , 0x00000003 
+ 00016026  0x00001ba8 call  0x00003eac 
+ 00016027  0x00001ba9 iadd  0x00000002 , 0x00000002 
+ 00016028  0x00001bab hfetch  0x00000002 , 0x00008112 
+ 00016029  0x00001bac isub  0x00000002 , 0x0000003e 
+ 00016030  0x00001bad nbranch  0x00003e9c , 0x00000002 
+ 00016031  0x00001bae copy  0x00000011 , 0x00000003 
+ 00016032  0x00001baf ifetch  0x00000001 , 0x00000003 
+ 00016033  0x00001bb0 beq  0x00000001 , 0x00003f06 
+ 00016034  0x00001bb1 branch  0x00003b31 
+ 00016035  0x00001bb4 set0  0x00000025 , 0x00000000 
+ 00016036  0x00001bb5 bpatch  0x000000be , 0x00004017 
+ 00016037  0x00001bb6 hfetch  0x00000002 , 0x00008058 
+ 00016038  0x00001bb7 iforce  0x00000003 
+ 00016039  0x00001bb8 call  0x00003eac 
+ 00016040  0x00001bb9 iadd  0x00000003 , 0x00000003 
+ 00016041  0x00001bba deposit  0x00000003 
+ 00016042  0x00001bbb hstore  0x00000002 , 0x00008058 
+ 00016043  0x00001bbc rtn 
+ 00016044  0x00001bc2 ifetch  0x00000001 , 0x00000003 
+ 00016045  0x00001bc3 increase  0x00000002 , 0x00000003 
+ 00016046  0x00001bc4 beq  0x00000002 , 0x00003eb1 
+ 00016047  0x00001bc5 ifetch  0x00000001 , 0x00000003 
+ 00016048  0x00001bc6 rtn 
+ 00016049  0x00001bc8 ifetch  0x00000002 , 0x00000003 
+ 00016050  0x00001bc9 rtn 
+ 00016051  0x00001bcc hfetch  0x00000002 , 0x0000805e 
+ 00016052  0x00001bcd increase  0xfffffffb , 0x0000000a 
+ 00016053  0x00001bce iadd  0x0000000a , 0x0000000a 
+ 00016054  0x00001bcf rtn 
+ 00016055  0x00001bd2 arg  0x00000004 , 0x00000002 
+ 00016056  0x00001bd3 branch  0x00003eba 
+ 00016057  0x00001bd5 arg  0x00000002 , 0x00000002 
+ 00016058  0x00001bd7 set0  0x00000025 , 0x00000000 
+ 00016059  0x00001bd8 bpatch  0x000000bf , 0x00004017 
+ 00016060  0x00001bd9 increase  0x00000001 , 0x00000039 
+ 00016061  0x00001bda hfetch  0x00000002 , 0x0000805e 
+ 00016062  0x00001bdb copy  0x0000003f , 0x0000000a 
+ 00016063  0x00001bdc copy  0x00000039 , 0x0000003f 
+ 00016064  0x00001bdd istoret  0x00000001 , 0x0000000a 
+ 00016065  0x00001bde increase  0xffffffff , 0x0000003f 
+ 00016066  0x00001bdf iadd  0x0000000a , 0x0000000a 
+ 00016067  0x00001be0 copy  0x0000000a , 0x0000003f 
+ 00016068  0x00001be1 store  0x00000002 , 0x0000027a 
+ 00016069  0x00001be2 copy  0x00000002 , 0x0000003f 
+ 00016070  0x00001be3 rtneq  0x00000002 
+ 00016071  0x00001be4 fetch  0x00000002 , 0x0000027a 
+ 00016072  0x00001be5 hstore  0x00000002 , 0x0000805e 
+ 00016073  0x00001be6 branch  0x00003eca 
+ 00016074  0x00001bea setarg  0x00000000 
+ 00016075  0x00001beb store  0x00000002 , 0x0000027a 
+ 00016076  0x00001bec rtn 
+ 00016077  0x00001bf4 set0  0x00000025 , 0x00000000 
+ 00016078  0x00001bf5 bpatch  0x000000c0 , 0x00004018 
+ 00016079  0x00001bf6 rtn  0x0000002b 
+ 00016080  0x00001bf7 setarg  0x00003fbf 
+ 00016081  0x00001bf8 store  0x00000002 , 0x00004294 
+ 00016082  0x00001bfa setarg  0x000001a0 
+ 00016083  0x00001bfb store  0x00000002 , 0x000042d3 
+ 00016084  0x00001bfd set0  0x00000025 , 0x00000000 
+ 00016085  0x00001bfe bpatch  0x000000c1 , 0x00004018 
+ 00016086  0x00001bff setarg  0x00001800 
+ 00016087  0x00001c00 hstore  0x00000002 , 0x00008054 
+ 00016088  0x00001c01 setarg  0x00001bff 
+ 00016089  0x00001c02 hstore  0x00000002 , 0x00008056 
+ 00016090  0x00001c03 setarg  0x00001c00 
+ 00016091  0x00001c04 hstore  0x00000002 , 0x0000805a 
+ 00016092  0x00001c05 call  0x00003eed 
+ 00016093  0x00001c07 hjam  0x00000000 , 0x00008062 
+ 00016094  0x00001c08 setarg  0x00001c00 
+ 00016095  0x00001c09 hstore  0x00000002 , 0x0000805e 
+ 00016096  0x00001c0a hstore  0x00000002 , 0x00008060 
+ 00016097  0x00001c0b setarg  0x00001800 
+ 00016098  0x00001c0c hstore  0x00000002 , 0x00008058 
+ 00016099  0x00001c0d store  0x00000002 , 0x00000266 
+ 00016100  0x00001c0f set0  0x00000025 , 0x00000000 
+ 00016101  0x00001c10 bpatch  0x000000c2 , 0x00004018 
+ 00016102  0x00001c11 hfetch  0x00000002 , 0x00008050 
+ 00016103  0x00001c12 set0  0x0000000f , 0x0000003f 
+ 00016104  0x00001c13 hstore  0x00000002 , 0x00008050 
+ 00016105  0x00001c14 call  0x00006325 
+ 00016106  0x00001c15 hjam  0x00000001 , 0x00008043 
+ 00016107  0x00001c16 hjam  0x00000081 , 0x00008062 
+ 00016108  0x00001c17 rtn 
+ 00016109  0x00001c1a setarg  0x00001fff 
+ 00016110  0x00001c1b hstore  0x00000002 , 0x0000805c 
+ 00016111  0x00001c1c hfetch  0x00000001 , 0x00008081 
+ 00016112  0x00001c1d or_into  0x00000007 , 0x0000003f 
+ 00016113  0x00001c1e hstore  0x00000001 , 0x00008081 
+ 00016114  0x00001c1f jam  0x000000ff , 0x0000027c 
+ 00016115  0x00001c20 rtn 
+ 00016116  0x00001c24 set0  0x00000025 , 0x00000000 
+ 00016117  0x00001c25 bpatch  0x000000c3 , 0x00004018 
+ 00016118  0x00001c26 hfetch  0x00000001 , 0x0000810c 
+ 00016119  0x00001c27 iforce  0x00000012 
+ 00016120  0x00001c28 bbit0  0x00000003 , 0x00003efe 
+ 00016121  0x00001c29 hfetch  0x00000002 , 0x00008112 
+ 00016122  0x00001c2a iforce  0x00000013 
+ 00016123  0x00001c2b arg  0x0000044f , 0x00000002 
+ 00016124  0x00001c2c isub  0x00000002 , 0x0000003e 
+ 00016125  0x00001c2d nrtn  0x00000005 
+ 00016126  0x00001c2f hfetch  0x00000002 , 0x00008058 
+ 00016127  0x00001c30 iforce  0x00000003 
+ 00016128  0x00001c31 branch  0x00003e83 
+ 00016129  0x00001c34 hfetcht  0x00000001 , 0x0000810c 
+ 00016130  0x00001c35 isolate1  0x00000006 , 0x00000002 
+ 00016131  0x00001c36 branch  0x00003f01 , 0x00000001 
+ 00016132  0x00001c37 hstore  0x00000001 , 0x00008015 
+ 00016133  0x00001c38 rtn 
+ 00016134  0x00001c3b set0  0x00000025 , 0x00000000 
+ 00016135  0x00001c3c bpatch  0x000000c4 , 0x00004018 
+ 00016136  0x00001c3d fetch  0x00000001 , 0x00004271 
+ 00016137  0x00001c3e branch  0x00003f0c , 0x00000034 
+ 00016138  0x00001c3f enable  0x00000028 
+ 00016139  0x00001c40 rtn 
+ 00016140  0x00001c42 ifetch  0x00000002 , 0x00000003 
+ 00016141  0x00001c43 iforce  0x00000030 
+ 00016142  0x00001c44 iforce  0x00000007 
+ 00016143  0x00001c45 ifetch  0x00000001 , 0x00000003 
+ 00016144  0x00001c46 iforce  0x00000002 
+ 00016145  0x00001c47 rshift2  0x00000030 , 0x0000003f 
+ 00016146  0x00001c48 rshift8  0x0000003f , 0x0000003f 
+ 00016147  0x00001c49 beq  0x0000003f , 0x00003f15 
+ 00016148  0x00001c4a rtn 
+ 00016149  0x00001c4e set0  0x00000025 , 0x00000000 
+ 00016150  0x00001c4f bpatch  0x000000c5 , 0x00004018 
+ 00016151  0x00001c50 deposit  0x00000007 
+ 00016152  0x00001c51 beq  0x00000000 , 0x00003f70 
+ 00016153  0x00001c52 beq  0x00000001 , 0x00003f2d 
+ 00016154  0x00001c53 beq  0x00000002 , 0x00003f32 
+ 00016155  0x00001c54 beq  0x00000003 , 0x00003f36 
+ 00016156  0x00001c55 beq  0x00000004 , 0x00003f49 
+ 00016157  0x00001c56 beq  0x00000005 , 0x00003f70 
+ 00016158  0x00001c57 beq  0x00000006 , 0x00003f5a 
+ 00016159  0x00001c58 beq  0x00000007 , 0x00003f23 
+ 00016160  0x00001c5a beq  0x00000010 , 0x00003f5d 
+ 00016161  0x00001c5b beq  0x00000011 , 0x00003f65 
+ 00016162  0x00001c5c branch  0x00003f70 
+ 00016163  0x00001c5f call  0x00003f70 
+ 00016164  0x00001c60 call  0x00007f6b 
+ 00016165  0x00001c61 call  0x00006561 
+ 00016166  0x00001c63 call  0x00003e37 
+ 00016167  0x00001c64 call  0x00003e41 
+ 00016168  0x00001c65 branch  0x00006564 
+ 00016169  0x00001c68 jam  0x00000000 , 0x000042d5 
+ 00016170  0x00001c69 call  0x00003e35 
+ 00016171  0x00001c6a call  0x00003ed4 
+ 00016172  0x00001c6b branch  0x00003e43 
+ 00016173  0x00001c6e call  0x00003f89 
+ 00016174  0x00001c6f hfetch  0x00000002 , 0x00008000 
+ 00016175  0x00001c70 istore  0x00000002 , 0x0000000a 
+ 00016176  0x00001c71 force  0x00000006 , 0x00000039 
+ 00016177  0x00001c72 branch  0x00003f73 
+ 00016178  0x00001c75 ifetch  0x00000002 , 0x00000003 
+ 00016179  0x00001c76 store  0x00000002 , 0x000042d3 
+ 00016180  0x00001c77 hstore  0x00000002 , 0x00008052 
+ 00016181  0x00001c78 rtn 
+ 00016182  0x00001c7c ifetch  0x00000001 , 0x00000003 
+ 00016183  0x00001c7d copy  0x0000003f , 0x00000002 
+ 00016184  0x00001c7e hstore  0x00000001 , 0x00008024 
+ 00016185  0x00001c7f ifetch  0x00000001 , 0x00000003 
+ 00016186  0x00001c80 iadd  0x00000002 , 0x00000002 
+ 00016187  0x00001c81 set1  0x00000007 , 0x0000003f 
+ 00016188  0x00001c82 hstore  0x00000001 , 0x00008023 
+ 00016189  0x00001c83 ifetch  0x00000001 , 0x00000003 
+ 00016190  0x00001c84 iadd  0x00000002 , 0x00000002 
+ 00016191  0x00001c85 copy  0x0000003f , 0x00000039 
+ 00016192  0x00001c87 ifetch  0x00000001 , 0x00000003 
+ 00016193  0x00001c88 hstore  0x00000001 , 0x00008025 
+ 00016194  0x00001c89 iadd  0x00000002 , 0x00000002 
+ 00016195  0x00001c8a loop  0x00003f40 
+ 00016196  0x00001c8b and  0x00000002 , 0x000000ff , 0x00000002 
+ 00016197  0x00001c8c ifetch  0x00000001 , 0x00000003 
+ 00016198  0x00001c8d isub  0x00000002 , 0x0000003e 
+ 00016199  0x00001c8e nbranch  0x00003f58 , 0x00000005 
+ 00016200  0x00001c8f branch  0x00003f70 
+ 00016201  0x00001c92 arg  0x00000020 , 0x00000039 
+ 00016202  0x00001c93 arg  0x00004000 , 0x00000005 
+ 00016203  0x00001c94 arg  0x00000000 , 0x00000002 
+ 00016204  0x00001c96 ifetch  0x00000001 , 0x00000003 
+ 00016205  0x00001c97 istore  0x00000001 , 0x00000005 
+ 00016206  0x00001c98 iadd  0x00000002 , 0x00000002 
+ 00016207  0x00001c99 loop  0x00003f4c 
+ 00016208  0x00001c9a and  0x00000002 , 0x000000ff , 0x00000002 
+ 00016209  0x00001c9b ifetch  0x00000001 , 0x00000003 
+ 00016210  0x00001c9c isub  0x00000002 , 0x0000003e 
+ 00016211  0x00001c9d nbranch  0x00003f58 , 0x00000005 
+ 00016212  0x00001c9e hjam  0x00000000 , 0x00008023 
+ 00016213  0x00001c9f call  0x00003f70 
+ 00016214  0x00001ca0 call  0x00003ea3 
+ 00016215  0x00001ca1 branch  0x00003001 
+ 00016216  0x00001ca4 hjam  0x00000000 , 0x00008023 
+ 00016217  0x00001ca5 branch  0x00003000 
+ 00016218  0x00001ca8 ifetch  0x00000006 , 0x00000003 
+ 00016219  0x00001ca9 store  0x00000006 , 0x00004140 
+ 00016220  0x00001caa branch  0x00003f70 
+ 00016221  0x00001cae ifetch  0x00000001 , 0x00000003 
+ 00016222  0x00001caf store  0x00000001 , 0x00000283 
+ 00016223  0x00001cb0 copy  0x0000003f , 0x00000039 
+ 00016224  0x00001cb1 ifetch  0x00000002 , 0x00000003 
+ 00016225  0x00001cb2 store  0x00000002 , 0x00000284 
+ 00016226  0x00001cb3 copy  0x0000003f , 0x00000005 
+ 00016227  0x00001cb4 call  0x00006354 
+ 00016228  0x00001cb5 branch  0x00003f70 
+ 00016229  0x00001cb9 ifetch  0x00000001 , 0x00000003 
+ 00016230  0x00001cba store  0x00000001 , 0x00000283 
+ 00016231  0x00001cbb copy  0x0000003f , 0x00000039 
+ 00016232  0x00001cbc ifetch  0x00000002 , 0x00000003 
+ 00016233  0x00001cbd store  0x00000002 , 0x00000284 
+ 00016234  0x00001cbe arg  0x00001000 , 0x00000005 
+ 00016235  0x00001cbf call  0x00006354 
+ 00016236  0x00001cc0 fetcht  0x00000001 , 0x00000283 
+ 00016237  0x00001cc1 arg  0x00001000 , 0x00000011 
+ 00016238  0x00001cc2 fetch  0x00000002 , 0x00000284 
+ 00016239  0x00001cc3 branch  0x00006271 
+ 00016240  0x00001cc9 set0  0x00000025 , 0x00000000 
+ 00016241  0x00001cca bpatch  0x000000c6 , 0x00004018 
+ 00016242  0x00001ccb force  0x00000004 , 0x00000039 
+ 00016243  0x00001ccd call  0x00003f8b 
+ 00016244  0x00001cce force  0x00000001 , 0x0000003f 
+ 00016245  0x00001ccf istore  0x00000001 , 0x0000000a 
+ 00016246  0x00001cd0 deposit  0x00000030 
+ 00016247  0x00001cd1 istore  0x00000003 , 0x0000000a 
+ 00016248  0x00001cd2 force  0x0000000e , 0x00000007 
+ 00016249  0x00001cd4 set0  0x00000025 , 0x00000000 
+ 00016250  0x00001cd5 bpatch  0x000000c7 , 0x00004018 
+ 00016251  0x00001cd6 call  0x00003f8d 
+ 00016252  0x00001cd7 deposit  0x00000007 
+ 00016253  0x00001cd8 istore  0x00000001 , 0x0000000a 
+ 00016254  0x00001cd9 deposit  0x00000039 
+ 00016255  0x00001cda istore  0x00000001 , 0x0000000a 
+ 00016256  0x00001cdc force  0x00000005 , 0x00000007 
+ 00016257  0x00001cdd increase  0x00000002 , 0x00000039 
+ 00016258  0x00001cdf branch  0x00003eb7 
+ 00016259  0x00001ce2 force  0x000000ff , 0x00000007 
+ 00016260  0x00001ce3 call  0x00003f8b 
+ 00016261  0x00001ce4 setarg  0x00000001 
+ 00016262  0x00001ce5 istore  0x00000001 , 0x0000000a 
+ 00016263  0x00001ce6 force  0x00000001 , 0x00000039 
+ 00016264  0x00001ce7 branch  0x00003f79 
+ 00016265  0x00001cea force  0x0000000c , 0x0000000a 
+ 00016266  0x00001ceb branch  0x00003f8e 
+ 00016267  0x00001cee force  0x00000008 , 0x0000000a 
+ 00016268  0x00001cef branch  0x00003f8e 
+ 00016269  0x00001cf2 force  0x00000006 , 0x0000000a 
+ 00016270  0x00001cf4 branch  0x00003eb3 
+ 00016271  0x00001cf9 pulse  0x0000000f 
+ 00016272  0x00001cfa enable  0x00000009 
+ 00016273  0x00001cfc ifetch  0x00000001 , 0x0000000a 
+ 00016274  0x00001cfd inject  0x00000000 , 0x00000008 
+ 00016275  0x00001cfe loop  0x00003f91 
+ 00016276  0x00001cff enable  0x00000008 
+ 00016277  0x00001d00 inject  0x00000000 , 0x00000010 
+ 00016278  0x00001d01 disable  0x00000008 
+ 00016279  0x00001d02 disable  0x00000009 
+ 00016280  0x00001d03 disable  0x0000000f 
+ 00016281  0x00001d04 byteswap  0x0000003f , 0x0000003f 
+ 00016282  0x00001d05 rtn 
+ 00016283  0x00001d0a jam  0x00000000 , 0x00004271 
+ 00016284  0x00001d0b rtn 
+ 00016285  0x00001d0d fetch  0x00000006 , 0x00004273 
+ 00016286  0x00001d0e fetcht  0x00000006 , 0x00000040 
+ 00016287  0x00001d0f isub  0x00000002 , 0x0000003e 
+ 00016288  0x00001d10 rtn 
+ 00016289  0x00001d16 fetch  0x00000001 , 0x0000004b 
+ 00016290  0x00001d17 bbit1  0x00000002 , 0x00003fa6 
+ 00016291  0x00001d18 call  0x000058fa 
+ 00016292  0x00001d19 jam  0x00000008 , 0x0000007c 
+ 00016293  0x00001d1a branch  0x00003f9b 
+ 00016294  0x00001d1c set0  0x00000002 , 0x0000003f 
+ 00016295  0x00001d1d store  0x00000001 , 0x0000004b 
+ 00016296  0x00001d1e call  0x00005618 
+ 00016297  0x00001d1f setarg  0x00000000 
+ 00016298  0x00001d20 setflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00016299  0x00001d21 store  0x00000001 , 0x0000007f 
+ 00016300  0x00001d22 branch  0x00003f9b 
+ 00016301  0x00001d23 rtn 
+ 00016302  0x00001d25 jam  0x00000017 , 0x0000007c 
+ 00016303  0x00001d26 arg  0x000003ff , 0x00000005 
+ 00016304  0x00001d27 setarg  0x00000000 
+ 00016305  0x00001d28 isolate1  0x0000001b , 0x00000028 
+ 00016306  0x00001d29 setflag  0x00000001 , 0x00000001 , 0x0000003f 
+ 00016307  0x00001d2a istore  0x00000001 , 0x00000005 
+ 00016308  0x00001d2b setarg  0x00000000 
+ 00016309  0x00001d2c istore  0x00000002 , 0x00000005 
+ 00016310  0x00001d2d fetch  0x00000002 , 0x00004284 
+ 00016311  0x00001d2e istore  0x00000002 , 0x00000005 
+ 00016312  0x00001d2f fetch  0x00000001 , 0x00004286 
+ 00016313  0x00001d30 istore  0x00000002 , 0x00000005 
+ 00016314  0x00001d31 fetch  0x00000001 , 0x00004288 
+ 00016315  0x00001d32 istore  0x00000002 , 0x00000005 
+ 00016316  0x00001d33 branch  0x00003f9b 
+ 00016317  0x00001d36 jam  0x00000018 , 0x0000007c 
+ 00016318  0x00001d37 branch  0x00003f9b 
+ 00016319  0x00001d3a call  0x0000656e 
+ 00016320  0x00001d3b rtn  0x00000001 
+ 00016321  0x00001d3c arg  0x00000007 , 0x00000002 
+ 00016322  0x00001d3d call  0x000064f5 
+ 00016323  0x00001d3e nbranch  0x00003fc6 , 0x00000001 
+ 00016324  0x00001d3f jam  0x00000001 , 0x000042d5 
+ 00016325  0x00001d40 rtn 
+ 00016326  0x00001d42 fetch  0x00000001 , 0x000042d5 
+ 00016327  0x00001d43 rtnne  0x00000001 
+ 00016328  0x00001d44 call  0x00003f29 
+ 00016329  0x00001d45 branch  0x00003f83 
+ 00016330  0x00001d54 set0  0x00000025 , 0x00000000 
+ 00016331  0x00001d55 bpatch  0x000000c8 , 0x00004019 
+ 00016332  0x00001d56 fetch  0x00000002 , 0x0000028d 
+ 00016333  0x00001d57 copy  0x0000003f , 0x00000006 
+ 00016334  0x00001d58 ifetch  0x00000001 , 0x00000006 
+ 00016335  0x00001d59 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00016336  0x00001d5a rshift4  0x0000003f , 0x0000003f 
+ 00016337  0x00001d5b beq  0x00000009 , 0x00003feb 
+ 00016338  0x00001d5c beq  0x00000007 , 0x00003feb 
+ 00016339  0x00001d5d beq  0x0000000a , 0x00003ff7 
+ 00016340  0x00001d5e beq  0x00000005 , 0x00003fe3 
+ 00016341  0x00001d5f beq  0x00000001 , 0x00003fd7 
+ 00016342  0x00001d60 rtn 
+ 00016343  0x00001d63 copy  0x00000002 , 0x0000003f 
+ 00016344  0x00001d64 beq  0x00000005 , 0x00003fdb 
+ 00016345  0x00001d65 beq  0x00000003 , 0x00003fe2 
+ 00016346  0x00001d66 rtn 
+ 00016347  0x00001d69 jam  0x00000027 , 0x000009bd 
+ 00016348  0x00001d6a call  0x00007d86 
+ 00016349  0x00001d6b fetch  0x00000001 , 0x00004132 
+ 00016350  0x00001d6c rtnne  0x00000006 , 0x0000003f 
+ 00016351  0x00001d6d copy  0x00000002 , 0x0000003f 
+ 00016352  0x00001d6e beq  0x00000005 , 0x00006455 
+ 00016353  0x00001d6f rtn 
+ 00016354  0x00001d71 rtn 
+ 00016355  0x00001d74 call  0x00003ff7 
+ 00016356  0x00001d75 arg  0x00000001 , 0x00000011 
+ 00016357  0x00001d76 call  0x00004005 
+ 00016358  0x00001d77 fetch  0x00000002 , 0x000042dc 
+ 00016359  0x00001d78 istore  0x00000002 , 0x00000005 
+ 00016360  0x00001d79 setarg  0x00000000 
+ 00016361  0x00001d7a istore  0x00000001 , 0x00000005 
+ 00016362  0x00001d7b rtn 
+ 00016363  0x00001d7e arg  0x00000001 , 0x00000011 
+ 00016364  0x00001d7f call  0x00004005 
+ 00016365  0x00001d80 fetch  0x00000002 , 0x000042dc 
+ 00016366  0x00001d81 istore  0x00000002 , 0x00000005 
+ 00016367  0x00001d82 setarg  0x00000000 
+ 00016368  0x00001d83 istore  0x00000001 , 0x00000005 
+ 00016369  0x00001d84 jam  0x00000001 , 0x000009b2 
+ 00016370  0x00001d85 fetch  0x00000001 , 0x000042e2 
+ 00016371  0x00001d86 set1  0x00000006 
+ 00016372  0x00001d87 store  0x00000001 , 0x000042e2 
+ 00016373  0x00001d89 jam  0x00000012 , 0x000009bd 
+ 00016374  0x00001d8a branch  0x00007d86 
+ 00016375  0x00001d8d ifetch  0x00000001 , 0x00000006 
+ 00016376  0x00001d8e beq  0x00000001 , 0x00003ffa 
+ 00016377  0x00001d8f rtn 
+ 00016378  0x00001d92 copy  0x00000006 , 0x00000011 
+ 00016379  0x00001d93 fetch  0x00000001 , 0x00004132 
+ 00016380  0x00001d94 rtnne  0x00000003 , 0x0000003f 
+ 00016381  0x00001d95 copy  0x00000011 , 0x00000006 
+ 00016382  0x00001d96 ifetch  0x00000001 , 0x00000006 
+ 00016383  0x00001d97 store  0x00000001 , 0x00004b0f 
+ 00016384  0x00001d98 store  0x00000001 , 0x00004b27 
+ 00016385  0x00001d99 fetch  0x00000001 , 0x00004b01 
+ 00016386  0x00001d9a nrtn  0x00000034 
+ 00016387  0x00001d9b jam  0x00000002 , 0x00004b24 
+ 00016388  0x00001d9c rtn 
+ 00016389  0x00001d9f call  0x000047dc 
+ 00016390  0x00001da0 copy  0x00000011 , 0x00000002 
+ 00016391  0x00001da1 storet  0x00000001 , 0x000009b2 
+ 00016392  0x00001da2 copy  0x0000003f , 0x00000005 
+ 00016393  0x00001da3 copy  0x00000011 , 0x0000003f 
+ 00016394  0x00001da4 istore  0x00000002 , 0x00000005 
+ 00016395  0x00001da5 rtn 
+ 00016396  0x00001da9 call  0x00004196 
+ 00016397  0x00001daa rtn  0x0000002b 
+ 00016398  0x00001dac call  0x00004034 
+ 00016399  0x00001dad call  0x00004055 
+ 00016400  0x00001dae setarg  0x000041a1 
+ 00016401  0x00001daf store  0x00000002 , 0x00004294 
+ 00016402  0x00001db0 setarg  0x00004082 
+ 00016403  0x00001db1 store  0x00000002 , 0x00004292 
+ 00016404  0x00001db2 setarg  0x000041e6 
+ 00016405  0x00001db3 store  0x00000002 , 0x00004296 
+ 00016406  0x00001db4 setarg  0x00004268 
+ 00016407  0x00001db5 store  0x00000002 , 0x0000428e 
+ 00016408  0x00001db6 setarg  0x00004246 
+ 00016409  0x00001db7 store  0x00000002 , 0x00004298 
+ 00016410  0x00001db8 setarg  0x0000424b 
+ 00016411  0x00001db9 store  0x00000002 , 0x0000428c 
+ 00016412  0x00001dba jam  0x00000000 , 0x000008d4 
+ 00016413  0x00001dbb jam  0x00000000 , 0x000008d5 
+ 00016414  0x00001dbc call  0x00004027 
+ 00016415  0x00001dbd fetch  0x00000002 , 0x0000470b 
+ 00016416  0x00001dbe bbit1  0x0000000c , 0x00003e54 
+ 00016417  0x00001dc0 fetch  0x00000001 , 0x000042b5 
+ 00016418  0x00001dc1 beq  0x00000033 , 0x00004024 
+ 00016419  0x00001dc2 branch  0x0000423e 
+ 00016420  0x00001dc4 fetch  0x00000006 , 0x00004273 
+ 00016421  0x00001dc5 branch  0x00003e54 , 0x00000034 
+ 00016422  0x00001dc6 branch  0x00003e49 
+ 00016423  0x00001dc9 call  0x00003e28 
+ 00016424  0x00001dca branch  0x00004032 , 0x00000005 
+ 00016425  0x00001dcb setarg  0x00000001 
+ 00016426  0x00001dcc store  0x00000001 , 0x00004ae9 
+ 00016427  0x00001dcd call  0x0000427d 
+ 00016428  0x00001dce fetch  0x00000006 , 0x00004b07 
+ 00016429  0x00001dcf store  0x00000006 , 0x00000040 
+ 00016430  0x00001dd0 store  0x00000006 , 0x00004273 
+ 00016431  0x00001dd1 call  0x00006432 
+ 00016432  0x00001dd2 jam  0x00000033 , 0x000042b5 
+ 00016433  0x00001dd3 branch  0x00003e20 
+ 00016434  0x00001dd6 call  0x00004284 
+ 00016435  0x00001dd7 branch  0x00006441 
+ 00016436  0x00001ddb set0  0x00000025 , 0x00000000 
+ 00016437  0x00001ddc bpatch  0x000000c9 , 0x00004019 
+ 00016438  0x00001ddd hjam  0x00000000 , 0x00008070 
+ 00016439  0x00001dde hjam  0x000000ff , 0x00008078 
+ 00016440  0x00001ddf hjam  0x000000ff , 0x00008071 
+ 00016441  0x00001de0 hjam  0x000000ff , 0x00008072 
+ 00016442  0x00001de1 hfetch  0x00000001 , 0x00008073 
+ 00016443  0x00001de2 or_into  0x00000007 , 0x0000003f 
+ 00016444  0x00001de3 hstore  0x00000001 , 0x00008073 
+ 00016445  0x00001de4 hjam  0x00000000 , 0x00008080 
+ 00016446  0x00001de5 hjam  0x00000000 , 0x00008081 
+ 00016447  0x00001de6 hjam  0x00000000 , 0x0000806f 
+ 00016448  0x00001de7 setarg  0x00000013 
+ 00016449  0x00001de8 lshift3  0x0000003f , 0x0000003f 
+ 00016450  0x00001de9 add  0x0000003f , 0x00000007 , 0x0000003f 
+ 00016451  0x00001dea hstore  0x00000001 , 0x00008064 
+ 00016452  0x00001deb hjam  0x000000ff , 0x00008083 
+ 00016453  0x00001dec hjam  0x000000ff , 0x00008084 
+ 00016454  0x00001ded hfetch  0x00000001 , 0x00008085 
+ 00016455  0x00001dee or_into  0x00000001 , 0x0000003f 
+ 00016456  0x00001def hstore  0x00000001 , 0x00008085 
+ 00016457  0x00001df1 hfetch  0x00000001 , 0x00008043 
+ 00016458  0x00001df2 set1  0x00000002 , 0x0000003f 
+ 00016459  0x00001df3 hstore  0x00000001 , 0x00008043 
+ 00016460  0x00001df4 hjam  0x0000000c , 0x00008063 
+ 00016461  0x00001df5 hjam  0x00000030 , 0x00008066 
+ 00016462  0x00001df6 hfetch  0x00000001 , 0x00008051 
+ 00016463  0x00001df7 set0  0x00000001 , 0x0000003f 
+ 00016464  0x00001df8 hstore  0x00000001 , 0x00008051 
+ 00016465  0x00001df9 hfetch  0x00000001 , 0x00008063 
+ 00016466  0x00001dfa set1  0x00000000 , 0x0000003f 
+ 00016467  0x00001dfb hstore  0x00000001 , 0x00008063 
+ 00016468  0x00001dfc rtn 
+ 00016469  0x00001dfe call  0x00004058 
+ 00016470  0x00001dff call  0x0000405c 
+ 00016471  0x00001e00 branch  0x00004060 
+ 00016472  0x00001e02 fetch  0x00000001 , 0x00004737 
+ 00016473  0x00001e03 rtneq  0x000000ff 
+ 00016474  0x00001e04 fetcht  0x00000001 , 0x00004737 
+ 00016475  0x00001e05 branch  0x000064e8 
+ 00016476  0x00001e07 fetch  0x00000001 , 0x00004738 
+ 00016477  0x00001e08 rtneq  0x000000ff 
+ 00016478  0x00001e09 fetcht  0x00000001 , 0x00004738 
+ 00016479  0x00001e0a branch  0x000064e8 
+ 00016480  0x00001e0c fetch  0x00000001 , 0x00004739 
+ 00016481  0x00001e0d rtneq  0x000000ff 
+ 00016482  0x00001e0e fetcht  0x00000001 , 0x00004739 
+ 00016483  0x00001e0f branch  0x000064e8 
+ 00016484  0x00001e12 fetch  0x00000001 , 0x00004b24 
+ 00016485  0x00001e13 rtn  0x00000034 
+ 00016486  0x00001e14 increase  0xffffffff , 0x0000003f 
+ 00016487  0x00001e15 store  0x00000001 , 0x00004b24 
+ 00016488  0x00001e16 nrtn  0x00000034 
+ 00016489  0x00001e18 set0  0x00000025 , 0x00000000 
+ 00016490  0x00001e19 bpatch  0x000000ca , 0x00004019 
+ 00016491  0x00001e1a fetch  0x00000001 , 0x00004b27 
+ 00016492  0x00001e1b copy  0x0000003f , 0x00000011 
+ 00016493  0x00001e1c fetcht  0x00000001 , 0x00004738 
+ 00016494  0x00001e1d isolate1  0x00000000 , 0x00000011 
+ 00016495  0x00001e1e call  0x00006500 
+ 00016496  0x00001e1f fetcht  0x00000001 , 0x00004737 
+ 00016497  0x00001e20 isolate1  0x00000001 , 0x00000011 
+ 00016498  0x00001e21 call  0x00006500 
+ 00016499  0x00001e22 fetcht  0x00000001 , 0x00004739 
+ 00016500  0x00001e23 isolate1  0x00000002 , 0x00000011 
+ 00016501  0x00001e24 call  0x00006500 
+ 00016502  0x00001e25 branch  0x0000407d 
+ 00016503  0x00001e27 fetch  0x00000001 , 0x00004aa7 
+ 00016504  0x00001e28 rtn  0x00000034 
+ 00016505  0x00001e29 increase  0xffffffff , 0x0000003f 
+ 00016506  0x00001e2a store  0x00000001 , 0x00004aa7 
+ 00016507  0x00001e2b nrtn  0x00000034 
+ 00016508  0x00001e2c branch  0x00003e7f 
+ 00016509  0x00001e2e fetch  0x00000001 , 0x00004aa8 
+ 00016510  0x00001e2f store  0x00000001 , 0x00004aa7 
+ 00016511  0x00001e30 branch  0x00003e81 
+ 00016512  0x00001e33 jam  0x00000001 , 0x00004b26 
+ 00016513  0x00001e34 branch  0x000040b4 
+ 00016514  0x00001e38 call  0x00004812 
+ 00016515  0x00001e39 nrtn  0x00000034 
+ 00016516  0x00001e3a fetch  0x00000006 , 0x00004b07 
+ 00016517  0x00001e3b fetcht  0x00000006 , 0x00000040 
+ 00016518  0x00001e3c isub  0x00000002 , 0x0000003e 
+ 00016519  0x00001e3d branch  0x00004097 , 0x00000005 
+ 00016520  0x00001e3e fetch  0x00000001 , 0x000003fa 
+ 00016521  0x00001e3f beq  0x00000001 , 0x00004119 
+ 00016522  0x00001e40 fetch  0x00000001 , 0x000042e3 
+ 00016523  0x00001e41 rtnne  0x0000003f 
+ 00016524  0x00001e42 fetcht  0x00000008 , 0x00004aba 
+ 00016525  0x00001e43 fetch  0x00000008 , 0x00004aaa 
+ 00016526  0x00001e44 store  0x00000008 , 0x00004aba 
+ 00016527  0x00001e45 isub  0x00000002 , 0x0000003e 
+ 00016528  0x00001e46 ncall  0x000040ac , 0x00000005 
+ 00016529  0x00001e48 fetcht  0x00000008 , 0x00004ac2 
+ 00016530  0x00001e49 fetch  0x00000008 , 0x00004ab2 
+ 00016531  0x00001e4a store  0x00000008 , 0x00004ac2 
+ 00016532  0x00001e4b isub  0x00000002 , 0x0000003e 
+ 00016533  0x00001e4c ncall  0x000040c7 , 0x00000005 
+ 00016534  0x00001e4d rtn 
+ 00016535  0x00001e50 fetch  0x00000001 , 0x00004aca 
+ 00016536  0x00001e51 beq  0x0000007f , 0x000040aa 
+ 00016537  0x00001e52 fetcht  0x00000008 , 0x00004aba 
+ 00016538  0x00001e53 fetch  0x00000008 , 0x00004aaa 
+ 00016539  0x00001e54 store  0x00000008 , 0x00004aba 
+ 00016540  0x00001e55 isub  0x00000002 , 0x0000003e 
+ 00016541  0x00001e56 rtn  0x00000005 
+ 00016542  0x00001e57 arg  0x00004aaa , 0x00000006 
+ 00016543  0x00001e58 arg  0x00004ade , 0x00000011 
+ 00016544  0x00001e59 call  0x000040bb 
+ 00016545  0x00001e5a arg  0x0000000a , 0x00000011 
+ 00016546  0x00001e5b call  0x00004005 
+ 00016547  0x00001e5c setarg  0x00000053 
+ 00016548  0x00001e5d istore  0x00000002 , 0x00000005 
+ 00016549  0x00001e5e setarg  0x000001a1 
+ 00016550  0x00001e5f istore  0x00000002 , 0x00000005 
+ 00016551  0x00001e60 fetch  0x00000008 , 0x00004ade 
+ 00016552  0x00001e61 istore  0x00000008 , 0x00000005 
+ 00016553  0x00001e62 rtn 
+ 00016554  0x00001e64 store  0x00000008 , 0x00004aaa 
+ 00016555  0x00001e65 branch  0x00004099 
+ 00016556  0x00001e69 call  0x00004812 
+ 00016557  0x00001e6a nrtn  0x00000034 
+ 00016558  0x00001e6b fetch  0x00000001 , 0x00004aa9 
+ 00016559  0x00001e6c rtnbit1  0x00000002 
+ 00016560  0x00001e6d call  0x000040e0 
+ 00016561  0x00001e6e fetch  0x00000001 , 0x00004aaa 
+ 00016562  0x00001e6f beq  0x00000039 , 0x00004080 
+ 00016563  0x00001e70 jam  0x00000000 , 0x00004b26 
+ 00016564  0x00001e71 arg  0x00004aaa , 0x00000006 
+ 00016565  0x00001e72 arg  0x00004ade , 0x00000011 
+ 00016566  0x00001e73 call  0x000040bb 
+ 00016567  0x00001e74 call  0x000040f1 
+ 00016568  0x00001e75 fetch  0x00000008 , 0x00004ade 
+ 00016569  0x00001e76 istore  0x00000008 , 0x00000005 
+ 00016570  0x00001e77 rtn 
+ 00016571  0x00001e7a arg  0x00000000 , 0x00000002 
+ 00016572  0x00001e7b add  0x00000011 , 0x00000002 , 0x00000005 
+ 00016573  0x00001e7c arg  0x00000008 , 0x00000039 
+ 00016574  0x00001e7e ifetch  0x00000001 , 0x00000006 
+ 00016575  0x00001e7f bbit0  0x00000007 , 0x000040c3 
+ 00016576  0x00001e80 and  0x0000003f , 0x00000007 , 0x00000007 
+ 00016577  0x00001e81 qset1  0x00000002 
+ 00016578  0x00001e82 branch  0x000040c4 
+ 00016579  0x00001e84 istore  0x00000001 , 0x00000005 
+ 00016580  0x00001e86 loop  0x000040be 
+ 00016581  0x00001e87 istoret  0x00000002 , 0x00000011 
+ 00016582  0x00001e88 rtn 
+ 00016583  0x00001e8b call  0x00004812 
+ 00016584  0x00001e8c nrtn  0x00000034 
+ 00016585  0x00001e8d call  0x000040e0 
+ 00016586  0x00001e8e fetch  0x00000001 , 0x00004ab2 
+ 00016587  0x00001e8f beq  0x000000ff , 0x0000410d 
+ 00016588  0x00001e90 beq  0x000000fe , 0x00004109 
+ 00016589  0x00001e91 setarg  0x00000000 
+ 00016590  0x00001e92 store  0x00000008 , 0x00004ade 
+ 00016591  0x00001e93 call  0x000040d6 
+ 00016592  0x00001e95 fetch  0x00000001 , 0x00004aa9 
+ 00016593  0x00001e96 bbit1  0x00000002 , 0x000040ff 
+ 00016594  0x00001e97 call  0x000040f8 
+ 00016595  0x00001e98 fetch  0x00000004 , 0x00004ade 
+ 00016596  0x00001e99 istore  0x00000004 , 0x00000005 
+ 00016597  0x00001e9a rtn 
+ 00016598  0x00001e9d fetch  0x00000001 , 0x00004ab2 
+ 00016599  0x00001e9e rtn  0x00000034 
+ 00016600  0x00001e9f enable  0x00000001 
+ 00016601  0x00001ea0 fetch  0x00000001 , 0x00004ab2 
+ 00016602  0x00001ea1 copy  0x0000003f , 0x00000007 
+ 00016603  0x00001ea2 fetch  0x00000008 , 0x00004ade 
+ 00016604  0x00001ea3 qsetflag  0x00000001 , 0x0000003f 
+ 00016605  0x00001ea4 store  0x00000008 , 0x00004ade 
+ 00016606  0x00001ea5 disable  0x00000001 
+ 00016607  0x00001ea6 rtn 
+ 00016608  0x00001ea9 fetch  0x00000002 , 0x00004afa 
+ 00016609  0x00001eaa store  0x00000002 , 0x00004aa1 
+ 00016610  0x00001eab rtn 
+ 00016611  0x00001ead fetch  0x00000002 , 0x00004aa1 
+ 00016612  0x00001eae rtn  0x00000034 
+ 00016613  0x00001eaf fetch  0x00000002 , 0x00004aa1 
+ 00016614  0x00001eb0 increase  0xffffffff , 0x0000003f 
+ 00016615  0x00001eb1 store  0x00000002 , 0x00004aa1 
+ 00016616  0x00001eb2 nrtn  0x00000034 
+ 00016617  0x00001eb3 branch  0x000040ea 
+ 00016618  0x00001eb5 setarg  0x00000000 
+ 00016619  0x00001eb6 store  0x00000002 , 0x00004aa1 
+ 00016620  0x00001eb7 fetch  0x00000002 , 0x0000470b 
+ 00016621  0x00001eb8 bbit1  0x00000009 , 0x00003e6b 
+ 00016622  0x00001eb9 fetch  0x00000002 , 0x0000470b 
+ 00016623  0x00001eba bbit1  0x00000000 , 0x00003e52 
+ 00016624  0x00001ebb rtn 
+ 00016625  0x00001ebe arg  0x0000000a , 0x00000011 
+ 00016626  0x00001ebf call  0x00004005 
+ 00016627  0x00001ec0 fetch  0x00000002 , 0x000042de 
+ 00016628  0x00001ec1 istore  0x00000002 , 0x00000005 
+ 00016629  0x00001ec2 setarg  0x000001a1 
+ 00016630  0x00001ec3 istore  0x00000002 , 0x00000005 
+ 00016631  0x00001ec4 rtn 
+ 00016632  0x00001ec6 arg  0x00000006 , 0x00000011 
+ 00016633  0x00001ec7 call  0x00004005 
+ 00016634  0x00001ec8 fetch  0x00000002 , 0x000042de 
+ 00016635  0x00001ec9 istore  0x00000002 , 0x00000005 
+ 00016636  0x00001eca setarg  0x000002a1 
+ 00016637  0x00001ecb istore  0x00000002 , 0x00000005 
+ 00016638  0x00001ecc rtn 
+ 00016639  0x00001ecf call  0x000040f1 
+ 00016640  0x00001ed0 setarg  0x00000000 
+ 00016641  0x00001ed1 istore  0x00000008 , 0x00000005 
+ 00016642  0x00001ed2 call  0x000040f8 
+ 00016643  0x00001ed3 setarg  0x00000000 
+ 00016644  0x00001ed4 istore  0x00000004 , 0x00000005 
+ 00016645  0x00001ed5 fetch  0x00000001 , 0x00004aa9 
+ 00016646  0x00001ed6 set0  0x00000002 , 0x0000003f 
+ 00016647  0x00001ed7 store  0x00000001 , 0x00004aa9 
+ 00016648  0x00001ed8 rtn 
+ 00016649  0x00001eda call  0x000040f8 
+ 00016650  0x00001edb setarg  0x00002002 
+ 00016651  0x00001edc istore  0x00000004 , 0x00000005 
+ 00016652  0x00001edd rtn 
+ 00016653  0x00001ee0 call  0x000040f8 
+ 00016654  0x00001ee1 setarg  0x00000040 
+ 00016655  0x00001ee2 istore  0x00000004 , 0x00000005 
+ 00016656  0x00001ee3 call  0x000040f1 
+ 00016657  0x00001ee4 setarg  0x00000000 
+ 00016658  0x00001ee5 istore  0x00000002 , 0x00000005 
+ 00016659  0x00001ee6 setarg  0x00000010 
+ 00016660  0x00001ee7 istore  0x00000007 , 0x00000005 
+ 00016661  0x00001ee8 fetch  0x00000001 , 0x00004aa9 
+ 00016662  0x00001ee9 set1  0x00000002 , 0x0000003f 
+ 00016663  0x00001eea store  0x00000001 , 0x00004aa9 
+ 00016664  0x00001eeb rtn 
+ 00016665  0x00001eef set0  0x00000025 , 0x00000000 
+ 00016666  0x00001ef0 bpatch  0x000000cb , 0x00004019 
+ 00016667  0x00001ef1 fetch  0x00000001 , 0x00004aa9 
+ 00016668  0x00001ef2 rtnbit0  0x00000001 
+ 00016669  0x00001ef3 set0  0x00000001 , 0x0000003f 
+ 00016670  0x00001ef4 store  0x00000001 , 0x00004aa9 
+ 00016671  0x00001ef5 fetcht  0x00000001 , 0x00004718 
+ 00016672  0x00001ef6 setarg  0x00004719 
+ 00016673  0x00001ef7 iadd  0x00000002 , 0x00000005 
+ 00016674  0x00001ef8 fetch  0x00000001 , 0x00004aca 
+ 00016675  0x00001ef9 branch  0x00004128 , 0x00000034 
+ 00016676  0x00001efa beq  0x0000002a , 0x0000412a 
+ 00016677  0x00001efb bne  0x00000028 , 0x00004134 
+ 00016678  0x00001efc storet  0x00000001 , 0x00004718 
+ 00016679  0x00001efd branch  0x00003e45 
+ 00016680  0x00001f00 storet  0x00000001 , 0x00004718 
+ 00016681  0x00001f01 rtn 
+ 00016682  0x00001f03 fetch  0x00000001 , 0x00004718 
+ 00016683  0x00001f04 rtn  0x00000034 
+ 00016684  0x00001f05 increase  0xffffffff , 0x0000003f 
+ 00016685  0x00001f06 store  0x00000001 , 0x00004718 
+ 00016686  0x00001f07 arg  0x00004719 , 0x00000005 
+ 00016687  0x00001f08 iadd  0x00000005 , 0x00000005 
+ 00016688  0x00001f09 setarg  0x00000000 
+ 00016689  0x00001f0a istore  0x00000001 , 0x00000005 
+ 00016690  0x00001f0b enable  0x0000002c 
+ 00016691  0x00001f0c branch  0x00004143 
+ 00016692  0x00001f0e sub  0x0000003f , 0x0000001d , 0x0000003e 
+ 00016693  0x00001f0f rtn  0x00000002 
+ 00016694  0x00001f10 arg  0x00000030 , 0x00000002 
+ 00016695  0x00001f11 sub  0x0000003f , 0x00000027 , 0x0000003e 
+ 00016696  0x00001f12 nrtn  0x00000002 
+ 00016697  0x00001f13 branch  0x0000413d , 0x00000005 
+ 00016698  0x00001f14 arg  0x0000001d , 0x00000002 
+ 00016699  0x00001f15 isub  0x00000002 , 0x00000002 
+ 00016700  0x00001f16 or_into  0x00000030 , 0x00000002 
+ 00016701  0x00001f18 istoret  0x00000001 , 0x00000005 
+ 00016702  0x00001f19 fetch  0x00000001 , 0x00004718 
+ 00016703  0x00001f1a increase  0x00000001 , 0x0000003f 
+ 00016704  0x00001f1b store  0x00000001 , 0x00004718 
+ 00016705  0x00001f1c disable  0x0000002c 
+ 00016706  0x00001f1d branch  0x00004143 
+ 00016707  0x00001f20 fetch  0x00000002 , 0x000042de 
+ 00016708  0x00001f21 rtn  0x00000034 
+ 00016709  0x00001f22 arg  0x00000003 , 0x00000011 
+ 00016710  0x00001f23 call  0x00004005 
+ 00016711  0x00001f24 fetch  0x00000002 , 0x000042de 
+ 00016712  0x00001f25 istore  0x00000002 , 0x00000005 
+ 00016713  0x00001f26 setarg  0x0000ffa1 
+ 00016714  0x00001f27 istore  0x00000002 , 0x00000005 
+ 00016715  0x00001f28 setarg  0x00000000 
+ 00016716  0x00001f29 setflag  0x0000002c , 0x00000000 , 0x0000003f 
+ 00016717  0x00001f2a istore  0x00000001 , 0x00000005 
+ 00016718  0x00001f2b rtn 
+ 00016719  0x00001f30 disable  0x00000028 
+ 00016720  0x00001f31 disable  0x0000002c 
+ 00016721  0x00001f32 hfetch  0x00000001 , 0x00008119 
+ 00016722  0x00001f33 rtnbit1  0x00000000 
+ 00016723  0x00001f36 hfetch  0x00000001 , 0x0000811b 
+ 00016724  0x00001f37 bbit1  0x00000000 , 0x00004159 
+ 00016725  0x00001f38 hfetch  0x00000001 , 0x00008119 
+ 00016726  0x00001f39 bbit0  0x00000006 , 0x00004159 
+ 00016727  0x00001f3a hfetch  0x00000001 , 0x0000811a 
+ 00016728  0x00001f3b branch  0x0000414f 
+ 00016729  0x00001f3e enable  0x00000028 
+ 00016730  0x00001f3f enable  0x0000002c 
+ 00016731  0x00001f40 hfetch  0x00000001 , 0x0000811b 
+ 00016732  0x00001f41 isolate0  0x00000000 , 0x0000003f 
+ 00016733  0x00001f42 hfetch  0x00000001 , 0x0000811a 
+ 00016734  0x00001f43 arg  0x000049ff , 0x00000006 
+ 00016735  0x00001f44 iadd  0x00000006 , 0x00000006 
+ 00016736  0x00001f45 ifetch  0x00000001 , 0x00000006 
+ 00016737  0x00001f46 bbit1  0x00000007 , 0x00004191 
+ 00016738  0x00001f47 nbranch  0x00004182 , 0x00000001 
+ 00016739  0x00001f48 disable  0x0000002c 
+ 00016740  0x00001f49 iforce  0x00000002 
+ 00016741  0x00001f4a fetch  0x00000001 , 0x00004731 
+ 00016742  0x00001f4b sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00016743  0x00001f4c nrtn  0x00000002 
+ 00016744  0x00001f4d copy  0x0000003f , 0x00000011 
+ 00016745  0x00001f4e arg  0x00000003 , 0x00000039 
+ 00016746  0x00001f4f arg  0x0000472b , 0x00000006 
+ 00016747  0x00001f51 ifetch  0x00000001 , 0x00000006 
+ 00016748  0x00001f52 isub  0x00000002 , 0x0000003e 
+ 00016749  0x00001f53 branch  0x0000414f , 0x00000005 
+ 00016750  0x00001f54 loop  0x0000416b 
+ 00016751  0x00001f56 copy  0x00000011 , 0x0000003f 
+ 00016752  0x00001f57 arg  0x0000472b , 0x00000005 
+ 00016753  0x00001f58 iadd  0x00000005 , 0x00000005 
+ 00016754  0x00001f59 istoret  0x00000001 , 0x00000005 
+ 00016755  0x00001f5a increase  0x00000001 , 0x0000003f 
+ 00016756  0x00001f5b store  0x00000001 , 0x00004731 
+ 00016757  0x00001f5c hfetch  0x00000001 , 0x0000811b 
+ 00016758  0x00001f5d rshift3  0x0000003f , 0x0000003f 
+ 00016759  0x00001f5e nbranch  0x00004179 , 0x00000034 
+ 00016760  0x00001f5f branch  0x00004180 
+ 00016761  0x00001f62 increase  0xffffffff , 0x0000003f 
+ 00016762  0x00001f63 branch  0x00004180 , 0x00000005 
+ 00016763  0x00001f64 hfetch  0x00000001 , 0x0000811b 
+ 00016764  0x00001f65 and_into  0x00000001 , 0x0000003f 
+ 00016765  0x00001f66 beq  0x00000000 , 0x0000414f 
+ 00016766  0x00001f67 beq  0x00000001 , 0x00004180 
+ 00016767  0x00001f68 rtn 
+ 00016768  0x00001f6a enable  0x0000002c 
+ 00016769  0x00001f6b rtn 
+ 00016770  0x00001f6e and  0x0000003f , 0x000000ff , 0x00000002 
+ 00016771  0x00001f6f fetch  0x00000001 , 0x00004731 
+ 00016772  0x00001f70 rtn  0x00000034 
+ 00016773  0x00001f71 iforce  0x00000039 
+ 00016774  0x00001f72 arg  0x0000472b , 0x00000006 
+ 00016775  0x00001f74 ifetch  0x00000001 , 0x00000006 
+ 00016776  0x00001f75 isub  0x00000002 , 0x0000003e 
+ 00016777  0x00001f76 branch  0x00004291 , 0x00000005 
+ 00016778  0x00001f77 loop  0x00004187 
+ 00016779  0x00001f78 rtn 
+ 00016780  0x00001f7c hfetch  0x00000001 , 0x0000811b 
+ 00016781  0x00001f7d and_into  0x00000001 , 0x0000003f 
+ 00016782  0x00001f7e beq  0x00000000 , 0x00004180 
+ 00016783  0x00001f7f beq  0x00000001 , 0x0000414f 
+ 00016784  0x00001f80 rtn 
+ 00016785  0x00001f83 and  0x0000003f , 0x00000007 , 0x00000007 
+ 00016786  0x00001f84 fetch  0x00000001 , 0x00004729 
+ 00016787  0x00001f85 qsetflag  0x00000001 , 0x0000003f 
+ 00016788  0x00001f86 store  0x00000001 , 0x00004729 
+ 00016789  0x00001f87 rtn 
+ 00016790  0x00001f8a setarg  0x00000000 
+ 00016791  0x00001f8b store  0x00000008 , 0x00004aca 
+ 00016792  0x00001f8c store  0x00000001 , 0x00004731 
+ 00016793  0x00001f8d rtn 
+ 00016794  0x00001f90 hfetch  0x00000001 , 0x0000811b 
+ 00016795  0x00001f91 hfetch  0x00000001 , 0x0000811a 
+ 00016796  0x00001f92 hfetch  0x00000001 , 0x00008119 
+ 00016797  0x00001f93 bbit0  0x00000000 , 0x0000419a 
+ 00016798  0x00001f94 setarg  0x000000ff 
+ 00016799  0x00001f95 enable  0x00000028 
+ 00016800  0x00001f96 rtn 
+ 00016801  0x00001f99 call  0x000041ac 
+ 00016802  0x00001f9a rtn  0x0000002b 
+ 00016803  0x00001f9c fetch  0x00000001 , 0x00004b17 
+ 00016804  0x00001f9d call  0x00004299 , 0x00000034 
+ 00016805  0x00001f9e call  0x0000429c 
+ 00016806  0x00001f9f fetch  0x00000001 , 0x00004731 
+ 00016807  0x00001fa0 rtn  0x00000034 
+ 00016808  0x00001fa1 call  0x000041bf 
+ 00016809  0x00001fa2 fetch  0x00000004 , 0x00000b26 
+ 00016810  0x00001fa3 store  0x00000004 , 0x00004afc 
+ 00016811  0x00001fa4 rtn 
+ 00016812  0x00001fa7 fetch  0x00000002 , 0x0000470b 
+ 00016813  0x00001fa8 rtnbit0  0x00000007 
+ 00016814  0x00001fa9 fetch  0x00000001 , 0x00004aa9 
+ 00016815  0x00001faa rtnbit1  0x00000000 , 0x0000003f 
+ 00016816  0x00001fab fetch  0x00000002 , 0x00004aca 
+ 00016817  0x00001fac fetcht  0x00000002 , 0x00004b28 
+ 00016818  0x00001fad isub  0x00000002 , 0x0000003e 
+ 00016819  0x00001fae branch  0x000041bb , 0x00000005 
+ 00016820  0x00001faf fetch  0x00000002 , 0x00004aca 
+ 00016821  0x00001fb0 fetcht  0x00000002 , 0x00004b29 
+ 00016822  0x00001fb1 isub  0x00000002 , 0x0000003e 
+ 00016823  0x00001fb2 branch  0x000041bb , 0x00000005 
+ 00016824  0x00001fb3 fetch  0x00000002 , 0x0000470b 
+ 00016825  0x00001fb4 bbit1  0x0000000c , 0x000041bb 
+ 00016826  0x00001fb5 rtn 
+ 00016827  0x00001fb8 fetch  0x00000001 , 0x00004aa9 
+ 00016828  0x00001fb9 set1  0x00000000 , 0x0000003f 
+ 00016829  0x00001fba store  0x00000001 , 0x00004aa9 
+ 00016830  0x00001fbb branch  0x00007e3d 
+ 00016831  0x00001fbf hfetch  0x00000003 , 0x00008083 
+ 00016832  0x00001fc0 iforce  0x00000012 
+ 00016833  0x00001fc1 hfetch  0x00000004 , 0x00008078 
+ 00016834  0x00001fc2 iforce  0x00000011 
+ 00016835  0x00001fc3 hfetcht  0x00000008 , 0x00008070 
+ 00016836  0x00001fc4 setarg  0x00000000 
+ 00016837  0x00001fc5 hstore  0x00000003 , 0x00008083 
+ 00016838  0x00001fc6 nop  0x00000064 
+ 00016839  0x00001fc7 hfetch  0x00000001 , 0x0000811c 
+ 00016840  0x00001fc8 store  0x00000001 , 0x00000b26 
+ 00016841  0x00001fc9 hjam  0x00000000 , 0x00008078 
+ 00016842  0x00001fca hfetch  0x00000001 , 0x00008073 
+ 00016843  0x00001fcb and_into  0x000000f0 , 0x0000003f 
+ 00016844  0x00001fcc hstore  0x00000001 , 0x00008073 
+ 00016845  0x00001fcd xor_into  0x000000ff , 0x0000003f 
+ 00016846  0x00001fce hstore  0x00000001 , 0x0000807b 
+ 00016847  0x00001fcf setarg  0x000000ff 
+ 00016848  0x00001fd0 hstore  0x00000003 , 0x00008070 
+ 00016849  0x00001fd1 setarg  0x0000ffff 
+ 00016850  0x00001fd2 hstore  0x00000002 , 0x00008079 
+ 00016851  0x00001fd3 nop  0x00000064 
+ 00016852  0x00001fd4 hfetch  0x00000003 , 0x0000811d 
+ 00016853  0x00001fd5 iand  0x00000012 , 0x0000003f 
+ 00016854  0x00001fd6 store  0x00000003 , 0x00000b27 
+ 00016855  0x00001fd7 deposit  0x00000011 
+ 00016856  0x00001fd8 hstore  0x00000004 , 0x00008078 
+ 00016857  0x00001fd9 hstoret  0x00000008 , 0x00008070 
+ 00016858  0x00001fda deposit  0x00000012 
+ 00016859  0x00001fdb hstore  0x00000003 , 0x00008083 
+ 00016860  0x00001fdc rtn 
+ 00016861  0x00001fdf fetch  0x00000001 , 0x00004133 
+ 00016862  0x00001fe0 nrtn  0x00000034 
+ 00016863  0x00001fe1 fetch  0x00000001 , 0x00004283 
+ 00016864  0x00001fe2 nrtn  0x00000034 
+ 00016865  0x00001fe3 fetch  0x00000001 , 0x00004701 
+ 00016866  0x00001fe4 rtn  0x00000034 
+ 00016867  0x00001fe5 fetch  0x00000001 , 0x00004702 
+ 00016868  0x00001fe6 nrtn  0x00000034 
+ 00016869  0x00001fe7 branch  0x00003e75 
+ 00016870  0x00001fea copy  0x00000013 , 0x0000003f 
+ 00016871  0x00001feb beq  0x00000006 , 0x0000426d 
+ 00016872  0x00001fec beq  0x0000000a , 0x00004247 
+ 00016873  0x00001fed beq  0x00000012 , 0x00004271 
+ 00016874  0x00001fee beq  0x00000010 , 0x00004223 
+ 00016875  0x00001fef beq  0x0000002e , 0x00003e32 
+ 00016876  0x00001ff0 beq  0x00000001 , 0x0000423a 
+ 00016877  0x00001ff1 beq  0x00000002 , 0x0000420c 
+ 00016878  0x00001ff2 beq  0x00000004 , 0x00004201 
+ 00016879  0x00001ff3 beq  0x00000013 , 0x00004201 
+ 00016880  0x00001ff4 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00016881  0x00001ff5 and_into  0x000000f0 , 0x0000003f 
+ 00016882  0x00001ff6 beq  0x00000050 , 0x000041f4 
+ 00016883  0x00001ff7 rtn 
+ 00016884  0x00001ffb set0  0x00000025 , 0x00000000 
+ 00016885  0x00001ffc bpatch  0x000000cc , 0x00004019 
+ 00016886  0x00001ffd storet  0x00000001 , 0x0000024e 
+ 00016887  0x00001fff fetch  0x00000001 , 0x0000024e 
+ 00016888  0x00002000 rtn  0x00000034 
+ 00016889  0x00002001 increase  0xffffffff , 0x0000003f 
+ 00016890  0x00002002 store  0x00000001 , 0x0000024e 
+ 00016891  0x00002003 call  0x00004064 
+ 00016892  0x00002004 call  0x0000421d 
+ 00016893  0x00002005 call  0x00004077 
+ 00016894  0x00002006 call  0x000040e3 
+ 00016895  0x00002007 call  0x000042b3 
+ 00016896  0x00002008 branch  0x000041f7 
+ 00016897  0x0000200b fetch  0x00000002 , 0x0000470b 
+ 00016898  0x0000200c bbit1  0x0000000c , 0x0000423e 
+ 00016899  0x0000200d fetch  0x00000001 , 0x00004aa9 
+ 00016900  0x0000200e bbit0 , 0x00000000 , 0x00003e0a 
+ 00016901  0x0000200f fetch  0x00000001 , 0x00004aa9 
+ 00016902  0x00002010 set0  0x00000000 , 0x0000003f 
+ 00016903  0x00002011 store  0x00000001 , 0x00004aa9 
+ 00016904  0x00002012 fetch  0x00000002 , 0x0000470b 
+ 00016905  0x00002013 set0  0x00000007 , 0x0000003f 
+ 00016906  0x00002014 store  0x00000002 , 0x0000470b 
+ 00016907  0x00002015 rtn 
+ 00016908  0x00002018 set0  0x00000025 , 0x00000000 
+ 00016909  0x00002019 bpatch  0x000000cd , 0x00004019 
+ 00016910  0x0000201a call  0x0000421a 
+ 00016911  0x0000201b fetch  0x00000002 , 0x000042ad 
+ 00016912  0x0000201c bbit1  0x00000000 , 0x00003e0c 
+ 00016913  0x0000201d bbit1  0x00000001 , 0x00004214 
+ 00016914  0x0000201e bbit1  0x00000002 , 0x00004217 
+ 00016915  0x0000201f branch  0x0000423e 
+ 00016916  0x00002021 bbit1  0x00000005 , 0x00004217 
+ 00016917  0x00002022 bbit1  0x00000003 , 0x00004217 
+ 00016918  0x00002023 branch  0x0000423e 
+ 00016919  0x00002026 fetch  0x00000002 , 0x0000470b 
+ 00016920  0x00002027 bbit1  0x0000000c , 0x0000423e 
+ 00016921  0x00002028 branch  0x00003e0a 
+ 00016922  0x0000202b jam  0x00000000 , 0x00004283 
+ 00016923  0x0000202c jam  0x00000000 , 0x00004b02 
+ 00016924  0x0000202d rtn 
+ 00016925  0x00002031 fetch  0x00000001 , 0x00004709 
+ 00016926  0x00002032 rtn  0x00000034 
+ 00016927  0x00002033 increase  0xffffffff , 0x0000003f 
+ 00016928  0x00002034 store  0x00000001 , 0x00004709 
+ 00016929  0x00002035 nrtn  0x00000034 
+ 00016930  0x00002036 branch  0x00004271 
+ 00016931  0x0000203a setarg  0x00000000 
+ 00016932  0x0000203b store  0x00000002 , 0x00004a9f 
+ 00016933  0x0000203c store  0x00000001 , 0x00004718 
+ 00016934  0x0000203d call  0x0000422a 
+ 00016935  0x0000203e call  0x0000422d 
+ 00016936  0x0000203f call  0x00003e81 
+ 00016937  0x00002040 branch  0x0000423e 
+ 00016938  0x00002043 jam  0x00000001 , 0x00004af9 
+ 00016939  0x00002044 fetcht  0x00000001 , 0x00004737 
+ 00016940  0x00002045 branch  0x000064fd 
+ 00016941  0x00002048 set0  0x00000025 , 0x00000000 
+ 00016942  0x00002049 bpatch  0x000000ce , 0x00004019 
+ 00016943  0x0000204a fetch  0x00000002 , 0x0000470b 
+ 00016944  0x0000204b isolate1  0x00000007 , 0x0000003f 
+ 00016945  0x0000204c call  0x00003e50 , 0x00000001 
+ 00016946  0x0000204d fetch  0x00000002 , 0x00004716 
+ 00016947  0x0000204e store  0x00000002 , 0x00004707 
+ 00016948  0x0000204f fetch  0x00000002 , 0x000042af 
+ 00016949  0x00002050 set1  0x00000000 , 0x0000003f 
+ 00016950  0x00002051 store  0x00000002 , 0x000042af 
+ 00016951  0x00002052 fetch  0x00000002 , 0x0000470b 
+ 00016952  0x00002053 bbit1  0x00000000 , 0x00003e52 
+ 00016953  0x00002054 rtn 
+ 00016954  0x00002058 call  0x00003e73 
+ 00016955  0x00002059 setarg  0x00000000 
+ 00016956  0x0000205a store  0x00000002 , 0x00004a9d 
+ 00016957  0x0000205b branch  0x00003e59 
+ 00016958  0x0000205e call  0x00003e81 
+ 00016959  0x0000205f fetch  0x00000002 , 0x00004716 
+ 00016960  0x00002060 store  0x00000002 , 0x00004a9d 
+ 00016961  0x00002061 call  0x00003e57 
+ 00016962  0x00002062 jam  0x00000000 , 0x00004b01 
+ 00016963  0x00002064 call  0x00003e6f 
+ 00016964  0x00002065 call  0x0000419a 
+ 00016965  0x00002066 branch  0x00004196 
+ 00016966  0x00002069 branch  0x00003e75 
+ 00016967  0x0000206c jam  0x00000000 , 0x00004709 
+ 00016968  0x0000206d jam  0x00000000 , 0x00004718 
+ 00016969  0x0000206e call  0x00004196 
+ 00016970  0x0000206f branch  0x0000419a 
+ 00016971  0x00002073 fetch  0x00000001 , 0x00004b01 
+ 00016972  0x00002074 branch  0x00004254 , 0x00000034 
+ 00016973  0x00002075 arg  0x00000140 , 0x00000002 
+ 00016974  0x00002076 imul32  0x00000002 , 0x00000002 
+ 00016975  0x00002077 copy  0x00000022 , 0x0000003f 
+ 00016976  0x00002078 iadd  0x00000002 , 0x00000002 
+ 00016977  0x0000207a copy  0x00000022 , 0x0000003f 
+ 00016978  0x0000207b isub  0x00000002 , 0x0000003e 
+ 00016979  0x0000207c nbranch  0x00004251 , 0x00000002 
+ 00016980  0x0000207e fetcht  0x00000001 , 0x00004aef 
+ 00016981  0x0000207f call  0x000064fd 
+ 00016982  0x00002080 enable  0x00000028 
+ 00016983  0x00002081 hfetch  0x00000004 , 0x00008138 
+ 00016984  0x00002082 setflag  0x00000028 , 0x0000001a , 0x0000003f 
+ 00016985  0x00002083 hstore  0x00000004 , 0x0000804c 
+ 00016986  0x00002084 call  0x00003cf4 
+ 00016987  0x00002086 hjam  0x00000000 , 0x00008083 
+ 00016988  0x00002087 hjam  0x00000000 , 0x00008084 
+ 00016989  0x00002088 hfetch  0x00000001 , 0x00008085 
+ 00016990  0x00002089 and_into  0x000000f0 , 0x0000003f 
+ 00016991  0x0000208a hstore  0x00000001 , 0x00008085 
+ 00016992  0x0000208b setarg  0x00000000 
+ 00016993  0x0000208c store  0x00000004 , 0x000000a4 
+ 00016994  0x0000208d setarg  0x000000ff 
+ 00016995  0x0000208e fetcht  0x00000001 , 0x00004715 
+ 00016996  0x0000208f copy  0x00000002 , 0x00000007 
+ 00016997  0x00002090 qset1  0x0000003f 
+ 00016998  0x00002091 store  0x00000004 , 0x000000a0 
+ 00016999  0x00002092 rtn 
+ 00017000  0x00002094 call  0x0000425b 
+ 00017001  0x00002095 fetch  0x00000001 , 0x0000009f 
+ 00017002  0x00002096 nrtn  0x00000034 
+ 00017003  0x00002097 jam  0x00000000 , 0x000000a0 
+ 00017004  0x00002098 rtn 
+ 00017005  0x0000209b setarg  0x00000002 
+ 00017006  0x0000209c store  0x00000001 , 0x00004709 
+ 00017007  0x0000209d call  0x0000419a 
+ 00017008  0x0000209e branch  0x00004196 
+ 00017009  0x000020a2 set0  0x00000025 , 0x00000000 
+ 00017010  0x000020a3 bpatch  0x000000cf , 0x00004019 
+ 00017011  0x000020a4 call  0x00007d33 
+ 00017012  0x000020a5 jam  0x00000001 , 0x00004283 
+ 00017013  0x000020a6 call  0x0000419a 
+ 00017014  0x000020a7 call  0x00004196 
+ 00017015  0x000020a8 call  0x00003e7f 
+ 00017016  0x000020a9 call  0x00003e7d 
+ 00017017  0x000020aa setarg  0x00000000 
+ 00017018  0x000020ab store  0x00000002 , 0x00004707 
+ 00017019  0x000020ac store  0x00000001 , 0x00004709 
+ 00017020  0x000020ad branch  0x00003e79 
+ 00017021  0x000020b1 fetch  0x00000001 , 0x00004ae9 
+ 00017022  0x000020b2 and_into  0x00000007 , 0x0000003f 
+ 00017023  0x000020b3 store  0x00000001 , 0x00004b00 
+ 00017024  0x000020b4 arg  0x00000001 , 0x00000002 
+ 00017025  0x000020b5 arg  0x00004b00 , 0x00000011 
+ 00017026  0x000020b6 setarg  0x00001fec 
+ 00017027  0x000020b7 branch  0x000062a8 
+ 00017028  0x000020bb arg  0x00000001 , 0x00000002 
+ 00017029  0x000020bc arg  0x00004b00 , 0x00000011 
+ 00017030  0x000020bd setarg  0x00001fec 
+ 00017031  0x000020be byteswap  0x0000003f , 0x0000003f 
+ 00017032  0x000020bf store  0x00000002 , 0x0000021a 
+ 00017033  0x000020c0 call  0x0000624c 
+ 00017034  0x000020c1 fetch  0x00000001 , 0x00004b00 
+ 00017035  0x000020c2 copy  0x0000003f , 0x00000012 
+ 00017036  0x000020c3 and_into  0x0000000f , 0x0000003f 
+ 00017037  0x000020c4 beq  0x0000000f , 0x000042b9 
+ 00017038  0x000020c5 copy  0x00000012 , 0x0000003f 
+ 00017039  0x000020c6 store  0x00000001 , 0x00004ae9 
+ 00017040  0x000020c7 rtn 
+ 00017041  0x000020cb add  0x00000006 , 0xffffffff , 0x00000005 
+ 00017042  0x000020cc call  0x00007ecd 
+ 00017043  0x000020cd fetch  0x00000001 , 0x00004731 
+ 00017044  0x000020ce increase  0xffffffff , 0x0000003f 
+ 00017045  0x000020cf store  0x00000001 , 0x00004731 
+ 00017046  0x000020d0 fetch  0x00000001 , 0x00004b23 
+ 00017047  0x000020d1 beq  0x0000007f , 0x000042bd 
+ 00017048  0x000020d2 branch  0x000042c0 
+ 00017049  0x000020d5 fetch  0x00000008 , 0x00004aca 
+ 00017050  0x000020d6 store  0x00000008 , 0x00004b19 
+ 00017051  0x000020d7 branch  0x000042c0 
+ 00017052  0x000020da fetch  0x00000001 , 0x00004731 
+ 00017053  0x000020db branch  0x000042ca , 0x00000034 
+ 00017054  0x000020dc copy  0x0000003f , 0x00000012 
+ 00017055  0x000020dd fetch  0x00000005 , 0x00004aca 
+ 00017056  0x000020de copy  0x0000003f , 0x00000002 
+ 00017057  0x000020e0 copy  0x00000002 , 0x0000003f 
+ 00017058  0x000020e1 compare  0x0000007f , 0x0000003f , 0x000000ff 
+ 00017059  0x000020e2 branch  0x000042b0 , 0x00000001 
+ 00017060  0x000020e3 increase  0xffffffff , 0x00000012 
+ 00017061  0x000020e4 setarg  0x00004b12 
+ 00017062  0x000020e5 iadd  0x00000012 , 0x00000005 
+ 00017063  0x000020e6 copy  0x00000002 , 0x0000003f 
+ 00017064  0x000020e7 istore  0x00000001 , 0x00000005 
+ 00017065  0x000020e8 copy  0x00000002 , 0x0000003f 
+ 00017066  0x000020e9 rshift8  0x0000003f , 0x0000003f 
+ 00017067  0x000020ea copy  0x0000003f , 0x00000002 
+ 00017068  0x000020eb nbranch  0x000042a1 , 0x00000034 
+ 00017069  0x000020ec fetch  0x00000005 , 0x00004b12 
+ 00017070  0x000020ed call  0x000042cc , 0x00000034 
+ 00017071  0x000020ee branch  0x000042c0 
+ 00017072  0x000020f0 setarg  0x00000001 
+ 00017073  0x000020f1 store  0x00000001 , 0x00004b17 
+ 00017074  0x000020f2 branch  0x000042a9 
+ 00017075  0x000020f5 fetch  0x00000001 , 0x00004af8 
+ 00017076  0x000020f6 rtn  0x00000034 
+ 00017077  0x000020f7 increase  0xffffffff , 0x0000003f 
+ 00017078  0x000020f8 store  0x00000001 , 0x00004af8 
+ 00017079  0x000020f9 nrtn  0x00000034 
+ 00017080  0x000020fa branch  0x00007d2f 
+ 00017081  0x000020fe copy  0x00000012 , 0x0000003f 
+ 00017082  0x000020ff and_into  0x00000001 , 0x0000003f 
+ 00017083  0x00002100 store  0x00000001 , 0x00004ae9 
+ 00017084  0x00002101 rtn 
+ 00017085  0x00002103 jam  0x00000000 , 0x00004b17 
+ 00017086  0x00002104 call  0x000042cc 
+ 00017087  0x00002105 branch  0x000042c0 
+ 00017088  0x00002109 set0  0x00000025 , 0x00000000 
+ 00017089  0x0000210a bpatch  0x000000d1 , 0x0000401a 
+ 00017090  0x0000210b hfetch  0x00000001 , 0x00008119 
+ 00017091  0x0000210c rtnbit1  0x00000000 
+ 00017092  0x0000210d hfetch  0x00000001 , 0x0000811b 
+ 00017093  0x0000210e bbit1  0x00000000 , 0x000042d4 
+ 00017094  0x0000210f hfetch  0x00000001 , 0x00008119 
+ 00017095  0x00002110 bbit0  0x00000006 , 0x000042d4 
+ 00017096  0x00002111 hfetch  0x00000001 , 0x0000811a 
+ 00017097  0x00002112 branch  0x000042c0 
+ 00017098  0x00002115 call  0x000042cf 
+ 00017099  0x00002116 branch  0x000042c0 
+ 00017100  0x00002119 fetch  0x00000008 , 0x00004aca 
+ 00017101  0x0000211a store  0x00000008 , 0x00004b19 
+ 00017102  0x0000211b rtn 
+ 00017103  0x0000211e setarg  0x00000000 
+ 00017104  0x0000211f store  0x00000001 , 0x00004b17 
+ 00017105  0x00002120 store  0x00000005 , 0x00004b12 
+ 00017106  0x00002121 store  0x00000008 , 0x00004aca 
+ 00017107  0x00002122 rtn 
+ 00017108  0x00002125 fetch  0x00000001 , 0x00004aa9 
+ 00017109  0x00002126 set1  0x00000001 , 0x0000003f 
+ 00017110  0x00002127 store  0x00000001 , 0x00004aa9 
+ 00017111  0x00002129 hfetch  0x00000001 , 0x0000811b 
+ 00017112  0x0000212a isolate1  0x00000000 , 0x0000003f 
+ 00017113  0x0000212b store  0x00000001 , 0x00004aa6 
+ 00017114  0x0000212c hfetch  0x00000001 , 0x0000811a 
+ 00017115  0x0000212d store  0x00000001 , 0x00004aa5 
+ 00017116  0x0000212e arg  0x000049ff , 0x00000006 
+ 00017117  0x0000212f iadd  0x00000006 , 0x00000006 
+ 00017118  0x00002130 ifetch  0x00000001 , 0x00000006 
+ 00017119  0x00002131 fetcht  0x00000001 , 0x00004731 
+ 00017120  0x00002132 sub  0x00000002 , 0x00000004 , 0x0000003e 
+ 00017121  0x00002133 nbranch  0x000042c0 , 0x00000002 
+ 00017122  0x00002134 iforce  0x00000006 
+ 00017123  0x00002135 setarg  0x00004aca 
+ 00017124  0x00002136 iadd  0x00000002 , 0x00000005 
+ 00017125  0x00002137 deposit  0x00000006 
+ 00017126  0x00002138 istore  0x00000001 , 0x00000005 
+ 00017127  0x00002139 increase  0x00000001 , 0x00000002 
+ 00017128  0x0000213a storet  0x00000001 , 0x00004731 
+ 00017129  0x0000213b branch  0x0000429c 
+ 00017130  0x0000214c branch  0x000042ef , 0x0000002b 
+ 00017131  0x0000214e setarg  0x000043f5 
+ 00017132  0x0000214f arg  0x000042d6 , 0x00000005 
+ 00017133  0x00002150 isub  0x00000005 , 0x00000039 
+ 00017134  0x00002151 call  0x00007e9f 
+ 00017135  0x00002153 set0  0x00000025 , 0x00000000 
+ 00017136  0x00002154 bpatch  0x000000d2 , 0x0000401a 
+ 00017137  0x00002155 setarg  0x00000475 
+ 00017138  0x00002156 arg  0x00000440 , 0x00000005 
+ 00017139  0x00002157 isub  0x00000005 , 0x00000039 
+ 00017140  0x00002158 call  0x00007e9f 
+ 00017141  0x00002159 setarg  0x000002f2 
+ 00017142  0x0000215a arg  0x00000286 , 0x00000005 
+ 00017143  0x0000215b isub  0x00000005 , 0x00000039 
+ 00017144  0x0000215c call  0x00007e9f 
+ 00017145  0x0000215d branch  0x000048c3 
+ 00017146  0x00002160 set0  0x00000025 , 0x00000000 
+ 00017147  0x00002161 bpatch  0x000000d3 , 0x0000401a 
+ 00017148  0x00002162 copy  0x00000006 , 0x00000002 
+ 00017149  0x00002165 copy  0x00000002 , 0x00000006 
+ 00017150  0x00002166 ifetch  0x00000002 , 0x00000006 
+ 00017151  0x00002167 store  0x00000002 , 0x0000028f 
+ 00017152  0x00002168 ifetch  0x00000002 , 0x00000006 
+ 00017153  0x00002169 store  0x00000002 , 0x00000291 
+ 00017154  0x0000216a deposit  0x00000006 
+ 00017155  0x0000216b store  0x00000002 , 0x0000028d 
+ 00017156  0x0000216c fetch  0x00000001 , 0x0000470a 
+ 00017157  0x0000216d beq  0x00000000 , 0x00004307 
+ 00017158  0x0000216e branch  0x00004684 
+ 00017159  0x00002171 fetch  0x00000002 , 0x0000028f 
+ 00017160  0x00002172 branch  0x00004383 , 0x00000034 
+ 00017161  0x00002173 set0  0x00000025 , 0x00000000 
+ 00017162  0x00002174 bpatch  0x000000d4 , 0x0000401a 
+ 00017163  0x00002175 fetch  0x00000001 , 0x00000291 
+ 00017164  0x00002176 beq  0x00000001 , 0x00004321 
+ 00017165  0x00002178 beq  0x00000050 , 0x00004366 
+ 00017166  0x00002179 beq  0x00000051 , 0x0000437b 
+ 00017167  0x0000217a beq  0x00000052 , 0x00004379 
+ 00017168  0x0000217b beq  0x00000053 , 0x00004379 
+ 00017169  0x0000217c branch  0x00004383 
+ 00017170  0x00002181 set0  0x00000025 , 0x00000000 
+ 00017171  0x00002182 bpatch  0x000000d5 , 0x0000401a 
+ 00017172  0x00002183 call  0x00004821 
+ 00017173  0x00002184 fetch  0x00000001 , 0x000042e6 
+ 00017174  0x00002185 beq  0x00000000 , 0x0000431f 
+ 00017175  0x00002186 beq  0x00000001 , 0x0000431f 
+ 00017176  0x00002187 beq  0x00000002 , 0x0000431f 
+ 00017177  0x00002188 beq  0x00000003 , 0x0000431f 
+ 00017178  0x00002189 beq  0x00000081 , 0x0000431f 
+ 00017179  0x0000218a beq  0x000000c0 , 0x0000431f 
+ 00017180  0x0000218b beq  0x00000080 , 0x0000431f 
+ 00017181  0x0000218c beq  0x00000040 , 0x0000431f 
+ 00017182  0x0000218d rtn 
+ 00017183  0x00002190 setarg  0x00000000 
+ 00017184  0x00002191 rtn 
+ 00017185  0x00002195 call  0x00004312 
+ 00017186  0x00002196 nrtn  0x00000034 
+ 00017187  0x00002198 call  0x0000485e 
+ 00017188  0x00002199 call  0x00004388 
+ 00017189  0x0000219a fetcht  0x00000002 , 0x00000298 
+ 00017190  0x0000219b branch  0x00004382 , 0x00000034 
+ 00017191  0x0000219c call  0x00004868 
+ 00017192  0x0000219d fetch  0x00000002 , 0x00000298 
+ 00017193  0x0000219e istore  0x00000002 , 0x00000005 
+ 00017194  0x0000219f force  0x00000001 , 0x0000003f 
+ 00017195  0x000021a0 istore  0x00000002 , 0x00000005 
+ 00017196  0x000021a1 branch  0x00004383 
+ 00017197  0x000021a4 fetch  0x00000001 , 0x000043f4 
+ 00017198  0x000021a5 rtn  0x00000034 
+ 00017199  0x000021a6 copy  0x0000003f , 0x00000011 
+ 00017200  0x000021a7 set0  0x00000025 , 0x00000000 
+ 00017201  0x000021a8 bpatch  0x000000d6 , 0x0000401a 
+ 00017202  0x000021a9 fetch  0x00000004 , 0x000002fe 
+ 00017203  0x000021aa arg  0x00000100 , 0x00000002 
+ 00017204  0x000021ab iadd  0x00000002 , 0x00000002 
+ 00017205  0x000021ac copy  0x00000022 , 0x0000003f 
+ 00017206  0x000021ad isub  0x00000002 , 0x0000003e 
+ 00017207  0x000021ae nrtn  0x00000002 
+ 00017208  0x000021af jam  0x00000000 , 0x000043f4 
+ 00017209  0x000021b0 copy  0x00000011 , 0x0000003f 
+ 00017210  0x000021b1 beq  0x00000050 , 0x0000433c 
+ 00017211  0x000021b2 branch  0x00003b31 
+ 00017212  0x000021b4 arg  0x00000000 , 0x00000008 
+ 00017213  0x000021b5 call  0x0000485e 
+ 00017214  0x000021b6 call  0x00004404 
+ 00017215  0x000021b7 call  0x0000486a 
+ 00017216  0x000021b8 call  0x00007e70 
+ 00017217  0x000021b9 call  0x00004437 
+ 00017218  0x000021ba call  0x00004868 
+ 00017219  0x000021bc setarg  0x0000000c 
+ 00017220  0x000021bd istore  0x00000002 , 0x00000005 
+ 00017221  0x000021be force  0x00000001 , 0x0000003f 
+ 00017222  0x000021bf istore  0x00000002 , 0x00000005 
+ 00017223  0x000021c0 branch  0x00004383 
+ 00017224  0x000021c5 set0  0x00000025 , 0x00000000 
+ 00017225  0x000021c6 bpatch  0x000000d7 , 0x0000401a 
+ 00017226  0x000021c7 fetch  0x00000002 , 0x0000029e 
+ 00017227  0x000021c8 increase  0x00000004 , 0x0000003f 
+ 00017228  0x000021c9 rshift4  0x0000003f , 0x0000003f 
+ 00017229  0x000021ca rshift3  0x0000003f , 0x0000003f 
+ 00017230  0x000021cb add  0x0000003f , 0x00000001 , 0x00000002 
+ 00017231  0x000021cc arg  0x000042f0 , 0x00000006 
+ 00017232  0x000021cd ifetch  0x00000003 , 0x00000006 
+ 00017233  0x000021ce rtn  0x00000034 
+ 00017234  0x000021cf store  0x00000003 , 0x000009e1 
+ 00017235  0x000021d0 fetch  0x00000001 , 0x000009e1 
+ 00017236  0x000021d1 copy  0x0000003f , 0x00000011 
+ 00017237  0x000021d2 call  0x00004359 
+ 00017238  0x000021d3 copy  0x00000012 , 0x0000003f 
+ 00017239  0x000021d4 store  0x00000001 , 0x000042f0 
+ 00017240  0x000021d5 rtn 
+ 00017241  0x000021d8 arg  0x00000000 , 0x00000007 
+ 00017242  0x000021d9 arg  0x00000000 , 0x00000012 
+ 00017243  0x000021dc sub  0x00000007 , 0x00000007 , 0x0000003e 
+ 00017244  0x000021dd nrtn  0x00000002 
+ 00017245  0x000021de qisolate1  0x00000011 
+ 00017246  0x000021df branch  0x00004360 , 0x00000001 
+ 00017247  0x000021e0 branch  0x00004364 
+ 00017248  0x000021e3 copy  0x00000002 , 0x0000003f 
+ 00017249  0x000021e4 branch  0x00004364 , 0x00000034 
+ 00017250  0x000021e5 qset1  0x00000012 
+ 00017251  0x000021e6 increase  0xffffffff , 0x00000002 
+ 00017252  0x000021e9 increase  0x00000001 , 0x00000007 
+ 00017253  0x000021ea branch  0x0000435b 
+ 00017254  0x000021ed call  0x00004816 
+ 00017255  0x000021ee nrtn  0x00000034 
+ 00017256  0x000021ef call  0x00004312 
+ 00017257  0x000021f0 nrtn  0x00000034 
+ 00017258  0x000021f1 call  0x0000486c 
+ 00017259  0x000021f2 call  0x00006a3e 
+ 00017260  0x000021f3 call  0x00004348 
+ 00017261  0x000021f4 branch  0x00004372 
+ 00017262  0x000021f8 call  0x00004816 
+ 00017263  0x000021f9 nrtn  0x00000034 
+ 00017264  0x000021fa call  0x0000486c 
+ 00017265  0x000021fb call  0x00006a3e 
+ 00017266  0x000021fd call  0x00004876 
+ 00017267  0x000021fe fetch  0x00000002 , 0x0000029e 
+ 00017268  0x000021ff branch  0x00004382 , 0x00000034 
+ 00017269  0x00002200 istore  0x00000002 , 0x00000005 
+ 00017270  0x00002201 fetch  0x00000002 , 0x000042d8 
+ 00017271  0x00002202 istore  0x00000002 , 0x00000005 
+ 00017272  0x00002203 branch  0x00004383 
+ 00017273  0x00002206 call  0x00003fca 
+ 00017274  0x00002207 branch  0x00004383 
+ 00017275  0x0000220a set0  0x00000025 , 0x00000000 
+ 00017276  0x0000220b bpatch  0x000000d8 , 0x0000401b 
+ 00017277  0x0000220c jam  0x00000000 , 0x000002ad 
+ 00017278  0x0000220d call  0x0000668f 
+ 00017279  0x0000220e fetch  0x00000001 , 0x000002ad 
+ 00017280  0x0000220f rtneq  0x00000001 
+ 00017281  0x00002210 branch  0x00004383 
+ 00017282  0x00002212 call  0x00004803 
+ 00017283  0x00002215 setarg  0x00000000 
+ 00017284  0x00002216 store  0x00000002 , 0x0000028f 
+ 00017285  0x00002217 store  0x00000002 , 0x00000291 
+ 00017286  0x00002218 jam  0x00000001 , 0x00000293 
+ 00017287  0x00002219 rtn 
+ 00017288  0x0000221c set0  0x00000025 , 0x00000000 
+ 00017289  0x0000221d bpatch  0x000000d9 , 0x0000401b 
+ 00017290  0x0000221e call  0x0000486a 
+ 00017291  0x0000221f force  0x00000000 , 0x00000012 
+ 00017292  0x00002220 fetch  0x00000002 , 0x0000028f 
+ 00017293  0x00002221 copy  0x0000003f , 0x00000013 
+ 00017294  0x00002222 fetch  0x00000002 , 0x0000028d 
+ 00017295  0x00002223 iforce  0x00000006 
+ 00017296  0x00002225 call  0x00004398 
+ 00017297  0x00002226 deposit  0x00000013 
+ 00017298  0x00002227 increase  0xfffffffc , 0x00000013 
+ 00017299  0x00002228 increase  0xfffffffc , 0x0000003f 
+ 00017300  0x00002229 nbranch  0x00004390 , 0x00000034 
+ 00017301  0x0000222a copy  0x00000012 , 0x0000003f 
+ 00017302  0x0000222b store  0x00000002 , 0x00000298 
+ 00017303  0x0000222c rtn 
+ 00017304  0x0000222f set0  0x00000025 , 0x00000000 
+ 00017305  0x00002230 bpatch  0x000000da , 0x0000401b 
+ 00017306  0x00002231 ifetch  0x00000001 , 0x00000006 
+ 00017307  0x00002232 beq  0x00000001 , 0x000043d2 
+ 00017308  0x00002233 beq  0x00000002 , 0x000043da 
+ 00017309  0x00002234 beq  0x00000003 , 0x00004460 
+ 00017310  0x00002235 beq  0x00000004 , 0x00004491 
+ 00017311  0x00002236 beq  0x00000005 , 0x00004531 
+ 00017312  0x00002237 beq  0x00000006 , 0x0000455b 
+ 00017313  0x00002238 beq  0x00000007 , 0x000045ac 
+ 00017314  0x00002239 beq  0x00000008 , 0x000045e2 
+ 00017315  0x0000223a beq  0x00000009 , 0x000045f2 
+ 00017316  0x0000223b beq  0x0000000a , 0x000043a8 
+ 00017317  0x0000223c beq  0x0000000b , 0x000045f3 
+ 00017318  0x0000223d call  0x000045f4 
+ 00017319  0x0000223f rtn 
+ 00017320  0x00002242 ifetch  0x00000001 , 0x00000006 
+ 00017321  0x00002243 copy  0x0000003f , 0x00000007 
+ 00017322  0x00002244 ifetch  0x00000002 , 0x00000006 
+ 00017323  0x00002245 copy  0x0000003f , 0x00000011 
+ 00017324  0x00002246 copy  0x00000013 , 0x0000003f 
+ 00017325  0x00002247 isub  0x00000011 , 0x00000013 
+ 00017326  0x00002248 setarg  0x0000000b 
+ 00017327  0x00002249 istore  0x00000001 , 0x00000005 
+ 00017328  0x0000224a copy  0x00000007 , 0x0000003f 
+ 00017329  0x0000224b istore  0x00000001 , 0x00000005 
+ 00017330  0x0000224c ifetch  0x00000002 , 0x00000006 
+ 00017331  0x0000224e beq  0x00000002 , 0x000043b6 
+ 00017332  0x0000224f beq  0x00000003 , 0x000043bc 
+ 00017333  0x00002250 rtn 
+ 00017334  0x00002252 setarg  0x00020008 
+ 00017335  0x00002253 istore  0x00000006 , 0x00000005 
+ 00017336  0x00002254 setarg  0x00000280 
+ 00017337  0x00002255 istore  0x00000004 , 0x00000005 
+ 00017338  0x00002256 force  0x0000000c , 0x0000003f 
+ 00017339  0x00002257 branch  0x000043c1 
+ 00017340  0x00002259 setarg  0x0003000c 
+ 00017341  0x0000225a istore  0x00000006 , 0x00000005 
+ 00017342  0x0000225b setarg  0x00000006 
+ 00017343  0x0000225c istore  0x00000008 , 0x00000005 
+ 00017344  0x0000225d force  0x00000010 , 0x0000003f 
+ 00017345  0x0000225f iadd  0x00000012 , 0x00000012 
+ 00017346  0x00002260 branch  0x000043a7 
+ 00017347  0x00002263 ifetch  0x00000001 , 0x00000006 
+ 00017348  0x00002264 copy  0x0000003f , 0x00000007 
+ 00017349  0x00002265 ifetch  0x00000002 , 0x00000006 
+ 00017350  0x00002266 copy  0x0000003f , 0x00000011 
+ 00017351  0x00002267 ifetch  0x00000002 , 0x00000006 
+ 00017352  0x00002268 store  0x00000002 , 0x000009c6 
+ 00017353  0x00002269 copy  0x00000013 , 0x0000003f 
+ 00017354  0x0000226a isub  0x00000011 , 0x00000013 
+ 00017355  0x0000226b call  0x0000486a 
+ 00017356  0x0000226c setarg  0x0000000b 
+ 00017357  0x0000226d istore  0x00000001 , 0x00000005 
+ 00017358  0x0000226e copy  0x00000007 , 0x0000003f 
+ 00017359  0x0000226f istore  0x00000001 , 0x00000005 
+ 00017360  0x00002270 fetch  0x00000002 , 0x000009c6 
+ 00017361  0x00002271 branch  0x000043b3 
+ 00017362  0x00002276 ifetch  0x00000001 , 0x00000006 
+ 00017363  0x00002277 copy  0x0000003f , 0x00000007 
+ 00017364  0x00002278 ifetch  0x00000002 , 0x00000006 
+ 00017365  0x00002279 copy  0x0000003f , 0x00000011 
+ 00017366  0x0000227a iadd  0x00000006 , 0x00000006 
+ 00017367  0x0000227b copy  0x00000013 , 0x0000003f 
+ 00017368  0x0000227c isub  0x00000011 , 0x00000013 
+ 00017369  0x0000227e branch  0x000043a7 
+ 00017370  0x00002281 call  0x00007e70 
+ 00017371  0x00002284 call  0x00007e75 
+ 00017372  0x00002285 arg  0x00000000 , 0x00000008 
+ 00017373  0x00002286 ifetch  0x00000001 , 0x00000006 
+ 00017374  0x00002287 copy  0x0000003f , 0x00000007 
+ 00017375  0x00002288 ifetch  0x00000002 , 0x00000006 
+ 00017376  0x00002289 copy  0x0000003f , 0x00000011 
+ 00017377  0x0000228a ifetch  0x00000002 , 0x00000006 
+ 00017378  0x0000228b copy  0x0000003f , 0x00000002 
+ 00017379  0x0000228c ifetch  0x00000002 , 0x00000006 
+ 00017380  0x0000228d copy  0x0000003f , 0x0000000b 
+ 00017381  0x0000228e set0  0x00000025 , 0x00000000 
+ 00017382  0x0000228f bpatch  0x000000db , 0x0000401b 
+ 00017383  0x00002290 copy  0x00000002 , 0x0000003f 
+ 00017384  0x00002291 beq  0x00000001 , 0x000043ee 
+ 00017385  0x00002292 beq  0x00000003 , 0x00004410 
+ 00017386  0x00002293 beq  0x00000011 , 0x0000441c 
+ 00017387  0x00002294 beq  0x00000013 , 0x00004427 
+ 00017388  0x00002295 call  0x000045f4 
+ 00017389  0x00002296 branch  0x0000445f 
+ 00017390  0x00002299 call  0x00007e70 
+ 00017391  0x0000229a arg  0x00000050 , 0x00000002 
+ 00017392  0x0000229b fetch  0x00000002 , 0x000042d8 
+ 00017393  0x0000229c nbranch  0x00004459 , 0x00000034 
+ 00017394  0x0000229d copy  0x0000000b , 0x0000003f 
+ 00017395  0x0000229e store  0x00000002 , 0x000042d8 
+ 00017396  0x0000229f copy  0x00000022 , 0x0000003f 
+ 00017397  0x000022a0 store  0x00000004 , 0x000002fe 
+ 00017398  0x000022a1 call  0x000043f8 
+ 00017399  0x000022a2 branch  0x00004433 
+ 00017400  0x000022a5 storet  0x00000002 , 0x000002fc 
+ 00017401  0x000022a6 deposit  0x0000000b 
+ 00017402  0x000022a7 store  0x00000002 , 0x000002f2 
+ 00017403  0x000022a8 deposit  0x00000011 
+ 00017404  0x000022a9 store  0x00000002 , 0x000002f4 
+ 00017405  0x000022aa deposit  0x00000012 
+ 00017406  0x000022ab store  0x00000002 , 0x000002f6 
+ 00017407  0x000022ac deposit  0x00000013 
+ 00017408  0x000022ad store  0x00000002 , 0x000002f8 
+ 00017409  0x000022ae deposit  0x00000007 
+ 00017410  0x000022af store  0x00000002 , 0x000002fa 
+ 00017411  0x000022b0 rtn 
+ 00017412  0x000022b3 fetcht  0x00000002 , 0x000002fc 
+ 00017413  0x000022b4 fetch  0x00000002 , 0x000002f2 
+ 00017414  0x000022b5 copy  0x0000003f , 0x0000000b 
+ 00017415  0x000022b6 fetch  0x00000002 , 0x000002f4 
+ 00017416  0x000022b7 copy  0x0000003f , 0x00000011 
+ 00017417  0x000022b8 fetch  0x00000002 , 0x000002f6 
+ 00017418  0x000022b9 copy  0x0000003f , 0x00000012 
+ 00017419  0x000022ba fetch  0x00000002 , 0x000002f8 
+ 00017420  0x000022bb copy  0x0000003f , 0x00000013 
+ 00017421  0x000022bc fetch  0x00000002 , 0x000002fa 
+ 00017422  0x000022bd copy  0x0000003f , 0x00000007 
+ 00017423  0x000022be rtn 
+ 00017424  0x000022c1 call  0x00007e70 
+ 00017425  0x000022c2 setarg  0x00000051 
+ 00017426  0x000022c3 arg  0x00000051 , 0x00000002 
+ 00017427  0x000022c4 fetch  0x00000002 , 0x000042da 
+ 00017428  0x000022c5 nbranch  0x00004459 , 0x00000034 
+ 00017429  0x000022c6 copy  0x0000000b , 0x0000003f 
+ 00017430  0x000022c7 store  0x00000002 , 0x000042da 
+ 00017431  0x000022c8 fetch  0x00000001 , 0x000042e1 
+ 00017432  0x000022c9 set1  0x00000000 , 0x0000003f 
+ 00017433  0x000022ca set1  0x00000001 , 0x0000003f 
+ 00017434  0x000022cb store  0x00000001 , 0x000042e1 
+ 00017435  0x000022cc branch  0x0000443b 
+ 00017436  0x000022ce call  0x00007e70 
+ 00017437  0x000022cf arg  0x00000052 , 0x00000002 
+ 00017438  0x000022d0 fetch  0x00000002 , 0x000042dc 
+ 00017439  0x000022d1 nbranch  0x00004459 , 0x00000034 
+ 00017440  0x000022d2 copy  0x0000000b , 0x0000003f 
+ 00017441  0x000022d3 store  0x00000002 , 0x000042dc 
+ 00017442  0x000022d4 fetch  0x00000001 , 0x000042e2 
+ 00017443  0x000022d5 set1  0x00000000 , 0x0000003f 
+ 00017444  0x000022d6 set1  0x00000001 , 0x0000003f 
+ 00017445  0x000022d7 store  0x00000001 , 0x000042e2 
+ 00017446  0x000022d8 branch  0x0000443b 
+ 00017447  0x000022da call  0x00007e70 
+ 00017448  0x000022db deposit  0x0000001a 
+ 00017449  0x000022dc arg  0x00000053 , 0x00000002 
+ 00017450  0x000022dd fetch  0x00000002 , 0x000042de 
+ 00017451  0x000022de nbranch  0x00004459 , 0x00000034 
+ 00017452  0x000022df copy  0x0000000b , 0x0000003f 
+ 00017453  0x000022e0 store  0x00000002 , 0x000042de 
+ 00017454  0x000022e1 fetch  0x00000001 , 0x000042e3 
+ 00017455  0x000022e2 set1  0x00000000 , 0x0000003f 
+ 00017456  0x000022e3 set1  0x00000001 , 0x0000003f 
+ 00017457  0x000022e4 store  0x00000001 , 0x000042e3 
+ 00017458  0x000022e5 branch  0x0000443b 
+ 00017459  0x000022e8 setarg  0x00000001 
+ 00017460  0x000022e9 store  0x00000002 , 0x000002a6 
+ 00017461  0x000022ea jam  0x00000050 , 0x000043f4 
+ 00017462  0x000022eb branch  0x0000443d 
+ 00017463  0x000022ed fetch  0x00000001 , 0x000042e0 
+ 00017464  0x000022ee set1  0x00000000 , 0x0000003f 
+ 00017465  0x000022ef set1  0x00000001 , 0x0000003f 
+ 00017466  0x000022f0 store  0x00000001 , 0x000042e0 
+ 00017467  0x000022f2 setarg  0x00000000 
+ 00017468  0x000022f3 store  0x00000002 , 0x000002a6 
+ 00017469  0x000022f5 set0  0x00000025 , 0x00000000 
+ 00017470  0x000022f6 bpatch  0x000000dc , 0x0000401b 
+ 00017471  0x000022f7 call  0x00007e75 
+ 00017472  0x000022f8 setarg  0x00000003 
+ 00017473  0x000022f9 istore  0x00000001 , 0x00000005 
+ 00017474  0x000022fa copy  0x00000007 , 0x0000003f 
+ 00017475  0x000022fb istore  0x00000001 , 0x00000005 
+ 00017476  0x000022fc setarg  0x00000008 
+ 00017477  0x000022fd istore  0x00000002 , 0x00000005 
+ 00017478  0x000022fe copy  0x00000002 , 0x0000003f 
+ 00017479  0x000022ff istore  0x00000002 , 0x00000005 
+ 00017480  0x00002300 copy  0x0000000b , 0x0000003f 
+ 00017481  0x00002301 istore  0x00000002 , 0x00000005 
+ 00017482  0x00002302 fetch  0x00000002 , 0x000002a6 
+ 00017483  0x00002303 beq  0x00000001 , 0x00004454 
+ 00017484  0x00002304 isolate0  0x00000000 , 0x00000008 
+ 00017485  0x00002305 branch  0x0000444f , 0x00000001 
+ 00017486  0x00002306 setarg  0x00000004 
+ 00017487  0x00002308 istore  0x00000002 , 0x00000005 
+ 00017488  0x00002309 force  0x00000000 , 0x0000003f 
+ 00017489  0x0000230a istore  0x00000002 , 0x00000005 
+ 00017490  0x0000230b setarg  0x0000000c 
+ 00017491  0x0000230c branch  0x0000445b 
+ 00017492  0x0000230e istore  0x00000002 , 0x00000005 
+ 00017493  0x0000230f force  0x00000002 , 0x0000003f 
+ 00017494  0x00002310 istore  0x00000002 , 0x00000005 
+ 00017495  0x00002311 setarg  0x0000000c 
+ 00017496  0x00002312 branch  0x0000445b 
+ 00017497  0x00002315 set1  0x00000000 , 0x00000008 
+ 00017498  0x00002316 branch  0x0000443b 
+ 00017499  0x00002318 iadd  0x00000012 , 0x00000012 
+ 00017500  0x00002319 copy  0x00000013 , 0x0000003f 
+ 00017501  0x0000231a isub  0x00000011 , 0x00000013 
+ 00017502  0x0000231b branch  0x0000445f 
+ 00017503  0x0000231d branch  0x000043a7 
+ 00017504  0x00002320 ifetch  0x00000001 , 0x00000006 
+ 00017505  0x00002321 copy  0x0000003f , 0x00000007 
+ 00017506  0x00002322 ifetch  0x00000002 , 0x00000006 
+ 00017507  0x00002323 copy  0x0000003f , 0x00000011 
+ 00017508  0x00002324 copy  0x00000013 , 0x0000003f 
+ 00017509  0x00002325 isub  0x00000011 , 0x00000013 
+ 00017510  0x00002326 ifetch  0x00000002 , 0x00000006 
+ 00017511  0x00002327 copy  0x0000003f , 0x0000000b 
+ 00017512  0x00002328 ifetch  0x00000002 , 0x00000006 
+ 00017513  0x00002329 copy  0x0000003f , 0x00000002 
+ 00017514  0x0000232a set0  0x00000025 , 0x00000000 
+ 00017515  0x0000232b bpatch  0x000000dd , 0x0000401b 
+ 00017516  0x0000232c setarg  0x00000050 
+ 00017517  0x0000232d isub  0x00000002 , 0x0000003e 
+ 00017518  0x0000232e branch  0x00004479 , 0x00000005 
+ 00017519  0x0000232f setarg  0x00000051 
+ 00017520  0x00002330 isub  0x00000002 , 0x0000003e 
+ 00017521  0x00002331 branch  0x0000447f , 0x00000005 
+ 00017522  0x00002332 setarg  0x00000052 
+ 00017523  0x00002333 isub  0x00000002 , 0x0000003e 
+ 00017524  0x00002334 branch  0x0000448b , 0x00000005 
+ 00017525  0x00002335 setarg  0x00000053 
+ 00017526  0x00002336 isub  0x00000002 , 0x0000003e 
+ 00017527  0x00002337 branch  0x00004485 , 0x00000005 
+ 00017528  0x00002338 rtn 
+ 00017529  0x0000233b copy  0x0000000b , 0x0000003f 
+ 00017530  0x0000233c store  0x00000002 , 0x000042d8 
+ 00017531  0x0000233d fetch  0x00000001 , 0x000042e0 
+ 00017532  0x0000233e set1  0x00000001 , 0x0000003f 
+ 00017533  0x0000233f store  0x00000001 , 0x000042e0 
+ 00017534  0x00002340 branch  0x000043a7 
+ 00017535  0x00002342 copy  0x0000000b , 0x0000003f 
+ 00017536  0x00002343 store  0x00000002 , 0x000042da 
+ 00017537  0x00002344 fetch  0x00000001 , 0x000042e1 
+ 00017538  0x00002345 set1  0x00000001 , 0x0000003f 
+ 00017539  0x00002346 store  0x00000001 , 0x000042e1 
+ 00017540  0x00002347 rtn 
+ 00017541  0x00002349 copy  0x0000000b , 0x0000003f 
+ 00017542  0x0000234a store  0x00000002 , 0x000042dc 
+ 00017543  0x0000234b fetch  0x00000001 , 0x000042e3 
+ 00017544  0x0000234c set1  0x00000001 , 0x0000003f 
+ 00017545  0x0000234d store  0x00000001 , 0x000042e3 
+ 00017546  0x0000234e rtn 
+ 00017547  0x00002350 copy  0x0000000b , 0x0000003f 
+ 00017548  0x00002351 store  0x00000002 , 0x000042de 
+ 00017549  0x00002352 fetch  0x00000001 , 0x000042e2 
+ 00017550  0x00002353 set1  0x00000001 , 0x0000003f 
+ 00017551  0x00002354 store  0x00000001 , 0x000042e2 
+ 00017552  0x00002355 rtn 
+ 00017553  0x00002358 ifetch  0x00000001 , 0x00000006 
+ 00017554  0x00002359 copy  0x0000003f , 0x00000007 
+ 00017555  0x0000235a ifetch  0x00000002 , 0x00000006 
+ 00017556  0x0000235b copy  0x0000003f , 0x00000011 
+ 00017557  0x0000235c copy  0x00000013 , 0x0000003f 
+ 00017558  0x0000235d isub  0x00000011 , 0x00000013 
+ 00017559  0x0000235e ifetch  0x00000002 , 0x00000006 
+ 00017560  0x0000235f copy  0x0000003f , 0x00000002 
+ 00017561  0x00002360 copy  0x00000002 , 0x00000011 
+ 00017562  0x00002361 set0  0x00000025 , 0x00000000 
+ 00017563  0x00002362 bpatch  0x000000de , 0x0000401b 
+ 00017564  0x00002363 setarg  0x00000050 
+ 00017565  0x00002364 isub  0x00000002 , 0x0000003e 
+ 00017566  0x00002365 branch  0x000044a9 , 0x00000005 
+ 00017567  0x00002366 setarg  0x00000051 
+ 00017568  0x00002367 isub  0x00000002 , 0x0000003e 
+ 00017569  0x00002368 branch  0x000044c7 , 0x00000005 
+ 00017570  0x00002369 setarg  0x00000052 
+ 00017571  0x0000236a isub  0x00000002 , 0x0000003e 
+ 00017572  0x0000236b branch  0x000044b3 , 0x00000005 
+ 00017573  0x0000236c setarg  0x00000053 
+ 00017574  0x0000236d isub  0x00000002 , 0x0000003e 
+ 00017575  0x0000236e branch  0x000044bd , 0x00000005 
+ 00017576  0x0000236f branch  0x000045f4 
+ 00017577  0x00002372 copy  0x00000005 , 0x0000000b 
+ 00017578  0x00002373 fetch  0x00000001 , 0x000042e0 
+ 00017579  0x00002374 set1  0x00000004 , 0x0000003f 
+ 00017580  0x00002375 set1  0x00000003 , 0x0000003f 
+ 00017581  0x00002377 store  0x00000001 , 0x000042e0 
+ 00017582  0x00002378 copy  0x0000000b , 0x00000005 
+ 00017583  0x00002379 arg  0x00000050 , 0x0000000b 
+ 00017584  0x0000237a fetch  0x00000002 , 0x000042d8 
+ 00017585  0x0000237b copy  0x0000003f , 0x00000002 
+ 00017586  0x0000237c branch  0x000044d0 
+ 00017587  0x0000237e copy  0x00000005 , 0x0000000b 
+ 00017588  0x0000237f fetch  0x00000001 , 0x000042e2 
+ 00017589  0x00002380 set1  0x00000004 , 0x0000003f 
+ 00017590  0x00002381 set1  0x00000003 , 0x0000003f 
+ 00017591  0x00002383 store  0x00000001 , 0x000042e2 
+ 00017592  0x00002384 copy  0x0000000b , 0x00000005 
+ 00017593  0x00002385 arg  0x00000052 , 0x0000000b 
+ 00017594  0x00002386 fetch  0x00000002 , 0x000042dc 
+ 00017595  0x00002387 copy  0x0000003f , 0x00000002 
+ 00017596  0x00002388 branch  0x000044d0 
+ 00017597  0x0000238a copy  0x00000005 , 0x0000000b 
+ 00017598  0x0000238b fetch  0x00000001 , 0x000042e3 
+ 00017599  0x0000238c set1  0x00000004 , 0x0000003f 
+ 00017600  0x0000238d set1  0x00000003 , 0x0000003f 
+ 00017601  0x0000238f store  0x00000001 , 0x000042e3 
+ 00017602  0x00002390 copy  0x0000000b , 0x00000005 
+ 00017603  0x00002391 arg  0x00000053 , 0x0000000b 
+ 00017604  0x00002392 fetch  0x00000002 , 0x000042de 
+ 00017605  0x00002393 copy  0x0000003f , 0x00000002 
+ 00017606  0x00002394 branch  0x000044d0 
+ 00017607  0x00002396 copy  0x00000005 , 0x0000000b 
+ 00017608  0x00002397 fetch  0x00000001 , 0x000042e1 
+ 00017609  0x00002398 set1  0x00000004 , 0x0000003f 
+ 00017610  0x00002399 set1  0x00000003 , 0x0000003f 
+ 00017611  0x0000239b store  0x00000001 , 0x000042e1 
+ 00017612  0x0000239d copy  0x0000000b , 0x00000005 
+ 00017613  0x0000239e arg  0x00000051 , 0x0000000b 
+ 00017614  0x0000239f fetch  0x00000002 , 0x000042da 
+ 00017615  0x000023a0 copy  0x0000003f , 0x00000002 
+ 00017616  0x000023a2 set0  0x00000025 , 0x00000000 
+ 00017617  0x000023a3 bpatch  0x000000df , 0x0000401b 
+ 00017618  0x000023a4 setarg  0x00000005 
+ 00017619  0x000023a5 istore  0x00000001 , 0x00000005 
+ 00017620  0x000023a6 copy  0x00000007 , 0x0000003f 
+ 00017621  0x000023a7 istore  0x00000001 , 0x00000005 
+ 00017622  0x000023a8 setarg  0x00000006 
+ 00017623  0x000023a9 istore  0x00000002 , 0x00000005 
+ 00017624  0x000023aa copy  0x00000002 , 0x0000003f 
+ 00017625  0x000023ab istore  0x00000002 , 0x00000005 
+ 00017626  0x000023ac force  0x00000000 , 0x0000003f 
+ 00017627  0x000023ad istore  0x00000002 , 0x00000005 
+ 00017628  0x000023ae force  0x00000000 , 0x0000003f 
+ 00017629  0x000023af istore  0x00000002 , 0x00000005 
+ 00017630  0x000023b0 force  0x0000000a , 0x0000003f 
+ 00017631  0x000023b1 iadd  0x00000012 , 0x00000012 
+ 00017632  0x000023b3 storet  0x00000002 , 0x000002ab 
+ 00017633  0x000023b4 copy  0x00000007 , 0x0000003f 
+ 00017634  0x000023b5 store  0x00000001 , 0x000002aa 
+ 00017635  0x000023b6 force  0x00000050 , 0x0000003f 
+ 00017636  0x000023b7 icompare  0x000000ff , 0x0000000b 
+ 00017637  0x000023b8 branch  0x000044e7 , 0x00000001 
+ 00017638  0x000023b9 increase  0x00000001 , 0x0000003f 
+ 00017639  0x000023bc rtn 
+ 00017640  0x000023be disable  0x00000028 
+ 00017641  0x000023bf rtnbit1  0x00000002 , 0x0000003f 
+ 00017642  0x000023c0 rtnbit0  0x00000000 , 0x0000003f 
+ 00017643  0x000023c1 rtnbit0  0x00000001 , 0x0000003f 
+ 00017644  0x000023c2 set1  0x00000002 , 0x0000003f 
+ 00017645  0x000023c3 copy  0x00000006 , 0x00000005 
+ 00017646  0x000023c4 increase  0xffffffff , 0x00000005 
+ 00017647  0x000023c5 istore  0x00000001 , 0x00000005 
+ 00017648  0x000023c6 enable  0x00000028 
+ 00017649  0x000023c7 rtn 
+ 00017650  0x000023ca fetch  0x00000001 , 0x000042e0 
+ 00017651  0x000023cb call  0x000044e8 
+ 00017652  0x000023cc nbranch  0x000044f9 , 0x00000028 
+ 00017653  0x000023cd jam  0x00000050 , 0x000002a9 
+ 00017654  0x000023ce fetch  0x00000002 , 0x000042d8 
+ 00017655  0x000023cf store  0x00000002 , 0x000002ab 
+ 00017656  0x000023d0 branch  0x0000450d 
+ 00017657  0x000023d2 fetch  0x00000001 , 0x000042e1 
+ 00017658  0x000023d3 call  0x000044e8 
+ 00017659  0x000023d4 nbranch  0x00004500 , 0x00000028 
+ 00017660  0x000023d5 jam  0x00000051 , 0x000002a9 
+ 00017661  0x000023d6 fetch  0x00000002 , 0x000042da 
+ 00017662  0x000023d7 store  0x00000002 , 0x000002ab 
+ 00017663  0x000023d8 branch  0x0000450d 
+ 00017664  0x000023da fetch  0x00000001 , 0x000042e2 
+ 00017665  0x000023db call  0x000044e8 
+ 00017666  0x000023dc nbranch  0x00004507 , 0x00000028 
+ 00017667  0x000023dd jam  0x00000052 , 0x000002a9 
+ 00017668  0x000023de fetch  0x00000002 , 0x000042dc 
+ 00017669  0x000023df store  0x00000002 , 0x000002ab 
+ 00017670  0x000023e0 branch  0x0000450d 
+ 00017671  0x000023e2 fetch  0x00000001 , 0x000042e3 
+ 00017672  0x000023e3 call  0x000044e8 
+ 00017673  0x000023e4 nrtn  0x00000028 
+ 00017674  0x000023e5 jam  0x00000053 , 0x000002a9 
+ 00017675  0x000023e6 fetch  0x00000002 , 0x000042de 
+ 00017676  0x000023e7 store  0x00000002 , 0x000002ab 
+ 00017677  0x000023eb set0  0x00000025 , 0x00000000 
+ 00017678  0x000023ec bpatch  0x000000e0 , 0x0000401c 
+ 00017679  0x000023ed call  0x000047d6 
+ 00017680  0x000023ee call  0x0000485e 
+ 00017681  0x000023ef force  0x00000000 , 0x00000012 
+ 00017682  0x000023f0 call  0x0000486a 
+ 00017683  0x000023f1 force  0x00000004 , 0x0000003f 
+ 00017684  0x000023f2 istore  0x00000001 , 0x00000005 
+ 00017685  0x000023f3 fetch  0x00000001 , 0x000042e5 
+ 00017686  0x000023f4 istore  0x00000001 , 0x00000005 
+ 00017687  0x000023f5 setarg  0x00000008 
+ 00017688  0x000023f6 istore  0x00000002 , 0x00000005 
+ 00017689  0x000023f7 fetch  0x00000002 , 0x000002ab 
+ 00017690  0x000023f8 istore  0x00000002 , 0x00000005 
+ 00017691  0x000023f9 setarg  0x00000000 
+ 00017692  0x000023fa istore  0x00000002 , 0x00000005 
+ 00017693  0x000023fb force  0x00000001 , 0x0000003f 
+ 00017694  0x000023fc istore  0x00000001 , 0x00000005 
+ 00017695  0x000023fd force  0x00000002 , 0x0000003f 
+ 00017696  0x000023fe istore  0x00000001 , 0x00000005 
+ 00017697  0x000023ff fetch  0x00000001 , 0x000002a9 
+ 00017698  0x00002400 beq  0x00000051 , 0x00004526 
+ 00017699  0x00002401 setarg  0x00000030 
+ 00017700  0x00002402 istore  0x00000002 , 0x00000005 
+ 00017701  0x00002403 branch  0x00004528 
+ 00017702  0x00002405 setarg  0x000003e3 
+ 00017703  0x00002406 istore  0x00000002 , 0x00000005 
+ 00017704  0x00002408 arg  0x0000000c , 0x00000002 
+ 00017705  0x00002409 storet  0x00000002 , 0x00000298 
+ 00017706  0x0000240a call  0x00004868 
+ 00017707  0x0000240b fetch  0x00000002 , 0x00000298 
+ 00017708  0x0000240c istore  0x00000002 , 0x00000005 
+ 00017709  0x0000240d force  0x00000001 , 0x0000003f 
+ 00017710  0x0000240e istore  0x00000002 , 0x00000005 
+ 00017711  0x0000240f jam  0x00000000 , 0x000002a9 
+ 00017712  0x00002411 branch  0x000043a7 
+ 00017713  0x00002414 increase  0x00000001 , 0x00000006 
+ 00017714  0x00002415 ifetch  0x00000002 , 0x00000006 
+ 00017715  0x00002416 copy  0x0000003f , 0x00000011 
+ 00017716  0x00002417 copy  0x00000013 , 0x0000003f 
+ 00017717  0x00002418 isub  0x00000011 , 0x00000013 
+ 00017718  0x00002419 ifetch  0x00000002 , 0x00000006 
+ 00017719  0x0000241a copy  0x0000003f , 0x00000011 
+ 00017720  0x0000241b set0  0x00000025 , 0x00000000 
+ 00017721  0x0000241c bpatch  0x000000e1 , 0x0000401c 
+ 00017722  0x0000241d setarg  0x00000050 
+ 00017723  0x0000241e isub  0x00000011 , 0x0000003e 
+ 00017724  0x0000241f branch  0x0000454a , 0x00000005 
+ 00017725  0x00002420 setarg  0x00000051 
+ 00017726  0x00002421 isub  0x00000011 , 0x0000003e 
+ 00017727  0x00002422 branch  0x0000454e , 0x00000005 
+ 00017728  0x00002423 setarg  0x00000052 
+ 00017729  0x00002424 isub  0x00000011 , 0x0000003e 
+ 00017730  0x00002425 branch  0x00004552 , 0x00000005 
+ 00017731  0x00002426 setarg  0x00000053 
+ 00017732  0x00002427 isub  0x00000011 , 0x0000003e 
+ 00017733  0x00002428 branch  0x00004556 , 0x00000005 
+ 00017734  0x00002429 increase  0x00000002 , 0x00000006 
+ 00017735  0x0000242a ifetch  0x00000002 , 0x00000006 
+ 00017736  0x0000242b iforce  0x0000003e 
+ 00017737  0x0000242c branch  0x000043a7 
+ 00017738  0x0000242e fetch  0x00000001 , 0x000042e0 
+ 00017739  0x0000242f set1  0x00000005 , 0x0000003f 
+ 00017740  0x00002430 store  0x00000001 , 0x000042e0 
+ 00017741  0x00002431 branch  0x000043a7 
+ 00017742  0x00002433 fetch  0x00000001 , 0x000042e1 
+ 00017743  0x00002434 set1  0x00000005 , 0x0000003f 
+ 00017744  0x00002435 store  0x00000001 , 0x000042e1 
+ 00017745  0x00002436 branch  0x000043a7 
+ 00017746  0x00002438 fetch  0x00000001 , 0x000042e2 
+ 00017747  0x00002439 set1  0x00000005 , 0x0000003f 
+ 00017748  0x0000243a store  0x00000001 , 0x000042e2 
+ 00017749  0x0000243b branch  0x000043a7 
+ 00017750  0x0000243d fetch  0x00000001 , 0x000042e3 
+ 00017751  0x0000243e set1  0x00000005 , 0x0000003f 
+ 00017752  0x0000243f store  0x00000001 , 0x000042e3 
+ 00017753  0x00002440 jam  0x00000006 , 0x000009bd 
+ 00017754  0x00002441 branch  0x00007d86 
+ 00017755  0x00002446 ifetch  0x00000001 , 0x00000006 
+ 00017756  0x00002447 copy  0x0000003f , 0x00000007 
+ 00017757  0x00002448 ifetch  0x00000002 , 0x00000006 
+ 00017758  0x00002449 copy  0x0000003f , 0x00000011 
+ 00017759  0x0000244a copy  0x00000013 , 0x0000003f 
+ 00017760  0x0000244b isub  0x00000011 , 0x00000013 
+ 00017761  0x0000244c ifetch  0x00000002 , 0x00000006 
+ 00017762  0x0000244d copy  0x0000003f , 0x00000011 
+ 00017763  0x0000244e ifetch  0x00000002 , 0x00000006 
+ 00017764  0x0000244f copy  0x0000003f , 0x0000000b 
+ 00017765  0x00002450 copy  0x00000011 , 0x00000002 
+ 00017766  0x00002451 call  0x00007e70 
+ 00017767  0x00002452 set0  0x00000025 , 0x00000000 
+ 00017768  0x00002453 bpatch  0x000000e2 , 0x0000401c 
+ 00017769  0x00002454 setarg  0x00000050 
+ 00017770  0x00002455 isub  0x00000002 , 0x0000003e 
+ 00017771  0x00002456 branch  0x00004583 , 0x00000005 
+ 00017772  0x00002457 setarg  0x00000051 
+ 00017773  0x00002458 isub  0x00000002 , 0x0000003e 
+ 00017774  0x00002459 branch  0x00004593 , 0x00000005 
+ 00017775  0x0000245a setarg  0x00000052 
+ 00017776  0x0000245b isub  0x00000002 , 0x0000003e 
+ 00017777  0x0000245c branch  0x00004577 , 0x00000005 
+ 00017778  0x0000245d setarg  0x00000053 
+ 00017779  0x0000245e isub  0x00000002 , 0x0000003e 
+ 00017780  0x0000245f branch  0x0000457d , 0x00000005 
+ 00017781  0x00002460 call  0x000045f4 
+ 00017782  0x00002461 branch  0x000045a8 
+ 00017783  0x00002463 copy  0x0000000b , 0x00000002 
+ 00017784  0x00002464 fetch  0x00000002 , 0x000042dc 
+ 00017785  0x00002465 isub  0x00000002 , 0x0000003e 
+ 00017786  0x00002466 branch  0x00004589 , 0x00000005 
+ 00017787  0x00002467 call  0x000045f4 
+ 00017788  0x00002468 branch  0x000045a8 
+ 00017789  0x0000246a copy  0x0000000b , 0x00000002 
+ 00017790  0x0000246b fetch  0x00000002 , 0x000042de 
+ 00017791  0x0000246c isub  0x00000002 , 0x0000003e 
+ 00017792  0x0000246d branch  0x0000458b , 0x00000005 
+ 00017793  0x0000246e call  0x000045f4 
+ 00017794  0x0000246f branch  0x000045a8 
+ 00017795  0x00002472 copy  0x0000000b , 0x00000002 
+ 00017796  0x00002473 fetch  0x00000002 , 0x000042d8 
+ 00017797  0x00002474 isub  0x00000002 , 0x0000003e 
+ 00017798  0x00002475 branch  0x0000458f , 0x00000005 
+ 00017799  0x00002476 call  0x000045f4 
+ 00017800  0x00002477 branch  0x000045a8 
+ 00017801  0x00002479 call  0x0000460b 
+ 00017802  0x0000247a branch  0x0000459b 
+ 00017803  0x0000247c call  0x00004611 
+ 00017804  0x0000247d fetch  0x00000002 , 0x000042dc 
+ 00017805  0x0000247e branch  0x0000459b , 0x00000034 
+ 00017806  0x00002486 branch  0x0000459b 
+ 00017807  0x00002489 call  0x00004606 
+ 00017808  0x0000248a fetch  0x00000001 , 0x000002b1 
+ 00017809  0x0000248b nbranch  0x0000459b , 0x00000034 
+ 00017810  0x0000248e branch  0x0000459b 
+ 00017811  0x00002490 copy  0x0000000b , 0x00000002 
+ 00017812  0x00002491 fetch  0x00000002 , 0x000042da 
+ 00017813  0x00002492 isub  0x00000002 , 0x0000003e 
+ 00017814  0x00002493 branch  0x00004599 , 0x00000005 
+ 00017815  0x00002494 call  0x000045f4 
+ 00017816  0x00002495 branch  0x000045a8 
+ 00017817  0x00002497 call  0x00004601 
+ 00017818  0x00002498 branch  0x0000459b 
+ 00017819  0x0000249a call  0x00007e75 
+ 00017820  0x0000249b setarg  0x00000007 
+ 00017821  0x0000249c istore  0x00000001 , 0x00000005 
+ 00017822  0x0000249d copy  0x00000007 , 0x0000003f 
+ 00017823  0x0000249e istore  0x00000001 , 0x00000005 
+ 00017824  0x0000249f setarg  0x00000004 
+ 00017825  0x000024a0 istore  0x00000002 , 0x00000005 
+ 00017826  0x000024a1 copy  0x00000011 , 0x0000003f 
+ 00017827  0x000024a2 istore  0x00000002 , 0x00000005 
+ 00017828  0x000024a3 copy  0x0000000b , 0x0000003f 
+ 00017829  0x000024a4 istore  0x00000002 , 0x00000005 
+ 00017830  0x000024a5 force  0x00000008 , 0x0000003f 
+ 00017831  0x000024a6 branch  0x000045aa 
+ 00017832  0x000024a8 call  0x00007e75 
+ 00017833  0x000024a9 branch  0x000045aa 
+ 00017834  0x000024ab iadd  0x00000012 , 0x00000012 
+ 00017835  0x000024ac branch  0x000043a7 
+ 00017836  0x000024ae ifetch  0x00000001 , 0x00000006 
+ 00017837  0x000024af copy  0x0000003f , 0x00000007 
+ 00017838  0x000024b0 ifetch  0x00000002 , 0x00000006 
+ 00017839  0x000024b1 copy  0x0000003f , 0x00000011 
+ 00017840  0x000024b2 copy  0x00000013 , 0x0000003f 
+ 00017841  0x000024b3 isub  0x00000011 , 0x00000013 
+ 00017842  0x000024b4 ifetch  0x00000002 , 0x00000006 
+ 00017843  0x000024b5 copy  0x0000003f , 0x0000000b 
+ 00017844  0x000024b6 ifetch  0x00000002 , 0x00000006 
+ 00017845  0x000024b7 copy  0x0000003f , 0x00000002 
+ 00017846  0x000024b8 call  0x00007e70 
+ 00017847  0x000024b9 set0  0x00000025 , 0x00000000 
+ 00017848  0x000024ba bpatch  0x000000e3 , 0x0000401c 
+ 00017849  0x000024bb setarg  0x00000050 
+ 00017850  0x000024bc isub  0x00000002 , 0x0000003e 
+ 00017851  0x000024bd branch  0x000045c7 , 0x00000005 
+ 00017852  0x000024be setarg  0x00000051 
+ 00017853  0x000024bf isub  0x00000002 , 0x0000003e 
+ 00017854  0x000024c0 branch  0x000045cd , 0x00000005 
+ 00017855  0x000024c1 setarg  0x00000052 
+ 00017856  0x000024c2 isub  0x00000002 , 0x0000003e 
+ 00017857  0x000024c3 branch  0x000045d3 , 0x00000005 
+ 00017858  0x000024c4 setarg  0x00000053 
+ 00017859  0x000024c5 isub  0x00000002 , 0x0000003e 
+ 00017860  0x000024c6 branch  0x000045d9 , 0x00000005 
+ 00017861  0x000024c7 call  0x000045f4 
+ 00017862  0x000024c8 branch  0x000045e1 
+ 00017863  0x000024ca copy  0x00000002 , 0x00000011 
+ 00017864  0x000024cb copy  0x0000000b , 0x00000002 
+ 00017865  0x000024cc fetch  0x00000002 , 0x000042d8 
+ 00017866  0x000024cd isub  0x00000002 , 0x0000003e 
+ 00017867  0x000024ce call  0x00004606 , 0x00000005 
+ 00017868  0x000024cf branch  0x000045df 
+ 00017869  0x000024d1 copy  0x00000002 , 0x00000011 
+ 00017870  0x000024d2 copy  0x0000000b , 0x00000002 
+ 00017871  0x000024d3 fetch  0x00000002 , 0x000042da 
+ 00017872  0x000024d4 isub  0x00000002 , 0x0000003e 
+ 00017873  0x000024d5 call  0x00004601 , 0x00000005 
+ 00017874  0x000024d6 branch  0x000045df 
+ 00017875  0x000024d8 copy  0x00000002 , 0x00000011 
+ 00017876  0x000024d9 copy  0x0000000b , 0x00000002 
+ 00017877  0x000024da fetch  0x00000002 , 0x000042dc 
+ 00017878  0x000024db isub  0x00000002 , 0x0000003e 
+ 00017879  0x000024dc call  0x0000460b , 0x00000005 
+ 00017880  0x000024dd branch  0x000045df 
+ 00017881  0x000024df copy  0x00000002 , 0x00000011 
+ 00017882  0x000024e0 copy  0x0000000b , 0x00000002 
+ 00017883  0x000024e1 fetch  0x00000002 , 0x000042de 
+ 00017884  0x000024e2 isub  0x00000002 , 0x0000003e 
+ 00017885  0x000024e3 call  0x00004611 , 0x00000005 
+ 00017886  0x000024e4 branch  0x000045df 
+ 00017887  0x000024e6 call  0x00007e75 
+ 00017888  0x000024e7 branch  0x000043a7 
+ 00017889  0x000024e9 branch  0x000043a7 
+ 00017890  0x000024ed ifetch  0x00000001 , 0x00000006 
+ 00017891  0x000024ee copy  0x0000003f , 0x00000007 
+ 00017892  0x000024ef ifetch  0x00000002 , 0x00000006 
+ 00017893  0x000024f0 copy  0x0000003f , 0x00000011 
+ 00017894  0x000024f1 iadd  0x00000006 , 0x00000006 
+ 00017895  0x000024f2 setarg  0x00000009 
+ 00017896  0x000024f3 istore  0x00000001 , 0x00000005 
+ 00017897  0x000024f4 copy  0x00000007 , 0x0000003f 
+ 00017898  0x000024f5 istore  0x00000001 , 0x00000005 
+ 00017899  0x000024f6 force  0x00000000 , 0x0000003f 
+ 00017900  0x000024f7 istore  0x00000002 , 0x00000005 
+ 00017901  0x000024f8 force  0x00000004 , 0x0000003f 
+ 00017902  0x000024f9 iadd  0x00000012 , 0x00000012 
+ 00017903  0x000024fa copy  0x00000013 , 0x0000003f 
+ 00017904  0x000024fb isub  0x00000011 , 0x00000013 
+ 00017905  0x000024fc branch  0x000043a7 
+ 00017906  0x000024fe branch  0x000043a7 
+ 00017907  0x00002501 branch  0x000043a7 
+ 00017908  0x00002503 force  0x00000000 , 0x00000012 
+ 00017909  0x00002504 call  0x0000486a 
+ 00017910  0x00002505 setarg  0x00000001 
+ 00017911  0x00002506 istore  0x00000001 , 0x00000005 
+ 00017912  0x00002507 copy  0x00000007 , 0x0000003f 
+ 00017913  0x00002508 istore  0x00000001 , 0x00000005 
+ 00017914  0x00002509 setarg  0x00000002 
+ 00017915  0x0000250a istore  0x00000002 , 0x00000005 
+ 00017916  0x0000250b setarg  0x00000000 
+ 00017917  0x0000250c istore  0x00000002 , 0x00000005 
+ 00017918  0x0000250d increase  0x00000006 , 0x00000012 
+ 00017919  0x0000250e arg  0x00000004 , 0x00000013 
+ 00017920  0x0000250f branch  0x000043a7 
+ 00017921  0x00002514 setarg  0x00000000 
+ 00017922  0x00002515 store  0x00000002 , 0x000002a4 
+ 00017923  0x00002516 store  0x00000002 , 0x000042da 
+ 00017924  0x00002517 jam  0x00000000 , 0x000042e1 
+ 00017925  0x00002518 rtn 
+ 00017926  0x0000251a setarg  0x00000000 
+ 00017927  0x0000251b store  0x00000002 , 0x0000029e 
+ 00017928  0x0000251c store  0x00000002 , 0x000042d8 
+ 00017929  0x0000251d jam  0x00000000 , 0x000042e0 
+ 00017930  0x0000251e rtn 
+ 00017931  0x00002520 setarg  0x00000000 
+ 00017932  0x00002521 store  0x00000002 , 0x000042dc 
+ 00017933  0x00002522 jam  0x00000000 , 0x000042e2 
+ 00017934  0x00002523 fetch  0x00000001 , 0x000042e3 
+ 00017935  0x00002524 beq  0x00000000 , 0x00004617 
+ 00017936  0x00002525 rtn 
+ 00017937  0x00002528 setarg  0x00000000 
+ 00017938  0x00002529 store  0x00000002 , 0x000042de 
+ 00017939  0x0000252a jam  0x00000000 , 0x000042e3 
+ 00017940  0x0000252b fetch  0x00000001 , 0x000042e2 
+ 00017941  0x0000252c beq  0x00000000 , 0x00004617 
+ 00017942  0x0000252d rtn 
+ 00017943  0x00002530 jam  0x00000007 , 0x000009bd 
+ 00017944  0x00002531 branch  0x00007d86 
+ 00017945  0x00002534 fetch  0x00000001 , 0x000002a8 
+ 00017946  0x00002535 set0  0x00000000 , 0x0000003f 
+ 00017947  0x00002536 store  0x00000001 , 0x000002a8 
+ 00017948  0x00002537 fetch  0x00000002 , 0x000042de 
+ 00017949  0x00002538 rtn  0x00000034 
+ 00017950  0x00002539 call  0x0000485e 
+ 00017951  0x0000253a fetch  0x00000002 , 0x000042de 
+ 00017952  0x0000253b copy  0x0000003f , 0x00000011 
+ 00017953  0x0000253c force  0x00000053 , 0x00000012 
+ 00017954  0x0000253d branch  0x0000462c 
+ 00017955  0x0000253f fetch  0x00000001 , 0x000002a8 
+ 00017956  0x00002540 set0  0x00000007 , 0x0000003f 
+ 00017957  0x00002541 store  0x00000001 , 0x000002a8 
+ 00017958  0x00002542 fetch  0x00000002 , 0x000042dc 
+ 00017959  0x00002543 rtn  0x00000034 
+ 00017960  0x00002544 call  0x0000485e 
+ 00017961  0x00002545 fetch  0x00000002 , 0x000042dc 
+ 00017962  0x00002546 copy  0x0000003f , 0x00000011 
+ 00017963  0x00002547 force  0x00000052 , 0x00000012 
+ 00017964  0x00002549 call  0x000047d6 
+ 00017965  0x0000254a call  0x0000486a 
+ 00017966  0x0000254b force  0x00000006 , 0x0000003f 
+ 00017967  0x0000254c istore  0x00000001 , 0x00000005 
+ 00017968  0x0000254d fetch  0x00000001 , 0x000042e5 
+ 00017969  0x0000254e istore  0x00000001 , 0x00000005 
+ 00017970  0x0000254f setarg  0x00000004 
+ 00017971  0x00002550 istore  0x00000002 , 0x00000005 
+ 00017972  0x00002551 copy  0x00000011 , 0x0000003f 
+ 00017973  0x00002552 istore  0x00000002 , 0x00000005 
+ 00017974  0x00002553 copy  0x00000012 , 0x0000003f 
+ 00017975  0x00002554 istore  0x00000002 , 0x00000005 
+ 00017976  0x00002555 force  0x00000008 , 0x00000002 
+ 00017977  0x00002556 branch  0x00004673 
+ 00017978  0x00002559 set0  0x00000025 , 0x00000000 
+ 00017979  0x0000255a bpatch  0x000000e4 , 0x0000401c 
+ 00017980  0x0000255b call  0x000047d6 
+ 00017981  0x0000255c call  0x0000486a 
+ 00017982  0x0000255d setarg  0x00000002 
+ 00017983  0x0000255e istore  0x00000001 , 0x00000005 
+ 00017984  0x0000255f fetch  0x00000001 , 0x000042e5 
+ 00017985  0x00002560 istore  0x00000001 , 0x00000005 
+ 00017986  0x00002561 setarg  0x00000004 
+ 00017987  0x00002562 istore  0x00000002 , 0x00000005 
+ 00017988  0x00002563 copy  0x00000002 , 0x0000003f 
+ 00017989  0x00002564 istore  0x00000002 , 0x00000005 
+ 00017990  0x00002565 copy  0x0000000b , 0x0000003f 
+ 00017991  0x00002566 istore  0x00000002 , 0x00000005 
+ 00017992  0x00002567 arg  0x00000008 , 0x00000002 
+ 00017993  0x00002568 branch  0x00004673 
+ 00017994  0x0000256a set0  0x00000025 , 0x00000000 
+ 00017995  0x0000256b bpatch  0x000000e5 , 0x0000401c 
+ 00017996  0x0000256c call  0x000047d6 
+ 00017997  0x0000256d call  0x0000486a 
+ 00017998  0x0000256e setarg  0x00000004 
+ 00017999  0x0000256f istore  0x00000001 , 0x00000005 
+ 00018000  0x00002570 fetch  0x00000001 , 0x000042e5 
+ 00018001  0x00002571 istore  0x00000001 , 0x00000005 
+ 00018002  0x00002572 setarg  0x00000008 
+ 00018003  0x00002573 istore  0x00000002 , 0x00000005 
+ 00018004  0x00002575 copy  0x00000002 , 0x0000003f 
+ 00018005  0x00002577 istore  0x00000002 , 0x00000005 
+ 00018006  0x00002578 setarg  0x00000000 
+ 00018007  0x00002579 istore  0x00000002 , 0x00000005 
+ 00018008  0x0000257a setarg  0x00000001 
+ 00018009  0x0000257b istore  0x00000001 , 0x00000005 
+ 00018010  0x0000257c setarg  0x00000002 
+ 00018011  0x0000257d istore  0x00000001 , 0x00000005 
+ 00018012  0x0000257e setarg  0x000003e3 
+ 00018013  0x0000257f istore  0x00000002 , 0x00000005 
+ 00018014  0x00002580 arg  0x0000000c , 0x00000002 
+ 00018015  0x00002581 branch  0x00004673 
+ 00018016  0x00002583 set0  0x00000025 , 0x00000000 
+ 00018017  0x00002584 bpatch  0x000000e6 , 0x0000401c 
+ 00018018  0x00002585 call  0x000047d6 
+ 00018019  0x00002586 call  0x0000486a 
+ 00018020  0x00002587 setarg  0x00000006 
+ 00018021  0x00002588 istore  0x00000001 , 0x00000005 
+ 00018022  0x00002589 fetch  0x00000001 , 0x000042e5 
+ 00018023  0x0000258a increase  0x00000001 , 0x0000003f 
+ 00018024  0x0000258b copy  0x00000005 , 0x00000011 
+ 00018025  0x0000258c store  0x00000001 , 0x000042e5 
+ 00018026  0x0000258d copy  0x00000011 , 0x00000005 
+ 00018027  0x0000258e istore  0x00000001 , 0x00000005 
+ 00018028  0x0000258f setarg  0x00000004 
+ 00018029  0x00002590 istore  0x00000002 , 0x00000005 
+ 00018030  0x00002591 copy  0x00000002 , 0x0000003f 
+ 00018031  0x00002592 istore  0x00000002 , 0x00000005 
+ 00018032  0x00002593 copy  0x0000000b , 0x0000003f 
+ 00018033  0x00002594 istore  0x00000002 , 0x00000005 
+ 00018034  0x00002595 arg  0x00000008 , 0x00000002 
+ 00018035  0x00002599 storet  0x00000002 , 0x00000298 
+ 00018036  0x0000259a copy  0x00000002 , 0x0000003f 
+ 00018037  0x0000259b branch  0x00004803 , 0x00000034 
+ 00018038  0x0000259c call  0x00004868 
+ 00018039  0x0000259d fetch  0x00000002 , 0x00000298 
+ 00018040  0x0000259e istore  0x00000002 , 0x00000005 
+ 00018041  0x0000259f force  0x00000001 , 0x0000003f 
+ 00018042  0x000025a0 istore  0x00000002 , 0x00000005 
+ 00018043  0x000025a1 rtn 
+ 00018044  0x000025a4 fetch  0x00000002 , 0x0000029e 
+ 00018045  0x000025a5 branch  0x00003b31 , 0x00000034 
+ 00018046  0x000025a6 call  0x00004876 
+ 00018047  0x000025a7 fetch  0x00000002 , 0x0000029e 
+ 00018048  0x000025a8 istore  0x00000002 , 0x00000005 
+ 00018049  0x000025a9 fetch  0x00000002 , 0x000042d8 
+ 00018050  0x000025aa istore  0x00000002 , 0x00000005 
+ 00018051  0x000025ab rtn 
+ 00018052  0x000025ad fetch  0x00000002 , 0x0000028f 
+ 00018053  0x000025ae branch  0x00004383 , 0x00000034 
+ 00018054  0x000025af set0  0x00000025 , 0x00000000 
+ 00018055  0x000025b0 bpatch  0x000000e7 , 0x0000401c 
+ 00018056  0x000025b1 fetch  0x00000001 , 0x00000291 
+ 00018057  0x000025b2 beq  0x00000001 , 0x0000468f 
+ 00018058  0x000025b3 beq  0x00000050 , 0x0000436e 
+ 00018059  0x000025b4 beq  0x00000051 , 0x0000437b 
+ 00018060  0x000025b5 beq  0x00000052 , 0x00004379 
+ 00018061  0x000025b6 beq  0x00000053 , 0x00004379 
+ 00018062  0x000025b7 branch  0x00004383 
+ 00018063  0x000025ba set0  0x00000025 , 0x00000000 
+ 00018064  0x000025bb bpatch  0x000000e8 , 0x0000401d 
+ 00018065  0x000025bc call  0x0000485e 
+ 00018066  0x000025bd force  0x00000000 , 0x00000012 
+ 00018067  0x000025be call  0x0000486a 
+ 00018068  0x000025bf copy  0x0000003f , 0x00000005 
+ 00018069  0x000025c0 fetch  0x00000002 , 0x0000028f 
+ 00018070  0x000025c1 copy  0x0000003f , 0x00000013 
+ 00018071  0x000025c2 fetch  0x00000002 , 0x0000028d 
+ 00018072  0x000025c3 iforce  0x00000006 
+ 00018073  0x000025c5 call  0x0000469f 
+ 00018074  0x000025c6 increase  0xfffffffc , 0x00000013 
+ 00018075  0x000025c7 nbranch  0x00004699 , 0x00000005 
+ 00018076  0x000025c8 copy  0x00000012 , 0x00000002 
+ 00018077  0x000025c9 call  0x00004673 
+ 00018078  0x000025ca branch  0x00004383 
+ 00018079  0x000025cd ifetch  0x00000001 , 0x00000006 
+ 00018080  0x000025ce beq  0x00000002 , 0x000046aa 
+ 00018081  0x000025cf beq  0x00000001 , 0x000046ad 
+ 00018082  0x000025d0 beq  0x00000003 , 0x000046b7 
+ 00018083  0x000025d1 beq  0x00000005 , 0x000046f4 
+ 00018084  0x000025d2 beq  0x00000004 , 0x00004727 
+ 00018085  0x000025d3 beq  0x00000007 , 0x000047ae 
+ 00018086  0x000025d4 beq  0x00000006 , 0x0000477b 
+ 00018087  0x000025d5 beq  0x00000008 , 0x000045e2 
+ 00018088  0x000025d6 beq  0x0000000a , 0x000043c3 
+ 00018089  0x000025d7 branch  0x000047ca 
+ 00018090  0x000025da call  0x00007e70 
+ 00018091  0x000025dc call  0x00007e75 
+ 00018092  0x000025dd branch  0x000043da 
+ 00018093  0x000025df ifetch  0x00000001 , 0x00000006 
+ 00018094  0x000025e0 copy  0x0000003f , 0x00000007 
+ 00018095  0x000025e1 ifetch  0x00000002 , 0x00000006 
+ 00018096  0x000025e2 copy  0x0000003f , 0x00000011 
+ 00018097  0x000025e3 copy  0x00000013 , 0x0000003f 
+ 00018098  0x000025e4 isub  0x00000011 , 0x00000013 
+ 00018099  0x000025e6 ifetch  0x00000001 , 0x00000006 
+ 00018100  0x000025e7 increase  0xffffffff , 0x00000011 
+ 00018101  0x000025e8 nbranch  0x000046b3 , 0x00000005 
+ 00018102  0x000025e9 rtn 
+ 00018103  0x000025eb ifetch  0x00000001 , 0x00000006 
+ 00018104  0x000025ec copy  0x0000003f , 0x00000007 
+ 00018105  0x000025ed ifetch  0x00000002 , 0x00000006 
+ 00018106  0x000025ee copy  0x0000003f , 0x00000011 
+ 00018107  0x000025ef ifetch  0x00000002 , 0x00000006 
+ 00018108  0x000025f0 copy  0x0000003f , 0x0000000b 
+ 00018109  0x000025f1 ifetch  0x00000002 , 0x00000006 
+ 00018110  0x000025f2 copy  0x0000003f , 0x00000002 
+ 00018111  0x000025f3 ifetch  0x00000002 , 0x00000006 
+ 00018112  0x000025f4 sub  0x0000003f , 0x00000000 , 0x0000003e 
+ 00018113  0x000025f5 branch  0x000046c9 , 0x00000005 
+ 00018114  0x000025f6 beq  0x00000002 , 0x000046c5 
+ 00018115  0x000025f7 beq  0x00000004 , 0x000046c5 
+ 00018116  0x000025f8 branch  0x000046c7 
+ 00018117  0x000025fa jam  0x00000016 , 0x000009bd 
+ 00018118  0x000025fb call  0x00007d86 
+ 00018119  0x000025fd ifetch  0x00000002 , 0x00000006 
+ 00018120  0x000025fe branch  0x000046f1 
+ 00018121  0x00002600 call  0x00007e70 
+ 00018122  0x00002604 set0  0x00000025 , 0x00000000 
+ 00018123  0x00002605 bpatch  0x000000e9 , 0x0000401d 
+ 00018124  0x00002606 setarg  0x00000050 
+ 00018125  0x00002607 isub  0x00000002 , 0x0000003e 
+ 00018126  0x00002608 branch  0x000046d9 , 0x00000005 
+ 00018127  0x00002609 setarg  0x00000051 
+ 00018128  0x0000260a isub  0x00000002 , 0x0000003e 
+ 00018129  0x0000260b branch  0x000046df , 0x00000005 
+ 00018130  0x0000260c setarg  0x00000053 
+ 00018131  0x0000260d isub  0x00000002 , 0x0000003e 
+ 00018132  0x0000260e branch  0x000046eb , 0x00000005 
+ 00018133  0x0000260f setarg  0x00000052 
+ 00018134  0x00002610 isub  0x00000002 , 0x0000003e 
+ 00018135  0x00002611 branch  0x000046e5 , 0x00000005 
+ 00018136  0x00002612 branch  0x000046f1 
+ 00018137  0x00002614 copy  0x0000000b , 0x0000003f 
+ 00018138  0x00002615 store  0x00000002 , 0x000042d8 
+ 00018139  0x00002616 fetch  0x00000001 , 0x000042e0 
+ 00018140  0x00002617 set1  0x00000001 
+ 00018141  0x00002618 store  0x00000001 , 0x000042e0 
+ 00018142  0x00002619 branch  0x000046f0 
+ 00018143  0x0000261b copy  0x0000000b , 0x0000003f 
+ 00018144  0x0000261c store  0x00000002 , 0x000042da 
+ 00018145  0x0000261d fetch  0x00000001 , 0x000042e1 
+ 00018146  0x0000261e set1  0x00000001 
+ 00018147  0x0000261f store  0x00000001 , 0x000042e1 
+ 00018148  0x00002620 branch  0x000046f0 
+ 00018149  0x00002622 copy  0x0000000b , 0x0000003f 
+ 00018150  0x00002623 store  0x00000002 , 0x000042dc 
+ 00018151  0x00002624 fetch  0x00000001 , 0x000042e2 
+ 00018152  0x00002625 set1  0x00000001 
+ 00018153  0x00002626 store  0x00000001 , 0x000042e2 
+ 00018154  0x00002627 branch  0x000046f0 
+ 00018155  0x00002629 copy  0x0000000b , 0x0000003f 
+ 00018156  0x0000262a store  0x00000002 , 0x000042de 
+ 00018157  0x0000262b fetch  0x00000001 , 0x000042e3 
+ 00018158  0x0000262c set1  0x00000001 
+ 00018159  0x0000262d store  0x00000001 , 0x000042e3 
+ 00018160  0x00002631 call  0x00007e75 
+ 00018161  0x00002633 copy  0x00000013 , 0x0000003f 
+ 00018162  0x00002634 isub  0x00000011 , 0x00000013 
+ 00018163  0x00002635 rtn 
+ 00018164  0x00002638 ifetch  0x00000001 , 0x00000006 
+ 00018165  0x00002639 copy  0x0000003f , 0x00000007 
+ 00018166  0x0000263a ifetch  0x00000002 , 0x00000006 
+ 00018167  0x0000263b copy  0x0000003f , 0x00000011 
+ 00018168  0x0000263c copy  0x00000013 , 0x0000003f 
+ 00018169  0x0000263d isub  0x00000011 , 0x00000013 
+ 00018170  0x0000263e ifetch  0x00000002 , 0x00000006 
+ 00018171  0x0000263f copy  0x0000003f , 0x0000000b 
+ 00018172  0x00002640 ifetch  0x00000002 , 0x00000006 
+ 00018173  0x00002641 ifetch  0x00000002 , 0x00000006 
+ 00018174  0x00002642 nbranch  0x00004721 , 0x00000034 
+ 00018175  0x00002643 call  0x00007e70 
+ 00018176  0x00002647 copy  0x0000000b , 0x00000002 
+ 00018177  0x00002648 set0  0x00000025 , 0x00000000 
+ 00018178  0x00002649 bpatch  0x000000ea , 0x0000401d 
+ 00018179  0x0000264a setarg  0x00000050 
+ 00018180  0x0000264b isub  0x00000002 , 0x0000003e 
+ 00018181  0x0000264c branch  0x0000470f , 0x00000005 
+ 00018182  0x0000264d setarg  0x00000051 
+ 00018183  0x0000264e isub  0x00000002 , 0x0000003e 
+ 00018184  0x0000264f branch  0x00004713 , 0x00000005 
+ 00018185  0x00002650 setarg  0x00000052 
+ 00018186  0x00002651 isub  0x00000002 , 0x0000003e 
+ 00018187  0x00002652 branch  0x00004717 , 0x00000005 
+ 00018188  0x00002653 setarg  0x00000053 
+ 00018189  0x00002654 isub  0x00000002 , 0x0000003e 
+ 00018190  0x00002655 branch  0x0000471b , 0x00000005 
+ 00018191  0x00002657 fetch  0x00000001 , 0x000042e0 
+ 00018192  0x00002658 set1  0x00000005 
+ 00018193  0x00002659 store  0x00000001 , 0x000042e0 
+ 00018194  0x0000265a rtn 
+ 00018195  0x0000265c fetch  0x00000001 , 0x000042e1 
+ 00018196  0x0000265d set1  0x00000005 
+ 00018197  0x0000265e store  0x00000001 , 0x000042e1 
+ 00018198  0x0000265f rtn 
+ 00018199  0x00002661 fetch  0x00000001 , 0x000042e2 
+ 00018200  0x00002662 set1  0x00000005 
+ 00018201  0x00002663 store  0x00000001 , 0x000042e2 
+ 00018202  0x00002664 rtn 
+ 00018203  0x00002666 fetch  0x00000001 , 0x000042e3 
+ 00018204  0x00002667 set1  0x00000005 
+ 00018205  0x00002668 store  0x00000001 , 0x000042e3 
+ 00018206  0x00002669 jam  0x00000006 , 0x000009bd 
+ 00018207  0x0000266a branch  0x00007d86 
+ 00018208  0x0000266e call  0x00007e75 
+ 00018209  0x00002670 increase  0xfffffffa , 0x00000011 
+ 00018210  0x00002672 branch  0x00004726 , 0x00000005 
+ 00018211  0x00002673 increase  0x00000001 , 0x00000006 
+ 00018212  0x00002674 increase  0xffffffff , 0x00000011 
+ 00018213  0x00002675 branch  0x00004722 
+ 00018214  0x00002677 rtn 
+ 00018215  0x00002679 ifetch  0x00000001 , 0x00000006 
+ 00018216  0x0000267a copy  0x0000003f , 0x00000007 
+ 00018217  0x0000267b ifetch  0x00000002 , 0x00000006 
+ 00018218  0x0000267c copy  0x0000003f , 0x00000011 
+ 00018219  0x0000267d copy  0x00000013 , 0x0000003f 
+ 00018220  0x0000267e isub  0x00000011 , 0x00000013 
+ 00018221  0x0000267f ifetch  0x00000002 , 0x00000006 
+ 00018222  0x00002680 increase  0x00000002 , 0x00000006 
+ 00018223  0x00002681 copy  0x0000003f , 0x00000002 
+ 00018224  0x00002682 setarg  0x00000005 
+ 00018225  0x00002683 istore  0x00000001 , 0x00000005 
+ 00018226  0x00002684 copy  0x00000007 , 0x0000003f 
+ 00018227  0x00002685 istore  0x00000001 , 0x00000005 
+ 00018228  0x00002686 increase  0x00000002 , 0x00000011 
+ 00018229  0x00002687 copy  0x00000011 , 0x0000003f 
+ 00018230  0x00002688 istore  0x00000002 , 0x00000005 
+ 00018231  0x00002689 call  0x00007e70 
+ 00018232  0x0000268a set0  0x00000025 , 0x00000000 
+ 00018233  0x0000268b bpatch  0x000000eb , 0x0000401d 
+ 00018234  0x0000268c setarg  0x00000050 
+ 00018235  0x0000268d isub  0x00000002 , 0x0000003e 
+ 00018236  0x0000268e branch  0x00004747 , 0x00000005 
+ 00018237  0x0000268f setarg  0x00000051 
+ 00018238  0x00002690 isub  0x00000002 , 0x0000003e 
+ 00018239  0x00002691 branch  0x00004758 , 0x00000005 
+ 00018240  0x00002692 setarg  0x00000052 
+ 00018241  0x00002693 isub  0x00000002 , 0x0000003e 
+ 00018242  0x00002694 branch  0x0000475e , 0x00000005 
+ 00018243  0x00002695 setarg  0x00000053 
+ 00018244  0x00002696 isub  0x00000002 , 0x0000003e 
+ 00018245  0x00002697 branch  0x00004764 , 0x00000005 
+ 00018246  0x00002698 branch  0x00004769 
+ 00018247  0x0000269a fetch  0x00000001 , 0x000042e0 
+ 00018248  0x0000269b set1  0x00000004 , 0x0000003f 
+ 00018249  0x0000269c set1  0x00000003 , 0x0000003f 
+ 00018250  0x0000269d store  0x00000001 , 0x000042e0 
+ 00018251  0x0000269e bbit1  0x00000002 , 0x00004755 
+ 00018252  0x0000269f fetcht  0x00000001 , 0x000002a8 
+ 00018253  0x000026a0 set1  0x00000006 , 0x00000002 
+ 00018254  0x000026a1 storet  0x00000001 , 0x000002a8 
+ 00018255  0x000026a2 copy  0x00000007 , 0x0000003f 
+ 00018256  0x000026a3 increase  0x00000001 , 0x0000003f 
+ 00018257  0x000026a4 store  0x00000001 , 0x000002aa 
+ 00018258  0x000026a5 fetch  0x00000001 , 0x000042e0 
+ 00018259  0x000026a6 set1  0x00000002 , 0x0000003f 
+ 00018260  0x000026a7 store  0x00000001 , 0x000042e0 
+ 00018261  0x000026a9 fetch  0x00000002 , 0x000042d8 
+ 00018262  0x000026aa store  0x00000002 , 0x000002ab 
+ 00018263  0x000026ab branch  0x00004769 
+ 00018264  0x000026ad fetch  0x00000001 , 0x000042e1 
+ 00018265  0x000026ae set1  0x00000004 , 0x0000003f 
+ 00018266  0x000026af set1  0x00000003 , 0x0000003f 
+ 00018267  0x000026b0 store  0x00000001 , 0x000042e1 
+ 00018268  0x000026b1 fetch  0x00000002 , 0x000042da 
+ 00018269  0x000026b2 branch  0x00004769 
+ 00018270  0x000026b4 fetch  0x00000001 , 0x000042e2 
+ 00018271  0x000026b5 set1  0x00000004 , 0x0000003f 
+ 00018272  0x000026b6 set1  0x00000003 , 0x0000003f 
+ 00018273  0x000026b7 store  0x00000001 , 0x000042e2 
+ 00018274  0x000026b8 fetch  0x00000002 , 0x000042dc 
+ 00018275  0x000026b9 branch  0x00004769 
+ 00018276  0x000026bb fetch  0x00000001 , 0x000042e3 
+ 00018277  0x000026bc set1  0x00000004 , 0x0000003f 
+ 00018278  0x000026bd set1  0x00000003 , 0x0000003f 
+ 00018279  0x000026be store  0x00000001 , 0x000042e3 
+ 00018280  0x000026bf fetch  0x00000002 , 0x000042de 
+ 00018281  0x000026c3 copy  0x0000003f , 0x0000000b 
+ 00018282  0x000026c4 call  0x00007e75 
+ 00018283  0x000026c6 copy  0x0000000b , 0x0000003f 
+ 00018284  0x000026c8 istore  0x00000002 , 0x00000005 
+ 00018285  0x000026c9 force  0x00000000 , 0x0000003f 
+ 00018286  0x000026ca istore  0x00000002 , 0x00000005 
+ 00018287  0x000026cb force  0x00000000 , 0x0000003f 
+ 00018288  0x000026cc istore  0x00000002 , 0x00000005 
+ 00018289  0x000026cd force  0x0000000a , 0x0000003f 
+ 00018290  0x000026ce iadd  0x00000012 , 0x00000012 
+ 00018291  0x000026cf increase  0xfffffffa , 0x00000011 
+ 00018292  0x000026d1 branch  0x0000477a , 0x00000005 
+ 00018293  0x000026d2 ifetch  0x00000001 , 0x00000006 
+ 00018294  0x000026d3 istore  0x00000001 , 0x00000005 
+ 00018295  0x000026d4 increase  0x00000001 , 0x00000012 
+ 00018296  0x000026d5 increase  0xffffffff , 0x00000011 
+ 00018297  0x000026d6 branch  0x00004774 
+ 00018298  0x000026d8 rtn 
+ 00018299  0x000026da ifetch  0x00000001 , 0x00000006 
+ 00018300  0x000026db copy  0x0000003f , 0x00000007 
+ 00018301  0x000026dc ifetch  0x00000002 , 0x00000006 
+ 00018302  0x000026dd copy  0x0000003f , 0x00000011 
+ 00018303  0x000026de copy  0x00000013 , 0x0000003f 
+ 00018304  0x000026df isub  0x00000011 , 0x00000013 
+ 00018305  0x000026e1 ifetch  0x00000002 , 0x00000006 
+ 00018306  0x000026e2 copy  0x0000003f , 0x00000011 
+ 00018307  0x000026e3 ifetch  0x00000002 , 0x00000006 
+ 00018308  0x000026e4 copy  0x0000003f , 0x0000000b 
+ 00018309  0x000026e5 call  0x00007e70 
+ 00018310  0x000026e6 set0  0x00000025 , 0x00000000 
+ 00018311  0x000026e7 bpatch  0x000000ec , 0x0000401d 
+ 00018312  0x000026e8 setarg  0x00000050 
+ 00018313  0x000026e9 copy  0x00000011 , 0x00000002 
+ 00018314  0x000026ea isub  0x00000002 , 0x0000003e 
+ 00018315  0x000026eb branch  0x00004795 , 0x00000005 
+ 00018316  0x000026ec setarg  0x00000052 
+ 00018317  0x000026ed copy  0x00000011 , 0x00000002 
+ 00018318  0x000026ee isub  0x00000002 , 0x0000003e 
+ 00018319  0x000026ef branch  0x0000479a , 0x00000005 
+ 00018320  0x000026f0 setarg  0x00000053 
+ 00018321  0x000026f1 copy  0x00000011 , 0x00000002 
+ 00018322  0x000026f2 isub  0x00000002 , 0x0000003e 
+ 00018323  0x000026f3 branch  0x0000479c , 0x00000005 
+ 00018324  0x000026f4 branch  0x0000479e 
+ 00018325  0x000026f6 setarg  0x00000000 
+ 00018326  0x000026f7 store  0x00000002 , 0x0000029e 
+ 00018327  0x000026f8 store  0x00000002 , 0x000042d8 
+ 00018328  0x000026f9 store  0x00000001 , 0x000042e0 
+ 00018329  0x000026fa branch  0x000047a0 
+ 00018330  0x000026fc call  0x0000460b 
+ 00018331  0x000026fd branch  0x000047a0 
+ 00018332  0x000026ff call  0x00004611 
+ 00018333  0x00002705 branch  0x000047a0 
+ 00018334  0x00002707 setarg  0x00000000 
+ 00018335  0x00002708 store  0x00000002 , 0x000002a4 
+ 00018336  0x0000270a call  0x00007e75 
+ 00018337  0x0000270b setarg  0x00000007 
+ 00018338  0x0000270c istore  0x00000001 , 0x00000005 
+ 00018339  0x0000270d copy  0x00000007 , 0x0000003f 
+ 00018340  0x0000270e istore  0x00000001 , 0x00000005 
+ 00018341  0x0000270f setarg  0x00000004 
+ 00018342  0x00002710 istore  0x00000002 , 0x00000005 
+ 00018343  0x00002711 copy  0x00000011 , 0x0000003f 
+ 00018344  0x00002712 istore  0x00000002 , 0x00000005 
+ 00018345  0x00002713 copy  0x0000000b , 0x0000003f 
+ 00018346  0x00002714 istore  0x00000002 , 0x00000005 
+ 00018347  0x00002715 force  0x00000008 , 0x0000003f 
+ 00018348  0x00002716 iadd  0x00000012 , 0x00000012 
+ 00018349  0x00002717 rtn 
+ 00018350  0x0000271a ifetch  0x00000001 , 0x00000006 
+ 00018351  0x0000271b copy  0x0000003f , 0x00000007 
+ 00018352  0x0000271c ifetch  0x00000002 , 0x00000006 
+ 00018353  0x0000271d copy  0x0000003f , 0x00000011 
+ 00018354  0x0000271e ifetch  0x00000002 , 0x00000006 
+ 00018355  0x0000271f copy  0x0000003f , 0x0000000b 
+ 00018356  0x00002720 ifetch  0x00000002 , 0x00000006 
+ 00018357  0x00002721 copy  0x0000003f , 0x00000002 
+ 00018358  0x00002722 call  0x00007e70 
+ 00018359  0x00002723 set0  0x00000025 , 0x00000000 
+ 00018360  0x00002724 bpatch  0x000000ed , 0x0000401d 
+ 00018361  0x00002725 fetch  0x00000001 , 0x000042e5 
+ 00018362  0x00002726 icompare  0x000000ff , 0x00000007 
+ 00018363  0x00002727 nbranch  0x000047c6 , 0x00000001 
+ 00018364  0x00002728 setarg  0x00000050 
+ 00018365  0x00002729 isub  0x00000002 , 0x0000003e 
+ 00018366  0x0000272a branch  0x000047c3 , 0x00000005 
+ 00018367  0x0000272b setarg  0x00000051 
+ 00018368  0x0000272c isub  0x00000002 , 0x0000003e 
+ 00018369  0x0000272d branch  0x000047c6 , 0x00000005 
+ 00018370  0x0000272e branch  0x000047c6 
+ 00018371  0x00002730 jam  0x00000000 , 0x000042d8 
+ 00018372  0x00002731 jam  0x00000000 , 0x000042e0 
+ 00018373  0x00002732 branch  0x000047c6 
+ 00018374  0x00002737 call  0x00007e75 
+ 00018375  0x00002738 copy  0x00000013 , 0x0000003f 
+ 00018376  0x00002739 isub  0x00000011 , 0x00000013 
+ 00018377  0x0000273a rtn 
+ 00018378  0x0000273d setarg  0x00000001 
+ 00018379  0x0000273e istore  0x00000001 , 0x00000005 
+ 00018380  0x0000273f ifetch  0x00000001 , 0x00000006 
+ 00018381  0x00002740 istore  0x00000001 , 0x00000005 
+ 00018382  0x00002741 setarg  0x00000002 
+ 00018383  0x00002742 istore  0x00000002 , 0x00000005 
+ 00018384  0x00002743 setarg  0x00000000 
+ 00018385  0x00002744 istore  0x00000002 , 0x00000005 
+ 00018386  0x00002745 setarg  0x00000006 
+ 00018387  0x00002746 iadd  0x00000012 , 0x00000012 
+ 00018388  0x00002747 force  0x00000004 , 0x00000013 
+ 00018389  0x00002748 rtn 
+ 00018390  0x0000274c fetch  0x00000001 , 0x000042e5 
+ 00018391  0x0000274d increase  0x00000001 , 0x0000003f 
+ 00018392  0x0000274e bne  0x00000000 , 0x000047da 
+ 00018393  0x0000274f increase  0x00000001 , 0x0000003f 
+ 00018394  0x00002751 store  0x00000001 , 0x000042e5 
+ 00018395  0x00002752 rtn 
+ 00018396  0x0000275d set0  0x00000025 , 0x00000000 
+ 00018397  0x0000275e bpatch  0x000000ee , 0x0000401d 
+ 00018398  0x0000275f arg  0x00000000 , 0x00000012 
+ 00018399  0x00002760 call  0x0000480e 
+ 00018400  0x00002761 nbranch  0x00003b31 , 0x00000034 
+ 00018401  0x00002762 call  0x00004821 
+ 00018402  0x00002763 arg  0x00001800 , 0x00000012 
+ 00018403  0x00002764 arg  0x00000000 , 0x00000007 
+ 00018404  0x00002766 fetcht  0x00000001 , 0x000042e6 
+ 00018405  0x00002767 qisolate1  0x00000002 
+ 00018406  0x00002768 branch  0x000047ec , 0x00000001 
+ 00018407  0x00002769 call  0x00004845 
+ 00018408  0x0000276a sub  0x0000000b , 0x00000000 , 0x0000003e 
+ 00018409  0x0000276b branch  0x000047ec , 0x00000002 
+ 00018410  0x0000276c call  0x0000482c 
+ 00018411  0x0000276d branch  0x000047f2 
+ 00018412  0x0000276f increase  0x00000080 , 0x00000012 
+ 00018413  0x00002770 increase  0x00000001 , 0x00000007 
+ 00018414  0x00002771 setarg  0x00000008 
+ 00018415  0x00002772 isub  0x00000007 , 0x0000003e 
+ 00018416  0x00002773 branch  0x000047e4 , 0x00000002 
+ 00018417  0x00002774 arg  0x00000000 , 0x00000012 
+ 00018418  0x00002776 copy  0x00000012 , 0x0000003f 
+ 00018419  0x00002777 branch  0x00003b31 , 0x00000034 
+ 00018420  0x00002778 rtn 
+ 00018421  0x00002781 set0  0x00000025 , 0x00000000 
+ 00018422  0x00002782 bpatch  0x000000ef , 0x0000401d 
+ 00018423  0x00002783 call  0x0000481a 
+ 00018424  0x00002784 increase  0x00000001 , 0x00000006 
+ 00018425  0x00002785 ifetch  0x00000002 , 0x00000006 
+ 00018426  0x00002786 rtn 
+ 00018427  0x0000278d set0  0x00000025 , 0x00000000 
+ 00018428  0x0000278e bpatch  0x000000f0 , 0x0000401e 
+ 00018429  0x0000278f call  0x0000481a 
+ 00018430  0x00002790 copy  0x00000006 , 0x00000005 
+ 00018431  0x00002791 copy  0x00000006 , 0x00000002 
+ 00018432  0x00002792 setarg  0x00000000 
+ 00018433  0x00002793 istore  0x00000003 , 0x00000005 
+ 00018434  0x00002794 rtn 
+ 00018435  0x0000279a set0  0x00000025 , 0x00000000 
+ 00018436  0x0000279b bpatch  0x000000f1 , 0x0000401e 
+ 00018437  0x0000279c call  0x00004816 
+ 00018438  0x0000279d branch  0x00003b31 , 0x00000034 
+ 00018439  0x0000279e fetch  0x00000003 , 0x000042ed 
+ 00018440  0x0000279f store  0x00000003 , 0x000042f0 
+ 00018441  0x000027a0 fetch  0x00000003 , 0x000042ea 
+ 00018442  0x000027a1 store  0x00000003 , 0x000042ed 
+ 00018443  0x000027a2 fetch  0x00000003 , 0x000042e7 
+ 00018444  0x000027a3 store  0x00000003 , 0x000042ea 
+ 00018445  0x000027a4 rtn 
+ 00018446  0x000027ab set0  0x00000025 , 0x00000000 
+ 00018447  0x000027ac bpatch  0x000000f2 , 0x0000401e 
+ 00018448  0x000027ad fetch  0x00000003 , 0x000042e7 
+ 00018449  0x000027ae rtn 
+ 00018450  0x000027b5 set0  0x00000025 , 0x00000000 
+ 00018451  0x000027b6 bpatch  0x000000f3 , 0x0000401e 
+ 00018452  0x000027b7 fetch  0x00000003 , 0x000042ea 
+ 00018453  0x000027b8 rtn 
+ 00018454  0x000027bf set0  0x00000025 , 0x00000000 
+ 00018455  0x000027c0 bpatch  0x000000f4 , 0x0000401e 
+ 00018456  0x000027c1 fetch  0x00000003 , 0x000042f0 
+ 00018457  0x000027c2 rtn 
+ 00018458  0x000027c8 call  0x00004816 
+ 00018459  0x000027c9 branch  0x00003b31 , 0x00000034 
+ 00018460  0x000027ca arg  0x000042e7 , 0x00000006 
+ 00018461  0x000027cc ifetch  0x00000003 , 0x00000006 
+ 00018462  0x000027cd branch  0x0000481d , 0x00000034 
+ 00018463  0x000027ce increase  0xfffffffd , 0x00000006 
+ 00018464  0x000027cf rtn 
+ 00018465  0x000027d7 set0  0x00000025 , 0x00000000 
+ 00018466  0x000027d8 bpatch  0x000000f5 , 0x0000401e 
+ 00018467  0x000027d9 arg  0x00000004 , 0x00000039 
+ 00018468  0x000027da arg  0x000042e7 , 0x00000006 
+ 00018469  0x000027db arg  0x00000000 , 0x00000002 
+ 00018470  0x000027dd ifetch  0x00000003 , 0x00000006 
+ 00018471  0x000027de and  0x0000003f , 0x000000ff , 0x0000003f 
+ 00018472  0x000027df ior  0x00000002 , 0x00000002 
+ 00018473  0x000027e0 loop  0x00004826 
+ 00018474  0x000027e1 storet  0x00000001 , 0x000042e6 
+ 00018475  0x000027e2 rtn 
+ 00018476  0x000027eb set0  0x00000025 , 0x00000000 
+ 00018477  0x000027ec bpatch  0x000000f6 , 0x0000401e 
+ 00018478  0x000027ed call  0x0000480e 
+ 00018479  0x000027ee nbranch  0x00003b31 , 0x00000034 
+ 00018480  0x000027ef call  0x00004816 
+ 00018481  0x000027f0 branch  0x0000483a , 0x00000034 
+ 00018482  0x000027f1 fetch  0x00000003 , 0x000042ea 
+ 00018483  0x000027f2 store  0x00000003 , 0x000042e7 
+ 00018484  0x000027f3 ifetch  0x00000003 , 0x00000006 
+ 00018485  0x000027f4 istore  0x00000003 , 0x00000005 
+ 00018486  0x000027f5 ifetch  0x00000003 , 0x00000006 
+ 00018487  0x000027f6 istore  0x00000003 , 0x00000005 
+ 00018488  0x000027f7 setarg  0x00000000 
+ 00018489  0x000027f8 istore  0x00000003 , 0x00000005 
+ 00018490  0x000027fa arg  0x00000000 , 0x00000002 
+ 00018491  0x000027fb copy  0x0000000b , 0x0000003f 
+ 00018492  0x000027fc iadd  0x00000007 , 0x0000003f 
+ 00018493  0x000027fe qset1  0x00000002 
+ 00018494  0x000027ff increase  0x00000001 , 0x00000007 
+ 00018495  0x00002800 isub  0x00000007 , 0x0000003e 
+ 00018496  0x00002801 nbranch  0x0000483d , 0x00000005 
+ 00018497  0x00002803 lshift8  0x00000012 , 0x0000003f 
+ 00018498  0x00002804 ior  0x00000002 , 0x0000003f 
+ 00018499  0x00002805 store  0x00000003 , 0x000042f0 
+ 00018500  0x00002806 rtn 
+ 00018501  0x00002811 set0  0x00000025 , 0x00000000 
+ 00018502  0x00002812 bpatch  0x000000f7 , 0x0000401e 
+ 00018503  0x00002813 call  0x00004821 
+ 00018504  0x00002814 copy  0x00000007 , 0x00000013 
+ 00018505  0x00002815 arg  0x00000000 , 0x00000002 
+ 00018506  0x00002816 arg  0x00000000 , 0x0000000b 
+ 00018507  0x00002819 copy  0x00000007 , 0x0000003f 
+ 00018508  0x0000281a beq  0x00000008 , 0x00004856 
+ 00018509  0x0000281b fetch  0x00000001 , 0x000042e6 
+ 00018510  0x0000281c qisolate1  0x0000003f 
+ 00018511  0x0000281d branch  0x00004856 , 0x00000001 
+ 00018512  0x0000281e increase  0x00000080 , 0x00000002 
+ 00018513  0x0000281f increase  0x00000001 , 0x00000007 
+ 00018514  0x00002820 copy  0x00000011 , 0x0000003f 
+ 00018515  0x00002821 isub  0x00000002 , 0x0000003e 
+ 00018516  0x00002822 branch  0x00004856 , 0x00000005 
+ 00018517  0x00002823 branch  0x0000484b , 0x00000002 
+ 00018518  0x00002825 copy  0x00000002 , 0x0000003f 
+ 00018519  0x00002826 isub  0x00000011 , 0x0000003e 
+ 00018520  0x00002827 nbranch  0x0000485c , 0x00000002 
+ 00018521  0x00002828 copy  0x00000007 , 0x0000003f 
+ 00018522  0x00002829 copy  0x00000013 , 0x00000002 
+ 00018523  0x0000282a isub  0x00000002 , 0x0000000b 
+ 00018524  0x0000282c copy  0x00000013 , 0x00000007 
+ 00018525  0x0000282d rtn 
+ 00018526  0x00002831 set0  0x00000025 , 0x00000000 
+ 00018527  0x00002832 bpatch  0x000000f8 , 0x0000401f 
+ 00018528  0x00002833 arg  0x0000007f , 0x00000011 
+ 00018529  0x00002834 call  0x000047dc 
+ 00018530  0x00002835 store  0x00000002 , 0x00000294 
+ 00018531  0x00002836 increase  0x00000004 , 0x0000003f 
+ 00018532  0x00002837 store  0x00000002 , 0x00000296 
+ 00018533  0x00002838 setarg  0x00000000 
+ 00018534  0x00002839 store  0x00000002 , 0x00000298 
+ 00018535  0x0000283a rtn 
+ 00018536  0x0000283d fetch  0x00000002 , 0x00000294 
+ 00018537  0x0000283e branch  0x0000488b 
+ 00018538  0x00002841 fetch  0x00000002 , 0x00000296 
+ 00018539  0x00002842 branch  0x0000488b 
+ 00018540  0x00002846 set0  0x00000025 , 0x00000000 
+ 00018541  0x00002847 bpatch  0x000000f9 , 0x0000401f 
+ 00018542  0x00002848 arg  0x000002ff , 0x00000011 
+ 00018543  0x00002849 call  0x000047dc 
+ 00018544  0x0000284a store  0x00000002 , 0x0000029a 
+ 00018545  0x0000284b increase  0x00000004 , 0x0000003f 
+ 00018546  0x0000284c store  0x00000002 , 0x0000029c 
+ 00018547  0x0000284d setarg  0x00000000 
+ 00018548  0x0000284e store  0x00000002 , 0x0000029e 
+ 00018549  0x0000284f rtn 
+ 00018550  0x00002852 fetch  0x00000002 , 0x0000029a 
+ 00018551  0x00002853 branch  0x0000488b 
+ 00018552  0x00002856 fetch  0x00000002 , 0x0000029c 
+ 00018553  0x00002857 branch  0x0000488b 
+ 00018554  0x0000285b set0  0x00000025 , 0x00000000 
+ 00018555  0x0000285c bpatch  0x000000fa , 0x0000401f 
+ 00018556  0x0000285d call  0x00007e48 
+ 00018557  0x0000285e jam  0x00000001 , 0x000002ad 
+ 00018558  0x0000285f call  0x0000480e 
+ 00018559  0x00002860 nrtn  0x00000034 
+ 00018560  0x00002861 arg  0x0000007f , 0x00000011 
+ 00018561  0x00002862 call  0x000047dc 
+ 00018562  0x00002863 store  0x00000002 , 0x000002a0 
+ 00018563  0x00002864 increase  0x00000004 , 0x0000003f 
+ 00018564  0x00002865 store  0x00000002 , 0x000002a2 
+ 00018565  0x00002866 setarg  0x00000000 
+ 00018566  0x00002867 store  0x00000002 , 0x000002a4 
+ 00018567  0x00002868 jam  0x00000000 , 0x000002ad 
+ 00018568  0x00002869 branch  0x00007e56 
+ 00018569  0x0000286c fetch  0x00000002 , 0x000002a0 
+ 00018570  0x0000286d branch  0x0000488b 
+ 00018571  0x00002870 branch  0x00003b31 , 0x00000034 
+ 00018572  0x00002871 copy  0x0000003f , 0x00000005 
+ 00018573  0x00002872 rtn 
+ 00018574  0x00002876 set0  0x00000025 , 0x00000000 
+ 00018575  0x00002877 bpatch  0x000000fb , 0x0000401f 
+ 00018576  0x00002878 arg  0x00000000 , 0x00000012 
+ 00018577  0x00002879 arg  0x000042e7 , 0x00000011 
+ 00018578  0x0000287a increase  0xfffffffe , 0x00000011 
+ 00018579  0x0000287c increase  0x00000002 , 0x00000011 
+ 00018580  0x0000287d setarg  0x000042f3 
+ 00018581  0x0000287e isub  0x00000011 , 0x0000003e 
+ 00018582  0x0000287f branch  0x0000489f , 0x00000005 
+ 00018583  0x00002880 ifetch  0x00000001 , 0x00000011 
+ 00018584  0x00002881 increase  0x00000001 , 0x00000011 
+ 00018585  0x00002882 branch  0x00004893 , 0x00000034 
+ 00018586  0x00002883 ifetcht  0x00000002 , 0x00000011 
+ 00018587  0x00002884 ifetch  0x00000002 , 0x00000002 
+ 00018588  0x00002885 iadd  0x00000012 , 0x00000012 
+ 00018589  0x00002886 increase  0x00000004 , 0x00000012 
+ 00018590  0x00002887 branch  0x00004893 
+ 00018591  0x00002889 copy  0x00000012 , 0x0000003f 
+ 00018592  0x0000288a rtn 
+ 00018593  0x0000288e arg  0x0000000c , 0x00000007 
+ 00018594  0x0000288f branch  0x00003d06 
+ 00018595  0x00002892 arg  0x0000000c , 0x00000007 
+ 00018596  0x00002893 branch  0x00003d0a 
+ 00018597  0x00002896 set0  0x00000025 , 0x00000000 
+ 00018598  0x00002897 bpatch  0x000000fc , 0x0000401f 
+ 00018599  0x00002898 call  0x00004821 
+ 00018600  0x00002899 fetch  0x00000001 , 0x000042e6 
+ 00018601  0x0000289a rtn  0x00000034 
+ 00018602  0x0000289b call  0x0000488e 
+ 00018603  0x0000289c arg  0x00000100 , 0x00000002 
+ 00018604  0x0000289d isub  0x00000002 , 0x0000003e 
+ 00018605  0x0000289e branch  0x000048a1 , 0x00000002 
+ 00018606  0x0000289f call  0x000048a3 
+ 00018607  0x000028a0 arg  0x000042f3 , 0x00000005 
+ 00018608  0x000028a1 arg  0x000042e7 , 0x00000011 
+ 00018609  0x000028a3 setarg  0x000042f3 
+ 00018610  0x000028a4 isub  0x00000011 , 0x0000003e 
+ 00018611  0x000028a5 rtn  0x00000005 
+ 00018612  0x000028a6 ifetch  0x00000001 , 0x00000011 
+ 00018613  0x000028a7 increase  0x00000001 , 0x00000011 
+ 00018614  0x000028a8 nbranch  0x000048ba , 0x00000034 
+ 00018615  0x000028a9 istore  0x00000002 , 0x00000005 
+ 00018616  0x000028aa increase  0x00000002 , 0x00000011 
+ 00018617  0x000028ab branch  0x000048b1 
+ 00018618  0x000028ad ifetch  0x00000002 , 0x00000011 
+ 00018619  0x000028ae increase  0x00000002 , 0x00000011 
+ 00018620  0x000028af copy  0x0000003f , 0x00000006 
+ 00018621  0x000028b0 ifetch  0x00000002 , 0x00000006 
+ 00018622  0x000028b1 istore  0x00000002 , 0x00000005 
+ 00018623  0x000028b2 copy  0x0000003f , 0x00000039 
+ 00018624  0x000028b3 increase  0x00000002 , 0x00000039 
+ 00018625  0x000028b4 call  0x00007ecd 
+ 00018626  0x000028b5 branch  0x000048b1 
+ 00018627  0x000028b8 set0  0x00000025 , 0x00000000 
+ 00018628  0x000028b9 bpatch  0x000000fd , 0x0000401f 
+ 00018629  0x000028ba call  0x00004821 
+ 00018630  0x000028bb fetch  0x00000001 , 0x000042e6 
+ 00018631  0x000028bc rtn  0x00000034 
+ 00018632  0x000028bd arg  0x000042e8 , 0x00000011 
+ 00018633  0x000028be increase  0xfffffffd , 0x00000011 
+ 00018634  0x000028bf arg  0x000042f3 , 0x00000006 
+ 00018635  0x000028c1 increase  0x00000003 , 0x00000011 
+ 00018636  0x000028c2 setarg  0x000042f4 
+ 00018637  0x000028c3 isub  0x00000011 , 0x0000003e 
+ 00018638  0x000028c4 rtn  0x00000005 
+ 00018639  0x000028c5 ifetch  0x00000002 , 0x00000006 
+ 00018640  0x000028c6 branch  0x000048cb , 0x00000034 
+ 00018641  0x000028c7 increase  0x00000004 , 0x0000003f 
+ 00018642  0x000028c8 copy  0x0000003f , 0x00000039 
+ 00018643  0x000028c9 copy  0x00000006 , 0x00000012 
+ 00018644  0x000028ca ifetch  0x00000002 , 0x00000011 
+ 00018645  0x000028cb copy  0x0000003f , 0x00000005 
+ 00018646  0x000028cc copy  0x00000012 , 0x00000006 
+ 00018647  0x000028cd increase  0xfffffffe , 0x00000006 
+ 00018648  0x000028ce call  0x00007ecd 
+ 00018649  0x000028cf branch  0x000048cb 
+ 00018650  0x000028da fetch  0x00000001 , 0x000044df 
+ 00018651  0x000028db set1  0x00000003 , 0x0000003f 
+ 00018652  0x000028dc store  0x00000001 , 0x000044df 
+ 00018653  0x000028dd rtn 
+ 00018654  0x000028df fetch  0x00000001 , 0x000044df 
+ 00018655  0x000028e0 set0  0x00000003 , 0x0000003f 
+ 00018656  0x000028e1 store  0x00000001 , 0x000044df 
+ 00018657  0x000028e2 rtn 
+ 00018658  0x000028e6 set0  0x00000025 , 0x00000000 
+ 00018659  0x000028e7 bpatch  0x000000fe , 0x0000401f 
+ 00018660  0x000028e8 disable  0x0000002b 
+ 00018661  0x000028e9 jam  0x00000001 , 0x00000378 
+ 00018662  0x000028ea jam  0x00000003 , 0x00000362 
+ 00018663  0x000028eb jam  0x00000001 , 0x00000379 
+ 00018664  0x000028ec setarg  0xffffffff 
+ 00018665  0x000028ed store  0x00000002 , 0x0000037c 
+ 00018666  0x000028ee force  0x00000000 , 0x0000003f 
+ 00018667  0x000028ef store  0x00000001 , 0x0000037a 
+ 00018668  0x000028f0 store  0x00000001 , 0x00000385 
+ 00018669  0x000028f1 store  0x00000003 , 0x00004209 
+ 00018670  0x000028f2 store  0x00000003 , 0x0000420c 
+ 00018671  0x000028f3 store  0x00000005 , 0x0000448c 
+ 00018672  0x000028f4 set1  0x00000027 , 0x0000003f 
+ 00018673  0x000028f5 store  0x00000005 , 0x00004491 
+ 00018674  0x000028f6 jam  0x00000001 , 0x00004465 
+ 00018675  0x000028f7 jam  0x00000000 , 0x00004466 
+ 00018676  0x000028f8 branch  0x00005179 
+ 00018677  0x000028fb set0  0x00000025 , 0x00000000 
+ 00018678  0x000028fc bpatch  0x000000ff , 0x0000401f 
+ 00018679  0x000028fd enable  0x00000029 
+ 00018680  0x000028fe jam  0x00000003 , 0x00000363 
+ 00018681  0x000028ff jam  0x00000001 , 0x0000039b 
+ 00018682  0x00002900 jam  0x00000001 , 0x000044e3 
+ 00018683  0x00002901 setarg  0x0000ffff 
+ 00018684  0x00002902 store  0x00000002 , 0x000044e5 
+ 00018685  0x00002903 force  0x00000000 , 0x0000003f 
+ 00018686  0x00002904 store  0x00000005 , 0x00004491 
+ 00018687  0x00002905 set1  0x00000027 , 0x0000003f 
+ 00018688  0x00002906 store  0x00000005 , 0x0000448c 
+ 00018689  0x00002907 branch  0x000048e2 
+ 00018690  0x0000290b set1  0x00000025 , 0x00000000 
+ 00018691  0x0000290c bpatch  0x00000000 , 0x00004020 
+ 00018692  0x0000290d disable  0x00000029 
+ 00018693  0x0000290e jam  0x00000001 , 0x00000363 
+ 00018694  0x0000290f jam  0x00000000 , 0x000043ff 
+ 00018695  0x00002910 jam  0x00000000 , 0x0000009f 
+ 00018696  0x00002911 jam  0x00000000 , 0x0000456a 
+ 00018697  0x00002912 jam  0x00000000 , 0x0000456b 
+ 00018698  0x00002913 fetch  0x00000002 , 0x00000390 
+ 00018699  0x00002914 store  0x00000002 , 0x00004561 
+ 00018700  0x00002915 fetch  0x00000002 , 0x00000364 
+ 00018701  0x00002916 mul32  0x0000003f , 0x00000005 , 0x0000003f 
+ 00018702  0x00002917 rshift4  0x0000003f , 0x0000003f 
+ 00018703  0x00002918 store  0x00000002 , 0x00000390 
+ 00018704  0x00002919 branch  0x000048e2 
+ 00018705  0x00002920 call  0x00004976 
+ 00018706  0x00002921 call  0x00004b91 
+ 00018707  0x00002922 call  0x0000517c 
+ 00018708  0x00002923 branch  0x0000497d 
+ 00018709  0x00002926 set1  0x00000025 , 0x00000000 
+ 00018710  0x00002927 bpatch  0x00000001 , 0x00004020 
+ 00018711  0x00002928 call  0x00004976 
+ 00018712  0x00002929 call  0x00003d67 
+ 00018713  0x0000292a fetch  0x00000001 , 0x00000363 
+ 00018714  0x0000292b beq  0x00000003 , 0x0000491c 
+ 00018715  0x0000292c branch  0x00004932 
+ 00018716  0x00002933 set1  0x00000025 , 0x00000000 
+ 00018717  0x00002934 bpatch  0x00000002 , 0x00004020 
+ 00018718  0x00002935 enable  0x00000029 
+ 00018719  0x00002936 call  0x00005170 
+ 00018720  0x00002937 branch  0x0000492f , 0x00000002 
+ 00018721  0x00002938 call  0x00003d45 
+ 00018722  0x00002939 call  0x000049c4 
+ 00018723  0x0000293a call  0x00004bd8 
+ 00018724  0x0000293b disable  0x0000002d 
+ 00018725  0x0000293c call  0x00004a5a 
+ 00018726  0x0000293d nrtn  0x0000002d 
+ 00018727  0x0000293e set1  0x00000025 , 0x00000000 
+ 00018728  0x0000293f bpatch  0x00000003 , 0x00004020 
+ 00018729  0x00002940 fetch  0x00000001 , 0x00000005 
+ 00018730  0x00002941 increase  0x00000001 , 0x0000003f 
+ 00018731  0x00002942 store  0x00000001 , 0x00000005 
+ 00018732  0x00002943 call  0x00004b51 
+ 00018733  0x00002944 disable  0x00000029 
+ 00018734  0x00002945 rtn 
+ 00018735  0x00002948 call  0x0000495b 
+ 00018736  0x00002949 disable  0x00000029 
+ 00018737  0x0000294a rtn 
+ 00018738  0x00002950 set1  0x00000025 , 0x00000000 
+ 00018739  0x00002951 bpatch  0x00000004 , 0x00004020 
+ 00018740  0x00002952 call  0x00007acf 
+ 00018741  0x00002953 call  0x000052a9 
+ 00018742  0x00002954 disable  0x0000002e 
+ 00018743  0x00002955 call  0x00005170 
+ 00018744  0x00002956 branch  0x0000495b , 0x00000002 
+ 00018745  0x00002957 call  0x00003d45 
+ 00018746  0x00002958 call  0x000049c4 
+ 00018747  0x00002959 call  0x00004a20 
+ 00018748  0x0000295a nbranch  0x0000494f , 0x00000018 
+ 00018749  0x0000295b call  0x00004968 
+ 00018750  0x0000295c branch  0x00004940 , 0x0000002d 
+ 00018751  0x0000295d branch  0x00004949 
+ 00018752  0x00002961 set1  0x00000025 , 0x00000000 
+ 00018753  0x00002962 bpatch  0x00000005 , 0x00004020 
+ 00018754  0x00002963 call  0x00004968 
+ 00018755  0x00002964 call  0x00004b51 
+ 00018756  0x00002965 call  0x00004bd8 
+ 00018757  0x00002966 fetch  0x00000001 , 0x00000302 
+ 00018758  0x00002967 bbit1  0x00000004 , 0x00004955 
+ 00018759  0x00002968 call  0x00004bd0 
+ 00018760  0x00002969 nbranch  0x00004955 , 0x00000034 
+ 00018761  0x0000296b set1  0x00000025 , 0x00000000 
+ 00018762  0x0000296c bpatch  0x00000006 , 0x00004020 
+ 00018763  0x0000296d call  0x00004a63 
+ 00018764  0x0000296f call  0x00007d9e 
+ 00018765  0x00002970 fetch  0x00000001 , 0x00000385 
+ 00018766  0x00002971 bbit1  0x00000003 , 0x0000495b 
+ 00018767  0x00002973 set1  0x00000025 , 0x00000000 
+ 00018768  0x00002974 bpatch  0x00000007 , 0x00004020 
+ 00018769  0x00002975 call  0x00005287 
+ 00018770  0x00002976 call  0x00004b43 
+ 00018771  0x00002977 call  0x00004b22 
+ 00018772  0x00002978 branch  0x000038d1 
+ 00018773  0x0000297b set1  0x00000025 , 0x00000000 
+ 00018774  0x0000297c bpatch  0x00000008 , 0x00004021 
+ 00018775  0x0000297d enable  0x0000002e 
+ 00018776  0x0000297e call  0x00004a5a 
+ 00018777  0x0000297f branch  0x00004940 , 0x0000002d 
+ 00018778  0x00002980 branch  0x0000494c 
+ 00018779  0x00002986 set1  0x00000025 , 0x00000000 
+ 00018780  0x00002987 bpatch  0x00000009 , 0x00004021 
+ 00018781  0x00002989 call  0x00004962 
+ 00018782  0x0000298a call  0x00003e17 
+ 00018783  0x0000298b call  0x00007a96 
+ 00018784  0x0000298c jam  0x00000015 , 0x000009bd 
+ 00018785  0x0000298d branch  0x00007d86 
+ 00018786  0x00002990 jam  0x00000000 , 0x00000378 
+ 00018787  0x00002991 jam  0x00000000 , 0x00000363 
+ 00018788  0x00002992 jam  0x00000000 , 0x00000362 
+ 00018789  0x00002993 jam  0x00000000 , 0x0000456b 
+ 00018790  0x00002994 jam  0x00000000 , 0x0000456a 
+ 00018791  0x00002995 rtn 
+ 00018792  0x00002998 set1  0x00000025 , 0x00000000 
+ 00018793  0x00002999 bpatch  0x0000000a , 0x00004021 
+ 00018794  0x0000299a fetch  0x00000001 , 0x00000005 
+ 00018795  0x0000299b increase  0x00000001 , 0x0000003f 
+ 00018796  0x0000299c store  0x00000001 , 0x00000005 
+ 00018797  0x0000299d fetch  0x00000001 , 0x00000362 
+ 00018798  0x0000299e rtnbit1  0x00000003 
+ 00018799  0x0000299f set1  0x00000003 
+ 00018800  0x000029a0 store  0x00000001 , 0x00000362 
+ 00018801  0x000029a1 fetch  0x00000002 , 0x00004561 
+ 00018802  0x000029a2 store  0x00000002 , 0x00000390 
+ 00018803  0x000029a3 setarg  0x00000000 
+ 00018804  0x000029a4 store  0x00000004 , 0x00004596 
+ 00018805  0x000029a5 rtn 
+ 00018806  0x000029ab set1  0x00000025 , 0x00000000 
+ 00018807  0x000029ac bpatch  0x0000000b , 0x00004021 
+ 00018808  0x000029ad hjam  0x00000036 , 0x0000090f 
+ 00018809  0x000029ae hjam  0x0000005f , 0x0000090b 
+ 00018810  0x000029af enable  0x00000036 
+ 00018811  0x000029b0 hjam  0x00000007 , 0x00008914 
+ 00018812  0x000029b1 branch  0x00003d45 
+ 00018813  0x000029b4 set1  0x00000025 , 0x00000000 
+ 00018814  0x000029b5 bpatch  0x0000000c , 0x00004021 
+ 00018815  0x000029b6 hjam  0x0000002e , 0x0000090f 
+ 00018816  0x000029b7 hjam  0x000000ff , 0x0000090b 
+ 00018817  0x000029b8 disable  0x00000036 
+ 00018818  0x000029b9 hjam  0x00000003 , 0x00008914 
+ 00018819  0x000029ba arg  0x00000000 , 0x0000001b 
+ 00018820  0x000029bb rtn 
+ 00018821  0x000029be disable  0x00000009 
+ 00018822  0x000029bf disable  0x00000007 
+ 00018823  0x000029c0 fetch  0x00000003 , 0x0000038a 
+ 00018824  0x000029c1 iforce  0x0000000f 
+ 00018825  0x000029c2 fetch  0x00000001 , 0x00000016 
+ 00018826  0x000029c3 reverse  0x0000003f , 0x00000002 
+ 00018827  0x000029c4 set1  0x00000001 , 0x00000002 
+ 00018828  0x000029c5 rshift  0x00000002 , 0x0000000e 
+ 00018829  0x000029c6 rtn 
+ 00018830  0x000029ca call  0x00004996 
+ 00018831  0x000029cb call  0x000039b9 
+ 00018832  0x000029cc setarg  0x00000500 
+ 00018833  0x000029cd call  0x00003b35 
+ 00018834  0x000029ce branch  0x000039bf 
+ 00018835  0x000029d1 branch  0x000039d0 , 0x0000002d 
+ 00018836  0x000029d3 call  0x00004996 
+ 00018837  0x000029d4 branch  0x000039c9 
+ 00018838  0x000029d6 set1  0x00000025 , 0x00000000 
+ 00018839  0x000029d7 bpatch  0x0000000d , 0x00004021 
+ 00018840  0x000029d8 call  0x000039b1 
+ 00018841  0x000029d9 fetch  0x00000001 , 0x000003b0 
+ 00018842  0x000029da nbranch  0x000049aa , 0x00000034 
+ 00018843  0x000029db fetch  0x00000001 , 0x00000016 
+ 00018844  0x000029dc sub  0x0000003f , 0x00000024 , 0x0000003e 
+ 00018845  0x000029dd branch  0x000049a4 , 0x00000002 
+ 00018846  0x000029de force  0x00000000 , 0x00000002 
+ 00018847  0x000029df rtneq  0x00000025 
+ 00018848  0x000029e0 force  0x00000018 , 0x00000002 
+ 00018849  0x000029e1 rtneq  0x00000026 
+ 00018850  0x000029e2 force  0x0000004e , 0x00000002 
+ 00018851  0x000029e3 rtn 
+ 00018852  0x000029e6 sub  0x0000003f , 0x0000000a , 0x0000003e 
+ 00018853  0x000029e7 branch  0x000049a7 , 0x00000002 
+ 00018854  0x000029e8 increase  0x00000001 , 0x0000003f 
+ 00018855  0x000029eb lshift  0x0000003f , 0x0000003f 
+ 00018856  0x000029ec add  0x0000003f , 0x00000002 , 0x00000002 
+ 00018857  0x000029ed rtn 
+ 00018858  0x000029f0 fetch  0x00000001 , 0x00000016 
+ 00018859  0x000029f1 lshift  0x0000003f , 0x00000002 
+ 00018860  0x000029f2 rtn 
+ 00018861  0x000029f5 arg  0x000001f4 , 0x00000002 
+ 00018862  0x000029f6 rtn  0x00000034 
+ 00018863  0x000029f7 arg  0x000000fa , 0x00000002 
+ 00018864  0x000029f8 rtneq  0x00000001 
+ 00018865  0x000029f9 arg  0x00000096 , 0x00000002 
+ 00018866  0x000029fa rtneq  0x00000002 
+ 00018867  0x000029fb arg  0x00000064 , 0x00000002 
+ 00018868  0x000029fc rtneq  0x00000003 
+ 00018869  0x000029fd arg  0x0000004b , 0x00000002 
+ 00018870  0x000029fe rtneq  0x00000004 
+ 00018871  0x000029ff arg  0x00000032 , 0x00000002 
+ 00018872  0x00002a00 rtneq  0x00000005 
+ 00018873  0x00002a01 arg  0x00000028 , 0x00000002 
+ 00018874  0x00002a02 rtneq  0x00000006 
+ 00018875  0x00002a03 arg  0x00000014 , 0x00000002 
+ 00018876  0x00002a04 rtn 
+ 00018877  0x00002a09 setarg  0x008e89be 
+ 00018878  0x00002a0a lshift8  0x0000003f , 0x0000003f 
+ 00018879  0x00002a0b or_into  0x000000d6 , 0x0000003f 
+ 00018880  0x00002a0c iforce  0x00000009 
+ 00018881  0x00002a0d setarg  0x00555555 
+ 00018882  0x00002a0e store  0x00000003 , 0x0000038a 
+ 00018883  0x00002a0f rtn 
+ 00018884  0x00002a12 set1  0x00000025 , 0x00000000 
+ 00018885  0x00002a13 bpatch  0x0000000e , 0x00004021 
+ 00018886  0x00002a14 enable  0x00000010 
+ 00018887  0x00002a15 fetch  0x00000004 , 0x00000386 
+ 00018888  0x00002a16 iforce  0x00000009 
+ 00018889  0x00002a17 call  0x000049fb 
+ 00018890  0x00002a18 setarg  0x00000200 
+ 00018891  0x00002a19 branch  0x000049ce , 0x00000029 
+ 00018892  0x00002a1a fetch  0x00000002 , 0x00000370 
+ 00018893  0x00002a1b rshift  0x0000003f , 0x0000003f 
+ 00018894  0x00002a1d arg  0x00000500 , 0x00000002 
+ 00018895  0x00002a1e iadd  0x00000002 , 0x0000003f 
+ 00018896  0x00002a1f call  0x00003abd 
+ 00018897  0x00002a20 deposit  0x0000001a 
+ 00018898  0x00002a21 store  0x00000006 , 0x000003b5 
+ 00018899  0x00002a22 rtn 
+ 00018900  0x00002a25 set1  0x00000025 , 0x00000000 
+ 00018901  0x00002a26 bpatch  0x0000000f , 0x00004021 
+ 00018902  0x00002a27 fetch  0x00000001 , 0x00000016 
+ 00018903  0x00002a28 increase  0x00000001 , 0x0000003f 
+ 00018904  0x00002a29 store  0x00000001 , 0x00000016 
+ 00018905  0x00002a2a rtnne  0x00000028 
+ 00018906  0x00002a2b jam  0x00000025 , 0x00000016 
+ 00018907  0x00002a2c rtn 
+ 00018908  0x00002a2f set1  0x00000025 , 0x00000000 
+ 00018909  0x00002a30 bpatch  0x00000010 , 0x00004022 
+ 00018910  0x00002a31 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00018911  0x00002a32 ifetch  0x00000001 , 0x00000006 
+ 00018912  0x00002a33 rtnbit0  0x00000000 
+ 00018913  0x00002a34 add  0x00000011 , 0x0000001a , 0x00000005 
+ 00018914  0x00002a35 ifetch  0x00000002 , 0x00000005 
+ 00018915  0x00002a36 increase  0x00000001 , 0x0000003f 
+ 00018916  0x00002a37 istore  0x00000002 , 0x00000005 
+ 00018917  0x00002a38 add  0x00000011 , 0x00000019 , 0x00000006 
+ 00018918  0x00002a39 ifetch  0x00000001 , 0x00000006 
+ 00018919  0x00002a3a add  0x00000011 , 0x00000018 , 0x00000005 
+ 00018920  0x00002a3b ifetcht  0x00000001 , 0x00000005 
+ 00018921  0x00002a3c iadd  0x00000002 , 0x0000003f 
+ 00018922  0x00002a3d sub  0x0000003f , 0x00000024 , 0x0000003e 
+ 00018923  0x00002a3e branch  0x000049ed , 0x00000002 
+ 00018924  0x00002a3f increase  0xffffffdb , 0x0000003f 
+ 00018925  0x00002a41 istore  0x00000001 , 0x00000005 
+ 00018926  0x00002a42 rtn 
+ 00018927  0x00002a46 set1  0x00000025 , 0x00000000 
+ 00018928  0x00002a47 bpatch  0x00000011 , 0x00004022 
+ 00018929  0x00002a48 fetch  0x00000005 , 0x00000392 
+ 00018930  0x00002a49 force  0x00000000 , 0x00000002 
+ 00018931  0x00002a4a force  0x00000025 , 0x00000039 
+ 00018932  0x00002a4c bbit0  0x00000000 , 0x000049f6 
+ 00018933  0x00002a4d increase  0x00000001 , 0x00000002 
+ 00018934  0x00002a4f rshift  0x0000003f , 0x0000003f 
+ 00018935  0x00002a50 loop  0x000049f4 
+ 00018936  0x00002a51 add  0x00000002 , 0xffffffff , 0x0000003f 
+ 00018937  0x00002a52 store  0x00000001 , 0x00000384 
+ 00018938  0x00002a53 rtn 
+ 00018939  0x00002a56 set1  0x00000025 , 0x00000000 
+ 00018940  0x00002a57 bpatch  0x00000012 , 0x00004022 
+ 00018941  0x00002a58 fetch  0x00000001 , 0x0000037a 
+ 00018942  0x00002a59 iforce  0x00000007 
+ 00018943  0x00002a5a fetcht  0x00000005 , 0x00000392 
+ 00018944  0x00002a5b qisolate1  0x00000002 
+ 00018945  0x00002a5c branch  0x00004a13 , 0x00000001 
+ 00018946  0x00002a5e set1  0x00000025 , 0x00000000 
+ 00018947  0x00002a5f bpatch  0x00000013 , 0x00004022 
+ 00018948  0x00002a60 fetch  0x00000001 , 0x00000384 
+ 00018949  0x00002a61 isub  0x00000007 , 0x0000003f 
+ 00018950  0x00002a62 branch  0x00004a09 , 0x00000002 
+ 00018951  0x00002a63 sub  0x0000003f , 0xffffffff , 0x00000007 
+ 00018952  0x00002a64 branch  0x00004a02 
+ 00018953  0x00002a66 copy  0x00000007 , 0x00000039 
+ 00018954  0x00002a67 force  0x00000000 , 0x00000007 
+ 00018955  0x00002a69 qisolate1  0x00000002 
+ 00018956  0x00002a6a branch  0x00004a0e , 0x00000001 
+ 00018957  0x00002a6b increase  0x00000001 , 0x00000039 
+ 00018958  0x00002a6d deposit  0x00000039 
+ 00018959  0x00002a6e branch  0x00004a13 , 0x00000034 
+ 00018960  0x00002a6f increase  0x00000001 , 0x00000007 
+ 00018961  0x00002a70 increase  0xffffffff , 0x00000039 
+ 00018962  0x00002a71 branch  0x00004a0b 
+ 00018963  0x00002a73 deposit  0x00000007 
+ 00018964  0x00002a74 store  0x00000001 , 0x00000016 
+ 00018965  0x00002a75 rtn 
+ 00018966  0x00002a79 branch  0x00004a19 , 0x00000029 
+ 00018967  0x00002a7a until  0x0000003e , 0x00000003 
+ 00018968  0x00002a7b rtn 
+ 00018969  0x00002a7e arg  0x00000ea0 , 0x0000000b 
+ 00018970  0x00002a7f until  0x00000023 , 0x00000026 
+ 00018971  0x00002a80 rtn 
+ 00018972  0x00002a83 disable  0x00000010 
+ 00018973  0x00002a84 fetch  0x00000002 , 0x000043fc 
+ 00018974  0x00002a85 copy  0x0000003f , 0x0000000b 
+ 00018975  0x00002a86 branch  0x00004a26 
+ 00018976  0x00002a8a set1  0x00000025 , 0x00000000 
+ 00018977  0x00002a8b bpatch  0x00000014 , 0x00004022 
+ 00018978  0x00002a8c enable  0x00000010 
+ 00018979  0x00002a8d fetch  0x00000002 , 0x00000370 
+ 00018980  0x00002a8e fetcht  0x00000004 , 0x00004596 
+ 00018981  0x00002a8f iadd  0x00000002 , 0x0000000b 
+ 00018982  0x00002a91 call  0x0000498e 
+ 00018983  0x00002a93 set1  0x00000025 , 0x00000000 
+ 00018984  0x00002a94 bpatch  0x00000015 , 0x00004022 
+ 00018985  0x00002a95 call  0x00004985 
+ 00018986  0x00002a96 disable  0x0000002d 
+ 00018987  0x00002a97 enable  0x0000000d 
+ 00018988  0x00002a98 enable  0x00000021 
+ 00018989  0x00002a99 disable  0x00000020 
+ 00018990  0x00002a9a copy  0x0000000b , 0x0000001b 
+ 00018991  0x00002a9b correlate  0x0000003e , 0x00000003 
+ 00018992  0x00002a9c branch  0x00004a33 , 0x0000002e 
+ 00018993  0x00002a9d copy  0x0000001a , 0x00000002 
+ 00018994  0x00002a9e storet  0x00000006 , 0x00000099 
+ 00018995  0x00002aa0 nbranch  0x000036c6 , 0x00000018 
+ 00018996  0x00002aa1 branch  0x00004a3a , 0x0000002e 
+ 00018997  0x00002aa2 arg  0x000001e0 , 0x00000029 
+ 00018998  0x00002aa3 copy  0x00000021 , 0x00000028 
+ 00018999  0x00002aa4 fetch  0x00000001 , 0x00000362 
+ 00019000  0x00002aa5 bbit0  0x00000003 , 0x00004a3a 
+ 00019001  0x00002aa6 call  0x00003bed , 0x0000002b 
+ 00019002  0x00002aa8 set1  0x00000025 , 0x00000000 
+ 00019003  0x00002aa9 bpatch  0x00000016 , 0x00004022 
+ 00019004  0x00002aaa call  0x00003a50 
+ 00019005  0x00002aab enable  0x00000007 
+ 00019006  0x00002aac enable  0x00000009 
+ 00019007  0x00002aad parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00019008  0x00002aae rshift3  0x0000000c , 0x0000003f 
+ 00019009  0x00002aaf store  0x00000001 , 0x00000302 
+ 00019010  0x00002ab0 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00019011  0x00002ab1 rshift3  0x0000000c , 0x0000003f 
+ 00019012  0x00002ab2 istore  0x00000001 , 0x00000005 
+ 00019013  0x00002ab3 and  0x0000003f , 0x0000003f , 0x00000039 
+ 00019014  0x00002ab4 branch  0x00004a4b , 0x00000005 
+ 00019015  0x00002ab7 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00019016  0x00002ab8 rshift3  0x0000000c , 0x0000003f 
+ 00019017  0x00002ab9 istore  0x00000001 , 0x00000005 
+ 00019018  0x00002aba loop  0x00004a47 
+ 00019019  0x00002abd set1  0x00000025 , 0x00000000 
+ 00019020  0x00002abe bpatch  0x00000017 , 0x00004022 
+ 00019021  0x00002abf parse  0x00000003 , 0x00000000 , 0x00000018 
+ 00019022  0x00002ac0 enable  0x00000010 
+ 00019023  0x00002ac1 arg  0x00000664 , 0x0000001b 
+ 00019024  0x00002ac2 rshift32  0x0000003f , 0x0000003f 
+ 00019025  0x00002ac3 rshift16  0x0000003f , 0x0000003f 
+ 00019026  0x00002ac4 istore  0x00000003 , 0x00000005 
+ 00019027  0x00002ac5 branch  0x000036c6 , 0x00000006 
+ 00019028  0x00002ac6 enable  0x0000002d 
+ 00019029  0x00002ac7 fetch  0x00000001 , 0x00000017 
+ 00019030  0x00002ac8 add  0x0000003f , 0x00000000 , 0x00000011 
+ 00019031  0x00002ac9 call  0x00003a13 
+ 00019032  0x00002aca disable  0x0000000d 
+ 00019033  0x00002acb branch  0x000039b1 
+ 00019034  0x00002ace set1  0x00000025 , 0x00000000 
+ 00019035  0x00002acf bpatch  0x00000018 , 0x00004023 
+ 00019036  0x00002ad0 call  0x00004a65 
+ 00019037  0x00002ad1 fetcht  0x00000001 , 0x00000017 
+ 00019038  0x00002ad2 call  0x000039b9 
+ 00019039  0x00002ad3 call  0x000039bf 
+ 00019040  0x00002ad4 enable  0x00000010 
+ 00019041  0x00002ad5 arg  0x0000157c , 0x0000000b 
+ 00019042  0x00002ad6 branch  0x00004a27 
+ 00019043  0x00002ad9 call  0x00004a65 
+ 00019044  0x00002ada branch  0x000036c6 
+ 00019045  0x00002add set1  0x00000025 , 0x00000000 
+ 00019046  0x00002ade bpatch  0x00000019 , 0x00004023 
+ 00019047  0x00002adf call  0x00004985 
+ 00019048  0x00002ae0 call  0x00004993 
+ 00019049  0x00002ae1 call  0x00004a6d 
+ 00019050  0x00002ae2 fetch  0x00000001 , 0x00004132 
+ 00019051  0x00002ae3 beq  0x0000000a , 0x00005d8e 
+ 00019052  0x00002ae4 rtn 
+ 00019053  0x00002ae6 set1  0x00000000 , 0x00000015 
+ 00019054  0x00002ae7 enable  0x0000001d 
+ 00019055  0x00002ae8 enable  0x00000020 
+ 00019056  0x00002ae9 disable  0x00000021 
+ 00019057  0x00002aea call  0x00004a16 
+ 00019058  0x00002aeb rshift16  0x00000009 , 0x0000003f 
+ 00019059  0x00002aec rshift8  0x0000003f , 0x0000003f 
+ 00019060  0x00002aed rshift4  0x0000003f , 0x0000003f 
+ 00019061  0x00002aee inject  0x00000003 , 0x00000028 
+ 00019062  0x00002aef enable  0x00000007 
+ 00019063  0x00002af0 enable  0x00000009 
+ 00019064  0x00002af1 set1  0x00000025 , 0x00000000 
+ 00019065  0x00002af2 bpatch  0x0000001a , 0x00004023 
+ 00019066  0x00002af3 fetch  0x00000001 , 0x00004465 
+ 00019067  0x00002af4 inject  0x00000003 , 0x00000008 
+ 00019068  0x00002af5 ifetch  0x00000001 , 0x00000006 
+ 00019069  0x00002af6 and  0x0000003f , 0x0000003f , 0x00000039 
+ 00019070  0x00002af7 inject  0x00000003 , 0x00000008 
+ 00019071  0x00002af8 branch  0x00004a83 , 0x00000005 
+ 00019072  0x00002afa ifetch  0x00000001 , 0x00000006 
+ 00019073  0x00002afb inject  0x00000003 , 0x00000008 
+ 00019074  0x00002afc loop  0x00004a80 
+ 00019075  0x00002aff enable  0x00000008 
+ 00019076  0x00002b00 inject  0x00000003 , 0x00000018 
+ 00019077  0x00002b01 disable  0x00000008 
+ 00019078  0x00002b02 until  0x0000003e , 0x00000027 
+ 00019079  0x00002b03 nop  0x00000064 
+ 00019080  0x00002b04 disable  0x0000001d 
+ 00019081  0x00002b05 rtn 
+ 00019082  0x00002b08 set1  0x00000025 , 0x00000000 
+ 00019083  0x00002b09 bpatch  0x0000001b , 0x00004023 
+ 00019084  0x00002b0a fetch  0x00000001 , 0x00004520 
+ 00019085  0x00002b0b beq  0x00000001 , 0x00004a9b 
+ 00019086  0x00002b0c fetch  0x00000001 , 0x00004521 
+ 00019087  0x00002b0d lshift4  0x0000003f , 0x0000003f 
+ 00019088  0x00002b0e lshift2  0x0000003f , 0x0000003f 
+ 00019089  0x00002b0f store  0x00000001 , 0x00004465 
+ 00019090  0x00002b10 fetcht  0x00000001 , 0x00004400 
+ 00019091  0x00002b11 add  0x00000002 , 0x00000006 , 0x0000003f 
+ 00019092  0x00002b12 store  0x00000001 , 0x00004466 
+ 00019093  0x00002b13 fetch  0x00000006 , 0x0000453e 
+ 00019094  0x00002b14 store  0x00000006 , 0x00004467 
+ 00019095  0x00002b15 copy  0x00000002 , 0x00000039 
+ 00019096  0x00002b16 arg  0x00004401 , 0x00000006 
+ 00019097  0x00002b17 call  0x00007ec0 
+ 00019098  0x00002b18 branch  0x00004aab 
+ 00019099  0x00002b1a fetcht  0x00000002 , 0x000044f8 
+ 00019100  0x00002b1b call  0x00004f6a 
+ 00019101  0x00002b1c copy  0x00000011 , 0x00000005 
+ 00019102  0x00002b1d setarg  0x00000001 
+ 00019103  0x00002b1e istore  0x00000001 , 0x00000005 
+ 00019104  0x00002b1f fetch  0x00000001 , 0x00004522 
+ 00019105  0x00002b20 lshift4  0x0000003f , 0x0000003f 
+ 00019106  0x00002b21 lshift2  0x0000003f , 0x0000003f 
+ 00019107  0x00002b22 increase  0x00000001 , 0x0000003f 
+ 00019108  0x00002b23 store  0x00000001 , 0x00004465 
+ 00019109  0x00002b24 setarg  0x0000000c 
+ 00019110  0x00002b25 store  0x00000001 , 0x00004466 
+ 00019111  0x00002b26 fetch  0x00000006 , 0x0000453e 
+ 00019112  0x00002b27 store  0x00000006 , 0x00004467 
+ 00019113  0x00002b28 fetch  0x00000006 , 0x00004273 
+ 00019114  0x00002b29 istore  0x00000006 , 0x00000005 
+ 00019115  0x00002b2b set1  0x00000025 , 0x00000000 
+ 00019116  0x00002b2c bpatch  0x0000001c , 0x00004023 
+ 00019117  0x00002b2d fetch  0x00000001 , 0x00000000 
+ 00019118  0x00002b2e increase  0x00000001 , 0x0000003f 
+ 00019119  0x00002b2f store  0x00000001 , 0x00000000 
+ 00019120  0x00002b30 arg  0x00000708 , 0x0000001b 
+ 00019121  0x00002b31 disable  0x0000002d 
+ 00019122  0x00002b32 branch  0x00004a5a 
+ 00019123  0x00002b35 set1  0x00000025 , 0x00000000 
+ 00019124  0x00002b36 bpatch  0x0000001d , 0x00004023 
+ 00019125  0x00002b37 fetch  0x00000001 , 0x0000453b 
+ 00019126  0x00002b38 rtnne  0x00000001 , 0x0000003f 
+ 00019127  0x00002b39 fetch  0x00000001 , 0x00000000 
+ 00019128  0x00002b3a increase  0x00000001 , 0x0000003f 
+ 00019129  0x00002b3b store  0x00000001 , 0x00000000 
+ 00019130  0x00002b3c arg  0x00000c03 , 0x00000002 
+ 00019131  0x00002b3d fetch  0x00000001 , 0x0000453c 
+ 00019132  0x00002b3e nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00019133  0x00002b3f copy  0x00000011 , 0x0000003f 
+ 00019134  0x00002b40 nsetflag  0x00000034 , 0x00000007 , 0x00000002 
+ 00019135  0x00002b41 storet  0x00000002 , 0x00004465 
+ 00019136  0x00002b42 fetch  0x00000006 , 0x0000453e 
+ 00019137  0x00002b43 istore  0x00000006 , 0x00000005 
+ 00019138  0x00002b44 fetch  0x00000006 , 0x00000372 
+ 00019139  0x00002b45 istore  0x00000006 , 0x00000005 
+ 00019140  0x00002b46 branch  0x00004a5a 
+ 00019141  0x00002b4a set1  0x00000025 , 0x00000000 
+ 00019142  0x00002b4b bpatch  0x0000001e , 0x00004023 
+ 00019143  0x00002b4c arg  0x00000004 , 0x00000002 
+ 00019144  0x00002b4d fetch  0x00000001 , 0x00004521 
+ 00019145  0x00002b4e nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00019146  0x00002b4f storet  0x00000001 , 0x00004465 
+ 00019147  0x00002b50 fetcht  0x00000001 , 0x00004420 
+ 00019148  0x00002b51 add  0x00000002 , 0x00000006 , 0x0000003f 
+ 00019149  0x00002b52 store  0x00000001 , 0x00004466 
+ 00019150  0x00002b53 fetch  0x00000006 , 0x0000453e 
+ 00019151  0x00002b54 store  0x00000006 , 0x00004467 
+ 00019152  0x00002b55 arg  0x00004421 , 0x00000006 
+ 00019153  0x00002b56 copy  0x00000002 , 0x00000039 
+ 00019154  0x00002b57 call  0x00007ec0 
+ 00019155  0x00002b58 branch  0x00004a63 
+ 00019156  0x00002b5c set1  0x00000025 , 0x00000000 
+ 00019157  0x00002b5d bpatch  0x0000001f , 0x00004023 
+ 00019158  0x00002b5e force  0xffffffff , 0x0000003f 
+ 00019159  0x00002b5f setsect  0x00000002 , 0x00000001 
+ 00019160  0x00002b60 store  0x00000005 , 0x00000392 
+ 00019161  0x00002b61 call  0x000049ef 
+ 00019162  0x00002b62 force  0x00000004 , 0x00000039 
+ 00019163  0x00002b63 arg  0x00000386 , 0x00000005 
+ 00019164  0x00002b64 call  0x00005918 
+ 00019165  0x00002b65 fetch  0x00000002 , 0x00004539 
+ 00019166  0x00002b66 store  0x00000002 , 0x00000390 
+ 00019167  0x00002b68 random  0x0000003f 
+ 00019168  0x00002b69 and_into  0x0000000f , 0x0000003f 
+ 00019169  0x00002b6a sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00019170  0x00002b6b branch  0x00004adf , 0x00000002 
+ 00019171  0x00002b6c store  0x00000001 , 0x0000037b 
+ 00019172  0x00002b6d store  0x00000001 , 0x0000060a 
+ 00019173  0x00002b6e set1  0x00000025 , 0x00000000 
+ 00019174  0x00002b6f bpatch  0x00000020 , 0x00004024 
+ 00019175  0x00002b70 fetcht  0x00000002 , 0x000043f7 
+ 00019176  0x00002b71 storet  0x00000002 , 0x00000364 
+ 00019177  0x00002b72 copy  0x00000002 , 0x00000013 
+ 00019178  0x00002b73 add  0x00000022 , 0x00000007 , 0x0000003f 
+ 00019179  0x00002b74 idiv  0x00000013 
+ 00019180  0x00002b75 call  0x00007f53 
+ 00019181  0x00002b76 remainder  0x00000011 
+ 00019182  0x00002b77 isub  0x00000011 , 0x0000003f 
+ 00019183  0x00002b78 iadd  0x00000013 , 0x0000003f 
+ 00019184  0x00002b79 fetcht  0x00000002 , 0x000043f5 
+ 00019185  0x00002b7a iadd  0x00000002 , 0x0000003f 
+ 00019186  0x00002b7b store  0x00000004 , 0x00000366 
+ 00019187  0x00002b7c isub  0x00000022 , 0x00000011 
+ 00019188  0x00002b7d increase  0xfffffffa , 0x00000011 
+ 00019189  0x00002b7e arg  0x00002205 , 0x00000012 
+ 00019190  0x00002b7f fetch  0x00000001 , 0x00004532 
+ 00019191  0x00002b80 nsetflag  0x00000034 , 0x00000006 , 0x00000012 
+ 00019192  0x00002b81 fetch  0x00000001 , 0x0000452b 
+ 00019193  0x00002b82 nsetflag  0x00000034 , 0x00000007 , 0x00000012 
+ 00019194  0x00002b83 copy  0x00000012 , 0x0000003f 
+ 00019195  0x00002b84 store  0x00000002 , 0x00004465 
+ 00019196  0x00002b85 fetch  0x00000006 , 0x0000453e 
+ 00019197  0x00002b86 istore  0x00000006 , 0x00000005 
+ 00019198  0x00002b87 fetch  0x00000006 , 0x00000372 
+ 00019199  0x00002b88 istore  0x00000006 , 0x00000005 
+ 00019200  0x00002b89 fetch  0x00000004 , 0x00000386 
+ 00019201  0x00002b8a istore  0x00000004 , 0x00000005 
+ 00019202  0x00002b8b random  0x0000003f 
+ 00019203  0x00002b8c istore  0x00000002 , 0x00000005 
+ 00019204  0x00002b8d random  0x0000003f 
+ 00019205  0x00002b8e istore  0x00000001 , 0x00000005 
+ 00019206  0x00002b8f force  0x00000002 , 0x0000003f 
+ 00019207  0x00002b90 istore  0x00000001 , 0x00000005 
+ 00019208  0x00002b91 rshift2  0x00000011 , 0x0000003f 
+ 00019209  0x00002b92 istore  0x00000002 , 0x00000005 
+ 00019210  0x00002b93 rshift2  0x00000013 , 0x0000003f 
+ 00019211  0x00002b94 istore  0x00000002 , 0x00000005 
+ 00019212  0x00002b95 set1  0x00000025 , 0x00000000 
+ 00019213  0x00002b96 bpatch  0x00000021 , 0x00004024 
+ 00019214  0x00002b97 fetch  0x00000002 , 0x00004537 
+ 00019215  0x00002b98 istore  0x00000002 , 0x00000005 
+ 00019216  0x00002b99 fetch  0x00000002 , 0x00004539 
+ 00019217  0x00002b9a istore  0x00000002 , 0x00000005 
+ 00019218  0x00002b9b fetch  0x00000005 , 0x00000392 
+ 00019219  0x00002b9c istore  0x00000005 , 0x00000005 
+ 00019220  0x00002b9d fetch  0x00000001 , 0x0000037b 
+ 00019221  0x00002b9e arg  0x000000a0 , 0x00000002 
+ 00019222  0x00002b9f ior  0x00000002 , 0x0000003f 
+ 00019223  0x00002ba0 istore  0x00000001 , 0x00000005 
+ 00019224  0x00002ba1 call  0x00004a63 
+ 00019225  0x00002ba2 setarg  0x00004465 
+ 00019226  0x00002ba3 add  0x0000003f , 0x00000012 , 0x00000006 
+ 00019227  0x00002ba4 ifetch  0x00000003 , 0x00000006 
+ 00019228  0x00002ba5 store  0x00000003 , 0x0000038a 
+ 00019229  0x00002ba6 rtn 
+ 00019230  0x00002ba9 set1  0x00000025 , 0x00000000 
+ 00019231  0x00002baa bpatch  0x00000022 , 0x00004024 
+ 00019232  0x00002bab disable  0x00000029 
+ 00019233  0x00002bac branch  0x000049bd 
+ 00019234  0x00002bb1 fetch  0x00000001 , 0x00000362 
+ 00019235  0x00002bb2 rtnbit0  0x00000005 
+ 00019236  0x00002bb3 fetch  0x00000002 , 0x0000037c 
+ 00019237  0x00002bb4 fetcht  0x00000002 , 0x00000382 
+ 00019238  0x00002bb5 isub  0x00000002 , 0x0000003f 
+ 00019239  0x00002bb6 nrtn  0x00000002 
+ 00019240  0x00002bb7 set1  0x00000025 , 0x00000000 
+ 00019241  0x00002bb8 bpatch  0x00000023 , 0x00004024 
+ 00019242  0x00002bb9 fetch  0x00000001 , 0x00004132 
+ 00019243  0x00002bba bne  0x00000009 , 0x00004b2d 
+ 00019244  0x00002bbb jam  0x00000001 , 0x00004131 
+ 00019245  0x00002bbd fetch  0x00000001 , 0x00000362 
+ 00019246  0x00002bbe set0  0x00000005 , 0x0000003f 
+ 00019247  0x00002bbf set0  0x00000003 , 0x0000003f 
+ 00019248  0x00002bc0 store  0x00000001 , 0x00000362 
+ 00019249  0x00002bc1 fetch  0x00000004 , 0x00000366 
+ 00019250  0x00002bc2 fetcht  0x00000002 , 0x00000364 
+ 00019251  0x00002bc3 isub  0x00000002 , 0x00000011 
+ 00019252  0x00002bc4 set1  0x00000025 , 0x00000000 
+ 00019253  0x00002bc5 bpatch  0x00000024 , 0x00004024 
+ 00019254  0x00002bc6 fetch  0x00000001 , 0x0000445b 
+ 00019255  0x00002bc7 store  0x00000001 , 0x0000038d 
+ 00019256  0x00002bc8 ifetcht  0x00000002 , 0x00000006 
+ 00019257  0x00002bc9 ifetch  0x00000002 , 0x00000006 
+ 00019258  0x00002bca lshift2  0x0000003f , 0x0000003f 
+ 00019259  0x00002bcb store  0x00000002 , 0x00000364 
+ 00019260  0x00002bcc lshift2  0x00000002 , 0x00000002 
+ 00019261  0x00002bcd iadd  0x00000002 , 0x0000003f 
+ 00019262  0x00002bce ifetcht  0x00000004 , 0x00000006 
+ 00019263  0x00002bcf storet  0x00000004 , 0x0000038e 
+ 00019264  0x00002bd0 iadd  0x00000011 , 0x0000003f 
+ 00019265  0x00002bd1 store  0x00000004 , 0x00000366 
+ 00019266  0x00002bd2 branch  0x00005199 
+ 00019267  0x00002bd5 set1  0x00000025 , 0x00000000 
+ 00019268  0x00002bd6 bpatch  0x00000025 , 0x00004024 
+ 00019269  0x00002bd7 fetch  0x00000001 , 0x00000362 
+ 00019270  0x00002bd8 rtnbit0  0x00000006 
+ 00019271  0x00002bd9 fetch  0x00000002 , 0x0000037c 
+ 00019272  0x00002bda fetcht  0x00000002 , 0x00000382 
+ 00019273  0x00002bdb isub  0x00000002 , 0x0000003f 
+ 00019274  0x00002bdc nrtn  0x00000002 
+ 00019275  0x00002bdd fetch  0x00000001 , 0x00000362 
+ 00019276  0x00002bde set0  0x00000006 , 0x0000003f 
+ 00019277  0x00002bdf store  0x00000001 , 0x00000362 
+ 00019278  0x00002be0 fetch  0x00000005 , 0x00004456 
+ 00019279  0x00002be1 store  0x00000005 , 0x00000392 
+ 00019280  0x00002be2 branch  0x000049ef 
+ 00019281  0x00002be6 set1  0x00000025 , 0x00000000 
+ 00019282  0x00002be7 bpatch  0x00000026 , 0x00004024 
+ 00019283  0x00002be8 call  0x00005179 
+ 00019284  0x00002be9 call  0x00004b66 
+ 00019285  0x00002bea fetch  0x00000001 , 0x00000302 
+ 00019286  0x00002beb rshift  0x0000003f , 0x0000003f 
+ 00019287  0x00002bec ixor  0x00000002 , 0x0000003f 
+ 00019288  0x00002bed isolate1  0x00000002 , 0x0000003f 
+ 00019289  0x00002bee setflag  0x00000001 , 0x0000000f , 0x00000000 
+ 00019290  0x00002bef fetch  0x00000001 , 0x00000303 
+ 00019291  0x00002bf0 branch  0x00004b61 , 0x00000034 
+ 00019292  0x00002bf1 fetch  0x00000001 , 0x00000362 
+ 00019293  0x00002bf2 bbit0  0x00000004 , 0x00004b61 
+ 00019294  0x00002bf3 call  0x000071b6 
+ 00019295  0x00002bf4 call  0x00007122 
+ 00019296  0x00002bf5 nrtn  0x00000034 
+ 00019297  0x00002bf7 rtnmark1  0x0000000f 
+ 00019298  0x00002bf8 fetcht  0x00000001 , 0x00000379 
+ 00019299  0x00002bf9 setflip  0x00000002 , 0x00000002 
+ 00019300  0x00002bfa storet  0x00000001 , 0x00000379 
+ 00019301  0x00002bfb branch  0x00004fa5 
+ 00019302  0x00002bfe set1  0x00000025 , 0x00000000 
+ 00019303  0x00002bff bpatch  0x00000027 , 0x00004024 
+ 00019304  0x00002c00 fetcht  0x00000001 , 0x00000379 
+ 00019305  0x00002c01 isolate0  0x00000005 , 0x00000002 
+ 00019306  0x00002c02 rtn  0x00000001 
+ 00019307  0x00002c03 fetch  0x00000001 , 0x00000302 
+ 00019308  0x00002c04 lshift  0x0000003f , 0x0000003f 
+ 00019309  0x00002c05 ixor  0x00000002 , 0x0000003f 
+ 00019310  0x00002c06 rtnbit0  0x00000003 
+ 00019311  0x00002c07 set0  0x00000005 , 0x00000002 
+ 00019312  0x00002c08 setflip  0x00000003 , 0x00000002 
+ 00019313  0x00002c09 storet  0x00000001 , 0x00000379 
+ 00019314  0x00002c0a compare  0x00000003 , 0x00000002 , 0x00000003 
+ 00019315  0x00002c0b nrtn  0x00000001 
+ 00019316  0x00002c0c fetch  0x00000001 , 0x00004467 
+ 00019317  0x00002c0d beq  0x00000005 , 0x00004b79 
+ 00019318  0x00002c0e fetch  0x00000001 , 0x0000456b 
+ 00019319  0x00002c0f beq  0x00000002 , 0x00004b7d 
+ 00019320  0x00002c10 rtn 
+ 00019321  0x00002c14 fetch  0x00000001 , 0x00000362 
+ 00019322  0x00002c15 set1  0x00000004 , 0x0000003f 
+ 00019323  0x00002c16 store  0x00000001 , 0x00000362 
+ 00019324  0x00002c17 rtn 
+ 00019325  0x00002c1a set1  0x00000025 , 0x00000000 
+ 00019326  0x00002c1b bpatch  0x00000028 , 0x00004025 
+ 00019327  0x00002c1c jam  0x00000000 , 0x0000456b 
+ 00019328  0x00002c1d arg  0x00000000 , 0x0000003f 
+ 00019329  0x00002c1e store  0x00000004 , 0x00004496 
+ 00019330  0x00002c1f store  0x00000005 , 0x0000448c 
+ 00019331  0x00002c20 set1  0x00000027 , 0x0000003f 
+ 00019332  0x00002c21 store  0x00000005 , 0x00004491 
+ 00019333  0x00002c22 fetch  0x00000001 , 0x00000362 
+ 00019334  0x00002c23 set0  0x00000004 , 0x0000003f 
+ 00019335  0x00002c24 store  0x00000001 , 0x00000362 
+ 00019336  0x00002c25 rtn 
+ 00019337  0x00002c2a set1  0x00000025 , 0x00000000 
+ 00019338  0x00002c2b bpatch  0x00000029 , 0x00004025 
+ 00019339  0x00002c2c call  0x000049d4 
+ 00019340  0x00002c2d call  0x00004a1c 
+ 00019341  0x00002c2e fetch  0x00000001 , 0x00000001 
+ 00019342  0x00002c2f increase  0x00000001 , 0x0000003f 
+ 00019343  0x00002c30 store  0x00000001 , 0x00000001 
+ 00019344  0x00002c31 rtn 
+ 00019345  0x00002c34 set1  0x00000025 , 0x00000000 
+ 00019346  0x00002c35 bpatch  0x0000002a , 0x00004025 
+ 00019347  0x00002c36 fetch  0x00000001 , 0x000043f9 
+ 00019348  0x00002c37 rtnne  0x00000001 
+ 00019349  0x00002c38 arg  0x00000003 , 0x00000007 
+ 00019350  0x00002c39 call  0x00007ee2 
+ 00019351  0x00002c3a nrtn  0x00000034 
+ 00019352  0x00002c3b fetch  0x00000002 , 0x000043fa 
+ 00019353  0x00002c3c fetcht  0x00000002 , 0x000043fc 
+ 00019354  0x00002c3d isub  0x00000002 , 0x0000003f 
+ 00019355  0x00002c3e arg  0x00000003 , 0x00000007 
+ 00019356  0x00002c3f call  0x00007ed4 
+ 00019357  0x00002c40 disable  0x00000029 
+ 00019358  0x00002c41 call  0x00004b1e 
+ 00019359  0x00002c42 call  0x00004b89 
+ 00019360  0x00002c43 nrtn  0x0000002d 
+ 00019361  0x00002c44 set1  0x00000025 , 0x00000000 
+ 00019362  0x00002c45 bpatch  0x0000002b , 0x00004025 
+ 00019363  0x00002c46 fetch  0x00000006 , 0x00000304 
+ 00019364  0x00002c47 store  0x00000006 , 0x00000372 
+ 00019365  0x00002c4a fetch  0x00000001 , 0x00000002 
+ 00019366  0x00002c4b increase  0x00000001 , 0x0000003f 
+ 00019367  0x00002c4c store  0x00000001 , 0x00000002 
+ 00019368  0x00002c4d call  0x00004bb4 
+ 00019369  0x00002c4e rtn  0x00000029 
+ 00019370  0x00002c4f call  0x00004ab3 
+ 00019371  0x00002c50 nrtn  0x0000002d 
+ 00019372  0x00002c51 set1  0x00000025 , 0x00000000 
+ 00019373  0x00002c52 bpatch  0x0000002c , 0x00004025 
+ 00019374  0x00002c53 fetch  0x00000001 , 0x00000004 
+ 00019375  0x00002c54 increase  0x00000001 , 0x0000003f 
+ 00019376  0x00002c55 store  0x00000001 , 0x00000004 
+ 00019377  0x00002c56 fetch  0x00000009 , 0x0000030a 
+ 00019378  0x00002c57 store  0x00000009 , 0x00000100 
+ 00019379  0x00002c58 rtn 
+ 00019380  0x00002c5b set1  0x00000025 , 0x00000000 
+ 00019381  0x00002c5c bpatch  0x0000002d , 0x00004025 
+ 00019382  0x00002c5d fetch  0x00000001 , 0x000003bf 
+ 00019383  0x00002c5e rtnne  0x0000001b , 0x0000003f 
+ 00019384  0x00002c5f fetch  0x00000006 , 0x00000372 
+ 00019385  0x00002c60 fetcht  0x00000006 , 0x0000452c 
+ 00019386  0x00002c61 isub  0x00000002 , 0x0000003e 
+ 00019387  0x00002c62 nrtn  0x00000005 
+ 00019388  0x00002c63 call  0x0000327a 
+ 00019389  0x00002c64 nrtn  0x00000005 
+ 00019390  0x00002c65 call  0x00004ad4 
+ 00019391  0x00002c66 call  0x000048f5 
+ 00019392  0x00002c67 set1  0x00000025 , 0x00000000 
+ 00019393  0x00002c68 bpatch  0x0000002e , 0x00004025 
+ 00019394  0x00002c69 jam  0x00000000 , 0x00004271 
+ 00019395  0x00002c6a jam  0x00000000 , 0x00000399 
+ 00019396  0x00002c6b jam  0x00000000 , 0x000043f9 
+ 00019397  0x00002c6c jam  0x00000000 , 0x000003bf 
+ 00019398  0x00002c6d jam  0x0000002c , 0x000009bd 
+ 00019399  0x00002c6e call  0x00004bd6 
+ 00019400  0x00002c6f branch  0x00003260 
+ 00019401  0x00002c72 arg  0x00000001 , 0x00000011 
+ 00019402  0x00002c73 fetch  0x00000001 , 0x00000302 
+ 00019403  0x00002c74 rtnbit1  0x00000006 
+ 00019404  0x00002c75 arg  0x00000000 , 0x00000011 
+ 00019405  0x00002c76 rtn 
+ 00019406  0x00002c79 arg  0x00004544 , 0x00000006 
+ 00019407  0x00002c7a branch  0x00007fa8 
+ 00019408  0x00002c7d arg  0x00004544 , 0x00000011 
+ 00019409  0x00002c7e branch  0x00007fa2 
+ 00019410  0x00002c81 arg  0x00004544 , 0x00000011 
+ 00019411  0x00002c82 branch  0x00007fa4 
+ 00019412  0x00002c85 arg  0x00004544 , 0x00000011 
+ 00019413  0x00002c86 branch  0x00007fa6 
+ 00019414  0x00002c89 arg  0x00004544 , 0x00000011 
+ 00019415  0x00002c8a branch  0x00007f88 
+ 00019416  0x00002c8d set1  0x00000025 , 0x00000000 
+ 00019417  0x00002c8e bpatch  0x0000002f , 0x00004025 
+ 00019418  0x00002c8f fetch  0x00000001 , 0x00000379 
+ 00019419  0x00002c90 rtnbit1  0x00000005 
+ 00019420  0x00002c91 fetch  0x00000001 , 0x00004132 
+ 00019421  0x00002c92 beq  0x00000009 , 0x00004be2 
+ 00019422  0x00002c94 arg  0x00004544 , 0x00000011 
+ 00019423  0x00002c95 call  0x00007f95 
+ 00019424  0x00002c96 nbranch  0x00004bf1 , 0x00000034 
+ 00019425  0x00002c97 branch  0x00004f87 
+ 00019426  0x00002c9a fetch  0x00000001 , 0x000048c8 
+ 00019427  0x00002c9b nbranch  0x00004be9 , 0x00000034 
+ 00019428  0x00002c9c fetch  0x00000001 , 0x00000362 
+ 00019429  0x00002c9d bbit0  0x00000004 , 0x00004bed 
+ 00019430  0x00002c9e fetch  0x00000001 , 0x00000303 
+ 00019431  0x00002c9f branch  0x00004bed , 0x00000034 
+ 00019432  0x00002ca0 branch  0x00004f87 
+ 00019433  0x00002ca2 fetch  0x00000001 , 0x000048c8 
+ 00019434  0x00002ca3 increase  0xffffffff , 0x0000003f 
+ 00019435  0x00002ca4 store  0x00000001 , 0x000048c8 
+ 00019436  0x00002ca5 branch  0x00004f87 
+ 00019437  0x00002ca7 fetch  0x00000001 , 0x0000456a 
+ 00019438  0x00002ca8 bne  0x00000002 , 0x00004bf0 
+ 00019439  0x00002ca9 jam  0x00000003 , 0x000048c8 
+ 00019440  0x00002cab branch  0x00004bde 
+ 00019441  0x00002cae copy  0x0000003f , 0x00000002 
+ 00019442  0x00002caf set1  0x00000025 , 0x00000000 
+ 00019443  0x00002cb0 bpatch  0x00000030 , 0x00004026 
+ 00019444  0x00002cb1 copy  0x00000002 , 0x0000003f 
+ 00019445  0x00002cb2 bbit0  0x00000005 , 0x00004c0d 
+ 00019446  0x00002cb3 force  0x00000003 , 0x00000001 
+ 00019447  0x00002cb4 set0  0x00000005 , 0x0000003f 
+ 00019448  0x00002cb5 store  0x00000001 , 0x00004467 
+ 00019449  0x00002cb6 set1  0x00000025 , 0x00000000 
+ 00019450  0x00002cb7 bpatch  0x00000031 , 0x00004026 
+ 00019451  0x00002cb9 fetch  0x00000001 , 0x00004467 
+ 00019452  0x00002cba beq  0x00000000 , 0x00004c54 
+ 00019453  0x00002cbb beq  0x00000001 , 0x00004c56 
+ 00019454  0x00002cbc beq  0x00000002 , 0x00004c58 
+ 00019455  0x00002cbd beq  0x00000003 , 0x00004c5a 
+ 00019456  0x00002cbe beq  0x00000004 , 0x00004c6b 
+ 00019457  0x00002cbf beq  0x00000005 , 0x00004c84 
+ 00019458  0x00002cc0 beq  0x00000006 , 0x00004c86 
+ 00019459  0x00002cc1 beq  0x00000007 , 0x00004c9c 
+ 00019460  0x00002cc2 beq  0x00000008 , 0x00004ca0 
+ 00019461  0x00002cc3 beq  0x00000009 , 0x00004ca0 
+ 00019462  0x00002cc4 beq  0x0000000a , 0x00004ca4 
+ 00019463  0x00002cc5 beq  0x0000000b , 0x00004ca4 
+ 00019464  0x00002cc6 beq  0x0000000c , 0x00004ca6 
+ 00019465  0x00002cc7 beq  0x0000000d , 0x00004caa 
+ 00019466  0x00002cc8 beq  0x0000000f , 0x00004cae 
+ 00019467  0x00002cc9 beq  0x00000013 , 0x00004ca4 
+ 00019468  0x00002cca branch  0x00003b31 
+ 00019469  0x00002ccd jam  0x00000000 , 0x0000446a 
+ 00019470  0x00002cce force  0x00000002 , 0x00000001 
+ 00019471  0x00002ccf bbit0  0x00000006 , 0x00004c26 
+ 00019472  0x00002cd0 beq  0x00000052 , 0x00004c26 
+ 00019473  0x00002cd1 beq  0x000000d2 , 0x00004c26 
+ 00019474  0x00002cd2 jam  0x00000006 , 0x00004469 
+ 00019475  0x00002cd3 set0  0x00000006 , 0x0000003f 
+ 00019476  0x00002cd4 store  0x00000001 , 0x0000446b 
+ 00019477  0x00002cd5 set1  0x00000025 , 0x00000000 
+ 00019478  0x00002cd6 bpatch  0x00000032 , 0x00004026 
+ 00019479  0x00002cd7 fetch  0x00000001 , 0x0000446b 
+ 00019480  0x00002cd9 beq  0x00000001 , 0x00004cbb 
+ 00019481  0x00002cda beq  0x00000002 , 0x00004cc3 
+ 00019482  0x00002cdb beq  0x00000003 , 0x00004cda 
+ 00019483  0x00002cdc beq  0x00000004 , 0x00004ce8 
+ 00019484  0x00002cdd beq  0x00000005 , 0x00004ced 
+ 00019485  0x00002cde beq  0x00000006 , 0x00004cf2 
+ 00019486  0x00002cdf beq  0x00000007 , 0x00004d10 
+ 00019487  0x00002ce0 beq  0x00000008 , 0x00004d27 
+ 00019488  0x00002ce1 beq  0x00000009 , 0x00004d2d 
+ 00019489  0x00002ce2 beq  0x0000000a , 0x00004d32 
+ 00019490  0x00002ce3 beq  0x0000000b , 0x00004d35 
+ 00019491  0x00002ce4 beq  0x0000000c , 0x00004d39 
+ 00019492  0x00002ce5 beq  0x0000000d , 0x00004d64 
+ 00019493  0x00002ce6 branch  0x00003b31 
+ 00019494  0x00002ce9 jam  0x00000004 , 0x00004469 
+ 00019495  0x00002cea store  0x00000001 , 0x0000446b 
+ 00019496  0x00002ceb set1  0x00000025 , 0x00000000 
+ 00019497  0x00002cec bpatch  0x00000033 , 0x00004026 
+ 00019498  0x00002ced fetch  0x00000001 , 0x0000446b 
+ 00019499  0x00002cee beq  0x00000001 , 0x00004d6f 
+ 00019500  0x00002cef beq  0x00000002 , 0x00004d75 
+ 00019501  0x00002cf0 beq  0x00000003 , 0x00004d75 
+ 00019502  0x00002cf1 beq  0x00000004 , 0x00004d78 
+ 00019503  0x00002cf2 beq  0x00000005 , 0x00004d7d 
+ 00019504  0x00002cf3 beq  0x00000006 , 0x00004d93 
+ 00019505  0x00002cf4 beq  0x00000007 , 0x00004da7 
+ 00019506  0x00002cf5 beq  0x00000008 , 0x00004dec 
+ 00019507  0x00002cf6 beq  0x00000009 , 0x00004df4 
+ 00019508  0x00002cf7 beq  0x0000000a , 0x00004e58 
+ 00019509  0x00002cf8 beq  0x0000000b , 0x00004e60 
+ 00019510  0x00002cf9 beq  0x0000000c , 0x00004e77 
+ 00019511  0x00002cfa beq  0x0000000d , 0x00004e7c 
+ 00019512  0x00002cfb beq  0x0000000e , 0x00004e8b 
+ 00019513  0x00002cfc beq  0x0000000f , 0x00004e92 
+ 00019514  0x00002cfd beq  0x00000010 , 0x00004eb8 
+ 00019515  0x00002cfe beq  0x00000011 , 0x00004ec0 
+ 00019516  0x00002cff beq  0x00000012 , 0x00004f1e 
+ 00019517  0x00002d00 beq  0x00000013 , 0x00004f25 
+ 00019518  0x00002d01 beq  0x00000016 , 0x00004f27 
+ 00019519  0x00002d02 beq  0x00000017 , 0x00004f46 
+ 00019520  0x00002d03 beq  0x00000018 , 0x00004f66 
+ 00019521  0x00002d04 beq  0x00000019 , 0x00004f68 
+ 00019522  0x00002d05 beq  0x0000001b , 0x00004f77 
+ 00019523  0x00002d06 beq  0x0000001d , 0x00004f79 
+ 00019524  0x00002d07 beq  0x0000001e , 0x00004f7b 
+ 00019525  0x00002d08 beq  0x00000052 , 0x00004f7d 
+ 00019526  0x00002d09 beq  0x000000d2 , 0x00004f7f 
+ 00019527  0x00002d0a beq  0x0000009e , 0x00004c4b 
+ 00019528  0x00002d0b beq  0x0000009f , 0x00004c4d 
+ 00019529  0x00002d0c beq  0x0000001f , 0x00004f29 
+ 00019530  0x00002d0d branch  0x00003b31 
+ 00019531  0x00002d10 jam  0x00000010 , 0x000009bd 
+ 00019532  0x00002d11 call  0x00004bd6 
+ 00019533  0x00002d14 setarg  0x00000011 
+ 00019534  0x00002d15 store  0x00000002 , 0x00004465 
+ 00019535  0x00002d16 fetch  0x00000001 , 0x00000379 
+ 00019536  0x00002d17 set1  0x00000005 , 0x0000003f 
+ 00019537  0x00002d18 store  0x00000001 , 0x00000379 
+ 00019538  0x00002d19 jam  0x00000012 , 0x000009bd 
+ 00019539  0x00002d1a branch  0x00004bd6 
+ 00019540  0x00002d1d force  0x0000000c , 0x00000002 
+ 00019541  0x00002d1e branch  0x00004f89 
+ 00019542  0x00002d21 force  0x00000008 , 0x00000002 
+ 00019543  0x00002d22 branch  0x00004f89 
+ 00019544  0x00002d25 force  0x00000002 , 0x00000002 
+ 00019545  0x00002d26 branch  0x00004f89 
+ 00019546  0x00002d29 force  0x00000000 , 0x0000003f 
+ 00019547  0x00002d2a istore  0x00000008 , 0x00000005 
+ 00019548  0x00002d2b istore  0x00000002 , 0x00000005 
+ 00019549  0x00002d2c copy  0x00000005 , 0x00000002 
+ 00019550  0x00002d2d arg  0x00004551 , 0x00000005 
+ 00019551  0x00002d2e force  0x00000008 , 0x00000039 
+ 00019552  0x00002d2f call  0x00005918 
+ 00019553  0x00002d30 fetch  0x00000008 , 0x00004551 
+ 00019554  0x00002d31 istore  0x00000008 , 0x00000002 
+ 00019555  0x00002d32 copy  0x00000005 , 0x00000002 
+ 00019556  0x00002d33 arg  0x0000449a , 0x00000005 
+ 00019557  0x00002d34 force  0x00000004 , 0x00000039 
+ 00019558  0x00002d35 call  0x00005918 
+ 00019559  0x00002d36 fetch  0x00000004 , 0x0000449a 
+ 00019560  0x00002d37 istore  0x00000004 , 0x00000002 
+ 00019561  0x00002d38 force  0x00000017 , 0x00000002 
+ 00019562  0x00002d39 branch  0x00004f89 
+ 00019563  0x00002d3c copy  0x00000005 , 0x00000002 
+ 00019564  0x00002d3d arg  0x00004559 , 0x00000005 
+ 00019565  0x00002d3e force  0x00000008 , 0x00000039 
+ 00019566  0x00002d3f call  0x00005918 
+ 00019567  0x00002d40 fetch  0x00000008 , 0x00004559 
+ 00019568  0x00002d41 istore  0x00000008 , 0x00000002 
+ 00019569  0x00002d42 copy  0x00000005 , 0x00000002 
+ 00019570  0x00002d43 arg  0x0000449e , 0x00000005 
+ 00019571  0x00002d44 force  0x00000004 , 0x00000039 
+ 00019572  0x00002d45 call  0x00005918 
+ 00019573  0x00002d46 fetch  0x00000004 , 0x0000449e 
+ 00019574  0x00002d47 istore  0x00000004 , 0x00000002 
+ 00019575  0x00002d48 call  0x000070c8 
+ 00019576  0x00002d49 fetch  0x00000001 , 0x000044b2 
+ 00019577  0x00002d4a beq  0x00000000 , 0x00004c7e 
+ 00019578  0x00002d4b jam  0x00000025 , 0x000009bd 
+ 00019579  0x00002d4c call  0x00004bd6 
+ 00019580  0x00002d4d force  0x0000000d , 0x00000002 
+ 00019581  0x00002d4e branch  0x00004f89 
+ 00019582  0x00002d51 jam  0x00000000 , 0x0000456b 
+ 00019583  0x00002d52 jam  0x0000002d , 0x000009bd 
+ 00019584  0x00002d53 call  0x00004bd6 
+ 00019585  0x00002d54 call  0x00007e29 
+ 00019586  0x00002d55 force  0x0000000d , 0x00000002 
+ 00019587  0x00002d56 branch  0x00004f89 
+ 00019588  0x00002d5a force  0x00000001 , 0x00000002 
+ 00019589  0x00002d5b branch  0x00004f89 
+ 00019590  0x00002d5e force  0x00000001 , 0x00000002 
+ 00019591  0x00002d5f branch  0x00004f89 , 0x00000029 
+ 00019592  0x00002d60 fetch  0x00000001 , 0x00004132 
+ 00019593  0x00002d61 beq  0x00000009 , 0x00004c92 
+ 00019594  0x00002d62 fetch  0x00000001 , 0x0000456a 
+ 00019595  0x00002d63 bne  0x00000002 , 0x00004c8f 
+ 00019596  0x00002d64 jam  0x00000046 , 0x000009bd 
+ 00019597  0x00002d65 call  0x00004bd6 
+ 00019598  0x00002d66 branch  0x00004c90 
+ 00019599  0x00002d68 jam  0x00000003 , 0x0000456b 
+ 00019600  0x00002d6a force  0x00000001 , 0x00000002 
+ 00019601  0x00002d6b branch  0x00004f89 
+ 00019602  0x00002d6d jam  0x00000001 , 0x00004131 
+ 00019603  0x00002d6e fetch  0x00000001 , 0x0000456a 
+ 00019604  0x00002d6f bne  0x00000002 , 0x00004c97 
+ 00019605  0x00002d70 jam  0x00000046 , 0x000009bd 
+ 00019606  0x00002d71 call  0x00004bd6 
+ 00019607  0x00002d73 jam  0x00000003 , 0x0000456b 
+ 00019608  0x00002d74 force  0x00000001 , 0x00000002 
+ 00019609  0x00002d75 call  0x00004f89 
+ 00019610  0x00002d76 jam  0x00000001 , 0x000048c2 
+ 00019611  0x00002d77 rtn 
+ 00019612  0x00002d79 fetch  0x00000001 , 0x00004550 
+ 00019613  0x00002d7a istore  0x00000001 , 0x00000005 
+ 00019614  0x00002d7b force  0x00000002 , 0x00000002 
+ 00019615  0x00002d7c branch  0x00004f89 
+ 00019616  0x00002d7f setarg  0x00000001 
+ 00019617  0x00002d80 istore  0x00000008 , 0x00000005 
+ 00019618  0x00002d81 force  0x00000009 , 0x00000002 
+ 00019619  0x00002d82 branch  0x00004f89 
+ 00019620  0x00002d89 force  0x00000001 , 0x00000002 
+ 00019621  0x00002d8a branch  0x00004f89 
+ 00019622  0x00002d8d fetch  0x00000005 , 0x000045a9 
+ 00019623  0x00002d8e istore  0x00000005 , 0x00000005 
+ 00019624  0x00002d93 force  0x00000006 , 0x00000002 
+ 00019625  0x00002d94 branch  0x00004f89 
+ 00019626  0x00002d97 setarg  0x00000006 
+ 00019627  0x00002d98 istore  0x00000001 , 0x00000005 
+ 00019628  0x00002d99 force  0x00000002 , 0x00000002 
+ 00019629  0x00002d9a branch  0x00004f89 
+ 00019630  0x00002d9d increase  0xffffffff , 0x00000005 
+ 00019631  0x00002d9e setarg  0x0000000c 
+ 00019632  0x00002d9f istore  0x00000002 , 0x00000005 
+ 00019633  0x00002da0 setarg  0x00000005 
+ 00019634  0x00002da1 istore  0x00000002 , 0x00000005 
+ 00019635  0x00002da2 setarg  0x0000b412 
+ 00019636  0x00002da3 istore  0x00000002 , 0x00000005 
+ 00019637  0x00002da4 setarg  0x00000008 
+ 00019638  0x00002da5 istore  0x00000002 , 0x00000005 
+ 00019639  0x00002da6 fetch  0x00000008 , 0x0000458d 
+ 00019640  0x00002da7 istore  0x00000008 , 0x00000005 
+ 00019641  0x00002da8 force  0x00000002 , 0x00000001 
+ 00019642  0x00002da9 branch  0x00004f81 
+ 00019643  0x00002dac setarg  0x01000401 
+ 00019644  0x00002dad store  0x00000004 , 0x000044d5 
+ 00019645  0x00002dae setarg  0x00070710 
+ 00019646  0x00002daf istore  0x00000003 , 0x00000005 
+ 00019647  0x00002db0 fetch  0x00000006 , 0x000044d6 
+ 00019648  0x00002db1 store  0x00000006 , 0x0000446c 
+ 00019649  0x00002db2 force  0x0000000b , 0x00000002 
+ 00019650  0x00002db3 branch  0x00004f89 
+ 00019651  0x00002db6 fetch  0x00000001 , 0x00004132 
+ 00019652  0x00002db7 sub  0x0000003f , 0x0000000a , 0x0000003e 
+ 00019653  0x00002db8 call  0x00004cd1 , 0x00000005 
+ 00019654  0x00002dba fetch  0x00000001 , 0x00004132 
+ 00019655  0x00002dbb bne  0x00000009 , 0x00004ccd 
+ 00019656  0x00002dbc jam  0x00000001 , 0x00004746 
+ 00019657  0x00002dbd fetch  0x00000001 , 0x000044da 
+ 00019658  0x00002dbe bbit1  0x00000001 , 0x00004ccd 
+ 00019659  0x00002dbf setarg  0x00010010 
+ 00019660  0x00002dc0 istore  0x00000003 , 0x00000005 
+ 00019661  0x00002dc2 fetch  0x00000006 , 0x000044dd 
+ 00019662  0x00002dc3 store  0x00000006 , 0x0000446c 
+ 00019663  0x00002dc4 force  0x0000000b , 0x00000002 
+ 00019664  0x00002dc5 branch  0x00004f89 
+ 00019665  0x00002dc8 fetcht  0x00000001 , 0x000044e1 
+ 00019666  0x00002dc9 fetch  0x00000001 , 0x000044da 
+ 00019667  0x00002dca isolate1  0x00000001 , 0x0000003f 
+ 00019668  0x00002dcb setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00019669  0x00002dcc storet  0x00000001 , 0x000044e1 
+ 00019670  0x00002dcd fetcht  0x00000001 , 0x000044e2 
+ 00019671  0x00002dce setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00019672  0x00002dcf storet  0x00000001 , 0x000044e2 
+ 00019673  0x00002dd0 rtn 
+ 00019674  0x00002dd4 fetch  0x00000001 , 0x00004563 
+ 00019675  0x00002dd5 beq  0x00000001 , 0x00004ce1 
+ 00019676  0x00002dd6 call  0x000070c2 
+ 00019677  0x00002dd7 arg  0x0000446c , 0x00000005 
+ 00019678  0x00002dd8 call  0x000071c0 
+ 00019679  0x00002dd9 force  0x00000015 , 0x00000002 
+ 00019680  0x00002dda branch  0x00004f89 
+ 00019681  0x00002ddc arg  0x000044c3 , 0x00000005 
+ 00019682  0x00002ddd call  0x00005917 
+ 00019683  0x00002dde call  0x00006ee7 
+ 00019684  0x00002ddf arg  0x0000446c , 0x00000005 
+ 00019685  0x00002de0 call  0x00006f24 
+ 00019686  0x00002de1 force  0x00000015 , 0x00000002 
+ 00019687  0x00002de2 branch  0x00004f89 
+ 00019688  0x00002de5 fetch  0x00000008 , 0x00000352 
+ 00019689  0x00002de6 branch  0x00004ceb , 0x00000029 
+ 00019690  0x00002de7 fetch  0x00000008 , 0x000044c3 
+ 00019691  0x00002dea call  0x00004d69 
+ 00019692  0x00002deb branch  0x00004f89 
+ 00019693  0x00002dee jam  0x00000000 , 0x0000456a 
+ 00019694  0x00002def arg  0x00000008 , 0x0000003f 
+ 00019695  0x00002df0 istore  0x00000001 , 0x00000005 
+ 00019696  0x00002df1 force  0x00000006 , 0x00000002 
+ 00019697  0x00002df2 branch  0x00004f89 
+ 00019698  0x00002df5 jam  0x00000029 , 0x000009bd 
+ 00019699  0x00002df6 call  0x00007d86 
+ 00019700  0x00002df7 jam  0x00000047 , 0x000009bd 
+ 00019701  0x00002df8 call  0x00004bd6 
+ 00019702  0x00002df9 fetch  0x00000001 , 0x00004132 
+ 00019703  0x00002dfa beq  0x00000009 , 0x00004d01 
+ 00019704  0x00002dfb fetch  0x00000008 , 0x000044a2 
+ 00019705  0x00002dfc call  0x00004d69 
+ 00019706  0x00002dfd call  0x00004f89 
+ 00019707  0x00002dfe fetch  0x00000001 , 0x0000452b 
+ 00019708  0x00002dff beq  0x00000000 , 0x00003e7b 
+ 00019709  0x00002e00 fetch  0x00000001 , 0x00000377 
+ 00019710  0x00002e01 compare  0x000000c0 , 0x0000003f , 0x000000c0 
+ 00019711  0x00002e02 branch  0x00003e7b , 0x00000001 
+ 00019712  0x00002e03 rtn 
+ 00019713  0x00002e06 setarg  0x00112233 
+ 00019714  0x00002e07 store  0x00000003 , 0x000044a2 
+ 00019715  0x00002e08 setarg  0x00445566 
+ 00019716  0x00002e09 istore  0x00000003 , 0x00000005 
+ 00019717  0x00002e0a setarg  0x00778899 
+ 00019718  0x00002e0b istore  0x00000003 , 0x00000005 
+ 00019719  0x00002e0c setarg  0x00001122 
+ 00019720  0x00002e0d istore  0x00000003 , 0x00000005 
+ 00019721  0x00002e0e setarg  0x00334455 
+ 00019722  0x00002e0f istore  0x00000003 , 0x00000005 
+ 00019723  0x00002e10 setarg  0x00000066 
+ 00019724  0x00002e11 istore  0x00000001 , 0x00000005 
+ 00019725  0x00002e13 fetch  0x00000008 , 0x000044a2 
+ 00019726  0x00002e14 call  0x00004d69 
+ 00019727  0x00002e15 branch  0x00004f89 
+ 00019728  0x00002e19 fetch  0x00000001 , 0x00004132 
+ 00019729  0x00002e1a beq  0x00000009 , 0x00004d22 
+ 00019730  0x00002e1c fetch  0x00000001 , 0x000044da 
+ 00019731  0x00002e1d bbit0  0x00000001 , 0x00004d17 
+ 00019732  0x00002e1e jam  0x00000048 , 0x000009bd 
+ 00019733  0x00002e1f call  0x00004bd6 
+ 00019734  0x00002e20 branch  0x00004d19 
+ 00019735  0x00002e23 jam  0x00000003 , 0x0000456b 
+ 00019736  0x00002e24 jam  0x00000003 , 0x0000456a 
+ 00019737  0x00002e26 arg  0x00004571 , 0x00000005 
+ 00019738  0x00002e27 force  0x0000000a , 0x00000039 
+ 00019739  0x00002e28 call  0x00005918 
+ 00019740  0x00002e29 fetch  0x00000002 , 0x00004571 
+ 00019741  0x00002e2a store  0x00000002 , 0x0000446c 
+ 00019742  0x00002e2b fetch  0x00000008 , 0x00004573 
+ 00019743  0x00002e2c istore  0x00000008 , 0x00000005 
+ 00019744  0x00002e2d force  0x0000000f , 0x00000002 
+ 00019745  0x00002e2e branch  0x00004f89 
+ 00019746  0x00002e31 arg  0x0000446c , 0x00000005 
+ 00019747  0x00002e32 force  0x00000008 , 0x00000039 
+ 00019748  0x00002e33 call  0x00005918 
+ 00019749  0x00002e34 force  0x0000000f , 0x00000002 
+ 00019750  0x00002e35 branch  0x00004f89 
+ 00019751  0x00002e38 jam  0x00000049 , 0x000009bd 
+ 00019752  0x00002e39 call  0x00004bd6 
+ 00019753  0x00002e3a setarg  0x00000000 
+ 00019754  0x00002e3b store  0x00000008 , 0x0000446c 
+ 00019755  0x00002e3c istore  0x00000008 , 0x00000005 
+ 00019756  0x00002e3d branch  0x00004f81 
+ 00019757  0x00002e42 fetch  0x00000001 , 0x00004532 
+ 00019758  0x00002e43 store  0x00000001 , 0x0000446c 
+ 00019759  0x00002e44 fetch  0x00000006 , 0x0000453e 
+ 00019760  0x00002e45 istore  0x00000006 , 0x00000005 
+ 00019761  0x00002e46 branch  0x00004f81 
+ 00019762  0x00002e49 arg  0x0000446c , 0x00000005 
+ 00019763  0x00002e4a call  0x00005917 
+ 00019764  0x00002e4b branch  0x00004f81 
+ 00019765  0x00002e4e fetch  0x00000001 , 0x000044df 
+ 00019766  0x00002e4f store  0x00000001 , 0x0000446c 
+ 00019767  0x00002e50 force  0x00000006 , 0x00000002 
+ 00019768  0x00002e51 branch  0x00004f89 
+ 00019769  0x00002e55 fetch  0x00000001 , 0x000003da 
+ 00019770  0x00002e56 beq  0x00000003 , 0x00004d4e 
+ 00019771  0x00002e59 arg  0x00000041 , 0x00000002 
+ 00019772  0x00002e5a storet  0x00000002 , 0x00004467 
+ 00019773  0x00002e5b set1  0x00000025 , 0x00000000 
+ 00019774  0x00002e5c bpatch  0x00000034 , 0x00004026 
+ 00019775  0x00002e5d arg  0x00000002 , 0x00000001 
+ 00019776  0x00002e5e setarg  0x00000006 
+ 00019777  0x00002e5f store  0x00000002 , 0x00004469 
+ 00019778  0x00002e61 arg  0x0000446c , 0x00000005 
+ 00019779  0x00002e62 arg  0x00000016 , 0x00000039 
+ 00019780  0x00002e63 arg  0x0000465a , 0x00000006 
+ 00019781  0x00002e64 call  0x00007ec0 
+ 00019782  0x00002e65 jam  0x00000016 , 0x000003db 
+ 00019783  0x00002e67 jam  0x0000001b , 0x00004466 
+ 00019784  0x00002e69 fetcht  0x00000001 , 0x00000379 
+ 00019785  0x00002e6a set1  0x00000004 , 0x00000002 
+ 00019786  0x00002e6b storet  0x00000001 , 0x00000379 
+ 00019787  0x00002e70 jam  0x00000003 , 0x000003da 
+ 00019788  0x00002e71 fetcht  0x00000001 , 0x00000379 
+ 00019789  0x00002e72 branch  0x00004f93 
+ 00019790  0x00002e76 jam  0x00000000 , 0x000003da 
+ 00019791  0x00002e78 fetch  0x00000001 , 0x000003db 
+ 00019792  0x00002e79 beq  0x00000016 , 0x00004d5e 
+ 00019793  0x00002e7b arg  0x0000000f , 0x00000039 
+ 00019794  0x00002e7c jam  0x0000000f , 0x00004466 
+ 00019795  0x00002e7d call  0x00004d58 
+ 00019796  0x00002e7e jam  0x00000002 , 0x00004564 
+ 00019797  0x00002e7f jam  0x00000003 , 0x00004566 
+ 00019798  0x00002e80 jam  0x00000000 , 0x000003db 
+ 00019799  0x00002e81 rtn 
+ 00019800  0x00002e83 arg  0x0000465a , 0x00000006 
+ 00019801  0x00002e84 iadd  0x00000006 , 0x00000006 
+ 00019802  0x00002e85 arg  0x00004467 , 0x00000005 
+ 00019803  0x00002e86 call  0x00007ec0 
+ 00019804  0x00002e87 arg  0x00000001 , 0x00000001 
+ 00019805  0x00002e88 branch  0x00004f90 
+ 00019806  0x00002e8c jam  0x00000031 , 0x000003db 
+ 00019807  0x00002e8d arg  0x0000001b , 0x00000039 
+ 00019808  0x00002e8e jam  0x0000001b , 0x00004466 
+ 00019809  0x00002e8f call  0x00004d58 
+ 00019810  0x00002e91 jam  0x00000003 , 0x000003da 
+ 00019811  0x00002e95 rtn 
+ 00019812  0x00002e98 call  0x00006e86 
+ 00019813  0x00002e99 arg  0x0000446c , 0x00000005 
+ 00019814  0x00002e9a call  0x00006f24 
+ 00019815  0x00002e9b force  0x00000015 , 0x00000002 
+ 00019816  0x00002e9c branch  0x00004f89 
+ 00019817  0x00002e9f store  0x00000008 , 0x0000446c 
+ 00019818  0x00002ea0 ifetch  0x00000008 , 0x00000006 
+ 00019819  0x00002ea1 istore  0x00000008 , 0x00000005 
+ 00019820  0x00002ea2 force  0x00000015 , 0x00000002 
+ 00019821  0x00002ea3 rtn 
+ 00019822  0x00002ea6 jam  0x0000000a , 0x0000039d 
+ 00019823  0x00002ea8 jam  0x00000001 , 0x0000446b 
+ 00019824  0x00002ea9 fetch  0x00000003 , 0x0000039a 
+ 00019825  0x00002eaa store  0x00000003 , 0x0000446c 
+ 00019826  0x00002eab fetch  0x00000001 , 0x0000039d 
+ 00019827  0x00002eac istore  0x00000001 , 0x00000005 
+ 00019828  0x00002ead branch  0x00004f81 
+ 00019829  0x00002eb1 fetch  0x00000002 , 0x0000454c 
+ 00019830  0x00002eb2 istore  0x00000002 , 0x00000005 
+ 00019831  0x00002eb3 branch  0x00004f81 
+ 00019832  0x00002eb6 fetch  0x00000002 , 0x000044e3 
+ 00019833  0x00002eb7 store  0x00000002 , 0x0000446c 
+ 00019834  0x00002eb8 fetch  0x00000002 , 0x000044e5 
+ 00019835  0x00002eb9 istore  0x00000002 , 0x00000005 
+ 00019836  0x00002eba branch  0x00004f81 
+ 00019837  0x00002ebf arg  0x00000002 , 0x0000000b 
+ 00019838  0x00002ec0 force  0x00000001 , 0x0000003f 
+ 00019839  0x00002ec1 store  0x00000001 , 0x0000446c 
+ 00019840  0x00002ec2 call  0x000051e0 
+ 00019841  0x00002ec4 call  0x000051ea 
+ 00019842  0x00002ec5 branch  0x00004d91 , 0x00000034 
+ 00019843  0x00002ec6 nbranch  0x00004d8e , 0x00000002 
+ 00019844  0x00002ec7 disable  0x00000028 
+ 00019845  0x00002ec8 istore  0x00000002 , 0x00000005 
+ 00019846  0x00002ec9 ifetch  0x00000001 , 0x00000006 
+ 00019847  0x00002eca copy  0x0000003f , 0x00000039 
+ 00019848  0x00002ecb call  0x00007ec0 
+ 00019849  0x00002ecc increase  0xffffffff , 0x0000000b 
+ 00019850  0x00002ecd branch  0x00004d91 , 0x00000005 
+ 00019851  0x00002ecf ifetch  0x00000001 , 0x00000006 
+ 00019852  0x00002ed0 iadd  0x00000006 , 0x00000006 
+ 00019853  0x00002ed1 branch  0x00004d81 
+ 00019854  0x00002ed3 ifetch  0x00000001 , 0x00000006 
+ 00019855  0x00002ed4 iadd  0x00000006 , 0x00000006 
+ 00019856  0x00002ed5 branch  0x00004d8b 
+ 00019857  0x00002ed7 branch  0x00004d6e , 0x00000028 
+ 00019858  0x00002ed8 branch  0x00004f81 
+ 00019859  0x00002edc fetch  0x00000002 , 0x000044e3 
+ 00019860  0x00002edd branch  0x00004c4d , 0x00000034 
+ 00019861  0x00002ede store  0x00000002 , 0x0000446c 
+ 00019862  0x00002edf fetch  0x00000002 , 0x000044e5 
+ 00019863  0x00002ee1 istore  0x00000002 , 0x00000005 
+ 00019864  0x00002ee2 fetch  0x00000002 , 0x000044fb 
+ 00019865  0x00002ee4 istore  0x00000002 , 0x00000005 
+ 00019866  0x00002ee5 fetch  0x00000002 , 0x000044e8 
+ 00019867  0x00002ee7 istore  0x00000002 , 0x00000005 
+ 00019868  0x00002ee8 branch  0x00004f81 
+ 00019869  0x00002eec disable  0x00000028 
+ 00019870  0x00002eed fetcht  0x00000002 , 0x000044e3 
+ 00019871  0x00002eee fetch  0x00000002 , 0x000044e5 
+ 00019872  0x00002eef isub  0x00000002 , 0x0000003e 
+ 00019873  0x00002ef0 nbranch  0x00004da4 , 0x00000002 
+ 00019874  0x00002ef1 deposit  0x00000002 
+ 00019875  0x00002ef2 rtnne  0x00000000 
+ 00019876  0x00002ef4 enable  0x00000028 
+ 00019877  0x00002ef5 jam  0x00000001 , 0x0000039d 
+ 00019878  0x00002ef6 branch  0x00004d6f 
+ 00019879  0x00002ef9 call  0x00004d9d 
+ 00019880  0x00002efa rtn  0x00000028 
+ 00019881  0x00002efb fetcht  0x00000002 , 0x000044fb 
+ 00019882  0x00002efc setarg  0x00002800 
+ 00019883  0x00002efd isub  0x00000002 , 0x0000003e 
+ 00019884  0x00002efe branch  0x00004db7 , 0x00000005 
+ 00019885  0x00002eff setarg  0x00002801 
+ 00019886  0x00002f00 isub  0x00000002 , 0x0000003e 
+ 00019887  0x00002f01 branch  0x00004d6e , 0x00000005 
+ 00019888  0x00002f02 setarg  0x00002802 
+ 00019889  0x00002f03 isub  0x00000002 , 0x0000003e 
+ 00019890  0x00002f04 branch  0x00004d6e , 0x00000005 
+ 00019891  0x00002f05 setarg  0x00002803 
+ 00019892  0x00002f06 isub  0x00000002 , 0x0000003e 
+ 00019893  0x00002f07 branch  0x00004d6e , 0x00000005 
+ 00019894  0x00002f08 branch  0x00004d6e 
+ 00019895  0x00002f0b jam  0x00000000 , 0x000003d9 
+ 00019896  0x00002f0c fetcht  0x00000002 , 0x000044e3 
+ 00019897  0x00002f0d storet  0x00000002 , 0x000009c6 
+ 00019898  0x00002f0e call  0x0000521a 
+ 00019899  0x00002f0f nbranch  0x00004d6e , 0x00000034 
+ 00019900  0x00002f11 fetcht  0x00000002 , 0x000009c6 
+ 00019901  0x00002f12 call  0x0000521a 
+ 00019902  0x00002f13 nbranch  0x00004dd0 , 0x00000034 
+ 00019903  0x00002f14 copy  0x00000006 , 0x00000011 
+ 00019904  0x00002f15 fetch  0x00000001 , 0x000003d8 
+ 00019905  0x00002f16 copy  0x0000003f , 0x00000039 
+ 00019906  0x00002f17 fetcht  0x00000001 , 0x000044e7 
+ 00019907  0x00002f18 isub  0x00000002 , 0x0000003e 
+ 00019908  0x00002f19 nbranch  0x00004dcc , 0x00000005 
+ 00019909  0x00002f1a arg  0x000044e8 , 0x00000012 
+ 00019910  0x00002f1b call  0x00007f55 
+ 00019911  0x00002f1d branch  0x00004dd3 , 0x00000005 
+ 00019912  0x00002f1f fetch  0x00000002 , 0x000003c8 
+ 00019913  0x00002f20 fetcht  0x00000002 , 0x000044fb 
+ 00019914  0x00002f21 isub  0x00000002 , 0x0000003e 
+ 00019915  0x00002f22 branch  0x00004ddb , 0x00000005 
+ 00019916  0x00002f24 fetch  0x00000002 , 0x000009c6 
+ 00019917  0x00002f25 increase  0x00000001 , 0x0000003f 
+ 00019918  0x00002f26 store  0x00000002 , 0x000009c6 
+ 00019919  0x00002f27 branch  0x00004dbc 
+ 00019920  0x00002f2a fetch  0x00000001 , 0x000003d9 
+ 00019921  0x00002f2b beq  0x00000001 , 0x00004ddb 
+ 00019922  0x00002f2c branch  0x00004d6e 
+ 00019923  0x00002f30 fetch  0x00000002 , 0x000003c8 
+ 00019924  0x00002f31 fetcht  0x00000002 , 0x000044fb 
+ 00019925  0x00002f32 isub  0x00000002 , 0x0000003e 
+ 00019926  0x00002f33 nbranch  0x00004dcc , 0x00000005 
+ 00019927  0x00002f34 jam  0x00000001 , 0x000003d9 
+ 00019928  0x00002f36 fetcht  0x00000002 , 0x000009c6 
+ 00019929  0x00002f37 storet  0x00000002 , 0x000003c3 
+ 00019930  0x00002f38 branch  0x00004dcc 
+ 00019931  0x00002f3b fetch  0x00000001 , 0x000003d9 
+ 00019932  0x00002f3c beq  0x00000000 , 0x00004dcc 
+ 00019933  0x00002f3d jam  0x00000002 , 0x000003d9 
+ 00019934  0x00002f3e fetcht  0x00000002 , 0x000009c6 
+ 00019935  0x00002f3f increase  0xffffffff , 0x00000002 
+ 00019936  0x00002f40 storet  0x00000002 , 0x000003c5 
+ 00019937  0x00002f42 fetch  0x00000002 , 0x000003c3 
+ 00019938  0x00002f43 icopy  0x00000011 
+ 00019939  0x00002f44 fetch  0x00000002 , 0x000003c5 
+ 00019940  0x00002f45 icopy  0x00000012 
+ 00019941  0x00002f46 jam  0x00000007 , 0x0000446b 
+ 00019942  0x00002f47 deposit  0x00000011 
+ 00019943  0x00002f48 store  0x00000002 , 0x0000446c 
+ 00019944  0x00002f49 deposit  0x00000012 
+ 00019945  0x00002f4a istore  0x00000002 , 0x00000005 
+ 00019946  0x00002f4b force  0x00000009 , 0x00000002 
+ 00019947  0x00002f4c branch  0x00004f89 
+ 00019948  0x00002f50 fetch  0x00000002 , 0x000044e3 
+ 00019949  0x00002f52 istore  0x00000002 , 0x00000005 
+ 00019950  0x00002f53 fetch  0x00000002 , 0x000044e5 
+ 00019951  0x00002f55 istore  0x00000002 , 0x00000005 
+ 00019952  0x00002f56 fetch  0x00000002 , 0x000044e8 
+ 00019953  0x00002f57 istore  0x00000002 , 0x00000005 
+ 00019954  0x00002f58 force  0x0000000b , 0x00000002 
+ 00019955  0x00002f59 branch  0x00004f89 
+ 00019956  0x00002f5e fetcht  0x00000002 , 0x000044e3 
+ 00019957  0x00002f5f storet  0x00000002 , 0x000009c6 
+ 00019958  0x00002f60 call  0x000051e0 
+ 00019959  0x00002f61 call  0x000051f8 
+ 00019960  0x00002f62 increase  0xfffffffe , 0x00000006 
+ 00019961  0x00002f63 copy  0x00000006 , 0x0000003f 
+ 00019962  0x00002f64 store  0x00000002 , 0x000003c1 
+ 00019963  0x00002f66 fetcht  0x00000002 , 0x000044fb 
+ 00019964  0x00002f67 setarg  0x00002803 
+ 00019965  0x00002f68 isub  0x00000002 , 0x0000003e 
+ 00019966  0x00002f69 nbranch  0x00004e3d , 0x00000005 
+ 00019967  0x00002f6a arg  0x00000002 , 0x0000000b 
+ 00019968  0x00002f6b set1  0x00000025 , 0x00000000 
+ 00019969  0x00002f6c bpatch  0x00000035 , 0x00004026 
+ 00019970  0x00002f6e call  0x00004eff 
+ 00019971  0x00002f6f nbranch  0x00004e13 , 0x00000002 
+ 00019972  0x00002f70 fetcht  0x00000002 , 0x000009c6 
+ 00019973  0x00002f71 call  0x00005217 
+ 00019974  0x00002f72 beq  0x00000001 , 0x00004e13 
+ 00019975  0x00002f73 call  0x00004f0b 
+ 00019976  0x00002f74 nbranch  0x00004e11 , 0x00000005 
+ 00019977  0x00002f75 nbranch  0x00004e15 , 0x00000028 
+ 00019978  0x00002f76 disable  0x00000028 
+ 00019979  0x00002f78 call  0x00004e28 
+ 00019980  0x00002f79 call  0x00004efb 
+ 00019981  0x00002f7a call  0x00005217 
+ 00019982  0x00002f7b call  0x00004e2f 
+ 00019983  0x00002f7c increase  0xffffffff , 0x0000000b 
+ 00019984  0x00002f7d branch  0x00004e13 , 0x00000005 
+ 00019985  0x00002f7f call  0x00004efb 
+ 00019986  0x00002f80 branch  0x00004e02 
+ 00019987  0x00002f82 branch  0x00004d6e , 0x00000028 
+ 00019988  0x00002f83 branch  0x00004f13 
+ 00019989  0x00002f86 call  0x00004f0e 
+ 00019990  0x00002f87 call  0x00004efb 
+ 00019991  0x00002f88 call  0x00005217 
+ 00019992  0x00002f89 fetch  0x00000001 , 0x0000446c 
+ 00019993  0x00002f8a beq  0x00000015 , 0x00004e13 
+ 00019994  0x00002f8b fetch  0x00000001 , 0x000003c7 
+ 00019995  0x00002f8c increase  0x00000005 , 0x0000003f 
+ 00019996  0x00002f8d fetcht  0x00000001 , 0x0000446c 
+ 00019997  0x00002f8e isub  0x00000002 , 0x0000003e 
+ 00019998  0x00002f8f nbranch  0x00004e13 , 0x00000005 
+ 00019999  0x00002f91 call  0x00007e64 
+ 00020000  0x00002f92 fetch  0x00000002 , 0x000009c6 
+ 00020001  0x00002f93 increase  0xffffffff , 0x0000003f 
+ 00020002  0x00002f94 istore  0x00000002 , 0x00000005 
+ 00020003  0x00002f95 call  0x00004f1a 
+ 00020004  0x00002f96 call  0x00004e2f 
+ 00020005  0x00002f97 increase  0xffffffff , 0x0000000b 
+ 00020006  0x00002f98 branch  0x00004e13 , 0x00000005 
+ 00020007  0x00002f99 branch  0x00004e11 
+ 00020008  0x00002f9b fetch  0x00000002 , 0x000009c6 
+ 00020009  0x00002f9c store  0x00000002 , 0x0000446d 
+ 00020010  0x00002f9e fetch  0x00000001 , 0x000003d8 
+ 00020011  0x00002f9f copy  0x0000003f , 0x00000039 
+ 00020012  0x00002fa0 call  0x00007e67 
+ 00020013  0x00002fa1 call  0x00007ec0 
+ 00020014  0x00002fa2 branch  0x00007e6a 
+ 00020015  0x00002fa4 call  0x00007e64 
+ 00020016  0x00002fa5 fetch  0x00000002 , 0x000009c6 
+ 00020017  0x00002fa6 istore  0x00000002 , 0x00000005 
+ 00020018  0x00002fa7 call  0x00007e6a 
+ 00020019  0x00002fa8 fetch  0x00000001 , 0x000003c7 
+ 00020020  0x00002fa9 copy  0x0000003f , 0x00000039 
+ 00020021  0x00002faa increase  0x00000005 , 0x0000003f 
+ 00020022  0x00002fab store  0x00000001 , 0x0000446c 
+ 00020023  0x00002fac call  0x00007e64 
+ 00020024  0x00002fad call  0x00007e67 
+ 00020025  0x00002fae isub  0x00000039 , 0x00000006 
+ 00020026  0x00002faf increase  0xffffffff , 0x00000006 
+ 00020027  0x00002fb0 call  0x00007ec0 
+ 00020028  0x00002fb1 branch  0x00007e6a 
+ 00020029  0x00002fb6 fetcht  0x00000002 , 0x000044e3 
+ 00020030  0x00002fb7 storet  0x00000002 , 0x000009c6 
+ 00020031  0x00002fb9 call  0x00004eff 
+ 00020032  0x00002fba nbranch  0x00004d6e , 0x00000002 
+ 00020033  0x00002fbb call  0x00005217 
+ 00020034  0x00002fbc beq  0x00000001 , 0x00004d6e 
+ 00020035  0x00002fbd call  0x00004f0b 
+ 00020036  0x00002fbe nbranch  0x00004e56 , 0x00000005 
+ 00020037  0x00002fc0 fetch  0x00000001 , 0x000044fa 
+ 00020038  0x00002fc1 bne  0x00000002 , 0x00004e4d 
+ 00020039  0x00002fc2 fetch  0x00000002 , 0x000044fb 
+ 00020040  0x00002fc3 arg  0x00002a00 , 0x00000002 
+ 00020041  0x00002fc4 isub  0x00000002 , 0x0000003e 
+ 00020042  0x00002fc5 nbranch  0x00004e4d , 0x00000005 
+ 00020043  0x00002fc6 fetch  0x00000001 , 0x00004440 
+ 00020044  0x00002fc7 branch  0x00004e4e 
+ 00020045  0x00002fc9 fetch  0x00000001 , 0x000003d8 
+ 00020046  0x00002fcb copy  0x0000003f , 0x00000039 
+ 00020047  0x00002fcc increase  0x00000002 , 0x0000003f 
+ 00020048  0x00002fcd store  0x00000001 , 0x0000446c 
+ 00020049  0x00002fce fetch  0x00000002 , 0x000009c6 
+ 00020050  0x00002fcf istore  0x00000002 , 0x00000005 
+ 00020051  0x00002fd0 call  0x00007e67 
+ 00020052  0x00002fd1 call  0x00007ec0 
+ 00020053  0x00002fd2 branch  0x00004f81 
+ 00020054  0x00002fd4 call  0x00004efb 
+ 00020055  0x00002fd5 branch  0x00004e3f 
+ 00020056  0x00002fd9 fetch  0x00000001 , 0x00004464 
+ 00020057  0x00002fdb increase  0xffffffff , 0x0000003f 
+ 00020058  0x00002fdc store  0x00000001 , 0x00004464 
+ 00020059  0x00002fdd lshift  0x0000003f , 0x0000003f 
+ 00020060  0x00002fdf iadd  0x00000006 , 0x00000006 
+ 00020061  0x00002fe0 ifetcht  0x00000002 , 0x00000006 
+ 00020062  0x00002fe1 storet  0x00000002 , 0x0000446c 
+ 00020063  0x00002fe2 branch  0x00004f81 
+ 00020064  0x00002fe5 fetch  0x00000001 , 0x000045a8 
+ 00020065  0x00002fe6 bbit0  0x00000000 , 0x00004e66 
+ 00020066  0x00002fe7 fetch  0x00000002 , 0x0000039b 
+ 00020067  0x00002fe8 fetcht  0x00000002 , 0x0000458b 
+ 00020068  0x00002fe9 isub  0x00000002 , 0x0000003e 
+ 00020069  0x00002fea branch  0x00004e71 , 0x00000005 
+ 00020070  0x00002fec fetcht  0x00000002 , 0x0000039b 
+ 00020071  0x00002fed call  0x000051f5 
+ 00020072  0x00002fee branch  0x00004d6e , 0x00000034 
+ 00020073  0x00002fef ifetch  0x00000001 , 0x00000006 
+ 00020074  0x00002ff0 branch  0x00004f81 , 0x00000034 
+ 00020075  0x00002ff1 sub  0x0000003f , 0x00000016 , 0x0000003e 
+ 00020076  0x00002ff2 branch  0x00004e6e , 0x00000002 
+ 00020077  0x00002ff3 force  0x00000016 , 0x0000003f 
+ 00020078  0x00002ff5 icopy  0x00000039 
+ 00020079  0x00002ff6 call  0x00007ec0 
+ 00020080  0x00002ff7 branch  0x00004f81 
+ 00020081  0x00002ffa fetch  0x00000001 , 0x0000456c 
+ 00020082  0x00002ffb branch  0x00004e66 , 0x00000034 
+ 00020083  0x00002ffc fetch  0x00000001 , 0x00000362 
+ 00020084  0x00002ffd bbit1  0x00000004 , 0x00004e66 
+ 00020085  0x00002ffe jam  0x00000005 , 0x0000039d 
+ 00020086  0x00002fff branch  0x00004d6f 
+ 00020087  0x00003002 setarg  0x00000003 
+ 00020088  0x00003003 store  0x00000002 , 0x0000446c 
+ 00020089  0x00003004 setarg  0x00000008 
+ 00020090  0x00003005 istore  0x00000002 , 0x00000005 
+ 00020091  0x00003006 branch  0x00004f81 
+ 00020092  0x00003009 fetch  0x00000002 , 0x000044e7 
+ 00020093  0x0000300a iforce  0x00000011 
+ 00020094  0x0000300b fetcht  0x00000002 , 0x0000039b 
+ 00020095  0x0000300c call  0x000051f5 
+ 00020096  0x0000300d branch  0x00004d6e , 0x00000034 
+ 00020097  0x0000300e ifetch  0x00000001 , 0x00000006 
+ 00020098  0x0000300f isub  0x00000011 , 0x00000039 
+ 00020099  0x00003010 nbranch  0x00004d6e , 0x00000002 
+ 00020100  0x00003011 sub  0x00000039 , 0x00000016 , 0x0000003e 
+ 00020101  0x00003012 branch  0x00004e87 , 0x00000002 
+ 00020102  0x00003013 force  0x00000016 , 0x00000039 
+ 00020103  0x00003015 deposit  0x00000011 
+ 00020104  0x00003016 iadd  0x00000006 , 0x00000006 
+ 00020105  0x00003017 call  0x00007ec0 
+ 00020106  0x00003018 branch  0x00004f81 
+ 00020107  0x0000301b setarg  0x00000003 
+ 00020108  0x0000301c istore  0x00000002 , 0x00000005 
+ 00020109  0x0000301d setarg  0x00000007 
+ 00020110  0x0000301e istore  0x00000002 , 0x00000005 
+ 00020111  0x0000301f setarg  0x00000009 
+ 00020112  0x00003020 istore  0x00000002 , 0x00000005 
+ 00020113  0x00003021 branch  0x00004f81 
+ 00020114  0x00003024 fetch  0x00000001 , 0x00004464 
+ 00020115  0x00003025 icopy  0x00000013 
+ 00020116  0x00003027 arg  0x00000309 , 0x00000011 
+ 00020117  0x00003028 arg  0x0000446c , 0x00000012 
+ 00020118  0x00003029 arg  0x00000000 , 0x0000000b 
+ 00020119  0x0000302a disable  0x00000031 
+ 00020120  0x0000302d copy  0x00000011 , 0x00000006 
+ 00020121  0x0000302e ifetcht  0x00000002 , 0x00000006 
+ 00020122  0x0000302f copy  0x00000006 , 0x00000011 
+ 00020123  0x00003030 call  0x000051f5 
+ 00020124  0x00003031 branch  0x00004eab , 0x00000034 
+ 00020125  0x00003032 ifetch  0x00000001 , 0x00000006 
+ 00020126  0x00003033 icopy  0x00000039 
+ 00020127  0x00003034 iadd  0x0000000b , 0x0000000b 
+ 00020128  0x00003038 sub  0x0000000b , 0x00000018 , 0x0000003e 
+ 00020129  0x00003039 nbranch  0x00004eb0 , 0x00000002 
+ 00020130  0x0000303a copy  0x00000012 , 0x00000005 
+ 00020131  0x0000303d ifetch  0x00000001 , 0x00000006 
+ 00020132  0x0000303e istore  0x00000001 , 0x00000005 
+ 00020133  0x0000303f loop  0x00004ea3 
+ 00020134  0x00003040 copy  0x00000005 , 0x00000012 
+ 00020135  0x00003041 enable  0x00000031 
+ 00020136  0x00003042 increase  0xffffffff , 0x00000013 
+ 00020137  0x00003043 branch  0x00004eab , 0x00000005 
+ 00020138  0x00003044 branch  0x00004e98 
+ 00020139  0x00003047 nbranch  0x00004eb6 , 0x00000031 
+ 00020140  0x00003048 disable  0x00000031 
+ 00020141  0x00003049 copy  0x0000000b , 0x00000002 
+ 00020142  0x0000304a increase  0x00000005 , 0x00000002 
+ 00020143  0x0000304b branch  0x00004f89 
+ 00020144  0x0000304e nbranch  0x00004eb6 , 0x00000031 
+ 00020145  0x0000304f disable  0x00000031 
+ 00020146  0x00003050 deposit  0x0000000b 
+ 00020147  0x00003051 isub  0x00000039 , 0x00000002 
+ 00020148  0x00003052 increase  0x00000005 , 0x00000002 
+ 00020149  0x00003053 branch  0x00004f89 
+ 00020150  0x00003056 jam  0x00000010 , 0x0000039d 
+ 00020151  0x00003057 branch  0x00004d6f 
+ 00020152  0x0000305b fetch  0x00000002 , 0x0000039b 
+ 00020153  0x0000305c branch  0x00004c4d , 0x00000034 
+ 00020154  0x0000305d istore  0x00000002 , 0x00000005 
+ 00020155  0x0000305e setarg  0x0000ffff 
+ 00020156  0x0000305f istore  0x00000002 , 0x00000005 
+ 00020157  0x00003060 setarg  0x00002800 
+ 00020158  0x00003061 istore  0x00000002 , 0x00000005 
+ 00020159  0x00003062 branch  0x00004f81 
+ 00020160  0x00003069 arg  0x00000002 , 0x0000000b 
+ 00020161  0x0000306a fetch  0x00000002 , 0x000044e3 
+ 00020162  0x0000306b store  0x00000002 , 0x000009c6 
+ 00020163  0x0000306c jam  0x00000000 , 0x000003d9 
+ 00020164  0x0000306e fetcht  0x00000002 , 0x000044e3 
+ 00020165  0x0000306f storet  0x00000002 , 0x000009c6 
+ 00020166  0x00003070 call  0x000051e0 
+ 00020167  0x00003071 call  0x000051f8 
+ 00020168  0x00003072 increase  0xfffffffe , 0x00000006 
+ 00020169  0x00003073 copy  0x00000006 , 0x0000003f 
+ 00020170  0x00003074 store  0x00000002 , 0x000003c1 
+ 00020171  0x00003075 set1  0x00000025 , 0x00000000 
+ 00020172  0x00003076 bpatch  0x00000036 , 0x00004026 
+ 00020173  0x00003078 call  0x00004eff 
+ 00020174  0x00003079 nbranch  0x00004ef1 , 0x00000002 
+ 00020175  0x0000307a fetcht  0x00000002 , 0x000009c6 
+ 00020176  0x0000307b call  0x00005217 
+ 00020177  0x0000307c beq  0x00000001 , 0x00004ef4 
+ 00020178  0x0000307e call  0x00004f03 
+ 00020179  0x0000307f nbranch  0x00004eed , 0x00000005 
+ 00020180  0x00003080 fetch  0x00000001 , 0x000003d9 
+ 00020181  0x00003081 beq  0x00000001 , 0x00004ef4 
+ 00020182  0x00003082 nbranch  0x00004edd , 0x00000028 
+ 00020183  0x00003083 disable  0x00000028 
+ 00020184  0x00003084 fetch  0x00000001 , 0x000003d8 
+ 00020185  0x00003085 increase  0x00000004 , 0x0000003f 
+ 00020186  0x00003086 store  0x00000001 , 0x0000446c 
+ 00020187  0x00003087 call  0x00007e6a 
+ 00020188  0x00003088 branch  0x00004ee8 
+ 00020189  0x0000308a fetch  0x00000001 , 0x0000446c 
+ 00020190  0x0000308b beq  0x00000014 , 0x00004ef4 
+ 00020191  0x0000308c fetch  0x00000001 , 0x000003d8 
+ 00020192  0x0000308d increase  0x00000004 , 0x0000003f 
+ 00020193  0x0000308e fetcht  0x00000001 , 0x0000446c 
+ 00020194  0x0000308f isub  0x00000002 , 0x0000003e 
+ 00020195  0x00003090 nbranch  0x00004ef4 , 0x00000005 
+ 00020196  0x00003094 fetch  0x00000002 , 0x000009c6 
+ 00020197  0x00003095 increase  0xffffffff , 0x0000003f 
+ 00020198  0x00003096 store  0x00000002 , 0x000003c5 
+ 00020199  0x00003097 call  0x00004f15 
+ 00020200  0x00003099 fetch  0x00000002 , 0x000009c6 
+ 00020201  0x0000309a store  0x00000002 , 0x000003c3 
+ 00020202  0x0000309b call  0x00004f0e 
+ 00020203  0x0000309c increase  0xffffffff , 0x0000000b 
+ 00020204  0x0000309d branch  0x00004eef , 0x00000005 
+ 00020205  0x0000309f call  0x00004efb 
+ 00020206  0x000030a0 branch  0x00004ecd 
+ 00020207  0x000030a2 jam  0x00000001 , 0x000003d9 
+ 00020208  0x000030a3 branch  0x00004eed 
+ 00020209  0x000030a5 fetch  0x00000002 , 0x000009c6 
+ 00020210  0x000030a6 store  0x00000002 , 0x000003c5 
+ 00020211  0x000030a7 branch  0x00004ef8 
+ 00020212  0x000030a9 fetch  0x00000002 , 0x000009c6 
+ 00020213  0x000030aa increase  0xffffffff , 0x0000003f 
+ 00020214  0x000030ab store  0x00000002 , 0x000003c5 
+ 00020215  0x000030ac branch  0x00004ef8 
+ 00020216  0x000030ae branch  0x00004d6e , 0x00000028 
+ 00020217  0x000030af call  0x00004f15 
+ 00020218  0x000030b0 branch  0x00004f13 
+ 00020219  0x000030b4 fetcht  0x00000002 , 0x000009c6 
+ 00020220  0x000030b5 increase  0x00000001 , 0x00000002 
+ 00020221  0x000030b6 storet  0x00000002 , 0x000009c6 
+ 00020222  0x000030b7 rtn 
+ 00020223  0x000030ba fetcht  0x00000002 , 0x000009c6 
+ 00020224  0x000030bb fetch  0x00000002 , 0x000044e5 
+ 00020225  0x000030bc isub  0x00000002 , 0x0000003e 
+ 00020226  0x000030bd rtn 
+ 00020227  0x000030c0 fetcht  0x00000001 , 0x000044e7 
+ 00020228  0x000030c1 arg  0x000044e8 , 0x00000011 
+ 00020229  0x000030c3 fetch  0x00000001 , 0x000003c7 
+ 00020230  0x000030c4 copy  0x0000003f , 0x00000039 
+ 00020231  0x000030c5 isub  0x00000002 , 0x0000003e 
+ 00020232  0x000030c6 nrtn  0x00000005 
+ 00020233  0x000030c7 arg  0x000003c8 , 0x00000012 
+ 00020234  0x000030c8 branch  0x00007f55 
+ 00020235  0x000030cb fetcht  0x00000001 , 0x000044fa 
+ 00020236  0x000030cc arg  0x000044fb , 0x00000011 
+ 00020237  0x000030cd branch  0x00004f05 
+ 00020238  0x000030d1 fetch  0x00000001 , 0x000003d8 
+ 00020239  0x000030d2 store  0x00000001 , 0x00000100 
+ 00020240  0x000030d3 copy  0x0000003f , 0x00000039 
+ 00020241  0x000030d4 call  0x00007e67 
+ 00020242  0x000030d5 branch  0x00007ec0 
+ 00020243  0x000030d8 call  0x00007e64 
+ 00020244  0x000030d9 branch  0x00004f81 
+ 00020245  0x000030dc call  0x00007e64 
+ 00020246  0x000030dd fetch  0x00000002 , 0x000003c3 
+ 00020247  0x000030de istore  0x00000002 , 0x00000005 
+ 00020248  0x000030df fetch  0x00000002 , 0x000003c5 
+ 00020249  0x000030e0 istore  0x00000002 , 0x00000005 
+ 00020250  0x000030e2 fetch  0x00000001 , 0x00000100 
+ 00020251  0x000030e3 copy  0x0000003f , 0x00000039 
+ 00020252  0x000030e4 call  0x00007ec0 
+ 00020253  0x000030e5 branch  0x00007e6a 
+ 00020254  0x000030e8 fetch  0x00000002 , 0x000044f8 
+ 00020255  0x000030e9 store  0x00000002 , 0x0000446c 
+ 00020256  0x000030ea fetch  0x00000001 , 0x0000450b 
+ 00020257  0x000030eb copy  0x0000003f , 0x00000039 
+ 00020258  0x000030ec arg  0x0000450c , 0x00000006 
+ 00020259  0x000030ed call  0x00007ec0 
+ 00020260  0x000030ee branch  0x00004f81 
+ 00020261  0x000030f2 force  0x00000005 , 0x00000002 
+ 00020262  0x000030f3 branch  0x00004f89 
+ 00020263  0x000030f6 force  0x00000006 , 0x00000002 
+ 00020264  0x000030f7 branch  0x00004f89 
+ 00020265  0x000030fa fetch  0x00000001 , 0x000003da 
+ 00020266  0x000030fb beq  0x00000001 , 0x00004f2e 
+ 00020267  0x000030fc beq  0x00000002 , 0x00004f30 
+ 00020268  0x000030fd jam  0x00000000 , 0x000003da 
+ 00020269  0x000030fe rtn 
+ 00020270  0x00003101 fetch  0x00000002 , 0x0000429e 
+ 00020271  0x00003102 branch  0x00007f69 
+ 00020272  0x00003105 fetch  0x00000002 , 0x000045a0 
+ 00020273  0x00003106 branch  0x00003b31 , 0x00000034 
+ 00020274  0x00003107 fetcht  0x00000002 , 0x000045a6 
+ 00020275  0x00003108 branch  0x00003b31 , 0x00000034 
+ 00020276  0x00003109 isub  0x00000002 , 0x0000003f 
+ 00020277  0x0000310a arg  0x0000001b , 0x00000002 
+ 00020278  0x0000310b call  0x00007faf 
+ 00020279  0x0000310c copy  0x0000003f , 0x00000039 
+ 00020280  0x00003111 arg  0x00000a41 , 0x00000011 
+ 00020281  0x00003112 fetch  0x00000002 , 0x000045a6 
+ 00020282  0x00003113 iadd  0x00000011 , 0x00000011 
+ 00020283  0x00003114 iadd  0x00000039 , 0x0000003f 
+ 00020284  0x00003115 store  0x00000002 , 0x000045a6 
+ 00020285  0x00003116 fetcht  0x00000002 , 0x000045a0 
+ 00020286  0x00003117 isub  0x00000002 , 0x00000002 
+ 00020287  0x00003118 ncall  0x00004f5e , 0x00000005 
+ 00020288  0x00003119 jam  0x00000002 , 0x000003da 
+ 00020289  0x0000311a arg  0x00004467 , 0x00000005 
+ 00020290  0x0000311b copy  0x00000011 , 0x00000006 
+ 00020291  0x0000311c call  0x00007ec0 
+ 00020292  0x0000311d arg  0x00000001 , 0x00000001 
+ 00020293  0x0000311e branch  0x00004f59 
+ 00020294  0x00003122 fetch  0x00000002 , 0x000045a0 
+ 00020295  0x00003123 branch  0x00003b31 , 0x00000034 
+ 00020296  0x00003124 add  0x0000003f , 0x00000005 , 0x00000002 
+ 00020297  0x00003125 storet  0x00000002 , 0x00004467 
+ 00020298  0x00003126 arg  0x00000012 , 0x00000002 
+ 00020299  0x00003127 call  0x00007faf 
+ 00020300  0x00003128 copy  0x0000003f , 0x00000039 
+ 00020301  0x00003129 store  0x00000002 , 0x000045a6 
+ 00020302  0x0000312c fetcht  0x00000002 , 0x000045a0 
+ 00020303  0x0000312d isub  0x00000002 , 0x00000002 
+ 00020304  0x0000312e ncall  0x00004f5e , 0x00000005 
+ 00020305  0x0000312f jam  0x00000002 , 0x000003da 
+ 00020306  0x00003130 arg  0x00000002 , 0x00000001 
+ 00020307  0x00003134 fetch  0x00000002 , 0x000045a4 
+ 00020308  0x00003135 store  0x00000002 , 0x0000446c 
+ 00020309  0x00003136 fetch  0x00000002 , 0x000045a2 
+ 00020310  0x00003137 istore  0x00000002 , 0x00000005 
+ 00020311  0x0000313c arg  0x00000a41 , 0x00000006 
+ 00020312  0x0000313d call  0x00007ec0 
+ 00020313  0x0000313f setarg  0x00004467 
+ 00020314  0x00003140 isub  0x00000005 , 0x0000003f 
+ 00020315  0x00003141 sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00020316  0x00003142 storet  0x00000001 , 0x00004466 
+ 00020317  0x00003143 branch  0x00004f90 
+ 00020318  0x00003147 fetch  0x00000003 , 0x00004544 
+ 00020319  0x00003148 nbranch  0x00004f62 , 0x00000034 
+ 00020320  0x00003149 jam  0x0000001f , 0x00004546 
+ 00020321  0x0000314a rtn 
+ 00020322  0x0000314c call  0x00004bd4 
+ 00020323  0x0000314d nbranch  0x00003b31 , 0x00000034 
+ 00020324  0x0000314e jam  0x0000001f , 0x00004545 
+ 00020325  0x0000314f rtn 
+ 00020326  0x00003154 force  0x00000006 , 0x00000002 
+ 00020327  0x00003155 branch  0x00004f89 
+ 00020328  0x00003158 force  0x00000005 , 0x00000002 
+ 00020329  0x00003159 branch  0x00004f89 
+ 00020330  0x0000315c set1  0x00000025 , 0x00000000 
+ 00020331  0x0000315d bpatch  0x00000037 , 0x00004026 
+ 00020332  0x0000315e increase  0x00000001 , 0x00000002 
+ 00020333  0x0000315f call  0x000051f5 
+ 00020334  0x00003160 increase  0xfffffffe , 0x00000006 
+ 00020335  0x00003161 ifetch  0x00000002 , 0x00000006 
+ 00020336  0x00003162 arg  0x00002902 , 0x00000002 
+ 00020337  0x00003163 isub  0x00000002 , 0x0000003e 
+ 00020338  0x00003164 nrtn  0x00000005 
+ 00020339  0x00003165 increase  0x00000001 , 0x00000006 
+ 00020340  0x00003166 copy  0x00000006 , 0x00000011 
+ 00020341  0x00003167 ifetch  0x00000001 , 0x00000006 
+ 00020342  0x00003168 rtn 
+ 00020343  0x0000316b fetch  0x00000002 , 0x0000429c 
+ 00020344  0x0000316c branch  0x00007f69 
+ 00020345  0x0000316f force  0x00000006 , 0x00000002 
+ 00020346  0x00003170 branch  0x00004f89 
+ 00020347  0x00003173 force  0x00000006 , 0x00000002 
+ 00020348  0x00003174 branch  0x00004f89 
+ 00020349  0x00003177 force  0x00000006 , 0x00000002 
+ 00020350  0x00003178 branch  0x00004f89 
+ 00020351  0x0000317b force  0x00000006 , 0x00000002 
+ 00020352  0x0000317c branch  0x00004f89 
+ 00020353  0x00003180 set1  0x00000025 , 0x00000000 
+ 00020354  0x00003181 bpatch  0x00000038 , 0x00004027 
+ 00020355  0x00003182 setarg  0x00004467 
+ 00020356  0x00003183 isub  0x00000005 , 0x0000003f 
+ 00020357  0x00003184 sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00020358  0x00003185 branch  0x00004f89 
+ 00020359  0x00003189 force  0x00000000 , 0x00000002 
+ 00020360  0x0000318a force  0x00000001 , 0x00000001 
+ 00020361  0x0000318d set1  0x00000025 , 0x00000000 
+ 00020362  0x0000318e bpatch  0x00000039 , 0x00004027 
+ 00020363  0x0000318f storet  0x00000001 , 0x00004466 
+ 00020364  0x00003190 compare  0x00000002 , 0x00000001 , 0x00000003 
+ 00020365  0x00003191 nbranch  0x00004f90 , 0x00000001 
+ 00020366  0x00003192 add  0x00000002 , 0xfffffffc , 0x0000003f 
+ 00020367  0x00003193 store  0x00000002 , 0x00004467 
+ 00020368  0x00003196 fetcht  0x00000001 , 0x00000379 
+ 00020369  0x00003197 call  0x00004bd0 
+ 00020370  0x00003199 nsetflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00020371  0x0000319b set1  0x00000005 , 0x00000002 
+ 00020372  0x0000319c and  0x00000002 , 0x000000fc , 0x0000003f 
+ 00020373  0x0000319d ior  0x00000001 , 0x0000003f 
+ 00020374  0x0000319e store  0x00000001 , 0x00000379 
+ 00020375  0x0000319f and_into  0x0000001f , 0x0000003f 
+ 00020376  0x000031a0 store  0x00000001 , 0x00004465 
+ 00020377  0x000031a1 set1  0x00000025 , 0x00000000 
+ 00020378  0x000031a2 bpatch  0x0000003a , 0x00004027 
+ 00020379  0x000031a3 fetch  0x00000001 , 0x00004465 
+ 00020380  0x000031a4 compare  0x00000001 , 0x00000001 , 0x00000003 
+ 00020381  0x000031a5 nbranch  0x00004fa0 , 0x00000001 
+ 00020382  0x000031a6 fetch  0x00000001 , 0x00004466 
+ 00020383  0x000031a7 rtn  0x00000034 
+ 00020384  0x000031a9 fetch  0x00000007 , 0x00004466 
+ 00020385  0x000031aa fetch  0x00000001 , 0x00000362 
+ 00020386  0x000031ab rtnbit0  0x00000004 
+ 00020387  0x000031ac call  0x000071b6 
+ 00020388  0x000031ad branch  0x00007109 
+ 00020389  0x000031b0 set1  0x00000025 , 0x00000000 
+ 00020390  0x000031b1 bpatch  0x0000003b , 0x00004027 
+ 00020391  0x000031b2 call  0x00004bd2 
+ 00020392  0x000031b3 nbranch  0x00003b31 , 0x00000034 
+ 00020393  0x000031b4 nrtn  0x00000034 
+ 00020394  0x000031b5 fetch  0x00000001 , 0x00000303 
+ 00020395  0x000031b6 rtn  0x00000034 
+ 00020396  0x000031b7 fetch  0x00000001 , 0x00000302 
+ 00020397  0x000031b8 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00020398  0x000031b9 branch  0x00005307 , 0x00000001 
+ 00020399  0x000031ba fetch  0x00000007 , 0x00000303 
+ 00020400  0x000031bb fetch  0x00000001 , 0x00000302 
+ 00020401  0x000031bc compare  0x00000002 , 0x0000003f , 0x00000003 
+ 00020402  0x000031bd branch  0x00004fcb , 0x00000001 
+ 00020403  0x000031bf fetch  0x00000001 , 0x00000304 
+ 00020404  0x000031c0 store  0x00000001 , 0x000003bb 
+ 00020405  0x000031c1 copy  0x0000003f , 0x00000013 
+ 00020406  0x000031c2 set1  0x00000025 , 0x00000000 
+ 00020407  0x000031c3 bpatch  0x0000003c , 0x00004027 
+ 00020408  0x000031c4 copy  0x00000013 , 0x0000003f 
+ 00020409  0x000031c5 beq  0x00000000 , 0x0000501f 
+ 00020410  0x000031c6 beq  0x00000001 , 0x0000502b 
+ 00020411  0x000031c7 beq  0x00000002 , 0x00005033 
+ 00020412  0x000031c8 beq  0x00000003 , 0x00005039 
+ 00020413  0x000031c9 beq  0x00000004 , 0x0000504a 
+ 00020414  0x000031ca beq  0x00000005 , 0x0000504f 
+ 00020415  0x000031cb beq  0x00000006 , 0x00005054 
+ 00020416  0x000031cc beq  0x00000007 , 0x00005059 
+ 00020417  0x000031cd beq  0x00000008 , 0x0000505a 
+ 00020418  0x000031ce beq  0x00000009 , 0x0000505c 
+ 00020419  0x000031cf beq  0x0000000a , 0x0000505d 
+ 00020420  0x000031d0 beq  0x0000000b , 0x00005062 
+ 00020421  0x000031d1 beq  0x0000000c , 0x00005065 
+ 00020422  0x000031d2 beq  0x0000000d , 0x00005068 
+ 00020423  0x000031d3 beq  0x00000012 , 0x00005063 
+ 00020424  0x000031d4 store  0x00000001 , 0x00004550 
+ 00020425  0x000031d5 jam  0x00000027 , 0x000009bd 
+ 00020426  0x000031d6 branch  0x00004bd6 
+ 00020427  0x000031d9 fetch  0x00000001 , 0x00000303 
+ 00020428  0x000031da and  0x0000003f , 0x0000001f , 0x0000003f 
+ 00020429  0x000031db rtn  0x00000034 
+ 00020430  0x000031dc fetch  0x00000002 , 0x00000304 
+ 00020431  0x000031dd store  0x00000002 , 0x0000039e 
+ 00020432  0x000031de fetch  0x00000002 , 0x00000306 
+ 00020433  0x000031df beq  0x00000004 , 0x0000500d 
+ 00020434  0x000031e0 beq  0x00000006 , 0x00004ffb 
+ 00020435  0x000031e1 rtn 
+ 00020436  0x000031e4 jam  0x00000001 , 0x00004569 
+ 00020437  0x000031e5 fetch  0x00000001 , 0x0000039a 
+ 00020438  0x000031e6 beq  0x00000012 , 0x00004fea 
+ 00020439  0x000031e7 beq  0x00000016 , 0x00004fee 
+ 00020440  0x000031e8 beq  0x00000052 , 0x00004fe6 
+ 00020441  0x000031e9 jam  0x00000000 , 0x00004569 
+ 00020442  0x000031ea rtn 
+ 00020443  0x000031ee fetch  0x00000001 , 0x00000303 
+ 00020444  0x000031ef icopy  0x00000012 
+ 00020445  0x000031f0 arg  0x00000304 , 0x00000011 
+ 00020446  0x000031f1 call  0x0000516d 
+ 00020447  0x000031f3 fetch  0x00000001 , 0x00000303 
+ 00020448  0x000031f4 fetcht  0x00000002 , 0x0000459a 
+ 00020449  0x000031f5 iadd  0x00000002 , 0x0000003f 
+ 00020450  0x000031f7 store  0x00000002 , 0x0000459a 
+ 00020451  0x000031f8 fetcht  0x00000002 , 0x0000459c 
+ 00020452  0x000031f9 isub  0x00000002 , 0x0000003e 
+ 00020453  0x000031fa rtn 
+ 00020454  0x000031fd call  0x00004fdb 
+ 00020455  0x000031fe nrtn  0x00000005 
+ 00020456  0x000031ff jam  0x00000000 , 0x00004569 
+ 00020457  0x00003200 rtn 
+ 00020458  0x00003203 call  0x00004fdb 
+ 00020459  0x00003204 nrtn  0x00000005 
+ 00020460  0x00003205 jam  0x00000000 , 0x00004569 
+ 00020461  0x00003206 branch  0x00005123 
+ 00020462  0x00003209 fetcht  0x00000002 , 0x000045a0 
+ 00020463  0x0000320a fetch  0x00000001 , 0x00000303 
+ 00020464  0x0000320b icopy  0x00000039 
+ 00020465  0x0000320c iadd  0x00000002 , 0x0000003f 
+ 00020466  0x0000320d store  0x00000002 , 0x000045a0 
+ 00020467  0x0000320f arg  0x00000a41 , 0x0000003f 
+ 00020468  0x00003210 iadd  0x00000002 , 0x00000005 
+ 00020469  0x00003211 arg  0x00000304 , 0x00000006 
+ 00020470  0x00003212 call  0x00007ec0 
+ 00020471  0x00003214 call  0x00004fdb 
+ 00020472  0x00003215 nrtn  0x00000005 
+ 00020473  0x00003216 jam  0x00000000 , 0x00004569 
+ 00020474  0x00003217 branch  0x00005169 
+ 00020475  0x0000321e set1  0x00000025 , 0x00000000 
+ 00020476  0x0000321f bpatch  0x0000003d , 0x00004027 
+ 00020477  0x00003220 ifetch  0x00000001 , 0x00000006 
+ 00020478  0x00003221 beq  0x00000001 , 0x00005069 
+ 00020479  0x00003222 beq  0x00000002 , 0x0000508b 
+ 00020480  0x00003223 beq  0x00000003 , 0x00005090 
+ 00020481  0x00003224 beq  0x00000004 , 0x000050a0 
+ 00020482  0x00003225 beq  0x00000005 , 0x000050a8 
+ 00020483  0x00003226 beq  0x00000006 , 0x000050d5 
+ 00020484  0x00003227 beq  0x00000007 , 0x000050d7 
+ 00020485  0x00003228 beq  0x00000008 , 0x000050d8 
+ 00020486  0x00003229 beq  0x00000009 , 0x000050e0 
+ 00020487  0x0000322a beq  0x0000000a , 0x000050e3 
+ 00020488  0x0000322b beq  0x0000000b , 0x000050e4 
+ 00020489  0x0000322c beq  0x0000000c , 0x000050c9 
+ 00020490  0x0000322d beq  0x0000000d , 0x000050d0 
+ 00020491  0x0000322e jam  0x00000045 , 0x000009bd 
+ 00020492  0x0000322f branch  0x00004bd6 
+ 00020493  0x00003232 set1  0x00000025 , 0x00000000 
+ 00020494  0x00003233 bpatch  0x0000003e , 0x00004027 
+ 00020495  0x00003234 ifetch  0x00000003 , 0x00000006 
+ 00020496  0x00003235 store  0x00000003 , 0x0000039a 
+ 00020497  0x00003237 beq  0x00000002 , 0x000050e8 
+ 00020498  0x00003238 beq  0x00000003 , 0x000050e5 
+ 00020499  0x00003239 beq  0x00000004 , 0x000050eb 
+ 00020500  0x0000323b beq  0x00000006 , 0x000050ee 
+ 00020501  0x0000323d beq  0x00000008 , 0x000050f8 
+ 00020502  0x0000323f beq  0x0000000a , 0x0000510c 
+ 00020503  0x00003241 beq  0x0000000c , 0x00005110 
+ 00020504  0x00003243 beq  0x0000000e , 0x00005114 
+ 00020505  0x00003245 beq  0x00000010 , 0x0000511a 
+ 00020506  0x00003247 beq  0x00000012 , 0x00005120 
+ 00020507  0x00003249 beq  0x00000016 , 0x00005142 
+ 00020508  0x0000324b beq  0x00000018 , 0x0000516b 
+ 00020509  0x00003250 beq  0x00000052 , 0x0000511e 
+ 00020510  0x00003252 rtn 
+ 00020511  0x00003256 ifetch  0x00000009 , 0x00000006 
+ 00020512  0x00003257 store  0x00000009 , 0x0000445b 
+ 00020513  0x00003258 ifetch  0x00000002 , 0x00000006 
+ 00020514  0x00003259 store  0x00000002 , 0x00000382 
+ 00020515  0x0000325a fetch  0x00000001 , 0x00000362 
+ 00020516  0x0000325b set1  0x00000005 , 0x0000003f 
+ 00020517  0x0000325c store  0x00000001 , 0x00000362 
+ 00020518  0x0000325d fetch  0x00000001 , 0x00004132 
+ 00020519  0x0000325e rtnne  0x00000009 
+ 00020520  0x0000325f jam  0x00000000 , 0x00004131 
+ 00020521  0x00003260 jam  0x0000001e , 0x000048c7 
+ 00020522  0x00003261 rtn 
+ 00020523  0x00003264 ifetch  0x00000005 , 0x00000006 
+ 00020524  0x00003265 store  0x00000005 , 0x00004456 
+ 00020525  0x00003266 ifetch  0x00000002 , 0x00000006 
+ 00020526  0x00003267 store  0x00000002 , 0x00000382 
+ 00020527  0x00003268 fetch  0x00000001 , 0x00000362 
+ 00020528  0x00003269 set1  0x00000006 , 0x0000003f 
+ 00020529  0x0000326a store  0x00000001 , 0x00000362 
+ 00020530  0x0000326b rtn 
+ 00020531  0x0000326e fetch  0x00000001 , 0x00004132 
+ 00020532  0x0000326f bne  0x00000009 , 0x00005036 
+ 00020533  0x00003270 jam  0x00000001 , 0x000048bb 
+ 00020534  0x00003272 setarg  0x00000014 
+ 00020535  0x00003273 store  0x00000002 , 0x00000390 
+ 00020536  0x00003274 rtn 
+ 00020537  0x00003277 ifetch  0x00000008 , 0x00000006 
+ 00020538  0x00003278 store  0x00000008 , 0x00004573 
+ 00020539  0x00003279 ifetch  0x00000002 , 0x00000006 
+ 00020540  0x0000327a store  0x00000002 , 0x00004571 
+ 00020541  0x0000327b ifetch  0x00000008 , 0x00000006 
+ 00020542  0x0000327c store  0x00000008 , 0x00004551 
+ 00020543  0x0000327d ifetch  0x00000004 , 0x00000006 
+ 00020544  0x0000327e store  0x00000004 , 0x0000449a 
+ 00020545  0x0000327f jam  0x00000024 , 0x000009bd 
+ 00020546  0x00003280 call  0x00004bd6 
+ 00020547  0x00003281 jam  0x00000001 , 0x0000456b 
+ 00020548  0x00003282 fetch  0x00000001 , 0x0000456a 
+ 00020549  0x00003283 rtneq  0x00000002 
+ 00020550  0x00003284 fetch  0x00000001 , 0x00004132 
+ 00020551  0x00003285 beq  0x00000009 , 0x00006418 
+ 00020552  0x00003286 rtnne  0x0000000a 
+ 00020553  0x00003287 branch  0x0000640c 
+ 00020554  0x0000328a ifetch  0x00000008 , 0x00000006 
+ 00020555  0x0000328b store  0x00000008 , 0x00004559 
+ 00020556  0x0000328c ifetch  0x00000004 , 0x00000006 
+ 00020557  0x0000328d store  0x00000004 , 0x0000449e 
+ 00020558  0x0000328e branch  0x000070c8 
+ 00020559  0x00003291 fetch  0x00000001 , 0x00000362 
+ 00020560  0x00003292 set1  0x00000004 , 0x0000003f 
+ 00020561  0x00003293 store  0x00000001 , 0x00000362 
+ 00020562  0x00003294 jam  0x00000026 , 0x000009bd 
+ 00020563  0x00003295 branch  0x00004bd6 
+ 00020564  0x00003298 rtn  0x00000029 
+ 00020565  0x00003299 jam  0x00000026 , 0x000009bd 
+ 00020566  0x0000329a call  0x00004bd6 
+ 00020567  0x0000329b jam  0x00000032 , 0x000009bd 
+ 00020568  0x0000329c branch  0x00007d86 
+ 00020569  0x0000329f rtn 
+ 00020570  0x000032a2 jam  0x00000029 , 0x000009bd 
+ 00020571  0x000032a3 branch  0x00004bd6 
+ 00020572  0x000032a6 rtn 
+ 00020573  0x000032a9 jam  0x00000002 , 0x0000456b 
+ 00020574  0x000032aa jam  0x0000002b , 0x000009bd 
+ 00020575  0x000032ab call  0x00004bd6 
+ 00020576  0x000032ac jam  0x00000033 , 0x000009bd 
+ 00020577  0x000032ad branch  0x00007d86 
+ 00020578  0x000032b1 rtn 
+ 00020579  0x000032b4 jam  0x00000033 , 0x000009bd 
+ 00020580  0x000032b5 branch  0x00004bd6 
+ 00020581  0x000032b8 rtn  0x00000029 
+ 00020582  0x000032b9 jam  0x0000002c , 0x000009bd 
+ 00020583  0x000032ba branch  0x00004bd6 
+ 00020584  0x000032bd rtn 
+ 00020585  0x000032c1 store  0x00000001 , 0x000044d5 
+ 00020586  0x000032c2 ifetch  0x00000006 , 0x00000006 
+ 00020587  0x000032c3 istore  0x00000006 , 0x00000005 
+ 00020588  0x000032c4 jam  0x00000042 , 0x000009bd 
+ 00020589  0x000032c5 call  0x00004bd6 
+ 00020590  0x000032c6 fetch  0x00000001 , 0x00004132 
+ 00020591  0x000032c7 beq  0x00000009 , 0x0000507b 
+ 00020592  0x000032c8 call  0x00005086 
+ 00020593  0x000032c9 jam  0x00000001 , 0x0000456a 
+ 00020594  0x000032ca fetch  0x00000001 , 0x000044d6 
+ 00020595  0x000032cb beq  0x00000000 , 0x00005078 
+ 00020596  0x000032cc beq  0x00000001 , 0x00005078 
+ 00020597  0x000032cd beq  0x00000003 , 0x00005078 
+ 00020598  0x000032ce fetch  0x00000001 , 0x0000456c 
+ 00020599  0x000032cf beq  0x00000002 , 0x0000507d 
+ 00020600  0x000032d1 arg  0x00000000 , 0x0000003f 
+ 00020601  0x000032d2 store  0x00000004 , 0x0000456d 
+ 00020602  0x000032d3 rtn 
+ 00020603  0x000032d5 jam  0x00000001 , 0x000048ba 
+ 00020604  0x000032d6 rtn 
+ 00020605  0x000032d9 arg  0x0000456d , 0x00000011 
+ 00020606  0x000032da copy  0x00000011 , 0x00000005 
+ 00020607  0x000032db arg  0x00000003 , 0x00000039 
+ 00020608  0x000032dc call  0x00005918 
+ 00020609  0x000032dd fetch  0x00000002 , 0x0000456f 
+ 00020610  0x000032de and_into  0x00000007 , 0x0000003f 
+ 00020611  0x000032df store  0x00000002 , 0x0000456f 
+ 00020612  0x000032e0 jam  0x00000034 , 0x000009bd 
+ 00020613  0x000032e1 branch  0x00007d86 
+ 00020614  0x000032e4 fetch  0x00000001 , 0x000044d8 
+ 00020615  0x000032e5 rtnbit1  0x00000003 
+ 00020616  0x000032e6 fetch  0x00000001 , 0x0000456c 
+ 00020617  0x000032e7 rtnbit0  0x00000007 
+ 00020618  0x000032e8 branch  0x00003e6b 
+ 00020619  0x000032ec store  0x00000001 , 0x000044dc 
+ 00020620  0x000032ed ifetch  0x00000006 , 0x00000006 
+ 00020621  0x000032ee istore  0x00000006 , 0x00000005 
+ 00020622  0x000032ef jam  0x00000043 , 0x000009bd 
+ 00020623  0x000032f0 branch  0x00004bd6 
+ 00020624  0x000032f3 copy  0x00000006 , 0x00000011 
+ 00020625  0x000032f4 fetch  0x00000001 , 0x0000456c 
+ 00020626  0x000032f5 beq  0x00000083 , 0x0000509a 
+ 00020627  0x000032f6 copy  0x00000011 , 0x00000006 
+ 00020628  0x000032f7 arg  0x000044b3 , 0x00000005 
+ 00020629  0x000032f8 call  0x00007e87 
+ 00020630  0x000032f9 jam  0x00000044 , 0x000009bd 
+ 00020631  0x000032fa branch  0x00004bd6 , 0x00000029 
+ 00020632  0x000032fb jam  0x00000043 , 0x000009bd 
+ 00020633  0x000032fc branch  0x00004bd6 
+ 00020634  0x000032fe copy  0x00000011 , 0x00000006 
+ 00020635  0x000032ff arg  0x000044b3 , 0x00000005 
+ 00020636  0x00003300 call  0x00007e87 
+ 00020637  0x00003301 jam  0x00000002 , 0x00004564 
+ 00020638  0x00003302 jam  0x00000008 , 0x00004566 
+ 00020639  0x00003303 rtn 
+ 00020640  0x00003306 copy  0x00000006 , 0x00000011 
+ 00020641  0x00003307 fetch  0x00000001 , 0x00004563 
+ 00020642  0x00003308 beq  0x00000001 , 0x000050ab 
+ 00020643  0x00003309 copy  0x00000011 , 0x00000006 
+ 00020644  0x0000330a call  0x000070ba 
+ 00020645  0x0000330b branch  0x000050c0 , 0x00000005 
+ 00020646  0x0000330d jam  0x00000045 , 0x000009bd 
+ 00020647  0x0000330e call  0x00004bd6 
+ 00020648  0x00003310 jam  0x00000000 , 0x0000456a 
+ 00020649  0x00003311 jam  0x00000030 , 0x000009bd 
+ 00020650  0x00003312 branch  0x00007d86 
+ 00020651  0x00003315 arg  0x00000352 , 0x00000005 
+ 00020652  0x00003316 copy  0x00000011 , 0x00000006 
+ 00020653  0x00003317 call  0x00007e87 
+ 00020654  0x00003318 fetch  0x00000001 , 0x0000456c 
+ 00020655  0x00003319 beq  0x00000083 , 0x000050b6 
+ 00020656  0x0000331a call  0x00006e6e 
+ 00020657  0x0000331d jam  0x00000044 , 0x000009bd 
+ 00020658  0x0000331e call  0x00004bd6 
+ 00020659  0x0000331f fetch  0x00000001 , 0x0000456c 
+ 00020660  0x00003320 beq  0x00000082 , 0x00005d60 
+ 00020661  0x00003321 rtn 
+ 00020662  0x00003324 call  0x00006edc 
+ 00020663  0x00003325 arg  0x00000a11 , 0x00000005 
+ 00020664  0x00003326 call  0x00006f24 
+ 00020665  0x00003327 arg  0x00000a11 , 0x00000011 
+ 00020666  0x00003328 arg  0x000044b3 , 0x00000012 
+ 00020667  0x00003329 arg  0x00000010 , 0x00000039 
+ 00020668  0x0000332a call  0x00007f55 
+ 00020669  0x0000332b nbranch  0x000052d8 , 0x00000005 
+ 00020670  0x0000332c jam  0x00000044 , 0x000009bd 
+ 00020671  0x0000332d branch  0x00004bd6 
+ 00020672  0x00003330 call  0x000070b5 
+ 00020673  0x00003331 jam  0x00000031 , 0x000009bd 
+ 00020674  0x00003332 call  0x00007d86 
+ 00020675  0x00003333 jam  0x00000001 , 0x000044b2 
+ 00020676  0x00003334 jam  0x00000002 , 0x0000456a 
+ 00020677  0x00003335 jam  0x00000023 , 0x000009bd 
+ 00020678  0x00003336 branch  0x00004bd6 , 0x00000029 
+ 00020679  0x00003337 jam  0x00000044 , 0x000009bd 
+ 00020680  0x00003338 branch  0x00004bd6 
+ 00020681  0x0000333d fetch  0x00000001 , 0x00000303 
+ 00020682  0x0000333e increase  0xfffffffb , 0x0000003f 
+ 00020683  0x0000333f store  0x00000001 , 0x000003db 
+ 00020684  0x00003340 copy  0x0000003f , 0x00000039 
+ 00020685  0x00003341 arg  0x000008e2 , 0x00000005 
+ 00020686  0x00003342 increase  0x00000005 , 0x00000006 
+ 00020687  0x00003343 branch  0x00007ec0 
+ 00020688  0x00003346 arg  0x00000992 , 0x00000005 
+ 00020689  0x00003347 call  0x00007e87 
+ 00020690  0x00003348 jam  0x00000006 , 0x00004566 
+ 00020691  0x00003349 jam  0x00000002 , 0x00004564 
+ 00020692  0x0000334a rtn 
+ 00020693  0x0000334c arg  0x00000342 , 0x00000005 
+ 00020694  0x0000334d branch  0x00007e87 
+ 00020695  0x00003350 rtn 
+ 00020696  0x00003353 arg  0x0000457b , 0x00000005 
+ 00020697  0x00003354 call  0x00007e87 
+ 00020698  0x00003355 fetch  0x00000001 , 0x0000452b 
+ 00020699  0x00003356 rtneq  0x00000000 
+ 00020700  0x00003357 fetch  0x00000001 , 0x00000377 
+ 00020701  0x00003358 compare  0x000000c0 , 0x0000003f , 0x000000c0 
+ 00020702  0x00003359 rtn  0x00000001 
+ 00020703  0x0000335a branch  0x00003e7b 
+ 00020704  0x0000335d jam  0x00000003 , 0x0000456b 
+ 00020705  0x0000335e jam  0x00000003 , 0x0000456a 
+ 00020706  0x0000335f rtn 
+ 00020707  0x00003362 rtn 
+ 00020708  0x00003365 rtn 
+ 00020709  0x00003369 fetch  0x00000002 , 0x00000309 
+ 00020710  0x0000336a store  0x00000002 , 0x0000454e 
+ 00020711  0x0000336b rtn 
+ 00020712  0x0000336e call  0x000050e5 
+ 00020713  0x0000336f jam  0x00000003 , 0x000009bd 
+ 00020714  0x00003370 branch  0x00004bd6 
+ 00020715  0x00003373 call  0x000050fc 
+ 00020716  0x00003374 jam  0x00000005 , 0x000009bd 
+ 00020717  0x00003375 branch  0x00004bd6 
+ 00020718  0x0000337a call  0x000050fc 
+ 00020719  0x0000337b ifetch  0x00000002 , 0x00000006 
+ 00020720  0x0000337c store  0x00000002 , 0x000044fb 
+ 00020721  0x0000337d call  0x00007e6d 
+ 00020722  0x0000337e arg  0x000044e7 , 0x00000005 
+ 00020723  0x0000337f fetch  0x00000002 , 0x0000039e 
+ 00020724  0x00003380 increase  0xfffffff9 , 0x0000003f 
+ 00020725  0x00003381 call  0x00005105 
+ 00020726  0x00003382 jam  0x00000007 , 0x000009bd 
+ 00020727  0x00003383 branch  0x00004bd6 
+ 00020728  0x00003388 call  0x000050fc 
+ 00020729  0x00003389 call  0x00005109 
+ 00020730  0x0000338a jam  0x00000009 , 0x000009bd 
+ 00020731  0x0000338b branch  0x00004bd6 
+ 00020732  0x0000338f rshift8  0x0000003f , 0x0000003f 
+ 00020733  0x00003390 store  0x00000002 , 0x000044e3 
+ 00020734  0x00003391 ifetch  0x00000002 , 0x00000006 
+ 00020735  0x00003392 store  0x00000002 , 0x000044e5 
+ 00020736  0x00003393 rtn 
+ 00020737  0x00003396 call  0x00007e6d 
+ 00020738  0x00003397 arg  0x000044e7 , 0x00000005 
+ 00020739  0x00003399 fetch  0x00000002 , 0x0000039e 
+ 00020740  0x0000339a increase  0xfffffffb , 0x0000003f 
+ 00020741  0x0000339c istore  0x00000001 , 0x00000005 
+ 00020742  0x0000339d copy  0x0000003f , 0x00000039 
+ 00020743  0x0000339e call  0x00007e67 
+ 00020744  0x0000339f branch  0x00007ec0 
+ 00020745  0x000033a2 call  0x00007e6d 
+ 00020746  0x000033a3 arg  0x000044fa , 0x00000005 
+ 00020747  0x000033a4 branch  0x00005103 
+ 00020748  0x000033aa fetch  0x00000002 , 0x00000309 
+ 00020749  0x000033ab store  0x00000002 , 0x0000039b 
+ 00020750  0x000033ac jam  0x0000000b , 0x000009bd 
+ 00020751  0x000033ad branch  0x00004bd6 
+ 00020752  0x000033b2 ifetch  0x00000002 , 0x00000006 
+ 00020753  0x000033b3 store  0x00000002 , 0x000044e7 
+ 00020754  0x000033b4 jam  0x0000000d , 0x000009bd 
+ 00020755  0x000033b5 branch  0x00004bd6 
+ 00020756  0x000033b9 fetch  0x00000001 , 0x00000303 
+ 00020757  0x000033ba increase  0xfffffffb , 0x0000003f 
+ 00020758  0x000033bb rshift  0x0000003f , 0x0000003f 
+ 00020759  0x000033bc store  0x00000001 , 0x00004464 
+ 00020760  0x000033bd jam  0x0000000f , 0x000009bd 
+ 00020761  0x000033be branch  0x00004bd6 
+ 00020762  0x000033c2 call  0x000050fc 
+ 00020763  0x000033c3 call  0x00005101 
+ 00020764  0x000033c5 jam  0x00000011 , 0x000009bd 
+ 00020765  0x000033c6 branch  0x00004bd6 
+ 00020766  0x000033c9 call  0x0000512f 
+ 00020767  0x000033ca branch  0x00005125 
+ 00020768  0x000033cd call  0x0000512f 
+ 00020769  0x000033ce call  0x00005125 
+ 00020770  0x000033cf nrtn  0x00000005 
+ 00020771  0x000033d1 jam  0x00000013 , 0x000009bd 
+ 00020772  0x000033d2 branch  0x00004bd6 
+ 00020773  0x000033d5 fetch  0x00000001 , 0x00000303 
+ 00020774  0x000033d6 increase  0xfffffffc , 0x0000003f 
+ 00020775  0x000033d7 store  0x00000002 , 0x0000459a 
+ 00020776  0x000033d8 increase  0xfffffffd , 0x0000003f 
+ 00020777  0x000033da ifetcht  0x00000002 , 0x00000006 
+ 00020778  0x000033db storet  0x00000002 , 0x0000459c 
+ 00020779  0x000033dc storet  0x00000002 , 0x0000459e 
+ 00020780  0x000033dd increase  0xfffffffd , 0x00000002 
+ 00020781  0x000033de isub  0x00000002 , 0x0000003e 
+ 00020782  0x000033df rtn 
+ 00020783  0x000033e2 fetch  0x00000001 , 0x00000303 
+ 00020784  0x000033e3 increase  0xfffffff9 , 0x0000003f 
+ 00020785  0x000033e4 icopy  0x00000039 
+ 00020786  0x000033e5 copy  0x00000039 , 0x00000012 
+ 00020787  0x000033e6 fetch  0x00000001 , 0x000045a8 
+ 00020788  0x000033e7 bbit0  0x00000001 , 0x00005140 
+ 00020789  0x000033e8 fetcht  0x00000002 , 0x0000039b 
+ 00020790  0x000033e9 call  0x000051f5 
+ 00020791  0x000033ea rtn  0x00000034 
+ 00020792  0x000033eb ifetch  0x00000001 , 0x00000006 
+ 00020793  0x000033ec isub  0x00000039 , 0x0000003e 
+ 00020794  0x000033ed branch  0x0000513c , 0x00000002 
+ 00020795  0x000033ee copy  0x0000003f , 0x00000039 
+ 00020796  0x000033f0 copy  0x00000006 , 0x00000005 
+ 00020797  0x000033f1 copy  0x00000039 , 0x00000012 
+ 00020798  0x000033f2 arg  0x0000030b , 0x00000006 
+ 00020799  0x000033f3 call  0x00007ec0 
+ 00020800  0x000033f5 arg  0x0000030b , 0x00000011 
+ 00020801  0x000033f6 branch  0x0000516d 
+ 00020802  0x000033fa fetch  0x00000001 , 0x00000303 
+ 00020803  0x000033fb increase  0xfffffffc , 0x0000003f 
+ 00020804  0x000033fc store  0x00000002 , 0x0000459a 
+ 00020805  0x000033fd ifetcht  0x00000002 , 0x00000006 
+ 00020806  0x000033fe storet  0x00000002 , 0x0000459c 
+ 00020807  0x000033ff increase  0xfffffffe , 0x00000002 
+ 00020808  0x00003400 storet  0x00000002 , 0x0000459e 
+ 00020809  0x00003402 fetch  0x00000001 , 0x00000303 
+ 00020810  0x00003403 increase  0xfffffff7 , 0x0000003f 
+ 00020811  0x00003404 store  0x00000002 , 0x000045a0 
+ 00020812  0x00003406 icopy  0x00000039 
+ 00020813  0x00003407 copy  0x00000039 , 0x00000012 
+ 00020814  0x00003408 fetch  0x00000001 , 0x000045a8 
+ 00020815  0x00003409 bbit0  0x00000001 , 0x0000515b 
+ 00020816  0x0000340a fetcht  0x00000002 , 0x0000039b 
+ 00020817  0x0000340b call  0x000051f5 
+ 00020818  0x0000340c branch  0x00005169 , 0x00000034 
+ 00020819  0x0000340d ifetch  0x00000001 , 0x00000006 
+ 00020820  0x0000340e isub  0x00000039 , 0x0000003e 
+ 00020821  0x0000340f branch  0x00005157 , 0x00000002 
+ 00020822  0x00003410 copy  0x0000003f , 0x00000039 
+ 00020823  0x00003412 copy  0x00000006 , 0x00000005 
+ 00020824  0x00003413 copy  0x00000039 , 0x00000012 
+ 00020825  0x00003414 arg  0x0000030d , 0x00000006 
+ 00020826  0x00003415 call  0x00007ec0 
+ 00020827  0x00003418 copy  0x00000012 , 0x00000039 
+ 00020828  0x00003419 arg  0x00000a41 , 0x00000005 
+ 00020829  0x0000341a arg  0x0000030d , 0x00000006 
+ 00020830  0x0000341b call  0x00007ec0 
+ 00020831  0x0000341d arg  0x0000030d , 0x00000011 
+ 00020832  0x0000341e fetch  0x00000002 , 0x0000030b 
+ 00020833  0x0000341f store  0x00000002 , 0x000045a2 
+ 00020834  0x00003420 fetcht  0x00000002 , 0x0000039b 
+ 00020835  0x00003421 storet  0x00000002 , 0x000045a4 
+ 00020836  0x00003423 call  0x0000516d 
+ 00020837  0x00003425 fetch  0x00000002 , 0x0000459a 
+ 00020838  0x00003426 fetcht  0x00000002 , 0x0000459c 
+ 00020839  0x00003427 isub  0x00000002 , 0x0000003e 
+ 00020840  0x00003428 nrtn  0x00000005 
+ 00020841  0x0000342a jam  0x00000017 , 0x000009bd 
+ 00020842  0x0000342b branch  0x00004bd6 
+ 00020843  0x00003430 jam  0x00000019 , 0x000009bd 
+ 00020844  0x00003431 branch  0x00004bd6 
+ 00020845  0x00003435 fetch  0x00000002 , 0x0000429a 
+ 00020846  0x00003436 rtn  0x00000034 
+ 00020847  0x00003437 iforce  0x0000003d 
+ 00020848  0x0000343a fetcht  0x00000004 , 0x0000037e 
+ 00020849  0x0000343b call  0x00003b1e 
+ 00020850  0x0000343c isub  0x00000002 , 0x0000000b 
+ 00020851  0x0000343d deposit  0x0000000b 
+ 00020852  0x0000343e fetcht  0x00000002 , 0x00000390 
+ 00020853  0x0000343f lshift4  0x00000002 , 0x00000002 
+ 00020854  0x00003440 lshift  0x00000002 , 0x00000002 
+ 00020855  0x00003441 isub  0x00000002 , 0x0000003f 
+ 00020856  0x00003442 rtn 
+ 00020857  0x00003445 call  0x00003b1e 
+ 00020858  0x00003446 store  0x00000004 , 0x0000037e 
+ 00020859  0x00003447 rtn 
+ 00020860  0x0000344c jam  0x00000024 , 0x00000016 
+ 00020861  0x0000344e set1  0x00000025 , 0x00000000 
+ 00020862  0x0000344f bpatch  0x0000003f , 0x00004027 
+ 00020863  0x00003450 fetch  0x00000001 , 0x000043ff 
+ 00020864  0x00003451 rtn  0x00000034 
+ 00020865  0x00003452 arg  0x00000001 , 0x00000007 
+ 00020866  0x00003453 call  0x00007ee2 
+ 00020867  0x00003454 nrtn  0x00000034 
+ 00020868  0x00003455 disable  0x00000029 
+ 00020869  0x00003456 enable  0x00000010 
+ 00020870  0x00003457 call  0x00004b1e 
+ 00020871  0x00003458 call  0x000049d4 
+ 00020872  0x00003459 call  0x00004a8a 
+ 00020873  0x0000345a nbranch  0x00005193 , 0x0000002d 
+ 00020874  0x0000345b fetch  0x00000001 , 0x00000003 
+ 00020875  0x0000345c increase  0x00000001 , 0x0000003f 
+ 00020876  0x0000345d store  0x00000001 , 0x00000003 
+ 00020877  0x0000345e set1  0x00000025 , 0x00000000 
+ 00020878  0x0000345f bpatch  0x00000040 , 0x00004028 
+ 00020879  0x00003460 fetch  0x00000001 , 0x00000302 
+ 00020880  0x00003461 and  0x0000003f , 0x0000000f , 0x0000003f 
+ 00020881  0x00003462 beq  0x00000003 , 0x00004ac5 
+ 00020882  0x00003463 beq  0x00000005 , 0x000051af 
+ 00020883  0x00003465 nop  0x00002710 
+ 00020884  0x00003466 fetch  0x00000001 , 0x00000016 
+ 00020885  0x00003467 bne  0x00000027 , 0x0000517d 
+ 00020886  0x00003468 arg  0x00000001 , 0x00000007 
+ 00020887  0x00003469 fetch  0x00000002 , 0x0000451e 
+ 00020888  0x0000346a branch  0x00007ed4 
+ 00020889  0x0000346e set1  0x00000025 , 0x00000000 
+ 00020890  0x0000346f bpatch  0x00000041 , 0x00004028 
+ 00020891  0x00003470 fetch  0x00000001 , 0x00000399 
+ 00020892  0x00003471 call  0x000049ad 
+ 00020893  0x00003472 fetch  0x00000002 , 0x00000364 
+ 00020894  0x00003473 imul32  0x00000002 , 0x0000003f 
+ 00020895  0x00003474 arg  0x00000177 , 0x00000002 
+ 00020896  0x00003475 imul32  0x00000002 , 0x0000003f 
+ 00020897  0x00003476 arg  0x000186a0 , 0x00000002 
+ 00020898  0x00003477 idiv  0x00000002 
+ 00020899  0x00003478 fetch  0x00000001 , 0x0000038d 
+ 00020900  0x00003479 arg  0x00004e20 , 0x00000002 
+ 00020901  0x0000347a imul32  0x00000002 , 0x0000003f 
+ 00020902  0x0000347b store  0x00000004 , 0x00004596 
+ 00020903  0x0000347c set1  0x00000025 , 0x00000000 
+ 00020904  0x0000347d bpatch  0x00000042 , 0x00004028 
+ 00020905  0x0000347e fetch  0x00000002 , 0x00004161 
+ 00020906  0x0000347f call  0x00007f53 
+ 00020907  0x00003480 quotient  0x00000002 
+ 00020908  0x00003481 iadd  0x00000002 , 0x0000003f 
+ 00020909  0x00003482 store  0x00000002 , 0x00000370 
+ 00020910  0x00003483 rtn 
+ 00020911  0x00003486 set1  0x00000025 , 0x00000000 
+ 00020912  0x00003487 bpatch  0x00000043 , 0x00004028 
+ 00020913  0x00003488 fetch  0x00000006 , 0x0000030a 
+ 00020914  0x00003489 fetcht  0x00000006 , 0x0000453e 
+ 00020915  0x0000348a isub  0x00000002 , 0x0000003e 
+ 00020916  0x0000348b nrtn  0x00000005 
+ 00020917  0x0000348c call  0x00004bc9 
+ 00020918  0x0000348d copy  0x00000011 , 0x0000003f 
+ 00020919  0x0000348e store  0x00000001 , 0x0000452b 
+ 00020920  0x0000348f fetch  0x00000007 , 0x00000317 
+ 00020921  0x00003490 store  0x00000007 , 0x00000100 
+ 00020922  0x00003491 ifetch  0x00000008 , 0x00000006 
+ 00020923  0x00003492 istore  0x00000008 , 0x00000005 
+ 00020924  0x00003493 fetch  0x00000006 , 0x00000304 
+ 00020925  0x00003494 store  0x00000006 , 0x00000372 
+ 00020926  0x00003495 set1  0x00000025 , 0x00000000 
+ 00020927  0x00003496 bpatch  0x00000044 , 0x00004028 
+ 00020928  0x00003497 increase  0x00000006 , 0x00000006 
+ 00020929  0x00003498 ifetch  0x00000008 , 0x00000006 
+ 00020930  0x00003499 store  0x00000008 , 0x00000386 
+ 00020931  0x0000349a ifetcht  0x00000002 , 0x00000006 
+ 00020932  0x0000349b lshift2  0x00000002 , 0x00000002 
+ 00020933  0x0000349c ifetch  0x00000002 , 0x00000006 
+ 00020934  0x0000349d lshift2  0x0000003f , 0x0000003f 
+ 00020935  0x0000349e store  0x00000002 , 0x00000364 
+ 00020936  0x0000349f store  0x00000004 , 0x00000366 
+ 00020937  0x000034a0 isub  0x00000002 , 0x0000003f 
+ 00020938  0x000034a1 add  0x0000003f , 0xfffffffe , 0x00000028 
+ 00020939  0x000034a2 ifetch  0x00000009 , 0x00000006 
+ 00020940  0x000034a3 store  0x00000009 , 0x0000038e 
+ 00020941  0x000034a4 set1  0x00000025 , 0x00000000 
+ 00020942  0x000034a5 bpatch  0x00000045 , 0x00004028 
+ 00020943  0x000034a6 ifetch  0x00000001 , 0x00000006 
+ 00020944  0x000034a7 rshift4  0x0000003f , 0x00000002 
+ 00020945  0x000034a8 rshift  0x00000002 , 0x00000002 
+ 00020946  0x000034a9 storet  0x00000001 , 0x00000399 
+ 00020947  0x000034aa and_into  0x0000001f , 0x0000003f 
+ 00020948  0x000034ab store  0x00000001 , 0x0000037b 
+ 00020949  0x000034ac call  0x00005199 
+ 00020950  0x000034ad call  0x000049ef 
+ 00020951  0x000034ae call  0x00004902 
+ 00020952  0x000034af call  0x0000327a 
+ 00020953  0x000034b0 nrtn  0x00000005 
+ 00020954  0x000034b1 set1  0x00000025 , 0x00000000 
+ 00020955  0x000034b2 bpatch  0x00000046 , 0x00004028 
+ 00020956  0x000034b3 call  0x000038d1 
+ 00020957  0x000034b4 jam  0x00000014 , 0x000009bd 
+ 00020958  0x000034b5 call  0x00007d86 
+ 00020959  0x000034b7 branch  0x00003260 
+ 00020960  0x000034bb set1  0x00000025 , 0x00000000 
+ 00020961  0x000034bc bpatch  0x00000047 , 0x00004028 
+ 00020962  0x000034bd fetch  0x00000002 , 0x000044e3 
+ 00020963  0x000034be iforce  0x00000012 
+ 00020964  0x000034bf fetch  0x00000002 , 0x000044e5 
+ 00020965  0x000034c0 iforce  0x00000013 
+ 00020966  0x000034c1 fetch  0x00000002 , 0x00004637 
+ 00020967  0x000034c2 iforce  0x00000006 
+ 00020968  0x000034c3 enable  0x00000028 
+ 00020969  0x000034c4 rtn 
+ 00020970  0x000034c8 ifetch  0x00000002 , 0x00000006 
+ 00020971  0x000034c9 rtn  0x00000034 
+ 00020972  0x000034ca isub  0x00000012 , 0x0000003e 
+ 00020973  0x000034cb nrtn  0x00000002 
+ 00020974  0x000034cc isub  0x00000013 , 0x0000003e 
+ 00020975  0x000034cd rtn  0x00000005 
+ 00020976  0x000034ce branch  0x000051f3 , 0x00000002 
+ 00020977  0x000034cf force  0x00000001 , 0x0000003e 
+ 00020978  0x000034d0 rtn 
+ 00020979  0x000034d2 force  0x00000000 , 0x0000003f 
+ 00020980  0x000034d3 rtn 
+ 00020981  0x000034d8 call  0x000051f8 
+ 00020982  0x000034d9 branch  0x00005205 , 0x00000005 
+ 00020983  0x000034da rtn 
+ 00020984  0x000034dd set1  0x00000025 , 0x00000000 
+ 00020985  0x000034de bpatch  0x00000048 , 0x00004029 
+ 00020986  0x000034df fetch  0x00000002 , 0x00004637 
+ 00020987  0x000034e0 iforce  0x00000006 
+ 00020988  0x000034e2 ifetch  0x00000002 , 0x00000006 
+ 00020989  0x000034e3 rtn  0x00000034 
+ 00020990  0x000034e4 isub  0x00000002 , 0x0000003e 
+ 00020991  0x000034e5 rtn  0x00000005 
+ 00020992  0x000034e6 ifetch  0x00000001 , 0x00000006 
+ 00020993  0x000034e7 iadd  0x00000006 , 0x00000006 
+ 00020994  0x000034e8 ifetch  0x00000001 , 0x00000006 
+ 00020995  0x000034e9 iadd  0x00000006 , 0x00000006 
+ 00020996  0x000034ea branch  0x000051fc 
+ 00020997  0x000034ec ifetch  0x00000001 , 0x00000006 
+ 00020998  0x000034ed iadd  0x00000006 , 0x00000006 
+ 00020999  0x000034ee rtn 
+ 00021000  0x000034f3 set1  0x00000025 , 0x00000000 
+ 00021001  0x000034f4 bpatch  0x00000049 , 0x00004029 
+ 00021002  0x000034f5 fetch  0x00000002 , 0x00004637 
+ 00021003  0x000034f6 iforce  0x00000006 
+ 00021004  0x000034f8 ifetch  0x00000002 , 0x00000006 
+ 00021005  0x000034f9 rtn  0x00000034 
+ 00021006  0x000034fa ifetch  0x00000001 , 0x00000006 
+ 00021007  0x000034fb iadd  0x00000006 , 0x00000006 
+ 00021008  0x000034fc increase  0xfffffffe , 0x00000006 
+ 00021009  0x000034fd ifetch  0x00000002 , 0x00000006 
+ 00021010  0x000034fe isub  0x00000002 , 0x0000003e 
+ 00021011  0x000034ff rtn  0x00000005 
+ 00021012  0x00003500 ifetch  0x00000001 , 0x00000006 
+ 00021013  0x00003501 iadd  0x00000006 , 0x00000006 
+ 00021014  0x00003502 branch  0x0000520c 
+ 00021015  0x00003507 fetch  0x00000002 , 0x000003c1 
+ 00021016  0x00003508 copy  0x0000003f , 0x00000006 
+ 00021017  0x00003509 branch  0x0000521b 
+ 00021018  0x0000350c set1  0x00000025 , 0x00000000 
+ 00021019  0x0000350d bpatch  0x0000004a , 0x00004029 
+ 00021020  0x0000350e fetch  0x00000002 , 0x00004637 
+ 00021021  0x0000350f iforce  0x00000006 
+ 00021022  0x00003510 copy  0x00000002 , 0x00000011 
+ 00021023  0x00003512 ifetch  0x00000002 , 0x00000006 
+ 00021024  0x00003513 branch  0x00005228 , 0x00000034 
+ 00021025  0x00003514 isub  0x00000011 , 0x0000003e 
+ 00021026  0x00003515 branch  0x0000522a , 0x00000005 
+ 00021027  0x00003516 ifetch  0x00000001 , 0x00000006 
+ 00021028  0x00003517 iadd  0x00000006 , 0x00000006 
+ 00021029  0x00003518 ifetch  0x00000001 , 0x00000006 
+ 00021030  0x00003519 iadd  0x00000006 , 0x00000006 
+ 00021031  0x0000351a branch  0x0000521f 
+ 00021032  0x0000351c setarg  0x00000001 
+ 00021033  0x0000351d rtn 
+ 00021034  0x0000351f ifetch  0x00000001 , 0x00000006 
+ 00021035  0x00003520 store  0x00000001 , 0x000003c7 
+ 00021036  0x00003521 copy  0x0000003f , 0x00000039 
+ 00021037  0x00003522 arg  0x000003c8 , 0x00000005 
+ 00021038  0x00003523 call  0x00007ec0 
+ 00021039  0x00003524 ifetch  0x00000001 , 0x00000006 
+ 00021040  0x00003525 store  0x00000001 , 0x000003d8 
+ 00021041  0x00003526 call  0x00007e6d 
+ 00021042  0x00003527 setarg  0x00000000 
+ 00021043  0x00003528 rtn 
+ 00021044  0x0000352d set1  0x00000025 , 0x00000000 
+ 00021045  0x0000352e bpatch  0x0000004b , 0x00004029 
+ 00021046  0x0000352f call  0x00005238 
+ 00021047  0x00003530 branch  0x0000524a 
+ 00021048  0x00003533 arg  0x00002a00 , 0x00000002 
+ 00021049  0x00003534 call  0x00005208 
+ 00021050  0x00003535 rtn  0x00000034 
+ 00021051  0x00003536 ifetch  0x00000001 , 0x00000006 
+ 00021052  0x00003537 copy  0x00000006 , 0x00000005 
+ 00021053  0x00003538 fetcht  0x00000001 , 0x00004440 
+ 00021054  0x00003539 copy  0x00000002 , 0x00000039 
+ 00021055  0x0000353a isub  0x00000002 , 0x0000003e 
+ 00021056  0x0000353b nbranch  0x00005247 , 0x00000002 
+ 00021057  0x0000353c isub  0x00000002 , 0x00000002 
+ 00021058  0x0000353d arg  0x00004441 , 0x00000006 
+ 00021059  0x0000353e call  0x00007ecd 
+ 00021060  0x0000353f copy  0x00000002 , 0x00000039 
+ 00021061  0x00003540 ncall  0x00005283 , 0x00000005 
+ 00021062  0x00003541 rtn 
+ 00021063  0x00003543 copy  0x0000003f , 0x00000039 
+ 00021064  0x00003544 arg  0x00004441 , 0x00000006 
+ 00021065  0x00003545 branch  0x00007ec0 
+ 00021066  0x00003549 arg  0x00004420 , 0x00000013 
+ 00021067  0x0000354a arg  0x00004401 , 0x00000011 
+ 00021068  0x0000354b call  0x00005257 
+ 00021069  0x0000354c setarg  0x00000000 
+ 00021070  0x0000354d setflag  0x00000028 , 0x00000000 , 0x0000003f 
+ 00021071  0x0000354e store  0x00000001 , 0x000009be 
+ 00021072  0x0000354f arg  0x00004440 , 0x00000013 
+ 00021073  0x00003550 arg  0x00004421 , 0x00000011 
+ 00021074  0x00003551 call  0x00005257 
+ 00021075  0x00003552 rtn  0x00000028 
+ 00021076  0x00003553 fetch  0x00000001 , 0x000009be 
+ 00021077  0x00003554 branch  0x00003b31 , 0x00000034 
+ 00021078  0x00003555 rtn 
+ 00021079  0x00003559 set1  0x00000025 , 0x00000000 
+ 00021080  0x0000355a bpatch  0x0000004c , 0x00004029 
+ 00021081  0x0000355b call  0x000064c0 
+ 00021082  0x0000355c call  0x00007ea5 
+ 00021083  0x0000355d arg  0x00000000 , 0x00000012 
+ 00021084  0x0000355e arg  0x000009e2 , 0x00000005 
+ 00021085  0x0000355f call  0x00005272 
+ 00021086  0x00003560 fetch  0x00000001 , 0x00004440 
+ 00021087  0x00003561 add  0x0000003f , 0x00000001 , 0x00000002 
+ 00021088  0x00003562 iadd  0x00000012 , 0x00000011 
+ 00021089  0x00003563 increase  0x00000002 , 0x00000011 
+ 00021090  0x00003564 sub  0x00000011 , 0x0000001f , 0x0000003e 
+ 00021091  0x00003565 nbranch  0x00005270 , 0x00000002 
+ 00021092  0x00003566 istoret  0x00000001 , 0x00000005 
+ 00021093  0x00003567 arg  0x00000009 , 0x00000002 
+ 00021094  0x00003568 istoret  0x00000001 , 0x00000005 
+ 00021095  0x00003569 iforce  0x00000039 
+ 00021096  0x0000356a call  0x00007ec0 
+ 00021097  0x0000356b copy  0x00000011 , 0x00000012 
+ 00021098  0x0000356d deposit  0x00000012 
+ 00021099  0x0000356e store  0x00000001 , 0x000009e1 
+ 00021100  0x0000356f arg  0x000009e1 , 0x00000006 
+ 00021101  0x00003570 setarg  0xffffffe0 
+ 00021102  0x00003571 iadd  0x00000013 , 0x00000005 
+ 00021103  0x00003572 branch  0x00007e85 
+ 00021104  0x00003575 call  0x000031d4 
+ 00021105  0x00003576 branch  0x0000526a 
+ 00021106  0x00003579 ifetch  0x00000001 , 0x00000011 
+ 00021107  0x0000357a rtn  0x00000034 
+ 00021108  0x0000357b pincrease  0x00000001 
+ 00021109  0x0000357c ifetcht  0x00000001 , 0x00000006 
+ 00021110  0x0000357d sub  0x00000002 , 0x00000009 , 0x0000003e 
+ 00021111  0x0000357e branch  0x00005281 , 0x00000005 
+ 00021112  0x0000357f iadd  0x00000012 , 0x00000012 
+ 00021113  0x00003580 copy  0x00000011 , 0x00000006 
+ 00021114  0x00003581 iforce  0x00000039 
+ 00021115  0x00003582 call  0x00007ec0 
+ 00021116  0x00003583 copy  0x00000006 , 0x00000011 
+ 00021117  0x00003585 deposit  0x00000011 
+ 00021118  0x00003586 isub  0x00000013 , 0x0000003e 
+ 00021119  0x00003587 rtn  0x00000002 
+ 00021120  0x00003588 branch  0x00005272 
+ 00021121  0x0000358b iadd  0x00000011 , 0x00000011 
+ 00021122  0x0000358c branch  0x0000527d 
+ 00021123  0x00003590 setarg  0x00000020 
+ 00021124  0x00003591 istore  0x00000001 , 0x00000005 
+ 00021125  0x00003592 loop  0x00005283 
+ 00021126  0x00003593 rtn 
+ 00021127  0x00003597 set1  0x00000025 , 0x00000000 
+ 00021128  0x00003598 bpatch  0x0000004d , 0x00004029 
+ 00021129  0x00003599 disable  0x0000002b 
+ 00021130  0x0000359a branch  0x0000528c , 0x0000002e 
+ 00021131  0x0000359b nbranch  0x0000529a , 0x0000002d 
+ 00021132  0x0000359d call  0x00003cb7 
+ 00021133  0x0000359e fetch  0x00000002 , 0x00004161 
+ 00021134  0x0000359f store  0x00000002 , 0x00000370 
+ 00021135  0x000035a0 fetch  0x00000001 , 0x00000302 
+ 00021136  0x000035a1 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00021137  0x000035a2 nbranch  0x00003ccb , 0x00000001 
+ 00021138  0x000035a3 fetch  0x00000001 , 0x00004465 
+ 00021139  0x000035a4 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00021140  0x000035a5 nbranch  0x00003ccb , 0x00000001 
+ 00021141  0x000035a6 fetch  0x00000002 , 0x000042a2 
+ 00021142  0x000035a7 call  0x00007f69 
+ 00021143  0x000035a8 fetch  0x00000001 , 0x00000362 
+ 00021144  0x000035a9 bbit1  0x00000005 , 0x00003ccb 
+ 00021145  0x000035aa branch  0x00003cb0 
+ 00021146  0x000035ad fetcht  0x00000002 , 0x00004161 
+ 00021147  0x000035ae rshift  0x00000002 , 0x00000002 
+ 00021148  0x000035af fetch  0x00000002 , 0x00000370 
+ 00021149  0x000035b0 iadd  0x00000002 , 0x0000003f 
+ 00021150  0x000035b1 store  0x00000002 , 0x00000370 
+ 00021151  0x000035b2 branch  0x00003cc3 
+ 00021152  0x000035b5 set1  0x00000025 , 0x00000000 
+ 00021153  0x000035b6 bpatch  0x0000004e , 0x00004029 
+ 00021154  0x000035b7 jam  0x00000000 , 0x00004595 
+ 00021155  0x000035b8 fetcht  0x00000002 , 0x000044f8 
+ 00021156  0x000035b9 call  0x00004f6a 
+ 00021157  0x000035ba copy  0x00000011 , 0x00000005 
+ 00021158  0x000035bb setarg  0x00000000 
+ 00021159  0x000035bc istore  0x00000001 , 0x00000005 
+ 00021160  0x000035bd rtn 
+ 00021161  0x000035c3 fetch  0x00000001 , 0x00004563 
+ 00021162  0x000035c4 rtneq  0x00000000 
+ 00021163  0x000035c5 fetch  0x00000001 , 0x00004564 
+ 00021164  0x000035c6 rtnne  0x00000002 
+ 00021165  0x000035c7 set1  0x00000025 , 0x00000000 
+ 00021166  0x000035c8 bpatch  0x00000050 , 0x0000402a 
+ 00021167  0x000035c9 jam  0x00000000 , 0x00004564 
+ 00021168  0x000035ca fetch  0x00000001 , 0x00004566 
+ 00021169  0x000035cb beq  0x00000001 , 0x000052e8 
+ 00021170  0x000035cc beq  0x00000002 , 0x000052f0 
+ 00021171  0x000035cd beq  0x00000003 , 0x000052e1 
+ 00021172  0x000035ce beq  0x00000006 , 0x000052ca 
+ 00021173  0x000035cf beq  0x00000007 , 0x000052c2 
+ 00021174  0x000035d0 beq  0x00000008 , 0x000052b8 
+ 00021175  0x000035d1 rtn 
+ 00021176  0x000035d5 fetch  0x00000001 , 0x000046eb 
+ 00021177  0x000035d6 copy  0x0000003f , 0x00000007 
+ 00021178  0x000035d7 increase  0x00000001 , 0x0000003f 
+ 00021179  0x000035d8 store  0x00000001 , 0x000046eb 
+ 00021180  0x000035d9 fetch  0x00000004 , 0x0000456d 
+ 00021181  0x000035da qisolate1  0x0000003f 
+ 00021182  0x000035db setarg  0x00000080 
+ 00021183  0x000035dc setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00021184  0x000035dd store  0x00000001 , 0x000046ec 
+ 00021185  0x000035de branch  0x000052e4 
+ 00021186  0x000035e1 fetch  0x00000001 , 0x00004567 
+ 00021187  0x000035e2 jam  0x00000000 , 0x00004567 
+ 00021188  0x000035e3 beq  0x00000001 , 0x000052c7 
+ 00021189  0x000035e4 jam  0x00000002 , 0x00004564 
+ 00021190  0x000035e5 rtn 
+ 00021191  0x000035e8 jam  0x00000002 , 0x0000456a 
+ 00021192  0x000035e9 jam  0x0000004d , 0x000009bd 
+ 00021193  0x000035ea branch  0x00004bd6 
+ 00021194  0x000035ed fetch  0x00000001 , 0x000008dd 
+ 00021195  0x000035ee beq  0x00000003 , 0x000052ce 
+ 00021196  0x000035ef jam  0x00000002 , 0x00004564 
+ 00021197  0x000035f0 rtn 
+ 00021198  0x000035f3 call  0x00006eae 
+ 00021199  0x000035f7 fetch  0x00000001 , 0x0000456c 
+ 00021200  0x000035f8 beq  0x00000083 , 0x000052d9 
+ 00021201  0x000035f9 call  0x00005078 
+ 00021202  0x000035fb call  0x00006e9a 
+ 00021203  0x000035fc arg  0x00000a11 , 0x00000011 
+ 00021204  0x000035fd arg  0x00000992 , 0x00000012 
+ 00021205  0x000035fe arg  0x00000010 , 0x00000039 
+ 00021206  0x000035ff call  0x00007f55 
+ 00021207  0x00003600 branch  0x000052da , 0x00000005 
+ 00021208  0x00003602 branch  0x000050a6 
+ 00021209  0x00003606 branch  0x000052d2 
+ 00021210  0x00003609 jam  0x00000001 , 0x000044b2 
+ 00021211  0x0000360a fetch  0x00000001 , 0x0000456c 
+ 00021212  0x0000360b beq  0x00000081 , 0x000052c7 
+ 00021213  0x0000360c beq  0x00000083 , 0x000052c7 
+ 00021214  0x0000360d jam  0x00000002 , 0x00004564 
+ 00021215  0x0000360e jam  0x00000007 , 0x00004566 
+ 00021216  0x0000360f rtn 
+ 00021217  0x00003612 fetch  0x00000001 , 0x0000456c 
+ 00021218  0x00003613 beq  0x00000083 , 0x000052e6 
+ 00021219  0x00003614 jam  0x00000000 , 0x000046ec 
+ 00021220  0x00003616 jam  0x00000043 , 0x000009bd 
+ 00021221  0x00003617 branch  0x00004bd6 
+ 00021222  0x0000361d jam  0x00000000 , 0x000046eb 
+ 00021223  0x0000361f branch  0x0000507d 
+ 00021224  0x00003623 jam  0x00000002 , 0x00004564 
+ 00021225  0x00003624 fetch  0x00000001 , 0x00004568 
+ 00021226  0x00003625 beq  0x00000003 , 0x000052ec 
+ 00021227  0x00003627 rtn 
+ 00021228  0x0000362a jam  0x00000000 , 0x000008dd 
+ 00021229  0x0000362b call  0x00007ab9 
+ 00021230  0x0000362c jam  0x00000002 , 0x00004566 
+ 00021231  0x0000362d rtn 
+ 00021232  0x00003632 call  0x00004bd0 
+ 00021233  0x00003633 branch  0x000052f4 , 0x00000034 
+ 00021234  0x00003634 jam  0x00000002 , 0x00004564 
+ 00021235  0x00003635 rtn 
+ 00021236  0x00003637 jam  0x0000004c , 0x000009bd 
+ 00021237  0x00003638 call  0x00004bd6 
+ 00021238  0x00003639 jam  0x0000004c , 0x000009bd 
+ 00021239  0x0000363a call  0x00004bd6 
+ 00021240  0x0000363b jam  0x0000004c , 0x000009bd 
+ 00021241  0x0000363c branch  0x00004bd6 
+ 00021242  0x00003643 arg  0x000008e2 , 0x0000003f 
+ 00021243  0x00003644 fetcht  0x00000001 , 0x000003db 
+ 00021244  0x00003645 iadd  0x00000002 , 0x00000005 
+ 00021245  0x00003647 fetch  0x00000001 , 0x00000303 
+ 00021246  0x00003648 copy  0x0000003f , 0x00000039 
+ 00021247  0x00003649 iadd  0x00000002 , 0x00000002 
+ 00021248  0x0000364a call  0x00007ec0 
+ 00021249  0x0000364b storet  0x00000001 , 0x000003db 
+ 00021250  0x0000364c copy  0x00000002 , 0x0000003f 
+ 00021251  0x0000364e rtnne  0x00000040 
+ 00021252  0x0000364f jam  0x00000002 , 0x00004564 
+ 00021253  0x00003650 jam  0x00000001 , 0x00004566 
+ 00021254  0x00003651 rtn 
+ 00021255  0x00003653 set1  0x00000025 , 0x00000000 
+ 00021256  0x00003654 bpatch  0x00000051 , 0x0000402a 
+ 00021257  0x00003655 fetch  0x00000001 , 0x000003db 
+ 00021258  0x00003656 bne  0x00000000 , 0x000052fa 
+ 00021259  0x00003657 branch  0x00004fd4 
+ 00021260  0x0000365e rtn  0x0000002b 
+ 00021261  0x00003660 set1  0x00000025 , 0x00000000 
+ 00021262  0x00003661 bpatch  0x00000052 , 0x0000402a 
+ 00021263  0x00003662 setarg  0x00000000 
+ 00021264  0x00003663 store  0x00000001 , 0x00000048 
+ 00021265  0x00003664 store  0x00000001 , 0x00000055 
+ 00021266  0x00003665 store  0x00000001 , 0x00000078 
+ 00021267  0x00003666 store  0x00000001 , 0x0000007c 
+ 00021268  0x00003667 store  0x00000001 , 0x000041f8 
+ 00021269  0x00003668 store  0x00000001 , 0x000003fd 
+ 00021270  0x00003669 store  0x00000001 , 0x0000016c 
+ 00021271  0x0000366a store  0x00000001 , 0x000008d9 
+ 00021272  0x0000366b jam  0x00000000 , 0x000045f4 
+ 00021273  0x0000366c jam  0x00000000 , 0x0000024d 
+ 00021274  0x0000366d jam  0x00000000 , 0x000003fe 
+ 00021275  0x0000366f jam  0x00000000 , 0x000008d9 
+ 00021276  0x00003670 jam  0x00000000 , 0x000008d8 
+ 00021277  0x00003671 jam  0x00000000 , 0x000003f7 
+ 00021278  0x00003674 rtn 
+ 00021279  0x00003677 set1  0x00000025 , 0x00000000 
+ 00021280  0x00003678 bpatch  0x00000053 , 0x0000402a 
+ 00021281  0x00003679 call  0x0000590a , 0x00000029 
+ 00021282  0x0000367a ncall  0x0000590e , 0x00000029 
+ 00021283  0x0000367b call  0x000058c5 
+ 00021284  0x0000367c nrtn  0x00000034 
+ 00021285  0x0000367d fetch  0x00000001 , 0x0000004c 
+ 00021286  0x0000367e rtnbit0  0x00000006 
+ 00021287  0x0000367f set0  0x00000006 , 0x0000003f 
+ 00021288  0x00003680 set0  0x00000001 , 0x00000000 
+ 00021289  0x00003681 store  0x00000001 , 0x0000004c 
+ 00021290  0x00003682 fetch  0x00000001 , 0x00000475 
+ 00021291  0x00003683 fetcht  0x00000001 , 0x0000004c 
+ 00021292  0x00003684 isolate1  0x00000000 , 0x0000003f 
+ 00021293  0x00003685 setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00021294  0x00003686 storet  0x00000001 , 0x0000004c 
+ 00021295  0x00003687 and_into  0x00000002 , 0x00000002 
+ 00021296  0x00003688 storet  0x00000001 , 0x0000007f 
+ 00021297  0x00003689 fetcht  0x00000001 , 0x0000004c 
+ 00021298  0x0000368a rshift  0x0000003f , 0x0000003f 
+ 00021299  0x0000368b store  0x00000001 , 0x0000007d 
+ 00021300  0x0000368c set1  0x00000025 , 0x00000000 
+ 00021301  0x0000368d bpatch  0x00000054 , 0x0000402a 
+ 00021302  0x0000368e fetch  0x00000001 , 0x0000007d 
+ 00021303  0x0000368f beq  0x0000007f , 0x0000537f 
+ 00021304  0x00003690 beq  0x00000003 , 0x000053cb 
+ 00021305  0x00003691 beq  0x00000004 , 0x000053dd 
+ 00021306  0x00003692 beq  0x0000003c , 0x00005372 
+ 00021307  0x00003693 beq  0x00000005 , 0x0000536e 
+ 00021308  0x00003694 beq  0x0000000f , 0x000055bf 
+ 00021309  0x00003695 beq  0x00000010 , 0x00005440 
+ 00021310  0x00003696 beq  0x00000023 , 0x0000545e 
+ 00021311  0x00003697 beq  0x00000039 , 0x000055d8 
+ 00021312  0x00003698 beq  0x00000038 , 0x000055d3 
+ 00021313  0x00003699 beq  0x00000031 , 0x00005443 
+ 00021314  0x0000369a beq  0x00000037 , 0x000054cc 
+ 00021315  0x0000369b beq  0x00000027 , 0x000054c8 
+ 00021316  0x0000369c beq  0x00000033 , 0x000054c5 
+ 00021317  0x0000369d beq  0x00000025 , 0x000054ca 
+ 00021318  0x0000369e beq  0x00000026 , 0x0000545a 
+ 00021319  0x0000369f beq  0x00000007 , 0x00005452 
+ 00021320  0x000036a0 beq  0x0000002d , 0x00005449 
+ 00021321  0x000036a1 beq  0x0000002e , 0x0000544a 
+ 00021322  0x000036a2 beq  0x00000001 , 0x000054c1 
+ 00021323  0x000036a3 beq  0x00000002 , 0x000054ac 
+ 00021324  0x000036a4 beq  0x00000028 , 0x000055ca 
+ 00021325  0x000036a5 beq  0x00000009 , 0x000054a2 
+ 00021326  0x000036a6 beq  0x0000000b , 0x0000547b 
+ 00021327  0x000036a7 beq  0x00000008 , 0x0000545f 
+ 00021328  0x000036a8 beq  0x0000000c , 0x00005486 
+ 00021329  0x000036a9 beq  0x0000001f , 0x00005456 
+ 00021330  0x000036aa beq  0x00000020 , 0x00005458 
+ 00021331  0x000036ab beq  0x00000021 , 0x000054e6 
+ 00021332  0x000036ac beq  0x00000022 , 0x000054e6 
+ 00021333  0x000036ad beq  0x00000035 , 0x000054e7 
+ 00021334  0x000036ae beq  0x00000036 , 0x000054e8 
+ 00021335  0x000036af beq  0x00000024 , 0x000054e6 
+ 00021336  0x000036b0 beq  0x00000034 , 0x000054e9 
+ 00021337  0x000036b1 beq  0x00000017 , 0x000054f2 
+ 00021338  0x000036b2 beq  0x00000011 , 0x00005509 
+ 00021339  0x000036b3 beq  0x00000012 , 0x0000550d 
+ 00021340  0x000036b4 beq  0x00000013 , 0x0000550f 
+ 00021341  0x000036b5 beq  0x0000000d , 0x00005521 
+ 00021342  0x000036b6 beq  0x0000000e , 0x00005521 
+ 00021343  0x000036b7 beq  0x0000002f , 0x000054c6 
+ 00021344  0x000036b8 beq  0x00000030 , 0x00005521 
+ 00021345  0x000036b9 beq  0x0000000a , 0x00005521 
+ 00021346  0x000036ba beq  0x00000018 , 0x00005522 
+ 00021347  0x000036bb beq  0x00000032 , 0x00005521 
+ 00021348  0x000036bc beq  0x0000003d , 0x00005527 
+ 00021349  0x000036bd beq  0x0000003e , 0x00005568 
+ 00021350  0x000036be beq  0x0000003f , 0x00005562 
+ 00021351  0x000036bf beq  0x00000040 , 0x0000558f 
+ 00021352  0x000036c0 beq  0x00000041 , 0x000055a1 
+ 00021353  0x000036c1 beq  0x00000006 , 0x000055be 
+ 00021354  0x000036c2 beq  0x0000003a , 0x00005370 
+ 00021355  0x000036c6 jam  0x00000019 , 0x0000007e 
+ 00021356  0x000036c8 jam  0x00000004 , 0x0000007c 
+ 00021357  0x000036c9 rtn 
+ 00021358  0x000036cc jam  0x00000006 , 0x0000007c 
+ 00021359  0x000036cd rtn 
+ 00021360  0x000036d0 jam  0x0000003b , 0x0000007c 
+ 00021361  0x000036d1 rtn 
+ 00021362  0x000036d4 fetch  0x00000004 , 0x00000476 
+ 00021363  0x000036d5 lshift  0x0000003f , 0x0000003f 
+ 00021364  0x000036d6 store  0x00000004 , 0x00004172 
+ 00021365  0x000036d7 fetch  0x00000001 , 0x0000047a 
+ 00021366  0x000036d8 store  0x00000001 , 0x00004179 
+ 00021367  0x000036d9 fetch  0x00000005 , 0x0000047b 
+ 00021368  0x000036da store  0x00000005 , 0x00004187 
+ 00021369  0x000036db fetch  0x00000005 , 0x00000480 
+ 00021370  0x000036dc istore  0x00000005 , 0x00000005 
+ 00021371  0x000036dd fetch  0x00000001 , 0x00000031 
+ 00021372  0x000036de set1  0x00000003 , 0x0000003f 
+ 00021373  0x000036df store  0x00000001 , 0x00000031 
+ 00021374  0x000036e0 rtn 
+ 00021375  0x000036e2 set1  0x00000025 , 0x00000000 
+ 00021376  0x000036e3 bpatch  0x00000055 , 0x0000402a 
+ 00021377  0x000036e4 fetch  0x00000001 , 0x00000476 
+ 00021378  0x000036e5 set1  0x00000007 , 0x0000003f 
+ 00021379  0x000036e6 store  0x00000001 , 0x0000007d 
+ 00021380  0x000036e7 beq  0x00000081 , 0x000053a2 
+ 00021381  0x000036e8 beq  0x00000082 , 0x000053a7 
+ 00021382  0x000036e9 beq  0x00000095 , 0x000054cd 
+ 00021383  0x000036ea beq  0x00000096 , 0x000054e6 
+ 00021384  0x000036eb beq  0x0000008b , 0x000054db 
+ 00021385  0x000036ec beq  0x00000083 , 0x000053bf 
+ 00021386  0x000036ed beq  0x00000084 , 0x000053c1 
+ 00021387  0x000036ee beq  0x00000090 , 0x00005394 
+ 00021388  0x000036ef beq  0x00000097 , 0x000053b8 
+ 00021389  0x000036f0 beq  0x00000098 , 0x000053bd 
+ 00021390  0x000036f1 beq  0x00000099 , 0x00005397 
+ 00021391  0x000036f2 beq  0x0000009a , 0x0000539a 
+ 00021392  0x000036f3 rtneq  0x00000084 
+ 00021393  0x000036f7 jam  0x00000082 , 0x0000007c 
+ 00021394  0x000036f8 jam  0x00000019 , 0x0000007e 
+ 00021395  0x000036fa rtn 
+ 00021396  0x000036fc jam  0x00000082 , 0x0000007c 
+ 00021397  0x000036fd jam  0x0000002e , 0x0000007e 
+ 00021398  0x000036fe rtn 
+ 00021399  0x00003701 call  0x0000539c 
+ 00021400  0x00003702 jam  0x0000009a , 0x0000007c 
+ 00021401  0x00003703 rtn 
+ 00021402  0x00003706 call  0x0000539c 
+ 00021403  0x00003707 branch  0x000053a0 
+ 00021404  0x0000370a arg  0x000046e6 , 0x00000005 
+ 00021405  0x0000370b fetch  0x00000003 , 0x00000477 
+ 00021406  0x0000370c istore  0x00000003 , 0x00000005 
+ 00021407  0x0000370d rtn 
+ 00021408  0x00003710 branch  0x000076f3 , 0x00000001 
+ 00021409  0x00003711 rtn 
+ 00021410  0x00003713 fetch  0x00000001 , 0x00000478 
+ 00021411  0x00003714 set1  0x00000007 , 0x0000003f 
+ 00021412  0x00003715 store  0x00000001 , 0x000003ef 
+ 00021413  0x00003716 beq  0x0000008b , 0x000053ac 
+ 00021414  0x00003717 rtn 
+ 00021415  0x0000371b fetch  0x00000001 , 0x00000478 
+ 00021416  0x0000371c set1  0x00000007 , 0x0000003f 
+ 00021417  0x0000371d store  0x00000001 , 0x000003ef 
+ 00021418  0x0000371e beq  0x0000008b , 0x000053b0 
+ 00021419  0x0000371f rtn 
+ 00021420  0x00003722 fetch  0x00000001 , 0x000041fa 
+ 00021421  0x00003723 fetcht  0x00000001 , 0x0000004c 
+ 00021422  0x00003724 nsetflag  0x00000034 , 0x00000005 , 0x00000002 
+ 00021423  0x00003725 storet  0x00000001 , 0x0000004c 
+ 00021424  0x00003727 fetch  0x00000001 , 0x00000030 
+ 00021425  0x00003728 rtnbit0  0x00000005 
+ 00021426  0x00003729 set0  0x00000005 , 0x0000003f 
+ 00021427  0x0000372a store  0x00000001 , 0x00000030 
+ 00021428  0x0000372b fetch  0x00000001 , 0x000003fd 
+ 00021429  0x0000372c nrtn  0x00000034 
+ 00021430  0x0000372d jam  0x00000031 , 0x0000007c 
+ 00021431  0x0000372e rtn 
+ 00021432  0x00003731 nbranch  0x000053bb , 0x00000029 
+ 00021433  0x00003732 jam  0x00000012 , 0x0000007c 
+ 00021434  0x00003733 branch  0x000058f6 
+ 00021435  0x00003736 jam  0x00000097 , 0x0000007c 
+ 00021436  0x00003737 rtn 
+ 00021437  0x0000373c call  0x000058f6 
+ 00021438  0x0000373d branch  0x00005615 
+ 00021439  0x00003740 jam  0x00000084 , 0x0000007c 
+ 00021440  0x00003741 rtn 
+ 00021441  0x00003744 fetcht  0x00000001 , 0x00000479 
+ 00021442  0x00003745 and  0x00000002 , 0x00000001 , 0x00000002 
+ 00021443  0x00003746 storet  0x00000001 , 0x000003f6 
+ 00021444  0x00003747 fetch  0x00000001 , 0x00004271 
+ 00021445  0x00003748 bne  0x00000051 , 0x000053c7 
+ 00021446  0x00003749 jam  0x00000000 , 0x00004271 
+ 00021447  0x0000374b fetch  0x00000001 , 0x00000055 
+ 00021448  0x0000374c rtnne  0x00000015 
+ 00021449  0x0000374d jam  0x00000004 , 0x00000055 
+ 00021450  0x0000374e branch  0x00005926 
+ 00021451  0x00003751 set1  0x00000025 , 0x00000000 
+ 00021452  0x00003752 bpatch  0x00000056 , 0x0000402a 
+ 00021453  0x00003753 fetch  0x00000001 , 0x00000476 
+ 00021454  0x00003754 store  0x00000001 , 0x000003ef 
+ 00021455  0x00003755 beq  0x00000033 , 0x000053f4 
+ 00021456  0x00003756 beq  0x00000008 , 0x00005403 
+ 00021457  0x00003757 beq  0x0000000f , 0x0000540a 
+ 00021458  0x00003758 beq  0x00000010 , 0x00005410 
+ 00021459  0x00003759 beq  0x00000011 , 0x00005411 
+ 00021460  0x0000375a beq  0x00000012 , 0x00005419 
+ 00021461  0x0000375b beq  0x00000018 , 0x0000542f 
+ 00021462  0x0000375c beq  0x00000017 , 0x00005432 
+ 00021463  0x0000375d beq  0x00000013 , 0x000053eb 
+ 00021464  0x0000375f beq  0x0000003d , 0x00005535 
+ 00021465  0x00003760 beq  0x0000003e , 0x00005581 
+ 00021466  0x00003761 beq  0x00000040 , 0x00005537 
+ 00021467  0x00003762 beq  0x00000041 , 0x00005554 
+ 00021468  0x00003763 rtn 
+ 00021469  0x00003766 set1  0x00000025 , 0x00000000 
+ 00021470  0x00003767 bpatch  0x00000057 , 0x0000402a 
+ 00021471  0x00003768 fetch  0x00000001 , 0x00000476 
+ 00021472  0x00003769 store  0x00000001 , 0x000003ef 
+ 00021473  0x0000376a beq  0x00000001 , 0x00005426 
+ 00021474  0x0000376b beq  0x00000033 , 0x000053fe 
+ 00021475  0x0000376c beq  0x0000000b , 0x0000541a 
+ 00021476  0x0000376d beq  0x00000008 , 0x0000541d 
+ 00021477  0x0000376e beq  0x00000013 , 0x000053ee 
+ 00021478  0x00003770 beq  0x00000040 , 0x00005427 
+ 00021479  0x00003771 beq  0x00000041 , 0x0000542a 
+ 00021480  0x00003772 beq  0x00000018 , 0x0000542d 
+ 00021481  0x00003773 beq  0x00000017 , 0x0000543e 
+ 00021482  0x00003774 rtn 
+ 00021483  0x00003777 jam  0x00000020 , 0x000009bd 
+ 00021484  0x00003778 call  0x00007d86 
+ 00021485  0x00003779 branch  0x0000320a 
+ 00021486  0x0000377b jam  0x00000019 , 0x000009bd 
+ 00021487  0x0000377c call  0x00007d86 
+ 00021488  0x0000377d jam  0x00000002 , 0x000045f4 
+ 00021489  0x0000377e setarg  0x00000050 
+ 00021490  0x0000377f arg  0x0000000a , 0x00000007 
+ 00021491  0x00003780 branch  0x00007ed4 
+ 00021492  0x00003786 fetch  0x00000001 , 0x000003f7 
+ 00021493  0x00003787 set1  0x00000000 , 0x0000003f 
+ 00021494  0x00003788 store  0x00000001 , 0x000003f7 
+ 00021495  0x00003789 jam  0x00000001 , 0x000009bd 
+ 00021496  0x0000378a call  0x00007d86 
+ 00021497  0x0000378b jam  0x0000008b , 0x0000007c 
+ 00021498  0x0000378f fetch  0x00000001 , 0x00000055 
+ 00021499  0x00003790 bne  0x00000005 , 0x0000531e 
+ 00021500  0x00003793 jam  0x00000006 , 0x00000055 
+ 00021501  0x00003794 rtn 
+ 00021502  0x0000379d jam  0x0000000b , 0x000003f0 
+ 00021503  0x0000379e jam  0x00000007 , 0x0000007c 
+ 00021504  0x000037a0 jam  0x00000000 , 0x00000055 
+ 00021505  0x000037a2 branch  0x0000531e , 0x00000001 
+ 00021506  0x000037a3 rtn 
+ 00021507  0x000037a6 fetch  0x00000001 , 0x0000425d 
+ 00021508  0x000037a7 nrtn  0x00000034 
+ 00021509  0x000037a8 call  0x000034a9 
+ 00021510  0x000037a9 call  0x00005613 
+ 00021511  0x000037aa rtn  0x00000029 
+ 00021512  0x000037ab set1  0x00000021 , 0x00000000 
+ 00021513  0x000037ac rtn 
+ 00021514  0x000037af nrtn  0x00000029 
+ 00021515  0x000037b0 jam  0x00000010 , 0x0000007c 
+ 00021516  0x000037b1 fetch  0x00000001 , 0x0000004c 
+ 00021517  0x000037b2 rtnbit0  0x00000002 
+ 00021518  0x000037b3 jam  0x00000012 , 0x0000007c 
+ 00021519  0x000037b4 rtn 
+ 00021520  0x000037b7 branch  0x00005615 
+ 00021521  0x000037ba call  0x00005672 
+ 00021522  0x000037bb fetch  0x00000001 , 0x00000030 
+ 00021523  0x000037bc rtnbit1  0x00000004 
+ 00021524  0x000037bd jam  0x00000031 , 0x0000007c 
+ 00021525  0x000037be fetch  0x00000001 , 0x00000055 
+ 00021526  0x000037bf rtnne  0x0000000a 
+ 00021527  0x000037c0 jam  0x0000000b , 0x00000055 
+ 00021528  0x000037c1 rtn 
+ 00021529  0x000037cb rtn 
+ 00021530  0x000037cf jam  0x00000007 , 0x0000007c 
+ 00021531  0x000037d0 jam  0x00000013 , 0x000003f0 
+ 00021532  0x000037d1 rtn 
+ 00021533  0x000037d4 fetch  0x00000001 , 0x00000477 
+ 00021534  0x000037d5 beq  0x00000006 , 0x00005423 
+ 00021535  0x000037d6 rtnne  0x00000018 
+ 00021536  0x000037d7 jam  0x00000018 , 0x000003f0 
+ 00021537  0x000037d8 jam  0x00000007 , 0x0000007c 
+ 00021538  0x000037d9 rtn 
+ 00021539  0x000037db jam  0x00000006 , 0x000003f0 
+ 00021540  0x000037dc jam  0x00000007 , 0x0000007c 
+ 00021541  0x000037dd rtn 
+ 00021542  0x000037e0 rtn 
+ 00021543  0x000037e3 jam  0x00000000 , 0x000008d2 
+ 00021544  0x000037e4 jam  0x00000007 , 0x0000007c 
+ 00021545  0x000037e5 branch  0x0000531e 
+ 00021546  0x000037e8 jam  0x00000000 , 0x000008d2 
+ 00021547  0x000037e9 jam  0x00000007 , 0x0000007c 
+ 00021548  0x000037ea branch  0x0000531e 
+ 00021549  0x000037ec jam  0x00000024 , 0x000009bd 
+ 00021550  0x000037ed branch  0x00007d86 
+ 00021551  0x000037f0 jam  0x00000023 , 0x000009bd 
+ 00021552  0x000037f1 call  0x00007d86 
+ 00021553  0x000037f2 branch  0x0000376a 
+ 00021554  0x000037f5 jam  0x00000022 , 0x000009bd 
+ 00021555  0x000037f6 call  0x00007d86 
+ 00021556  0x000037f7 setarg  0x00000000 
+ 00021557  0x000037f8 store  0x00000002 , 0x00000075 
+ 00021558  0x000037f9 fetch  0x00000002 , 0x00004284 
+ 00021559  0x000037fa lshift  0x0000003f , 0x0000003f 
+ 00021560  0x000037fb store  0x00000002 , 0x00000032 
+ 00021561  0x000037fc fetch  0x00000001 , 0x00004286 
+ 00021562  0x000037fd store  0x00000001 , 0x00000073 
+ 00021563  0x000037fe fetch  0x00000001 , 0x00004288 
+ 00021564  0x000037ff store  0x00000001 , 0x00000074 
+ 00021565  0x00003800 branch  0x00003746 
+ 00021566  0x00003803 jam  0x00000021 , 0x000009bd 
+ 00021567  0x00003804 branch  0x00007d86 
+ 00021568  0x00003807 fetcht  0x00000001 , 0x00000476 
+ 00021569  0x00003808 storet  0x00000001 , 0x00000054 
+ 00021570  0x00003809 branch  0x00005454 
+ 00021571  0x0000380c fetch  0x00000001 , 0x000003f7 
+ 00021572  0x0000380d set1  0x00000002 , 0x0000003f 
+ 00021573  0x0000380e store  0x00000001 , 0x000003f7 
+ 00021574  0x0000380f rtnbit1  0x00000003 
+ 00021575  0x00003810 jam  0x00000031 , 0x0000007c 
+ 00021576  0x00003811 branch  0x0000531e 
+ 00021577  0x00003816 rtn 
+ 00021578  0x00003819 fetch  0x00000001 , 0x00004170 
+ 00021579  0x0000381a fetcht  0x00000001 , 0x00000476 
+ 00021580  0x0000381b isub  0x00000002 , 0x0000003e 
+ 00021581  0x0000381d branch  0x00005454 , 0x00000002 
+ 00021582  0x0000381e jam  0x00000004 , 0x0000007c 
+ 00021583  0x0000381f jam  0x0000001f , 0x0000007e 
+ 00021584  0x00003820 jam  0x0000002e , 0x0000007d 
+ 00021585  0x00003821 rtn 
+ 00021586  0x00003824 call  0x00005764 
+ 00021587  0x00003825 branch  0x00005454 
+ 00021588  0x00003828 jam  0x00000003 , 0x0000007c 
+ 00021589  0x00003829 rtn 
+ 00021590  0x0000382c jam  0x00000021 , 0x0000007c 
+ 00021591  0x0000382d rtn 
+ 00021592  0x00003830 jam  0x00000022 , 0x0000007c 
+ 00021593  0x00003831 rtn 
+ 00021594  0x00003834 fetch  0x00000001 , 0x00000055 
+ 00021595  0x00003835 rtneq  0x00000013 
+ 00021596  0x00003837 jam  0x00000002 , 0x00000055 
+ 00021597  0x00003839 rtn 
+ 00021598  0x0000383d rtn 
+ 00021599  0x00003840 call  0x00005610 
+ 00021600  0x00003841 jam  0x00000001 , 0x000003fa 
+ 00021601  0x00003842 jam  0x0000000a , 0x000009bd 
+ 00021602  0x00003843 call  0x00007d86 
+ 00021603  0x00003845 call  0x000058fe 
+ 00021604  0x00003846 nbranch  0x00005618 , 0x00000001 
+ 00021605  0x00003848 nbranch  0x0000546a , 0x00000029 
+ 00021606  0x00003849 jam  0x00000004 , 0x0000007c 
+ 00021607  0x0000384a jam  0x00000008 , 0x0000007d 
+ 00021608  0x0000384b jam  0x00000023 , 0x0000007e 
+ 00021609  0x0000384c rtn 
+ 00021610  0x0000384e fetch  0x00000001 , 0x0000004b 
+ 00021611  0x0000384f set1  0x00000002 , 0x0000003f 
+ 00021612  0x00003850 store  0x00000001 , 0x0000004b 
+ 00021613  0x00003851 rtn 
+ 00021614  0x00003855 fetcht  0x00000001 , 0x0000004c 
+ 00021615  0x00003856 nsetflag  0x00000034 , 0x00000001 , 0x00000002 
+ 00021616  0x00003857 storet  0x00000001 , 0x0000004c 
+ 00021617  0x00003858 rtn 
+ 00021618  0x0000385c fetch  0x00000001 , 0x0000007f 
+ 00021619  0x0000385d rshift  0x0000003f , 0x0000003f 
+ 00021620  0x0000385e and_into  0x00000001 , 0x0000003f 
+ 00021621  0x0000385f rtn 
+ 00021622  0x00003862 fetch  0x00000001 , 0x00004132 
+ 00021623  0x00003863 rtnne  0x0000000a 
+ 00021624  0x00003864 fetch  0x00000001 , 0x000008d9 
+ 00021625  0x00003865 call  0x00006402 , 0x00000034 
+ 00021626  0x00003866 rtn 
+ 00021627  0x00003869 call  0x00005476 
+ 00021628  0x0000386a call  0x00005472 
+ 00021629  0x0000386b store  0x00000001 , 0x000003fb 
+ 00021630  0x0000386c call  0x00005610 
+ 00021631  0x0000386d jam  0x0000000c , 0x0000007c 
+ 00021632  0x0000386e fetch  0x00000001 , 0x0000425d 
+ 00021633  0x0000386f nrtn  0x00000034 
+ 00021634  0x00003870 fetch  0x00000001 , 0x00000030 
+ 00021635  0x00003871 rtnbit1  0x00000006 
+ 00021636  0x00003872 jam  0x00000006 , 0x0000007e 
+ 00021637  0x00003873 branch  0x0000536c 
+ 00021638  0x00003876 arg  0x00000040 , 0x00000011 
+ 00021639  0x00003877 call  0x00006fad 
+ 00021640  0x00003878 fetch  0x00000004 , 0x00000476 
+ 00021641  0x00003879 fetcht  0x00000004 , 0x000004b6 
+ 00021642  0x0000387a isub  0x00000002 , 0x0000003e 
+ 00021643  0x0000387b branch  0x0000548f , 0x00000005 
+ 00021644  0x0000387c jam  0x00000007 , 0x0000007c 
+ 00021645  0x0000387d jam  0x00000005 , 0x000003f0 
+ 00021646  0x0000387e rtn 
+ 00021647  0x00003880 call  0x00005493 
+ 00021648  0x00003881 fetch  0x00000001 , 0x000046e2 
+ 00021649  0x00003882 branch  0x00005555 , 0x00000034 
+ 00021650  0x00003883 rtn 
+ 00021651  0x00003887 call  0x000070ab 
+ 00021652  0x00003888 call  0x000031da 
+ 00021653  0x00003889 fetch  0x00000001 , 0x0000004b 
+ 00021654  0x0000388a isolate1  0x00000001 , 0x0000003f 
+ 00021655  0x0000388b set0  0x00000001 , 0x0000003f 
+ 00021656  0x0000388c store  0x00000001 , 0x0000004b 
+ 00021657  0x0000388d fetch  0x00000001 , 0x00000055 
+ 00021658  0x0000388e beq  0x00000019 , 0x0000549d 
+ 00021659  0x0000388f beq  0x00000018 , 0x0000549d 
+ 00021660  0x00003890 rtn 
+ 00021661  0x00003892 fetch  0x00000001 , 0x000008d9 
+ 00021662  0x00003893 rtnne  0x00000000 
+ 00021663  0x00003894 fetch  0x00000001 , 0x0000004c 
+ 00021664  0x00003895 rtnbit1  0x00000002 
+ 00021665  0x00003896 branch  0x000059bd 
+ 00021666  0x00003899 arg  0x00000476 , 0x00000011 
+ 00021667  0x0000389a arg  0x000004a6 , 0x00000012 
+ 00021668  0x0000389b arg  0x00000486 , 0x00000005 
+ 00021669  0x0000389c call  0x00007077 
+ 00021670  0x0000389d arg  0x00000040 , 0x00000011 
+ 00021671  0x0000389e call  0x0000591c 
+ 00021672  0x0000389f jam  0x0000000b , 0x0000007c 
+ 00021673  0x000038a0 fetch  0x00000001 , 0x00000030 
+ 00021674  0x000038a1 bbit0  0x00000006 , 0x00005613 
+ 00021675  0x000038a2 rtn 
+ 00021676  0x000038a5 fetch  0x00000002 , 0x0000015e 
+ 00021677  0x000038a6 add  0x0000003f , 0xfffffffd , 0x00000039 
+ 00021678  0x000038a7 fetcht  0x00000001 , 0x00000476 
+ 00021679  0x000038a8 setarg  0x00000100 
+ 00021680  0x000038a9 iadd  0x00000002 , 0x00000005 
+ 00021681  0x000038aa arg  0x00000478 , 0x00000006 
+ 00021682  0x000038ab call  0x00007ecd 
+ 00021683  0x000038ac fetcht  0x00000001 , 0x00000053 
+ 00021684  0x000038ad fetch  0x00000001 , 0x00000477 
+ 00021685  0x000038ae isub  0x00000002 , 0x0000003f 
+ 00021686  0x000038af sub  0x0000003f , 0x0000000e , 0x0000003e 
+ 00021687  0x000038b0 branch  0x000054bc , 0x00000002 
+ 00021688  0x000038b1 add  0x00000002 , 0x0000000e , 0x0000003f 
+ 00021689  0x000038b2 store  0x00000001 , 0x00000053 
+ 00021690  0x000038b3 jam  0x00000001 , 0x0000007c 
+ 00021691  0x000038b4 rtn 
+ 00021692  0x000038b6 fetch  0x00000001 , 0x0000004c 
+ 00021693  0x000038b7 set1  0x00000003 , 0x0000003f 
+ 00021694  0x000038b8 store  0x00000001 , 0x0000004c 
+ 00021695  0x000038b9 bbit1  0x00000004 , 0x0000561d 
+ 00021696  0x000038ba rtn 
+ 00021697  0x000038bc fetch  0x00000001 , 0x00000476 
+ 00021698  0x000038bd store  0x00000001 , 0x0000007d 
+ 00021699  0x000038be jam  0x00000002 , 0x0000007c 
+ 00021700  0x000038bf rtn 
+ 00021701  0x000038c2 branch  0x00005454 
+ 00021702  0x000038c5 jam  0x00000030 , 0x0000007c 
+ 00021703  0x000038c6 rtn 
+ 00021704  0x000038c9 jam  0x00000028 , 0x0000007c 
+ 00021705  0x000038ca rtn 
+ 00021706  0x000038cd jam  0x00000026 , 0x0000007c 
+ 00021707  0x000038ce rtn 
+ 00021708  0x000038d3 rtn 
+ 00021709  0x000038d8 fetch  0x00000002 , 0x00000032 
+ 00021710  0x000038d9 iforce  0x00000002 
+ 00021711  0x000038da fetch  0x00000001 , 0x00000477 
+ 00021712  0x000038db store  0x00000001 , 0x00000094 
+ 00021713  0x000038dc imul32  0x00000002 , 0x00000002 
+ 00021714  0x000038dd fetch  0x00000002 , 0x00000478 
+ 00021715  0x000038de lshift  0x0000003f , 0x0000003f 
+ 00021716  0x000038df store  0x00000002 , 0x00000095 
+ 00021717  0x000038e0 fetch  0x00000004 , 0x0000047a 
+ 00021718  0x000038e1 lshift  0x0000003f , 0x0000003f 
+ 00021719  0x000038e2 store  0x00000004 , 0x00000090 
+ 00021720  0x000038e4 deposit  0x00000002 
+ 00021721  0x000038e5 store  0x00000002 , 0x00000097 
+ 00021722  0x000038e6 rtn 
+ 00021723  0x000038e8 fetcht  0x00000001 , 0x000041fa 
+ 00021724  0x000038e9 fetch  0x00000001 , 0x00000477 
+ 00021725  0x000038ea ixor  0x00000002 , 0x0000003e 
+ 00021726  0x000038eb nbranch  0x00005391 , 0x00000005 
+ 00021727  0x000038ec isolate1  0x00000000 , 0x0000003f 
+ 00021728  0x000038ed fetch  0x00000001 , 0x0000004c 
+ 00021729  0x000038ee setflag  0x00000001 , 0x00000005 , 0x0000003f 
+ 00021730  0x000038ef store  0x00000001 , 0x0000004c 
+ 00021731  0x000038f0 jam  0x00000081 , 0x0000007c 
+ 00021732  0x000038f1 jam  0x0000008b , 0x0000007d 
+ 00021733  0x000038f2 rtn 
+ 00021734  0x000038f9 rtn 
+ 00021735  0x000038fc branch  0x00005454 
+ 00021736  0x00003900 branch  0x00005454 
+ 00021737  0x00003905 fetch  0x00000002 , 0x00000476 
+ 00021738  0x00003906 store  0x00000002 , 0x00000170 
+ 00021739  0x00003907 rtn 
+ 00021740  0x0000390a fetch  0x00000002 , 0x00000479 
+ 00021741  0x0000390b fetcht  0x00000001 , 0x00004212 
+ 00021742  0x0000390c imul32  0x00000002 , 0x0000003f 
+ 00021743  0x0000390d arg  0x00000640 , 0x00000002 
+ 00021744  0x0000390e isub  0x00000002 , 0x0000003e 
+ 00021745  0x00003910 rtn 
+ 00021746  0x00003913 call  0x000054ec 
+ 00021747  0x00003914 branch  0x00005507 , 0x00000002 
+ 00021748  0x00003915 fetch  0x00000001 , 0x00000030 
+ 00021749  0x00003916 bbit1  0x00000001 , 0x00005507 
+ 00021750  0x00003917 fetch  0x00000002 , 0x00000477 
+ 00021751  0x00003918 lshift  0x0000003f , 0x0000003f 
+ 00021752  0x00003919 store  0x00000002 , 0x00000075 
+ 00021753  0x0000391a fetch  0x00000002 , 0x00000479 
+ 00021754  0x0000391b lshift  0x0000003f , 0x0000003f 
+ 00021755  0x0000391c store  0x00000002 , 0x00000032 
+ 00021756  0x0000391d fetch  0x00000002 , 0x0000047b 
+ 00021757  0x0000391e store  0x00000001 , 0x00000073 
+ 00021758  0x0000391f iforce  0x00000002 
+ 00021759  0x00003920 fetch  0x00000002 , 0x0000047d 
+ 00021760  0x00003921 store  0x00000001 , 0x00000074 
+ 00021761  0x00003922 isub  0x00000002 , 0x0000003e 
+ 00021762  0x00003923 nbranch  0x00005504 , 0x00000002 
+ 00021763  0x00003924 store  0x00000001 , 0x00000073 
+ 00021764  0x00003927 jam  0x00000003 , 0x0000007c 
+ 00021765  0x00003928 jam  0x00000017 , 0x0000007d 
+ 00021766  0x00003929 rtn 
+ 00021767  0x0000392c jam  0x00000024 , 0x0000007e 
+ 00021768  0x0000392d branch  0x0000536c 
+ 00021769  0x00003930 call  0x00005454 
+ 00021770  0x00003931 call  0x00005610 
+ 00021771  0x00003932 call  0x00006fb0 
+ 00021772  0x00003933 branch  0x00003736 
+ 00021773  0x00003936 call  0x00005454 
+ 00021774  0x00003937 branch  0x0000373f 
+ 00021775  0x0000393b fetch  0x00000004 , 0x00000476 
+ 00021776  0x0000393c lshift  0x0000003f , 0x0000003f 
+ 00021777  0x0000393e branch  0x0000551b , 0x00000029 
+ 00021778  0x0000393f fetcht  0x00000001 , 0x0000425d 
+ 00021779  0x00003940 nbranch  0x00005518 , 0x00000034 
+ 00021780  0x00003942 jam  0x00000004 , 0x0000007c 
+ 00021781  0x00003943 jam  0x00000013 , 0x0000007d 
+ 00021782  0x00003944 jam  0x00000024 , 0x0000007e 
+ 00021783  0x00003945 rtn 
+ 00021784  0x00003947 jam  0x00000034 , 0x0000007c 
+ 00021785  0x00003948 jam  0x00000000 , 0x00000055 
+ 00021786  0x00003949 branch  0x00003206 
+ 00021787  0x0000394c call  0x00003206 
+ 00021788  0x0000394d set1  0x00000022 , 0x00000000 
+ 00021789  0x0000394e fetch  0x00000001 , 0x0000016c 
+ 00021790  0x0000394f set0  0x00000002 , 0x0000003f 
+ 00021791  0x00003950 store  0x00000001 , 0x0000016c 
+ 00021792  0x00003951 branch  0x00005454 
+ 00021793  0x0000395a rtn 
+ 00021794  0x0000395e jam  0x00000003 , 0x0000007c 
+ 00021795  0x0000395f jam  0x00000018 , 0x0000007d 
+ 00021796  0x00003960 jam  0x0000002e , 0x000009bd 
+ 00021797  0x00003961 call  0x00007d86 
+ 00021798  0x00003962 branch  0x0000376a 
+ 00021799  0x00003965 fetch  0x00000001 , 0x00000476 
+ 00021800  0x00003966 bne  0x00000001 , 0x00005533 
+ 00021801  0x00003967 fetch  0x00000001 , 0x00000477 
+ 00021802  0x00003968 bne  0x00000001 , 0x00005533 
+ 00021803  0x00003969 fetch  0x00000001 , 0x00000478 
+ 00021804  0x0000396a bne  0x00000030 , 0x00005533 
+ 00021805  0x0000396b call  0x00005907 
+ 00021806  0x0000396c branch  0x00005530 , 0x00000001 
+ 00021807  0x0000396d jam  0x00000001 , 0x000008d2 
+ 00021808  0x0000396f jam  0x00000003 , 0x0000007c 
+ 00021809  0x00003970 jam  0x0000003d , 0x0000007d 
+ 00021810  0x00003971 branch  0x0000531e 
+ 00021811  0x00003974 jam  0x00000024 , 0x0000007e 
+ 00021812  0x00003975 branch  0x0000536c 
+ 00021813  0x0000397a jam  0x0000003e , 0x0000007c 
+ 00021814  0x0000397c rtn 
+ 00021815  0x0000397e fetch  0x00000001 , 0x000046ea 
+ 00021816  0x0000397f beq  0x00000001 , 0x0000553e 
+ 00021817  0x00003980 beq  0x00000002 , 0x00005542 
+ 00021818  0x00003982 call  0x00005907 
+ 00021819  0x00003983 rtn  0x00000001 
+ 00021820  0x00003984 jam  0x00000008 , 0x000008d2 
+ 00021821  0x00003985 rtn 
+ 00021822  0x00003988 call  0x0000797f 
+ 00021823  0x00003989 jam  0x00000035 , 0x000009bd 
+ 00021824  0x0000398a call  0x00007d86 
+ 00021825  0x0000398b branch  0x0000553a 
+ 00021826  0x0000398f call  0x00005907 
+ 00021827  0x00003990 rtn  0x00000001 
+ 00021828  0x00003991 fetch  0x00000001 , 0x000046eb 
+ 00021829  0x00003992 beq  0x00000013 , 0x00005552 
+ 00021830  0x00003993 increase  0x00000001 , 0x0000003f 
+ 00021831  0x00003994 store  0x00000001 , 0x000046eb 
+ 00021832  0x00003998 jam  0x00000001 , 0x000008d4 
+ 00021833  0x00003999 jam  0x00000004 , 0x000008d2 
+ 00021834  0x0000399a fetch  0x00000001 , 0x000046eb 
+ 00021835  0x0000399b copy  0x0000003f , 0x00000007 
+ 00021836  0x0000399c fetch  0x00000006 , 0x00004719 
+ 00021837  0x0000399d qisolate1  0x0000003f 
+ 00021838  0x0000399e setarg  0x00000080 
+ 00021839  0x0000399f setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00021840  0x000039a0 store  0x00000001 , 0x000046ec 
+ 00021841  0x000039a1 rtn 
+ 00021842  0x000039a4 jam  0x00000008 , 0x000008d2 
+ 00021843  0x000039a5 rtn 
+ 00021844  0x000039a8 call  0x0000555a 
+ 00021845  0x000039aa fetch  0x00000001 , 0x000046ed 
+ 00021846  0x000039ab rtn  0x00000034 
+ 00021847  0x000039ac jam  0x00000000 , 0x000046ed 
+ 00021848  0x000039ad jam  0x00000038 , 0x000009bd 
+ 00021849  0x000039ae branch  0x00007d86 
+ 00021850  0x000039b3 call  0x00005907 
+ 00021851  0x000039b4 ncall  0x00007982 , 0x00000001 
+ 00021852  0x000039b5 call  0x00007992 , 0x00000001 
+ 00021853  0x000039b6 call  0x00005907 
+ 00021854  0x000039b7 rtn  0x00000001 
+ 00021855  0x000039b8 jam  0x0000000c , 0x000008d2 
+ 00021856  0x000039b9 jam  0x00000001 , 0x000008d4 
+ 00021857  0x000039ba rtn 
+ 00021858  0x000039bd arg  0x00000992 , 0x00000005 
+ 00021859  0x000039be arg  0x00000476 , 0x00000006 
+ 00021860  0x000039bf call  0x00007e87 
+ 00021861  0x000039c0 fetch  0x00000001 , 0x000046ea 
+ 00021862  0x000039c1 rtneq  0x00000002 
+ 00021863  0x000039c2 branch  0x000076f3 
+ 00021864  0x000039c5 fetch  0x00000001 , 0x000008d3 
+ 00021865  0x000039c6 beq  0x00000007 , 0x0000556c 
+ 00021866  0x000039c7 fetch  0x00000001 , 0x000008d2 
+ 00021867  0x000039c8 bne  0x00000001 , 0x0000557f 
+ 00021868  0x000039ca fetch  0x00000001 , 0x000008db 
+ 00021869  0x000039cb sub  0x0000003f , 0x00000020 , 0x00000005 
+ 00021870  0x000039cc nbranch  0x0000557f , 0x00000002 
+ 00021871  0x000039cd arg  0x000008ea , 0x00000005 
+ 00021872  0x000039ce iadd  0x00000005 , 0x00000005 
+ 00021873  0x000039cf fetch  0x00000008 , 0x00000476 
+ 00021874  0x000039d0 istore  0x00000008 , 0x00000005 
+ 00021875  0x000039d1 fetch  0x00000008 , 0x0000047e 
+ 00021876  0x000039d2 istore  0x00000008 , 0x00000005 
+ 00021877  0x000039d3 fetch  0x00000001 , 0x000008db 
+ 00021878  0x000039d4 increase  0x00000010 , 0x0000003f 
+ 00021879  0x000039d5 store  0x00000001 , 0x000008db 
+ 00021880  0x000039d6 bne  0x00000030 , 0x00005454 
+ 00021881  0x000039d8 call  0x00005907 
+ 00021882  0x000039d9 branch  0x00005454 , 0x00000001 
+ 00021883  0x000039da jam  0x00000001 , 0x000008dc 
+ 00021884  0x000039db jam  0x00000002 , 0x000008d2 
+ 00021885  0x000039dc jam  0x00000001 , 0x000008d4 
+ 00021886  0x000039dd branch  0x00005454 
+ 00021887  0x000039df jam  0x00000024 , 0x0000007e 
+ 00021888  0x000039e0 branch  0x0000536c 
+ 00021889  0x000039e2 fetch  0x00000001 , 0x000008da 
+ 00021890  0x000039e3 beq  0x00000030 , 0x00005585 
+ 00021891  0x000039e4 jam  0x0000003e , 0x0000007c 
+ 00021892  0x000039e5 branch  0x0000531e 
+ 00021893  0x000039e8 call  0x00005907 
+ 00021894  0x000039e9 branch  0x0000558e , 0x00000001 
+ 00021895  0x000039ea fetch  0x00000001 , 0x000046ea 
+ 00021896  0x000039eb beq  0x00000002 , 0x0000558c 
+ 00021897  0x000039ec jam  0x00000001 , 0x000008d4 
+ 00021898  0x000039ed jam  0x00000004 , 0x000008d2 
+ 00021899  0x000039ee branch  0x0000531e 
+ 00021900  0x000039f1 jam  0x00000036 , 0x000009bd 
+ 00021901  0x000039f2 branch  0x00007d86 
+ 00021902  0x000039f7 branch  0x0000531e 
+ 00021903  0x000039fa fetch  0x00000001 , 0x000008d3 
+ 00021904  0x000039fb beq  0x00000007 , 0x00005593 
+ 00021905  0x000039fc fetch  0x00000001 , 0x000008d2 
+ 00021906  0x000039fd bne  0x00000006 , 0x0000559f 
+ 00021907  0x000039ff arg  0x00000952 , 0x00000005 
+ 00021908  0x00003a00 fetch  0x00000008 , 0x00000476 
+ 00021909  0x00003a01 istore  0x00000008 , 0x00000005 
+ 00021910  0x00003a02 fetch  0x00000008 , 0x0000047e 
+ 00021911  0x00003a03 istore  0x00000008 , 0x00000005 
+ 00021912  0x00003a04 call  0x00005907 
+ 00021913  0x00003a05 branch  0x0000559d , 0x00000001 
+ 00021914  0x00003a06 jam  0x00000007 , 0x000008d2 
+ 00021915  0x00003a07 jam  0x00000001 , 0x000008d4 
+ 00021916  0x00003a08 branch  0x00005454 
+ 00021917  0x00003a0a jam  0x00000004 , 0x000008d3 
+ 00021918  0x00003a0b branch  0x000076f3 
+ 00021919  0x00003a0f jam  0x00000024 , 0x0000007e 
+ 00021920  0x00003a10 branch  0x0000536c 
+ 00021921  0x00003a13 fetch  0x00000001 , 0x000008d3 
+ 00021922  0x00003a14 beq  0x0000000b , 0x000055a5 
+ 00021923  0x00003a15 fetch  0x00000001 , 0x000008d2 
+ 00021924  0x00003a16 bne  0x00000008 , 0x000055b4 
+ 00021925  0x00003a18 arg  0x00000982 , 0x00000005 
+ 00021926  0x00003a19 arg  0x00000476 , 0x00000006 
+ 00021927  0x00003a1a call  0x00007e87 
+ 00021928  0x00003a1b call  0x00005907 
+ 00021929  0x00003a1c branch  0x000055b1 , 0x00000001 
+ 00021930  0x00003a1d fetch  0x00000001 , 0x000046ea 
+ 00021931  0x00003a1e beq  0x00000001 , 0x000055b6 
+ 00021932  0x00003a20 jam  0x00000000 , 0x000046e9 
+ 00021933  0x00003a21 jam  0x00000009 , 0x000008d2 
+ 00021934  0x00003a22 jam  0x00000001 , 0x000008d4 
+ 00021935  0x00003a23 jam  0x00000041 , 0x0000007d 
+ 00021936  0x00003a24 branch  0x0000531e 
+ 00021937  0x00003a27 jam  0x00000009 , 0x000008d3 
+ 00021938  0x00003a28 jam  0x00000001 , 0x000008d5 
+ 00021939  0x00003a29 branch  0x0000531e 
+ 00021940  0x00003a2b jam  0x00000024 , 0x0000007e 
+ 00021941  0x00003a2c branch  0x0000536c 
+ 00021942  0x00003a2f fetch  0x00000001 , 0x000046e9 
+ 00021943  0x00003a30 bbit1  0x00000007 , 0x000055bb 
+ 00021944  0x00003a31 set1  0x00000006 , 0x0000003f 
+ 00021945  0x00003a32 store  0x00000001 , 0x000046e9 
+ 00021946  0x00003a33 rtn 
+ 00021947  0x00003a36 bbit1  0x00000000 , 0x000055ac 
+ 00021948  0x00003a37 jam  0x00000000 , 0x000046e9 
+ 00021949  0x00003a38 branch  0x000055b4 
+ 00021950  0x00003a3c branch  0x0000531e 
+ 00021951  0x00003a3f fetch  0x00000001 , 0x0000016c 
+ 00021952  0x00003a40 set0  0x00000001 
+ 00021953  0x00003a41 store  0x00000001 , 0x0000016c 
+ 00021954  0x00003a42 call  0x00005454 
+ 00021955  0x00003a43 nrtn  0x00000029 
+ 00021956  0x00003a44 fetch  0x00000001 , 0x00000476 
+ 00021957  0x00003a45 fetcht  0x00000001 , 0x0000004b 
+ 00021958  0x00003a46 setflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00021959  0x00003a47 nsetflag  0x00000034 , 0x00000005 , 0x00000002 
+ 00021960  0x00003a48 storet  0x00000001 , 0x0000004b 
+ 00021961  0x00003a49 rtn 
+ 00021962  0x00003a4c fetcht  0x00000008 , 0x00000476 
+ 00021963  0x00003a4e fetch  0x00000001 , 0x00000055 
+ 00021964  0x00003a4f rtnne  0x00000003 
+ 00021965  0x00003a51 fetch  0x00000001 , 0x0000016c 
+ 00021966  0x00003a52 bbit0  0x00000004 , 0x000055d1 
+ 00021967  0x00003a54 jam  0x00000014 , 0x00000055 
+ 00021968  0x00003a55 rtn 
+ 00021969  0x00003a57 jam  0x00000004 , 0x00000055 
+ 00021970  0x00003a58 rtn 
+ 00021971  0x00003a5a fetch  0x00000001 , 0x0000017e 
+ 00021972  0x00003a5b store  0x00000001 , 0x0000015a 
+ 00021973  0x00003a5c jam  0x00000003 , 0x0000007c 
+ 00021974  0x00003a5d jam  0x00000038 , 0x0000007d 
+ 00021975  0x00003a5e rtn 
+ 00021976  0x00003a62 jam  0x00000003 , 0x0000007c 
+ 00021977  0x00003a63 jam  0x00000039 , 0x0000007d 
+ 00021978  0x00003a64 force  0x00000009 , 0x00000039 
+ 00021979  0x00003a65 arg  0x00000476 , 0x00000006 
+ 00021980  0x00003a66 arg  0x00000151 , 0x00000005 
+ 00021981  0x00003a68 ifetch  0x00000001 , 0x00000006 
+ 00021982  0x00003a69 xor_into  0x00000055 , 0x0000003f 
+ 00021983  0x00003a6a istore  0x00000001 , 0x00000005 
+ 00021984  0x00003a6b loop  0x000055dd 
+ 00021985  0x00003a6c fetch  0x00000001 , 0x00000151 
+ 00021986  0x00003a6d fetcht  0x00000001 , 0x00000150 
+ 00021987  0x00003a6e set0  0x00000007 , 0x00000002 
+ 00021988  0x00003a6f set0  0x00000004 , 0x00000002 
+ 00021989  0x00003a70 beq  0x000000ff , 0x000055f1 
+ 00021990  0x00003a71 beq  0x00000000 , 0x0000560a 
+ 00021991  0x00003a72 beq  0x00000005 , 0x000055fe 
+ 00021992  0x00003a73 beq  0x00000007 , 0x000055fd 
+ 00021993  0x00003a74 beq  0x00000006 , 0x000055fe 
+ 00021994  0x00003a75 beq  0x00000008 , 0x000055fd 
+ 00021995  0x00003a76 beq  0x00000001 , 0x000055f6 
+ 00021996  0x00003a77 beq  0x00000002 , 0x000055f6 
+ 00021997  0x00003a78 beq  0x00000003 , 0x000055f6 
+ 00021998  0x00003a79 beq  0x00000009 , 0x000055f6 
+ 00021999  0x00003a7a beq  0x00000004 , 0x000055f6 
+ 00022000  0x00003a7b rtn 
+ 00022001  0x00003a7e fetch  0x00000001 , 0x00000150 
+ 00022002  0x00003a7f set1  0x00000003 , 0x0000003f 
+ 00022003  0x00003a80 set1  0x00000002 , 0x0000003f 
+ 00022004  0x00003a81 store  0x00000001 , 0x00000150 
+ 00022005  0x00003a82 rtn 
+ 00022006  0x00003a84 set1  0x00000004 , 0x00000002 
+ 00022007  0x00003a85 jam  0x00000005 , 0x0000017f 
+ 00022008  0x00003a86 fetch  0x00000002 , 0x00000158 
+ 00022009  0x00003a87 iforce  0x00000039 
+ 00022010  0x00003a88 store  0x00000002 , 0x0000015e 
+ 00022011  0x00003a89 arg  0x00000475 , 0x00000005 
+ 00022012  0x00003a8a call  0x00007f40 
+ 00022013  0x00003a8c set1  0x00000007 , 0x00000002 
+ 00022014  0x00003a8e set1  0x00000002 , 0x00000002 
+ 00022015  0x00003a8f force  0x00000000 , 0x0000003f 
+ 00022016  0x00003a90 store  0x00000001 , 0x0000000b 
+ 00022017  0x00003a91 store  0x00000002 , 0x000000f9 
+ 00022018  0x00003a92 store  0x00000002 , 0x000000fb 
+ 00022019  0x00003a93 store  0x00000002 , 0x000000f7 
+ 00022020  0x00003a94 store  0x00000002 , 0x000000f5 
+ 00022021  0x00003a95 fetch  0x00000001 , 0x00000152 
+ 00022022  0x00003a96 compare  0x00000000 , 0x0000003f , 0x000000ff 
+ 00022023  0x00003a97 setflag  0x00000001 , 0x00000006 , 0x00000002 
+ 00022024  0x00003a98 storet  0x00000001 , 0x00000150 
+ 00022025  0x00003a99 rtn 
+ 00022026  0x00003a9c set0  0x00000011 , 0x00000000 
+ 00022027  0x00003a9d jam  0x00000000 , 0x00000150 
+ 00022028  0x00003a9e fetch  0x00000001 , 0x0000017e 
+ 00022029  0x00003a9f set0  0x00000006 , 0x0000003f 
+ 00022030  0x00003aa0 store  0x00000001 , 0x0000017e 
+ 00022031  0x00003aa1 rtn 
+ 00022032  0x00003aa8 arg  0x00000476 , 0x00000006 
+ 00022033  0x00003aa9 arg  0x00000486 , 0x00000005 
+ 00022034  0x00003aaa branch  0x00007e87 
+ 00022035  0x00003aad jam  0x00000009 , 0x0000007c 
+ 00022036  0x00003aae rtn 
+ 00022037  0x00003ab1 nrtn  0x00000029 
+ 00022038  0x00003ab2 jam  0x00000011 , 0x0000007c 
+ 00022039  0x00003ab3 rtn 
+ 00022040  0x00003ab6 arg  0x00004140 , 0x00000011 
+ 00022041  0x00003ab7 call  0x00006f7a 
+ 00022042  0x00003ab8 jam  0x00000003 , 0x0000007c 
+ 00022043  0x00003ab9 jam  0x00000008 , 0x0000007d 
+ 00022044  0x00003aba rtn 
+ 00022045  0x00003abd jam  0x0000000a , 0x00000072 
+ 00022046  0x00003abe jam  0x00000007 , 0x0000007c 
+ 00022047  0x00003abf jam  0x00000016 , 0x000003f0 
+ 00022048  0x00003ac0 rtn 
+ 00022049  0x00003ac7 set1  0x00000025 , 0x00000000 
+ 00022050  0x00003ac8 bpatch  0x00000058 , 0x0000402b 
+ 00022051  0x00003ac9 disable  0x00000028 
+ 00022052  0x00003aca call  0x000058ca 
+ 00022053  0x00003acb fetch  0x00000001 , 0x00000048 
+ 00022054  0x00003acc rtn  0x00000034 
+ 00022055  0x00003ad1 bbit1  0x00000007 , 0x00005657 
+ 00022056  0x00003ad3 beq  0x00000001 , 0x0000577c 
+ 00022057  0x00003ad4 beq  0x00000002 , 0x000056ef 
+ 00022058  0x00003ad5 beq  0x00000003 , 0x00005662 
+ 00022059  0x00003ad6 beq  0x00000004 , 0x00005679 
+ 00022060  0x00003ad7 beq  0x00000027 , 0x000057e4 
+ 00022061  0x00003ad8 beq  0x00000028 , 0x00005713 
+ 00022062  0x00003ad9 beq  0x00000030 , 0x000056ff 
+ 00022063  0x00003ada beq  0x00000025 , 0x000057df 
+ 00022064  0x00003adb beq  0x00000026 , 0x0000570e 
+ 00022065  0x00003adc beq  0x00000031 , 0x000057ce 
+ 00022066  0x00003add beq  0x00000037 , 0x00005777 
+ 00022067  0x00003ade beq  0x00000033 , 0x00005769 
+ 00022068  0x00003adf beq  0x00000008 , 0x00005862 
+ 00022069  0x00003ae0 beq  0x00000009 , 0x00005858 
+ 00022070  0x00003ae1 beq  0x0000000b , 0x0000586d 
+ 00022071  0x00003ae2 beq  0x0000000c , 0x00005876 
+ 00022072  0x00003ae3 beq  0x0000000f , 0x0000576f 
+ 00022073  0x00003ae4 beq  0x00000010 , 0x0000589b 
+ 00022074  0x00003ae5 beq  0x00000011 , 0x00005891 
+ 00022075  0x00003ae6 beq  0x00000007 , 0x0000575f 
+ 00022076  0x00003ae7 beq  0x0000002a , 0x0000578b 
+ 00022077  0x00003ae8 beq  0x0000000a , 0x0000578c 
+ 00022078  0x00003aea beq  0x0000001f , 0x000057c9 
+ 00022079  0x00003aeb beq  0x00000006 , 0x00005704 
+ 00022080  0x00003aec beq  0x00000021 , 0x0000576c 
+ 00022081  0x00003aed beq  0x0000002d , 0x000057bf 
+ 00022082  0x00003aee beq  0x0000002e , 0x000057c4 
+ 00022083  0x00003aef beq  0x00000022 , 0x0000576c 
+ 00022084  0x00003af0 beq  0x00000034 , 0x0000578d 
+ 00022085  0x00003af1 beq  0x00000013 , 0x000057a2 
+ 00022086  0x00003af2 beq  0x00000017 , 0x000057b1 
+ 00022087  0x00003af3 beq  0x00000012 , 0x00005898 
+ 00022088  0x00003af4 beq  0x0000002f , 0x000057b7 
+ 00022089  0x00003af5 beq  0x00000018 , 0x000057bc 
+ 00022090  0x00003af6 beq  0x0000003d , 0x00005808 
+ 00022091  0x00003af7 beq  0x0000003e , 0x00005814 
+ 00022092  0x00003af8 beq  0x0000003f , 0x00005826 
+ 00022093  0x00003af9 beq  0x00000040 , 0x00005830 
+ 00022094  0x00003afa beq  0x00000041 , 0x00005845 
+ 00022095  0x00003afb beq  0x00000023 , 0x00005854 
+ 00022096  0x00003afc beq  0x0000003b , 0x0000584f 
+ 00022097  0x00003afe beq  0x00000005 , 0x00005855 
+ 00022098  0x00003aff beq  0x00000029 , 0x00005856 
+ 00022099  0x00003b00 beq  0x00000038 , 0x00005857 
+ 00022100  0x00003b01 beq  0x00000039 , 0x00005782 
+ 00022101  0x00003b03 branch  0x00003b31 
+ 00022102  0x00003b04 rtn 
+ 00022103  0x00003b06 beq  0x00000081 , 0x00005686 
+ 00022104  0x00003b07 beq  0x00000084 , 0x000056b2 
+ 00022105  0x00003b08 beq  0x00000082 , 0x0000568f 
+ 00022106  0x00003b09 beq  0x00000083 , 0x00005718 
+ 00022107  0x00003b0a beq  0x0000008b , 0x00005723 
+ 00022108  0x00003b0b beq  0x00000097 , 0x0000575b 
+ 00022109  0x00003b0c beq  0x00000099 , 0x000056e0 
+ 00022110  0x00003b0d beq  0x0000009a , 0x000056bd 
+ 00022111  0x00003b0e beq  0x00000095 , 0x000056e5 
+ 00022112  0x00003b0f beq  0x00000096 , 0x000056e6 
+ 00022113  0x00003b10 branch  0x00003b31 
+ 00022114  0x00003b17 force  0x00000002 , 0x0000003f 
+ 00022115  0x00003b18 call  0x000058a1 
+ 00022116  0x00003b19 fetch  0x00000001 , 0x00000049 
+ 00022117  0x00003b1a istore  0x00000001 , 0x00000005 
+ 00022118  0x00003b1b call  0x000058b0 
+ 00022119  0x00003b1c set1  0x00000025 , 0x00000000 
+ 00022120  0x00003b1d bpatch  0x00000059 , 0x0000402b 
+ 00022121  0x00003b1e fetch  0x00000001 , 0x00000049 
+ 00022122  0x00003b1f beq  0x00000008 , 0x00005699 
+ 00022123  0x00003b20 beq  0x0000000f , 0x0000569d 
+ 00022124  0x00003b21 beq  0x00000010 , 0x000056a8 
+ 00022125  0x00003b22 beq  0x00000017 , 0x00005678 
+ 00022126  0x00003b23 beq  0x00000033 , 0x000056ab 
+ 00022127  0x00003b24 beq  0x00000041 , 0x000056b1 
+ 00022128  0x00003b25 beq  0x00000011 , 0x00005672 
+ 00022129  0x00003b26 rtn 
+ 00022130  0x00003b29 fetch  0x00000001 , 0x00000055 
+ 00022131  0x00003b2a rtn  0x00000034 
+ 00022132  0x00003b2b jam  0x0000001b , 0x00000055 
+ 00022133  0x00003b2c setarg  0x0000000c 
+ 00022134  0x00003b2d arg  0x0000000b , 0x00000007 
+ 00022135  0x00003b2e branch  0x00007ed4 
+ 00022136  0x00003b31 branch  0x00003746 
+ 00022137  0x00003b33 force  0x00000003 , 0x0000003f 
+ 00022138  0x00003b34 call  0x000058a1 
+ 00022139  0x00003b35 fetch  0x00000001 , 0x00000049 
+ 00022140  0x00003b36 beq  0x0000000b , 0x00005681 
+ 00022141  0x00003b37 istore  0x00000001 , 0x00000005 
+ 00022142  0x00003b38 fetch  0x00000001 , 0x0000004a 
+ 00022143  0x00003b39 istore  0x00000001 , 0x00000005 
+ 00022144  0x00003b3a branch  0x000058b0 
+ 00022145  0x00003b3d istore  0x00000001 , 0x00000005 
+ 00022146  0x00003b3e fetch  0x00000001 , 0x0000004a 
+ 00022147  0x00003b3f istore  0x00000001 , 0x00000005 
+ 00022148  0x00003b40 arg  0x000003fb , 0x00000002 
+ 00022149  0x00003b41 branch  0x000058ec 
+ 00022150  0x00003b44 force  0x00000004 , 0x00000007 
+ 00022151  0x00003b45 call  0x000058a9 
+ 00022152  0x00003b46 setarg  0x0000007f 
+ 00022153  0x00003b47 istore  0x00000001 , 0x00000005 
+ 00022154  0x00003b48 fetch  0x00000001 , 0x00000049 
+ 00022155  0x00003b49 set0  0x00000007 , 0x0000003f 
+ 00022156  0x00003b4a istore  0x00000001 , 0x00000005 
+ 00022157  0x00003b4b fetch  0x00000001 , 0x00000049 
+ 00022158  0x00003b4c branch  0x000058b0 
+ 00022159  0x00003b4f force  0x00000005 , 0x00000007 
+ 00022160  0x00003b50 call  0x000058a9 
+ 00022161  0x00003b51 setarg  0x0000007f 
+ 00022162  0x00003b52 istore  0x00000001 , 0x00000005 
+ 00022163  0x00003b53 fetch  0x00000001 , 0x00000049 
+ 00022164  0x00003b54 set0  0x00000007 , 0x0000003f 
+ 00022165  0x00003b55 istore  0x00000001 , 0x00000005 
+ 00022166  0x00003b56 fetch  0x00000001 , 0x0000004a 
+ 00022167  0x00003b57 istore  0x00000001 , 0x00000005 
+ 00022168  0x00003b58 branch  0x000058b0 
+ 00022169  0x00003b5c call  0x000034a9 
+ 00022170  0x00003b5d call  0x000058fe 
+ 00022171  0x00003b5e rtn  0x00000001 
+ 00022172  0x00003b5f branch  0x00005613 
+ 00022173  0x00003b62 fetch  0x00000001 , 0x0000004b 
+ 00022174  0x00003b63 bbit1  0x00000005 , 0x000056a4 
+ 00022175  0x00003b64 rtnbit0  0x00000004 
+ 00022176  0x00003b65 jam  0x00000012 , 0x0000007c 
+ 00022177  0x00003b66 set0  0x00000004 , 0x0000003f 
+ 00022178  0x00003b67 call  0x000058f6 
+ 00022179  0x00003b68 branch  0x000056a6 
+ 00022180  0x00003b6a jam  0x00000010 , 0x0000007c 
+ 00022181  0x00003b6b set0  0x00000005 , 0x0000003f 
+ 00022182  0x00003b6d store  0x00000001 , 0x0000004b 
+ 00022183  0x00003b6e rtn 
+ 00022184  0x00003b71 call  0x00005907 
+ 00022185  0x00003b72 branch  0x00005615 , 0x00000001 
+ 00022186  0x00003b73 rtn 
+ 00022187  0x00003b76 jam  0x0000008b , 0x0000007c 
+ 00022188  0x00003b78 fetch  0x00000001 , 0x000003f7 
+ 00022189  0x00003b79 set1  0x00000000 , 0x0000003f 
+ 00022190  0x00003b7a store  0x00000001 , 0x000003f7 
+ 00022191  0x00003b7b jam  0x00000001 , 0x000009bd 
+ 00022192  0x00003b7c branch  0x00007d86 
+ 00022193  0x00003b80 rtn 
+ 00022194  0x00003b85 force  0x0000000c , 0x00000007 
+ 00022195  0x00003b86 call  0x000058a9 
+ 00022196  0x00003b87 setarg  0x00000001 
+ 00022197  0x00003b88 istore  0x00000001 , 0x00000005 
+ 00022198  0x00003b89 fetch  0x00000002 , 0x000003f4 
+ 00022199  0x00003b8a istore  0x00000002 , 0x00000005 
+ 00022200  0x00003b8b setarg  0x00000000 
+ 00022201  0x00003b8c istore  0x00000003 , 0x00000005 
+ 00022202  0x00003b8d setarg  0x00000000 
+ 00022203  0x00003b8e istore  0x00000004 , 0x00000005 
+ 00022204  0x00003b8f branch  0x000058b9 
+ 00022205  0x00003b91 force  0x00000005 , 0x00000007 
+ 00022206  0x00003b92 call  0x000058a9 
+ 00022207  0x00003b93 fetch  0x00000003 , 0x000046e3 
+ 00022208  0x00003b94 istore  0x00000003 , 0x00000005 
+ 00022209  0x00003b95 call  0x000058b9 
+ 00022210  0x00003b96 jam  0x00000001 , 0x000046ed 
+ 00022211  0x00003b97 fetch  0x00000001 , 0x000046e3 
+ 00022212  0x00003b98 beq  0x00000001 , 0x000056ce 
+ 00022213  0x00003b99 beq  0x00000002 , 0x000056c8 
+ 00022214  0x00003b9a beq  0x00000003 , 0x000056d4 
+ 00022215  0x00003b9b rtn 
+ 00022216  0x00003b9e fetch  0x00000001 , 0x000046e6 
+ 00022217  0x00003b9f beq  0x00000000 , 0x000056de 
+ 00022218  0x00003ba0 beq  0x00000001 , 0x000056de 
+ 00022219  0x00003ba1 beq  0x00000002 , 0x000056de 
+ 00022220  0x00003ba2 beq  0x00000003 , 0x000056da 
+ 00022221  0x00003ba3 rtn 
+ 00022222  0x00003ba7 fetch  0x00000001 , 0x000046e6 
+ 00022223  0x00003ba8 beq  0x00000000 , 0x000056da 
+ 00022224  0x00003ba9 beq  0x00000001 , 0x000056dc 
+ 00022225  0x00003baa beq  0x00000002 , 0x000056de 
+ 00022226  0x00003bab beq  0x00000003 , 0x000056da 
+ 00022227  0x00003bac rtn 
+ 00022228  0x00003bb0 fetch  0x00000001 , 0x000046e6 
+ 00022229  0x00003bb1 beq  0x00000000 , 0x000056da 
+ 00022230  0x00003bb2 beq  0x00000001 , 0x000056da 
+ 00022231  0x00003bb3 beq  0x00000002 , 0x000056da 
+ 00022232  0x00003bb4 beq  0x00000003 , 0x000056da 
+ 00022233  0x00003bb5 rtn 
+ 00022234  0x00003bbf jam  0x00000003 , 0x000046ea 
+ 00022235  0x00003bc0 rtn 
+ 00022236  0x00003bc4 jam  0x00000001 , 0x000046ea 
+ 00022237  0x00003bc5 rtn 
+ 00022238  0x00003bcc jam  0x00000002 , 0x000046ea 
+ 00022239  0x00003bcd rtn 
+ 00022240  0x00003bd3 force  0x00000005 , 0x00000007 
+ 00022241  0x00003bd4 call  0x000058a9 
+ 00022242  0x00003bd5 fetch  0x00000003 , 0x000046e3 
+ 00022243  0x00003bd6 istore  0x00000003 , 0x00000005 
+ 00022244  0x00003bd7 branch  0x000058bb 
+ 00022245  0x00003bdc rtn 
+ 00022246  0x00003bde force  0x00000009 , 0x00000007 
+ 00022247  0x00003bdf call  0x000058a9 
+ 00022248  0x00003be0 fetch  0x00000001 , 0x00000094 
+ 00022249  0x00003be1 istore  0x00000001 , 0x00000005 
+ 00022250  0x00003be2 fetch  0x00000002 , 0x00000095 
+ 00022251  0x00003be3 istore  0x00000002 , 0x00000005 
+ 00022252  0x00003be4 fetch  0x00000004 , 0x00000090 
+ 00022253  0x00003be5 istore  0x00000004 , 0x00000005 
+ 00022254  0x00003be6 branch  0x000058b9 
+ 00022255  0x00003be9 force  0x00000011 , 0x0000003f 
+ 00022256  0x00003bea call  0x000058a1 
+ 00022257  0x00003beb fetch  0x00000001 , 0x00000049 
+ 00022258  0x00003bec copy  0x0000003f , 0x00000002 
+ 00022259  0x00003bed beq  0x00000000 , 0x000056f7 
+ 00022260  0x00003bee beq  0x0000000e , 0x000056f7 
+ 00022261  0x00003bef beq  0x0000001c , 0x000056f7 
+ 00022262  0x00003bf0 rtn 
+ 00022263  0x00003bf2 istore  0x00000001 , 0x00000005 
+ 00022264  0x00003bf3 fetch  0x00000001 , 0x000045ae 
+ 00022265  0x00003bf4 istore  0x00000001 , 0x00000005 
+ 00022266  0x00003bf5 arg  0x0000000e , 0x00000039 
+ 00022267  0x00003bf6 setarg  0x000045af 
+ 00022268  0x00003bf7 iadd  0x00000002 , 0x00000006 
+ 00022269  0x00003bf8 call  0x00007ecd 
+ 00022270  0x00003bf9 branch  0x000058b9 
+ 00022271  0x00003bfd force  0x00000003 , 0x0000003f 
+ 00022272  0x00003bfe call  0x000058a1 
+ 00022273  0x00003bff setarg  0x00000114 
+ 00022274  0x00003c00 istore  0x00000002 , 0x00000005 
+ 00022275  0x00003c01 branch  0x000058b9 
+ 00022276  0x00003c05 force  0x00000003 , 0x0000003f 
+ 00022277  0x00003c06 call  0x000058a1 
+ 00022278  0x00003c07 fetch  0x00000004 , 0x00000164 
+ 00022279  0x00003c08 isub  0x00000022 , 0x0000003f 
+ 00022280  0x00003c09 branch  0x0000570a , 0x00000029 
+ 00022281  0x00003c0a sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00022282  0x00003c0d rshift2  0x0000003f , 0x0000003f 
+ 00022283  0x00003c0e set0  0x0000000f , 0x0000003f 
+ 00022284  0x00003c0f istore  0x00000002 , 0x00000005 
+ 00022285  0x00003c10 branch  0x000058b9 
+ 00022286  0x00003c13 force  0x00000006 , 0x0000003f 
+ 00022287  0x00003c14 call  0x000058a1 
+ 00022288  0x00003c15 fetch  0x00000005 , 0x000045a9 
+ 00022289  0x00003c16 istore  0x00000005 , 0x00000005 
+ 00022290  0x00003c17 branch  0x000058b9 
+ 00022291  0x00003c1a force  0x00000009 , 0x0000003f 
+ 00022292  0x00003c1b call  0x000058a1 
+ 00022293  0x00003c1c fetch  0x00000008 , 0x00004138 
+ 00022294  0x00003c1d istore  0x00000008 , 0x00000005 
+ 00022295  0x00003c1e branch  0x000058b9 
+ 00022296  0x00003c26 force  0x0000000c , 0x00000007 
+ 00022297  0x00003c27 call  0x000058a9 
+ 00022298  0x00003c28 setarg  0x00000001 
+ 00022299  0x00003c29 istore  0x00000001 , 0x00000005 
+ 00022300  0x00003c2a fetch  0x00000002 , 0x000003f4 
+ 00022301  0x00003c2b istore  0x00000002 , 0x00000005 
+ 00022302  0x00003c2c setarg  0x00000000 
+ 00022303  0x00003c2d istore  0x00000003 , 0x00000005 
+ 00022304  0x00003c2e setarg  0x00000000 
+ 00022305  0x00003c2f istore  0x00000004 , 0x00000005 
+ 00022306  0x00003c30 branch  0x000058bb 
+ 00022307  0x00003c33 force  0x00000003 , 0x00000007 
+ 00022308  0x00003c34 call  0x000058a9 
+ 00022309  0x00003c35 fetch  0x00000001 , 0x000041fa 
+ 00022310  0x00003c36 istore  0x00000001 , 0x00000005 
+ 00022311  0x00003c37 disable  0x00000028 
+ 00022312  0x00003c38 call  0x000058bb 
+ 00022313  0x00003c39 nrtn  0x00000028 
+ 00022314  0x00003c3a nrtn  0x00000029 
+ 00022315  0x00003c3b fetch  0x00000001 , 0x00004178 
+ 00022316  0x00003c3c rtnbit0  0x00000000 
+ 00022317  0x00003c3d call  0x0000573f 
+ 00022318  0x00003c3e branch  0x00005749 
+ 00022319  0x00003c42 set1  0x00000025 , 0x00000000 
+ 00022320  0x00003c43 bpatch  0x0000005a , 0x0000402b 
+ 00022321  0x00003c44 fetch  0x00000001 , 0x0000413e 
+ 00022322  0x00003c45 set1  0x00000003 , 0x0000003f 
+ 00022323  0x00003c46 store  0x00000001 , 0x0000413e 
+ 00022324  0x00003c47 setarg  0x00000101 
+ 00022325  0x00003c48 store  0x00000002 , 0x000003f4 
+ 00022326  0x00003c49 rtn 
+ 00022327  0x00003c4c set1  0x00000025 , 0x00000000 
+ 00022328  0x00003c4d bpatch  0x0000005b , 0x0000402b 
+ 00022329  0x00003c4e fetch  0x00000001 , 0x0000413e 
+ 00022330  0x00003c4f set0  0x00000003 , 0x0000003f 
+ 00022331  0x00003c50 store  0x00000001 , 0x0000413e 
+ 00022332  0x00003c51 setarg  0x00000000 
+ 00022333  0x00003c52 store  0x00000002 , 0x000003f4 
+ 00022334  0x00003c53 rtn 
+ 00022335  0x00003c56 jam  0x00000003 , 0x00004178 
+ 00022336  0x00003c57 setarg  0x00000000 
+ 00022337  0x00003c58 store  0x00000004 , 0x000041e2 
+ 00022338  0x00003c59 arg  0x0000417a , 0x00000005 
+ 00022339  0x00003c5a call  0x0000574d 
+ 00022340  0x00003c5b arg  0x00004187 , 0x00000005 
+ 00022341  0x00003c5c call  0x0000574d 
+ 00022342  0x00003c5d arg  0x000041e6 , 0x00000005 
+ 00022343  0x00003c5e call  0x0000574d 
+ 00022344  0x00003c5f branch  0x00005754 
+ 00022345  0x00003c61 arg  0x00004187 , 0x00000005 
+ 00022346  0x00003c62 call  0x0000574d 
+ 00022347  0x00003c63 call  0x00005754 
+ 00022348  0x00003c64 branch  0x00005757 
+ 00022349  0x00003c68 setarg  0x00ffffff 
+ 00022350  0x00003c69 istore  0x00000003 , 0x00000005 
+ 00022351  0x00003c6a istore  0x00000003 , 0x00000005 
+ 00022352  0x00003c6b istore  0x00000003 , 0x00000005 
+ 00022353  0x00003c6c setarg  0x0000007f 
+ 00022354  0x00003c6d istore  0x00000001 , 0x00000005 
+ 00022355  0x00003c6e rtn 
+ 00022356  0x00003c70 setarg  0x00000000 
+ 00022357  0x00003c71 store  0x00000002 , 0x00004176 
+ 00022358  0x00003c72 rtn 
+ 00022359  0x00003c74 fetch  0x00000001 , 0x00004178 
+ 00022360  0x00003c75 set1  0x00000002 , 0x0000003f 
+ 00022361  0x00003c76 store  0x00000001 , 0x00004178 
+ 00022362  0x00003c77 rtn 
+ 00022363  0x00003c7b force  0x00000002 , 0x00000007 
+ 00022364  0x00003c7c call  0x000058a9 
+ 00022365  0x00003c7d nbranch  0x000058b9 , 0x00000029 
+ 00022366  0x00003c7f branch  0x000058bb 
+ 00022367  0x00003c84 force  0x00000002 , 0x0000003f 
+ 00022368  0x00003c85 call  0x000058a1 
+ 00022369  0x00003c86 fetch  0x00000001 , 0x000003f0 
+ 00022370  0x00003c87 istore  0x00000001 , 0x00000005 
+ 00022371  0x00003c88 call  0x000058bb 
+ 00022372  0x00003c8a fetch  0x00000001 , 0x0000004b 
+ 00022373  0x00003c8b set1  0x00000003 , 0x0000003f 
+ 00022374  0x00003c8c store  0x00000001 , 0x0000004b 
+ 00022375  0x00003c8d jam  0x00000032 , 0x00000072 
+ 00022376  0x00003c8e rtn 
+ 00022377  0x00003c92 force  0x00000001 , 0x0000003f 
+ 00022378  0x00003c93 call  0x000058a1 
+ 00022379  0x00003c94 branch  0x000058bb 
+ 00022380  0x00003c96 force  0x00000001 , 0x0000003f 
+ 00022381  0x00003c97 call  0x000058a1 
+ 00022382  0x00003c98 branch  0x000058b9 
+ 00022383  0x00003c9c force  0x00000002 , 0x0000003f 
+ 00022384  0x00003c9d call  0x000058a1 
+ 00022385  0x00003c9e fetch  0x00000001 , 0x0000004c 
+ 00022386  0x00003c9f isolate0  0x00000002 , 0x0000003f 
+ 00022387  0x00003ca0 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00022388  0x00003ca1 and_into  0x00000001 , 0x0000003f 
+ 00022389  0x00003ca2 istore  0x00000001 , 0x00000005 
+ 00022390  0x00003ca3 branch  0x000058bb 
+ 00022391  0x00003ca7 force  0x00000003 , 0x0000003f 
+ 00022392  0x00003ca8 call  0x000058a1 
+ 00022393  0x00003ca9 fetch  0x00000002 , 0x00000051 
+ 00022394  0x00003caa istore  0x00000002 , 0x00000005 
+ 00022395  0x00003cab branch  0x000058bb 
+ 00022396  0x00003cae jam  0x000000fa , 0x00000072 
+ 00022397  0x00003caf force  0x00000002 , 0x0000003f 
+ 00022398  0x00003cb0 call  0x000058a1 
+ 00022399  0x00003cb1 fetch  0x00000001 , 0x00000053 
+ 00022400  0x00003cb2 istore  0x00000001 , 0x00000005 
+ 00022401  0x00003cb3 branch  0x000058bb 
+ 00022402  0x00003cb6 force  0x0000000a , 0x0000003f 
+ 00022403  0x00003cb7 call  0x000058a1 
+ 00022404  0x00003cb8 arg  0x00000151 , 0x00000006 
+ 00022405  0x00003cb9 force  0x00000009 , 0x00000039 
+ 00022406  0x00003cbb ifetch  0x00000001 , 0x00000006 
+ 00022407  0x00003cbc xor_into  0x00000055 , 0x0000003f 
+ 00022408  0x00003cbd istore  0x00000001 , 0x00000005 
+ 00022409  0x00003cbe loop  0x00005786 
+ 00022410  0x00003cbf branch  0x000058bb 
+ 00022411  0x00003cc2 branch  0x000058bb 
+ 00022412  0x00003cc4 branch  0x000058bb 
+ 00022413  0x00003cc7 rtn  0x00000029 
+ 00022414  0x00003cc8 call  0x000038bc 
+ 00022415  0x00003cc9 force  0x00000009 , 0x0000003f 
+ 00022416  0x00003cca call  0x000058a1 
+ 00022417  0x00003ccb fetch  0x00000002 , 0x00000170 
+ 00022418  0x00003ccc istore  0x00000002 , 0x00000005 
+ 00022419  0x00003ccd fetch  0x00000003 , 0x00004140 
+ 00022420  0x00003cce istore  0x00000003 , 0x00000005 
+ 00022421  0x00003ccf fetch  0x00000001 , 0x00004143 
+ 00022422  0x00003cd0 istore  0x00000001 , 0x00000005 
+ 00022423  0x00003cd1 fetch  0x00000002 , 0x00004144 
+ 00022424  0x00003cd2 istore  0x00000002 , 0x00000005 
+ 00022425  0x00003cd3 bmark0  0x00000003 , 0x0000579e 
+ 00022426  0x00003cd4 set0  0x00000003 , 0x00000000 
+ 00022427  0x00003cd5 call  0x000058bb 
+ 00022428  0x00003cd6 jam  0x00000013 , 0x0000007c 
+ 00022429  0x00003cd7 rtn 
+ 00022430  0x00003cd9 call  0x000058b9 
+ 00022431  0x00003cda jam  0x00000003 , 0x0000007c 
+ 00022432  0x00003cdb jam  0x00000013 , 0x0000007d 
+ 00022433  0x00003cdc rtn 
+ 00022434  0x00003cdf arg  0x00000200 , 0x00000002 
+ 00022435  0x00003ce0 branch  0x000057a6 , 0x00000029 
+ 00022436  0x00003ce1 deposit  0x00000028 
+ 00022437  0x00003ce2 branch  0x000057a7 
+ 00022438  0x00003ce4 deposit  0x00000022 
+ 00022439  0x00003ce6 deposit  0x00000021 
+ 00022440  0x00003ce7 iadd  0x00000002 , 0x0000003f 
+ 00022441  0x00003ce8 and_into  0x000001fc , 0x0000003f 
+ 00022442  0x00003ce9 store  0x00000004 , 0x00000034 
+ 00022443  0x00003cea force  0x00000005 , 0x0000003f 
+ 00022444  0x00003ceb call  0x000058a1 
+ 00022445  0x00003cec fetch  0x00000004 , 0x00000034 
+ 00022446  0x00003ced rshift  0x0000003f , 0x0000003f 
+ 00022447  0x00003cee istore  0x00000004 , 0x00000005 
+ 00022448  0x00003cef branch  0x000058bb 
+ 00022449  0x00003cf2 force  0x0000000a , 0x0000003f 
+ 00022450  0x00003cf3 call  0x000058a1 
+ 00022451  0x00003cf4 arg  0x000003ff , 0x00000006 
+ 00022452  0x00003cf5 ifetch  0x00000009 , 0x00000006 
+ 00022453  0x00003cf6 istore  0x00000009 , 0x00000005 
+ 00022454  0x00003cf7 branch  0x000058bb 
+ 00022455  0x00003cfc force  0x00000003 , 0x0000003f 
+ 00022456  0x00003cfd call  0x000058a1 
+ 00022457  0x00003cfe setarg  0x00000114 
+ 00022458  0x00003cff istore  0x00000002 , 0x00000005 
+ 00022459  0x00003d00 branch  0x000058bb 
+ 00022460  0x00003d04 force  0x00000001 , 0x0000003f 
+ 00022461  0x00003d05 call  0x000058a1 
+ 00022462  0x00003d0e branch  0x000058bb 
+ 00022463  0x00003d12 force  0x00000002 , 0x0000003f 
+ 00022464  0x00003d13 call  0x000058a1 
+ 00022465  0x00003d14 fetch  0x00000001 , 0x00004170 
+ 00022466  0x00003d15 istore  0x00000001 , 0x00000005 
+ 00022467  0x00003d16 branch  0x000058bb 
+ 00022468  0x00003d1a force  0x00000002 , 0x0000003f 
+ 00022469  0x00003d1b call  0x000058a1 
+ 00022470  0x00003d1c setarg  0x00000005 
+ 00022471  0x00003d1d istore  0x00000001 , 0x00000005 
+ 00022472  0x00003d1e branch  0x000058bb 
+ 00022473  0x00003d22 force  0x00000002 , 0x0000003f 
+ 00022474  0x00003d23 call  0x000058a1 
+ 00022475  0x00003d24 setarg  0x00000000 
+ 00022476  0x00003d25 istore  0x00000001 , 0x00000005 
+ 00022477  0x00003d26 branch  0x000058bb 
+ 00022478  0x00003d2b jam  0x0000002e , 0x0000007c 
+ 00022479  0x00003d2c fetch  0x00000001 , 0x00000030 
+ 00022480  0x00003d2d set1  0x00000004 , 0x0000003f 
+ 00022481  0x00003d2e store  0x00000001 , 0x00000030 
+ 00022482  0x00003d2f copy  0x00000022 , 0x0000003f 
+ 00022483  0x00003d30 store  0x00000004 , 0x0000040f 
+ 00022484  0x00003d31 fetch  0x00000001 , 0x000003f7 
+ 00022485  0x00003d32 bbit1  0x00000003 , 0x000057dd 
+ 00022486  0x00003d33 set1  0x00000003 , 0x0000003f 
+ 00022487  0x00003d34 store  0x00000001 , 0x000003f7 
+ 00022488  0x00003d35 jam  0x00000005 , 0x000009bd 
+ 00022489  0x00003d36 call  0x00007d86 
+ 00022490  0x00003d37 force  0x00000001 , 0x0000003f 
+ 00022491  0x00003d38 call  0x000058a1 
+ 00022492  0x00003d39 branch  0x000058bb 
+ 00022493  0x00003d3b jam  0x00000000 , 0x00000048 
+ 00022494  0x00003d3c rtn 
+ 00022495  0x00003d3f force  0x00000006 , 0x0000003f 
+ 00022496  0x00003d40 call  0x000058a1 
+ 00022497  0x00003d41 fetch  0x00000005 , 0x000045a9 
+ 00022498  0x00003d42 istore  0x00000005 , 0x00000005 
+ 00022499  0x00003d43 branch  0x000058bb 
+ 00022500  0x00003d46 force  0x00000009 , 0x0000003f 
+ 00022501  0x00003d47 call  0x000058a1 
+ 00022502  0x00003d48 fetch  0x00000008 , 0x00004138 
+ 00022503  0x00003d49 istore  0x00000008 , 0x00000005 
+ 00022504  0x00003d4a branch  0x000058bb 
+ 00022505  0x00003d4d jam  0x00000001 , 0x000008d5 
+ 00022506  0x00003d4e fetch  0x00000001 , 0x00004639 
+ 00022507  0x00003d4f rtnne  0x00000001 
+ 00022508  0x00003d50 jam  0x00000013 , 0x000008d3 
+ 00022509  0x00003d51 rtn 
+ 00022510  0x00003d54 call  0x000058fa 
+ 00022511  0x00003d55 jam  0x00000099 , 0x0000007c 
+ 00022512  0x00003d56 jam  0x00000003 , 0x000008d3 
+ 00022513  0x00003d57 rtn 
+ 00022514  0x00003d5b call  0x000058fa 
+ 00022515  0x00003d5c jam  0x0000003d , 0x0000007c 
+ 00022516  0x00003d5d jam  0x00000007 , 0x000008d3 
+ 00022517  0x00003d5e rtn 
+ 00022518  0x00003d61 arg  0x00000972 , 0x00000011 
+ 00022519  0x00003d62 arg  0x00000992 , 0x00000012 
+ 00022520  0x00003d63 arg  0x00000010 , 0x00000039 
+ 00022521  0x00003d64 call  0x00007f55 
+ 00022522  0x00003d65 branch  0x00005800 , 0x00000005 
+ 00022523  0x00003d66 jam  0x00000000 , 0x000008d3 
+ 00022524  0x00003d67 call  0x000076f5 
+ 00022525  0x00003d68 jam  0x00000024 , 0x0000007e 
+ 00022526  0x00003d69 jam  0x00000040 , 0x0000007d 
+ 00022527  0x00003d6a branch  0x0000536c 
+ 00022528  0x00003d6c jam  0x0000000a , 0x000008d3 
+ 00022529  0x00003d6d call  0x000076f3 
+ 00022530  0x00003d6e jam  0x00000040 , 0x0000007d 
+ 00022531  0x00003d6f branch  0x00005454 
+ 00022532  0x00003d74 jam  0x00000040 , 0x0000007c 
+ 00022533  0x00003d75 rtn 
+ 00022534  0x00003d7c jam  0x0000003d , 0x0000007c 
+ 00022535  0x00003d7e rtn 
+ 00022536  0x00003d85 jam  0x00000000 , 0x000008da 
+ 00022537  0x00003d86 force  0x00000004 , 0x0000003f 
+ 00022538  0x00003d87 call  0x000058a1 
+ 00022539  0x00003d88 force  0x00000001 , 0x0000003f 
+ 00022540  0x00003d89 istore  0x00000001 , 0x00000005 
+ 00022541  0x00003d8a force  0x00000001 , 0x0000003f 
+ 00022542  0x00003d8b istore  0x00000001 , 0x00000005 
+ 00022543  0x00003d8c force  0x00000030 , 0x0000003f 
+ 00022544  0x00003d8d istore  0x00000001 , 0x00000005 
+ 00022545  0x00003d8e call  0x00005907 
+ 00022546  0x00003d8f branch  0x000058bb , 0x00000001 
+ 00022547  0x00003d90 branch  0x000058b9 
+ 00022548  0x00003d94 force  0x00000011 , 0x0000003f 
+ 00022549  0x00003d95 call  0x000058a1 
+ 00022550  0x00003d96 fetch  0x00000001 , 0x000008da 
+ 00022551  0x00003d97 arg  0x000046b2 , 0x00000006 
+ 00022552  0x00003d98 iadd  0x00000006 , 0x00000006 
+ 00022553  0x00003d99 ifetch  0x00000008 , 0x00000006 
+ 00022554  0x00003d9a istore  0x00000008 , 0x00000005 
+ 00022555  0x00003d9b ifetch  0x00000008 , 0x00000006 
+ 00022556  0x00003d9c istore  0x00000008 , 0x00000005 
+ 00022557  0x00003d9d fetch  0x00000001 , 0x000008da 
+ 00022558  0x00003d9e increase  0x00000010 , 0x0000003f 
+ 00022559  0x00003d9f store  0x00000001 , 0x000008da 
+ 00022560  0x00003da0 call  0x00005907 
+ 00022561  0x00003da1 branch  0x000058bb , 0x00000001 
+ 00022562  0x00003da2 branch  0x000058b9 
+ 00022563  0x00003da6 jam  0x00000006 , 0x000008d2 
+ 00022564  0x00003da7 jam  0x0000003f , 0x0000007c 
+ 00022565  0x00003da8 rtn 
+ 00022566  0x00003dac force  0x00000011 , 0x0000003f 
+ 00022567  0x00003dad call  0x000058a1 
+ 00022568  0x00003dae arg  0x00000972 , 0x00000006 
+ 00022569  0x00003daf ifetch  0x00000008 , 0x00000006 
+ 00022570  0x00003db0 istore  0x00000008 , 0x00000005 
+ 00022571  0x00003db1 ifetch  0x00000008 , 0x00000006 
+ 00022572  0x00003db2 istore  0x00000008 , 0x00000005 
+ 00022573  0x00003db3 branch  0x000058b9 
+ 00022574  0x00003db6 jam  0x00000040 , 0x0000007c 
+ 00022575  0x00003db7 rtn 
+ 00022576  0x00003dbb call  0x00005907 
+ 00022577  0x00003dbc call  0x00007628 , 0x00000001 
+ 00022578  0x00003dbd force  0x00000011 , 0x0000003f 
+ 00022579  0x00003dbe call  0x000058a1 
+ 00022580  0x00003dbf arg  0x00000942 , 0x00000006 
+ 00022581  0x00003dc0 ifetch  0x00000008 , 0x00000006 
+ 00022582  0x00003dc1 istore  0x00000008 , 0x00000005 
+ 00022583  0x00003dc2 ifetch  0x00000008 , 0x00000006 
+ 00022584  0x00003dc3 istore  0x00000008 , 0x00000005 
+ 00022585  0x00003dc4 call  0x00005907 
+ 00022586  0x00003dc5 nbranch  0x000058b9 , 0x00000001 
+ 00022587  0x00003dc6 branch  0x000058bb , 0x00000001 
+ 00022588  0x00003dca jam  0x0000000f , 0x000008d3 
+ 00022589  0x00003dcc call  0x000058fa 
+ 00022590  0x00003dcd jam  0x0000000b , 0x0000007c 
+ 00022591  0x00003dce call  0x00005912 
+ 00022592  0x00003dcf branch  0x00007665 , 0x00000001 
+ 00022593  0x00003dd0 branch  0x0000766f 
+ 00022594  0x00003dd2 call  0x000058f6 
+ 00022595  0x00003dd4 jam  0x00000041 , 0x0000007c 
+ 00022596  0x00003dd5 rtn 
+ 00022597  0x00003dd8 force  0x00000011 , 0x0000003f 
+ 00022598  0x00003dd9 call  0x000058a1 
+ 00022599  0x00003dda arg  0x00000972 , 0x00000006 
+ 00022600  0x00003ddb ifetch  0x00000008 , 0x00000006 
+ 00022601  0x00003ddc istore  0x00000008 , 0x00000005 
+ 00022602  0x00003ddd ifetch  0x00000008 , 0x00000006 
+ 00022603  0x00003dde istore  0x00000008 , 0x00000005 
+ 00022604  0x00003ddf call  0x00005907 
+ 00022605  0x00003de0 nbranch  0x000058b9 , 0x00000001 
+ 00022606  0x00003de1 branch  0x000058bb , 0x00000001 
+ 00022607  0x00003de4 force  0x00000003 , 0x0000003f 
+ 00022608  0x00003de5 call  0x000058a1 
+ 00022609  0x00003de6 setarg  0x0000fffe 
+ 00022610  0x00003de7 istore  0x00000002 , 0x00000005 
+ 00022611  0x00003de8 branch  0x000058b9 
+ 00022612  0x00003deb branch  0x000058bb 
+ 00022613  0x00003ded branch  0x000058bb 
+ 00022614  0x00003def branch  0x000058bb 
+ 00022615  0x00003df1 branch  0x000058bb 
+ 00022616  0x00003df7 call  0x00005916 
+ 00022617  0x00003df8 arg  0x00004140 , 0x00000011 
+ 00022618  0x00003df9 call  0x0000591c 
+ 00022619  0x00003dfa force  0x00000011 , 0x0000003f 
+ 00022620  0x00003dfb call  0x000058a1 
+ 00022621  0x00003dfc arg  0x000004a6 , 0x00000011 
+ 00022622  0x00003dfd arg  0x00000486 , 0x00000012 
+ 00022623  0x00003dfe call  0x00007077 
+ 00022624  0x00003dff nbranch  0x000058b0 , 0x00000029 
+ 00022625  0x00003e00 branch  0x000058b6 
+ 00022626  0x00003e03 call  0x00005916 
+ 00022627  0x00003e04 arg  0x00000040 , 0x00000011 
+ 00022628  0x00003e05 call  0x00006f7a 
+ 00022629  0x00003e07 force  0x00000011 , 0x0000003f 
+ 00022630  0x00003e08 call  0x000058a1 
+ 00022631  0x00003e09 arg  0x00000486 , 0x00000006 
+ 00022632  0x00003e0a call  0x00007e87 
+ 00022633  0x00003e0b fetch  0x00000001 , 0x00000055 
+ 00022634  0x00003e0c beq  0x00000019 , 0x000058bb 
+ 00022635  0x00003e0d beq  0x00000018 , 0x000058bb 
+ 00022636  0x00003e0e branch  0x000058b6 
+ 00022637  0x00003e11 fetch  0x00000001 , 0x000008d9 
+ 00022638  0x00003e12 branch  0x00005873 , 0x00000034 
+ 00022639  0x00003e13 call  0x00005907 
+ 00022640  0x00003e14 call  0x000058fa , 0x00000001 
+ 00022641  0x00003e15 ncall  0x000058f6 , 0x00000001 
+ 00022642  0x00003e16 branch  0x00005874 
+ 00022643  0x00003e18 call  0x000058fa 
+ 00022644  0x00003e1a call  0x00005916 
+ 00022645  0x00003e1b branch  0x00005865 
+ 00022646  0x00003e1e arg  0x00004140 , 0x00000011 
+ 00022647  0x00003e1f call  0x00006fad 
+ 00022648  0x00003e20 force  0x00000005 , 0x0000003f 
+ 00022649  0x00003e21 call  0x000058a1 
+ 00022650  0x00003e22 fetch  0x00000004 , 0x000004b6 
+ 00022651  0x00003e23 istore  0x00000004 , 0x00000005 
+ 00022652  0x00003e24 arg  0x000003fb , 0x00000002 
+ 00022653  0x00003e25 call  0x000058ec 
+ 00022654  0x00003e26 call  0x000070ab 
+ 00022655  0x00003e27 call  0x00005907 
+ 00022656  0x00003e28 branch  0x00005885 , 0x00000001 
+ 00022657  0x00003e29 jam  0x00000001 , 0x000003fe 
+ 00022658  0x00003e2a fetch  0x00000001 , 0x000008d9 
+ 00022659  0x00003e2b rtn  0x00000034 
+ 00022660  0x00003e2c jam  0x0000000b , 0x0000007c 
+ 00022661  0x00003e2e fetch  0x00000001 , 0x0000425d 
+ 00022662  0x00003e2f rtn  0x00000034 
+ 00022663  0x00003e31 call  0x00005907 
+ 00022664  0x00003e32 nbranch  0x0000588d , 0x00000001 
+ 00022665  0x00003e33 fetch  0x00000001 , 0x000003fd 
+ 00022666  0x00003e34 rtn  0x00000034 
+ 00022667  0x00003e35 jam  0x0000000f , 0x0000007c 
+ 00022668  0x00003e36 rtn 
+ 00022669  0x00003e38 rtnmark0  0x00000021 
+ 00022670  0x00003e39 set0  0x00000021 , 0x00000000 
+ 00022671  0x00003e3a jam  0x0000000f , 0x0000007c 
+ 00022672  0x00003e3b rtn 
+ 00022673  0x00003e40 call  0x00005916 
+ 00022674  0x00003e41 call  0x00006fb0 
+ 00022675  0x00003e42 force  0x00000011 , 0x0000003f 
+ 00022676  0x00003e43 call  0x000058a1 
+ 00022677  0x00003e44 arg  0x00000486 , 0x00000006 
+ 00022678  0x00003e45 call  0x00007e87 
+ 00022679  0x00003e46 branch  0x000058b6 
+ 00022680  0x00003e49 force  0x00000001 , 0x0000003f 
+ 00022681  0x00003e4a call  0x000058a1 
+ 00022682  0x00003e4b branch  0x000058b6 
+ 00022683  0x00003e4e force  0x00000002 , 0x0000003f 
+ 00022684  0x00003e4f call  0x000058a1 
+ 00022685  0x00003e50 force  0x00000010 , 0x0000003f 
+ 00022686  0x00003e51 istore  0x00000001 , 0x00000005 
+ 00022687  0x00003e52 store  0x00000001 , 0x00000054 
+ 00022688  0x00003e53 branch  0x000058b6 
+ 00022689  0x00003e57 lshift3  0x0000003f , 0x0000003f 
+ 00022690  0x00003e58 or_into  0x00000007 , 0x0000003f 
+ 00022691  0x00003e59 store  0x00000001 , 0x000003dc 
+ 00022692  0x00003e5a arg  0x00000011 , 0x00000039 
+ 00022693  0x00003e5b arg  0x000003de , 0x00000005 
+ 00022694  0x00003e5c call  0x00007e9f 
+ 00022695  0x00003e5d arg  0x000003de , 0x00000005 
+ 00022696  0x00003e5e rtn 
+ 00022697  0x00003e61 and  0x0000003f , 0x0000007f , 0x00000011 
+ 00022698  0x00003e62 jam  0x0000007f , 0x00000048 
+ 00022699  0x00003e63 deposit  0x00000007 
+ 00022700  0x00003e64 call  0x000058a1 
+ 00022701  0x00003e65 deposit  0x00000011 
+ 00022702  0x00003e66 istore  0x00000001 , 0x00000005 
+ 00022703  0x00003e67 rtn 
+ 00022704  0x00003e6a fetch  0x00000001 , 0x00000048 
+ 00022705  0x00003e6b lshift  0x0000003f , 0x0000003f 
+ 00022706  0x00003e6c fetcht  0x00000001 , 0x0000004c 
+ 00022707  0x00003e6d isolate1  0x00000001 , 0x00000002 
+ 00022708  0x00003e6e setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00022709  0x00003e6f branch  0x000058c0 
+ 00022710  0x00003e73 fetcht  0x00000001 , 0x0000004c 
+ 00022711  0x00003e74 and_into  0x00000001 , 0x00000002 
+ 00022712  0x00003e75 branch  0x000058bc 
+ 00022713  0x00003e78 force  0x00000000 , 0x00000002 
+ 00022714  0x00003e79 branch  0x000058bc 
+ 00022715  0x00003e7c force  0x00000001 , 0x00000002 
+ 00022716  0x00003e7e fetch  0x00000001 , 0x00000048 
+ 00022717  0x00003e7f lshift  0x0000003f , 0x0000003f 
+ 00022718  0x00003e80 setflag  0x00000029 , 0x00000000 , 0x0000003f 
+ 00022719  0x00003e81 ixor  0x00000002 , 0x0000003f 
+ 00022720  0x00003e83 store  0x00000001 , 0x000003dd 
+ 00022721  0x00003e84 jam  0x00000000 , 0x00000048 
+ 00022722  0x00003e85 call  0x000058d1 
+ 00022723  0x00003e86 enable  0x00000028 
+ 00022724  0x00003e87 rtn 
+ 00022725  0x00003e8b fetch  0x00000001 , 0x0000007c 
+ 00022726  0x00003e8c rtn  0x00000034 
+ 00022727  0x00003e8d call  0x000058ca 
+ 00022728  0x00003e8e fetch  0x00000001 , 0x0000007c 
+ 00022729  0x00003e8f rtn 
+ 00022730  0x00003e92 set1  0x00000025 , 0x00000000 
+ 00022731  0x00003e93 bpatch  0x0000005c , 0x0000402b 
+ 00022732  0x00003e94 fetch  0x00000001 , 0x00000048 
+ 00022733  0x00003e95 branch  0x000058d1 , 0x00000034 
+ 00022734  0x00003e96 fetch  0x00000001 , 0x00000078 
+ 00022735  0x00003e97 nrtn  0x00000034 
+ 00022736  0x00003e98 branch  0x000058db 
+ 00022737  0x00003e9a fetch  0x00000001 , 0x00000078 
+ 00022738  0x00003e9b branch  0x000058e1 , 0x00000034 
+ 00022739  0x00003e9c fetch  0x00000003 , 0x00000078 
+ 00022740  0x00003e9d store  0x00000003 , 0x00000048 
+ 00022741  0x00003e9e fetcht  0x00000001 , 0x0000007b 
+ 00022742  0x00003e9f fetch  0x00000001 , 0x0000004c 
+ 00022743  0x00003ea0 set0  0x00000001 , 0x0000003f 
+ 00022744  0x00003ea1 ior  0x00000002 , 0x0000003f 
+ 00022745  0x00003ea2 store  0x00000001 , 0x0000004c 
+ 00022746  0x00003ea3 jam  0x00000000 , 0x00000078 
+ 00022747  0x00003ea5 fetch  0x00000001 , 0x0000007c 
+ 00022748  0x00003ea6 rtn  0x00000034 
+ 00022749  0x00003ea7 fetch  0x00000004 , 0x0000007c 
+ 00022750  0x00003ea8 store  0x00000004 , 0x00000078 
+ 00022751  0x00003ea9 jam  0x00000000 , 0x0000007c 
+ 00022752  0x00003eaa rtn 
+ 00022753  0x00003eac fetch  0x00000001 , 0x0000007c 
+ 00022754  0x00003ead rtn  0x00000034 
+ 00022755  0x00003eae fetch  0x00000003 , 0x0000007c 
+ 00022756  0x00003eaf store  0x00000003 , 0x00000048 
+ 00022757  0x00003eb0 fetcht  0x00000001 , 0x0000007f 
+ 00022758  0x00003eb1 fetch  0x00000001 , 0x0000004c 
+ 00022759  0x00003eb2 set0  0x00000001 , 0x0000003f 
+ 00022760  0x00003eb3 ior  0x00000002 , 0x0000003f 
+ 00022761  0x00003eb4 store  0x00000001 , 0x0000004c 
+ 00022762  0x00003eb5 jam  0x00000000 , 0x0000007c 
+ 00022763  0x00003eb6 rtn 
+ 00022764  0x00003eba set1  0x00000025 , 0x00000000 
+ 00022765  0x00003ebb bpatch  0x0000005d , 0x0000402b 
+ 00022766  0x00003ebc fetch  0x00000001 , 0x0000004c 
+ 00022767  0x00003ebd copy  0x0000003f , 0x00000013 
+ 00022768  0x00003ebe ifetch  0x00000001 , 0x00000002 
+ 00022769  0x00003ebf call  0x0000546e 
+ 00022770  0x00003ec0 call  0x000058b0 
+ 00022771  0x00003ec1 copy  0x00000013 , 0x0000003f 
+ 00022772  0x00003ec2 store  0x00000001 , 0x0000004c 
+ 00022773  0x00003ec3 rtn 
+ 00022774  0x00003ec6 fetcht  0x00000001 , 0x0000004c 
+ 00022775  0x00003ec7 set0  0x00000000 , 0x00000002 
+ 00022776  0x00003ec8 storet  0x00000001 , 0x0000004c 
+ 00022777  0x00003ec9 rtn 
+ 00022778  0x00003ecc fetcht  0x00000001 , 0x0000004c 
+ 00022779  0x00003ecd set1  0x00000000 , 0x00000002 
+ 00022780  0x00003ece storet  0x00000001 , 0x0000004c 
+ 00022781  0x00003ecf rtn 
+ 00022782  0x00003ed3 nsetflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00022783  0x00003ed4 fetcht  0x00000001 , 0x0000004c 
+ 00022784  0x00003ed5 ixor  0x00000002 , 0x0000003f 
+ 00022785  0x00003ed6 isolate1  0x00000001 , 0x0000003f 
+ 00022786  0x00003ed7 rtn 
+ 00022787  0x00003edb fetch  0x00000001 , 0x0000004c 
+ 00022788  0x00003edc setflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00022789  0x00003edd store  0x00000001 , 0x0000004c 
+ 00022790  0x00003ede rtn 
+ 00022791  0x00003ee2 fetch  0x00000001 , 0x000008d8 
+ 00022792  0x00003ee3 compare  0x00000001 , 0x0000003f , 0x0000007f 
+ 00022793  0x00003ee4 rtn 
+ 00022794  0x00003ee6 fetch  0x00000001 , 0x000008d8 
+ 00022795  0x00003ee7 set1  0x00000007 , 0x0000003f 
+ 00022796  0x00003ee8 store  0x00000001 , 0x000008d8 
+ 00022797  0x00003ee9 rtn 
+ 00022798  0x00003eeb fetch  0x00000001 , 0x000008d8 
+ 00022799  0x00003eec set0  0x00000007 , 0x0000003f 
+ 00022800  0x00003eed store  0x00000001 , 0x000008d8 
+ 00022801  0x00003eee rtn 
+ 00022802  0x00003ef0 fetch  0x00000001 , 0x000008d8 
+ 00022803  0x00003ef1 isolate1  0x00000007 , 0x0000003f 
+ 00022804  0x00003ef2 store  0x00000001 , 0x000008d8 
+ 00022805  0x00003ef3 rtn 
+ 00022806  0x00003ef7 arg  0x00000486 , 0x00000005 
+ 00022807  0x00003ef9 force  0x00000010 , 0x00000039 
+ 00022808  0x00003efc random  0x0000003f 
+ 00022809  0x00003efd istore  0x00000001 , 0x00000005 
+ 00022810  0x00003efe loop  0x00005918 
+ 00022811  0x00003eff rtn 
+ 00022812  0x00003f02 call  0x00006f7e 
+ 00022813  0x00003f03 arg  0x00004261 , 0x00000011 
+ 00022814  0x00003f04 arg  0x000004b6 , 0x00000012 
+ 00022815  0x00003f05 ifetch  0x00000008 , 0x00000011 
+ 00022816  0x00003f06 fetcht  0x00000001 , 0x00000030 
+ 00022817  0x00003f07 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00022818  0x00003f08 storet  0x00000001 , 0x00000030 
+ 00022819  0x00003f09 copy  0x00000011 , 0x00000005 
+ 00022820  0x00003f0a call  0x00007077 
+ 00022821  0x00003f0b branch  0x000031ee 
+ 00022822  0x00003f13 set1  0x00000025 , 0x00000000 
+ 00022823  0x00003f14 bpatch  0x0000005e , 0x0000402b 
+ 00022824  0x00003f16 call  0x000058c5 
+ 00022825  0x00003f17 nrtn  0x00000034 
+ 00022826  0x00003f19 fetch  0x00000001 , 0x00000055 
+ 00022827  0x00003f1a rtn  0x00000034 
+ 00022828  0x00003f1e beq  0x00000004 , 0x0000597b 
+ 00022829  0x00003f1f beq  0x00000005 , 0x00005980 
+ 00022830  0x00003f20 beq  0x00000002 , 0x00005972 
+ 00022831  0x00003f21 beq  0x00000003 , 0x00005988 
+ 00022832  0x00003f22 beq  0x0000000e , 0x00005975 
+ 00022833  0x00003f23 beq  0x00000006 , 0x000059a4 
+ 00022834  0x00003f24 beq  0x00000007 , 0x000059bc 
+ 00022835  0x00003f25 beq  0x00000009 , 0x000059bd 
+ 00022836  0x00003f26 beq  0x0000000a , 0x000059c6 
+ 00022837  0x00003f27 beq  0x0000000b , 0x000059ca 
+ 00022838  0x00003f28 beq  0x0000000c , 0x00005992 
+ 00022839  0x00003f29 beq  0x0000000d , 0x00005995 
+ 00022840  0x00003f2a beq  0x0000000f , 0x0000599b 
+ 00022841  0x00003f2b beq  0x00000012 , 0x00005965 
+ 00022842  0x00003f2c beq  0x00000013 , 0x00005988 
+ 00022843  0x00003f2d beq  0x00000010 , 0x00005968 
+ 00022844  0x00003f2e beq  0x00000014 , 0x00005962 
+ 00022845  0x00003f2f beq  0x00000015 , 0x00005988 
+ 00022846  0x00003f30 beq  0x00000016 , 0x0000595c 
+ 00022847  0x00003f31 beq  0x00000018 , 0x00005961 
+ 00022848  0x00003f32 beq  0x00000017 , 0x00005955 
+ 00022849  0x00003f33 beq  0x00000019 , 0x0000595b 
+ 00022850  0x00003f34 beq  0x0000001a , 0x00005946 
+ 00022851  0x00003f35 beq  0x0000001b , 0x00005950 
+ 00022852  0x00003f36 jam  0x00000000 , 0x00000055 
+ 00022853  0x00003f38 rtn 
+ 00022854  0x00003f3a fetch  0x00000001 , 0x000003f7 
+ 00022855  0x00003f3b rtnbit0  0x00000002 
+ 00022856  0x00003f3c rtnbit0  0x00000003 
+ 00022857  0x00003f3d jam  0x00000000 , 0x00000055 
+ 00022858  0x00003f3e call  0x0000594c 
+ 00022859  0x00003f3f branch  0x0000690d 
+ 00022860  0x00003f42 fetch  0x00000001 , 0x0000016c 
+ 00022861  0x00003f43 rtnbit0  0x00000001 
+ 00022862  0x00003f44 jam  0x0000000a , 0x00000055 
+ 00022863  0x00003f45 rtn 
+ 00022864  0x00003f48 arg  0x0000000b , 0x00000007 
+ 00022865  0x00003f49 call  0x00007ee2 
+ 00022866  0x00003f4a nrtn  0x00000034 
+ 00022867  0x00003f4b jam  0x0000001a , 0x00000055 
+ 00022868  0x00003f4c rtn 
+ 00022869  0x00003f4f fetch  0x00000001 , 0x0000016c 
+ 00022870  0x00003f50 set0  0x00000000 , 0x0000003f 
+ 00022871  0x00003f51 store  0x00000001 , 0x0000016c 
+ 00022872  0x00003f52 jam  0x00000019 , 0x00000055 
+ 00022873  0x00003f53 jam  0x0000000b , 0x0000007c 
+ 00022874  0x00003f54 rtn 
+ 00022875  0x00003f56 rtn 
+ 00022876  0x00003f58 fetch  0x00000001 , 0x000003fa 
+ 00022877  0x00003f59 rtnne  0x00000002 
+ 00022878  0x00003f5a call  0x000059cc 
+ 00022879  0x00003f5b jam  0x00000018 , 0x00000055 
+ 00022880  0x00003f5c rtn 
+ 00022881  0x00003f5f rtn 
+ 00022882  0x00003f61 jam  0x00000015 , 0x00000055 
+ 00022883  0x00003f62 jam  0x00000083 , 0x0000007c 
+ 00022884  0x00003f63 rtn 
+ 00022885  0x00003f65 jam  0x00000013 , 0x00000055 
+ 00022886  0x00003f66 jam  0x00000025 , 0x0000007c 
+ 00022887  0x00003f67 rtn 
+ 00022888  0x00003f6a fetch  0x00000001 , 0x000045f4 
+ 00022889  0x00003f6b rtneq  0x00000000 
+ 00022890  0x00003f6c beq  0x00000001 , 0x00005970 
+ 00022891  0x00003f6d arg  0x0000000a , 0x00000007 
+ 00022892  0x00003f6e call  0x00007ee2 
+ 00022893  0x00003f6f nrtn  0x00000034 
+ 00022894  0x00003f70 jam  0x00000000 , 0x000045f4 
+ 00022895  0x00003f71 branch  0x00005989 
+ 00022896  0x00003f73 rtn  0x00000029 
+ 00022897  0x00003f74 branch  0x000059a4 
+ 00022898  0x00003f77 jam  0x00000003 , 0x00000055 
+ 00022899  0x00003f78 jam  0x00000027 , 0x0000007c 
+ 00022900  0x00003f79 rtn 
+ 00022901  0x00003f7b jam  0x00000013 , 0x0000007c 
+ 00022902  0x00003f7c set1  0x00000003 , 0x00000000 
+ 00022903  0x00003f7d jam  0x00000005 , 0x00000055 
+ 00022904  0x00003f7e setarg  0x000001ff 
+ 00022905  0x00003f7f store  0x00000002 , 0x000003f8 
+ 00022906  0x00003f80 rtn 
+ 00022907  0x00003f82 jam  0x00000005 , 0x00000055 
+ 00022908  0x00003f83 jam  0x000000ff , 0x000003f8 
+ 00022909  0x00003f84 set0  0x00000022 , 0x00000000 
+ 00022910  0x00003f85 jam  0x00000033 , 0x0000007c 
+ 00022911  0x00003f86 branch  0x0000531b 
+ 00022912  0x00003f88 rtnmark1  0x00000022 
+ 00022913  0x00003f89 fetch  0x00000002 , 0x000003f8 
+ 00022914  0x00003f8a sub  0x0000003f , 0x00000001 , 0x0000003f 
+ 00022915  0x00003f8b branch  0x00005986 , 0x00000005 
+ 00022916  0x00003f8c store  0x00000002 , 0x000003f8 
+ 00022917  0x00003f8d rtn 
+ 00022918  0x00003f8f jam  0x0000000e , 0x00000055 
+ 00022919  0x00003f90 rtn 
+ 00022920  0x00003f93 rtn 
+ 00022921  0x00003f96 fetch  0x00000001 , 0x000003f7 
+ 00022922  0x00003f97 rtnbit0  0x00000003 
+ 00022923  0x00003f98 rtnbit0  0x00000002 
+ 00022924  0x00003f99 fetch  0x00000001 , 0x0000016c 
+ 00022925  0x00003f9a set0  0x00000002 , 0x0000003f 
+ 00022926  0x00003f9b store  0x00000001 , 0x0000016c 
+ 00022927  0x00003f9c jam  0x00000013 , 0x0000007c 
+ 00022928  0x00003f9d jam  0x00000010 , 0x00000055 
+ 00022929  0x00003f9e rtn 
+ 00022930  0x00003fa1 jam  0x0000000d , 0x00000055 
+ 00022931  0x00003fa2 jam  0x00000031 , 0x0000007c 
+ 00022932  0x00003fa3 rtn 
+ 00022933  0x00003fa6 fetch  0x00000001 , 0x000003f7 
+ 00022934  0x00003fa7 rtnbit0  0x00000002 
+ 00022935  0x00003fa8 jam  0x00000000 , 0x00000055 
+ 00022936  0x00003faa rtn 
+ 00022937  0x00003fac jam  0x00000006 , 0x00000055 
+ 00022938  0x00003fad rtn 
+ 00022939  0x00003fb0 fetch  0x00000001 , 0x000003f8 
+ 00022940  0x00003fb1 increase  0xffffffff , 0x0000003f 
+ 00022941  0x00003fb2 branch  0x000059a0 , 0x00000034 
+ 00022942  0x00003fb3 store  0x00000001 , 0x000003f8 
+ 00022943  0x00003fb4 rtn 
+ 00022944  0x00003fb6 jam  0x00000007 , 0x0000007c 
+ 00022945  0x00003fb7 jam  0x00000016 , 0x000003f0 
+ 00022946  0x00003fb8 jam  0x00000000 , 0x00000055 
+ 00022947  0x00003fb9 rtn 
+ 00022948  0x00003fbc fetch  0x00000001 , 0x0000016c 
+ 00022949  0x00003fbd bbit1  0x00000002 , 0x00005989 
+ 00022950  0x00003fbe bbit1  0x00000000 , 0x000059a9 
+ 00022951  0x00003fc0 jam  0x0000001a , 0x00000055 
+ 00022952  0x00003fc1 rtn 
+ 00022953  0x00003fc3 fetch  0x00000001 , 0x0000425d 
+ 00022954  0x00003fc4 branch  0x000059b5 , 0x00000034 
+ 00022955  0x00003fc5 fetch  0x00000001 , 0x000003f7 
+ 00022956  0x00003fc6 rtnbit0  0x00000003 
+ 00022957  0x00003fc7 rtnbit0  0x00000002 
+ 00022958  0x00003fc8 fetch  0x00000004 , 0x0000040f 
+ 00022959  0x00003fc9 arg  0x00000064 , 0x00000002 
+ 00022960  0x00003fca iadd  0x00000002 , 0x00000002 
+ 00022961  0x00003fcb copy  0x00000022 , 0x0000003f 
+ 00022962  0x00003fcc isub  0x00000002 , 0x0000003e 
+ 00022963  0x00003fcd nrtn  0x00000002 
+ 00022964  0x00003fce branch  0x00005955 
+ 00022965  0x00003fd3 jam  0x00000016 , 0x00000055 
+ 00022966  0x00003fd4 jam  0x00000004 , 0x00004718 
+ 00022967  0x00003fd5 setarg  0x00003030 
+ 00022968  0x00003fd6 store  0x00000002 , 0x00004719 
+ 00022969  0x00003fd7 istore  0x00000002 , 0x00000005 
+ 00022970  0x00003fd8 jam  0x00000002 , 0x000003fa 
+ 00022971  0x00003fd9 branch  0x0000595c 
+ 00022972  0x00003fdc rtn 
+ 00022973  0x00003fde fetch  0x00000001 , 0x0000016c 
+ 00022974  0x00003fdf bbit1  0x00000001 , 0x000059c1 
+ 00022975  0x00003fe0 jam  0x0000001a , 0x00000055 
+ 00022976  0x00003fe1 rtn 
+ 00022977  0x00003fe4 fetch  0x00000001 , 0x0000016c 
+ 00022978  0x00003fe5 set0  0x00000001 , 0x0000003f 
+ 00022979  0x00003fe6 store  0x00000001 , 0x0000016c 
+ 00022980  0x00003fe7 jam  0x0000000f , 0x0000007c 
+ 00022981  0x00003fe8 rtn 
+ 00022982  0x00003feb fetch  0x00000001 , 0x000003fe 
+ 00022983  0x00003fec rtn  0x00000034 
+ 00022984  0x00003fed jam  0x00000000 , 0x00000055 
+ 00022985  0x00003fee branch  0x000059c1 
+ 00022986  0x00003ff1 jam  0x0000000c , 0x00000055 
+ 00022987  0x00003ff2 rtn 
+ 00022988  0x00003ff5 fetch  0x00000001 , 0x0000004b 
+ 00022989  0x00003ff6 bbit1  0x00000002 , 0x000059d1 
+ 00022990  0x00003ff7 call  0x000058fa 
+ 00022991  0x00003ff8 jam  0x00000008 , 0x0000007c 
+ 00022992  0x00003ff9 branch  0x00003f9b 
+ 00022993  0x00003ffb fetch  0x00000001 , 0x0000004b 
+ 00022994  0x00003ffc set0  0x00000002 , 0x0000003f 
+ 00022995  0x00003ffd store  0x00000001 , 0x0000004b 
+ 00022996  0x00003ffe call  0x00005618 
+ 00022997  0x00003fff call  0x00005903 
+ 00022998  0x00004000 branch  0x00003f9b 
+ 00022999  0x00004003 setarg  0x00000004 
+ 00023000  0x00004004 store  0x00000001 , 0x00004718 
+ 00023001  0x00004005 setarg  0x00003030 
+ 00023002  0x00004006 istore  0x00000002 , 0x00000005 
+ 00023003  0x00004007 istore  0x00000002 , 0x00000005 
+ 00023004  0x00004008 rtn 
+ 00023005  0x00004011 rtn  0x0000002b 
+ 00023006  0x00004012 jam  0x00000000 , 0x0000472f 
+ 00023007  0x00004013 call  0x00005234 
+ 00023008  0x00004014 call  0x00006577 
+ 00023009  0x00004015 setarg  0x00005a1c 
+ 00023010  0x00004016 store  0x00000002 , 0x00004294 
+ 00023011  0x00004017 setarg  0x00005a1c 
+ 00023012  0x00004018 store  0x00000002 , 0x00004292 
+ 00023013  0x00004019 setarg  0x00005a22 
+ 00023014  0x0000401a store  0x00000002 , 0x00004296 
+ 00023015  0x0000401b setarg  0x00005a1c 
+ 00023016  0x0000401c store  0x00000002 , 0x00004290 
+ 00023017  0x0000401d setarg  0x00005a18 
+ 00023018  0x0000401e store  0x00000002 , 0x0000428a 
+ 00023019  0x0000401f setarg  0x00005b60 
+ 00023020  0x00004020 store  0x00000002 , 0x0000429c 
+ 00023021  0x00004021 setarg  0x00005ba2 
+ 00023022  0x00004022 store  0x00000002 , 0x0000429e 
+ 00023023  0x00004023 setarg  0x00005cf9 
+ 00023024  0x00004024 store  0x00000002 , 0x00004607 
+ 00023025  0x00004025 setarg  0x00005d81 
+ 00023026  0x00004026 store  0x00000002 , 0x0000429a 
+ 00023027  0x00004027 set1  0x00000025 , 0x00000000 
+ 00023028  0x00004028 bpatch  0x0000005f , 0x0000402b 
+ 00023029  0x00004029 call  0x000059fa 
+ 00023030  0x0000402a call  0x00005a13 
+ 00023031  0x0000402b call  0x00003d48 
+ 00023032  0x0000402c call  0x00006441 
+ 00023033  0x0000402d branch  0x00005d0e 
+ 00023034  0x00004031 fetch  0x00000004 , 0x0000473e 
+ 00023035  0x00004032 hstore  0x00000004 , 0x00008054 
+ 00023036  0x00004034 fetch  0x00000004 , 0x00004742 
+ 00023037  0x00004035 hstore  0x00000004 , 0x0000805a 
+ 00023038  0x00004037 hfetch  0x00000001 , 0x00008081 
+ 00023039  0x00004038 or_into  0x00000004 , 0x0000003f 
+ 00023040  0x00004039 hstore  0x00000001 , 0x00008081 
+ 00023041  0x0000403a jam  0x000000ff , 0x0000027c 
+ 00023042  0x0000403b hjam  0x00000000 , 0x00008062 
+ 00023043  0x0000403d fetch  0x00000002 , 0x0000473e 
+ 00023044  0x0000403e hstore  0x00000002 , 0x00008058 
+ 00023045  0x0000403f fetch  0x00000002 , 0x00004742 
+ 00023046  0x00004040 hstore  0x00000002 , 0x0000805e 
+ 00023047  0x00004041 hstore  0x00000002 , 0x00008060 
+ 00023048  0x00004043 hfetch  0x00000004 , 0x00008078 
+ 00023049  0x00004044 set1  0x00000007 , 0x0000003f 
+ 00023050  0x00004045 hstore  0x00000004 , 0x00008078 
+ 00023051  0x00004047 call  0x00003ee4 
+ 00023052  0x00004048 fetch  0x00000001 , 0x0000475a 
+ 00023053  0x00004049 isolate1  0x00000000 , 0x0000003f 
+ 00023054  0x0000404a hfetcht  0x00000001 , 0x00008062 
+ 00023055  0x0000404b setflag  0x00000001 , 0x00000004 , 0x00000002 
+ 00023056  0x0000404c hstoret  0x00000001 , 0x00008062 
+ 00023057  0x0000404d rtn 
+ 00023058  0x00004052 call  0x000059fa 
+ 00023059  0x0000405a fetcht  0x00000001 , 0x0000472b 
+ 00023060  0x0000405b call  0x000064e8 
+ 00023061  0x0000405c call  0x00005a76 
+ 00023062  0x0000405e fetcht  0x00000001 , 0x00004729 
+ 00023063  0x0000405f branch  0x000064df 
+ 00023064  0x00004062 fetcht  0x00000001 , 0x00004729 
+ 00023065  0x00004063 call  0x000064f5 
+ 00023066  0x00004064 nbranch  0x00003e37 , 0x00000001 
+ 00023067  0x00004065 branch  0x00003e35 
+ 00023068  0x0000406c set1  0x00000025 , 0x00000000 
+ 00023069  0x0000406d bpatch  0x00000060 , 0x0000402c 
+ 00023070  0x0000406e call  0x00005dc5 
+ 00023071  0x0000406f call  0x0000480e 
+ 00023072  0x00004070 nrtn  0x00000034 
+ 00023073  0x00004071 branch  0x00005a7b 
+ 00023074  0x00004073 copy  0x00000013 , 0x0000003f 
+ 00023075  0x00004074 beq  0x00000001 , 0x00005a67 
+ 00023076  0x00004075 beq  0x00000002 , 0x00005a3e 
+ 00023077  0x00004076 beq  0x00000004 , 0x00005a69 
+ 00023078  0x00004077 beq  0x00000005 , 0x00005a5b 
+ 00023079  0x00004078 beq  0x00000008 , 0x00005a44 
+ 00023080  0x00004079 beq  0x00000009 , 0x00005a4b 
+ 00023081  0x0000407a beq  0x0000000a , 0x00005a5e 
+ 00023082  0x0000407b beq  0x0000000b , 0x00005a4f 
+ 00023083  0x0000407c beq  0x0000000c , 0x00005a5a 
+ 00023084  0x0000407d beq  0x00000013 , 0x00005a69 
+ 00023085  0x0000407e beq  0x00000014 , 0x00005a63 
+ 00023086  0x0000407f beq  0x00000015 , 0x00005a5c 
+ 00023087  0x00004080 beq  0x00000023 , 0x00005a5f 
+ 00023088  0x00004081 beq  0x00000024 , 0x00005a62 
+ 00023089  0x00004082 beq  0x00000030 , 0x00005d49 
+ 00023090  0x00004083 beq  0x00000031 , 0x00005d4b 
+ 00023091  0x00004084 beq  0x00000032 , 0x00005d59 
+ 00023092  0x00004085 beq  0x00000033 , 0x00005d57 
+ 00023093  0x00004086 beq  0x00000034 , 0x00005d43 
+ 00023094  0x00004087 beq  0x00000035 , 0x00005d39 
+ 00023095  0x00004088 beq  0x00000036 , 0x00005d41 
+ 00023096  0x00004089 beq  0x00000037 , 0x00005d4d 
+ 00023097  0x0000408a beq  0x00000038 , 0x00005d4f 
+ 00023098  0x0000408b and  0x0000003f , 0x0000000f , 0x00000002 
+ 00023099  0x0000408c and_into  0x000000f0 , 0x0000003f 
+ 00023100  0x0000408d beq  0x00000050 , 0x00005da3 
+ 00023101  0x0000408e rtn 
+ 00023102  0x00004092 fetch  0x00000001 , 0x000046ed 
+ 00023103  0x00004093 ncall  0x00005d4d , 0x00000034 
+ 00023104  0x00004094 call  0x00005a69 
+ 00023105  0x00004095 fetch  0x00000002 , 0x0000470b 
+ 00023106  0x00004096 rtnbit0  0x00000004 
+ 00023107  0x00004097 branch  0x00005a4b 
+ 00023108  0x0000409a fetch  0x00000002 , 0x0000470b 
+ 00023109  0x0000409b set1  0x00000004 , 0x0000003f 
+ 00023110  0x0000409d store  0x00000002 , 0x0000470b 
+ 00023111  0x0000409e fetch  0x00000001 , 0x0000473b 
+ 00023112  0x0000409f store  0x00000001 , 0x00004212 
+ 00023113  0x000040a0 call  0x00005a76 
+ 00023114  0x000040a1 branch  0x00005ce4 
+ 00023115  0x000040a6 fetch  0x00000002 , 0x0000470b 
+ 00023116  0x000040a7 set0  0x00000004 , 0x0000003f 
+ 00023117  0x000040a8 store  0x00000002 , 0x0000470b 
+ 00023118  0x000040a9 branch  0x00005ce8 
+ 00023119  0x000040b1 fetch  0x00000002 , 0x00004042 
+ 00023120  0x000040b2 rshift  0x0000003f , 0x0000003f 
+ 00023121  0x000040b3 fetcht  0x00000002 , 0x00004284 
+ 00023122  0x000040b4 isub  0x00000002 , 0x0000003e 
+ 00023123  0x000040b5 nbranch  0x00005a55 , 0x00000005 
+ 00023124  0x000040b6 branch  0x00003e7f 
+ 00023125  0x000040b8 fetch  0x00000001 , 0x0000472f 
+ 00023126  0x000040b9 rtnbit1  0x00000000 
+ 00023127  0x000040ba hfetch  0x00000002 , 0x00008112 
+ 00023128  0x000040bb ncall  0x00005dbd , 0x00000034 
+ 00023129  0x000040bc branch  0x00003e77 
+ 00023130  0x000040bf branch  0x00003e81 
+ 00023131  0x000040c2 branch  0x00005a6d 
+ 00023132  0x000040c5 call  0x00005a69 
+ 00023133  0x000040c6 branch  0x00005cea 
+ 00023134  0x000040c9 branch  0x00003e45 
+ 00023135  0x000040ce fetch  0x00000001 , 0x0000472f 
+ 00023136  0x000040cf bbit0  0x00000000 , 0x00003e79 
+ 00023137  0x000040d0 branch  0x00005dc1 
+ 00023138  0x000040d3 branch  0x00005dc1 
+ 00023139  0x000040d7 call  0x00005a6d 
+ 00023140  0x000040d8 fetch  0x00000001 , 0x0000473c 
+ 00023141  0x000040d9 store  0x00000001 , 0x00004212 
+ 00023142  0x000040da branch  0x00005ce6 
+ 00023143  0x000040de jam  0x00000000 , 0x000046e9 
+ 00023144  0x000040df rtn 
+ 00023145  0x000040e4 call  0x00005adf 
+ 00023146  0x000040e5 branch  0x00005a6b 
+ 00023147  0x000040e9 fetcht  0x00000001 , 0x0000472b 
+ 00023148  0x000040ea branch  0x000064ff 
+ 00023149  0x000040ed call  0x00005a6f 
+ 00023150  0x000040ee branch  0x00005a76 
+ 00023151  0x000040f1 fetch  0x00000001 , 0x0000472e 
+ 00023152  0x000040f2 isolate1  0x00000000 , 0x0000003f 
+ 00023153  0x000040f3 call  0x00003e59 , 0x00000001 
+ 00023154  0x000040f4 fetch  0x00000001 , 0x0000472e 
+ 00023155  0x000040f5 isolate1  0x00000001 , 0x0000003f 
+ 00023156  0x000040f6 call  0x00003e61 , 0x00000001 
+ 00023157  0x000040f7 rtn 
+ 00023158  0x000040f9 fetcht  0x00000001 , 0x0000472b 
+ 00023159  0x000040fa branch  0x000064fd 
+ 00023160  0x000040fd fetch  0x00000001 , 0x00004603 
+ 00023161  0x000040fe rtneq  0x00000000 
+ 00023162  0x000040ff branch  0x00006838 
+ 00023163  0x00004102 set1  0x00000025 , 0x00000000 
+ 00023164  0x00004103 bpatch  0x00000061 , 0x0000402c 
+ 00023165  0x00004104 hfetch  0x00000001 , 0x0000810c 
+ 00023166  0x00004105 bbit1  0x00000003 , 0x00005a78 
+ 00023167  0x00004106 call  0x00007f6e 
+ 00023168  0x00004107 ifetch  0x00000001 , 0x00000003 
+ 00023169  0x00004108 bne  0x00000001 , 0x00005a93 
+ 00023170  0x00004109 hfetch  0x00000002 , 0x00008112 
+ 00023171  0x0000410a sub  0x0000003f , 0x00000002 , 0x0000003e 
+ 00023172  0x0000410b rtn  0x00000002 
+ 00023173  0x0000410c ifetch  0x00000001 , 0x00000003 
+ 00023174  0x0000410d store  0x00000001 , 0x00000416 
+ 00023175  0x0000410e ifetcht  0x00000001 , 0x00000003 
+ 00023176  0x0000410f copy  0x00000003 , 0x00000011 
+ 00023177  0x00004110 storet  0x00000001 , 0x00000417 
+ 00023178  0x00004111 add  0x00000002 , 0x00000003 , 0x00000002 
+ 00023179  0x00004112 hfetch  0x00000002 , 0x00008112 
+ 00023180  0x00004113 isub  0x00000002 , 0x00000002 
+ 00023181  0x00004114 nrtn  0x00000002 
+ 00023182  0x00004115 jam  0x00000001 , 0x00000418 
+ 00023183  0x00004116 call  0x00005aaa 
+ 00023184  0x00004117 fetch  0x00000001 , 0x00000418 
+ 00023185  0x00004118 rtneq  0x00000000 
+ 00023186  0x00004119 branch  0x00005aa5 
+ 00023187  0x0000411c call  0x00005d3f 
+ 00023188  0x0000411d call  0x00007f6b 
+ 00023189  0x0000411e branch  0x00005a96 
+ 00023190  0x00004122 set1  0x00000025 , 0x00000000 
+ 00023191  0x00004123 bpatch  0x00000062 , 0x0000402c 
+ 00023192  0x00004124 hfetch  0x00000002 , 0x00008112 
+ 00023193  0x00004125 rtn  0x00000034 
+ 00023194  0x00004126 call  0x00007f6e 
+ 00023195  0x00004127 ifetch  0x00000001 , 0x00000003 
+ 00023196  0x00004128 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00023197  0x00004129 ncall  0x00005aa9 , 0x00000005 
+ 00023198  0x0000412a nbranch  0x00005a96 , 0x00000005 
+ 00023199  0x0000412b ifetch  0x00000001 , 0x00000003 
+ 00023200  0x0000412c rtneq  0x00000005 
+ 00023201  0x0000412d rtneq  0x00000029 
+ 00023202  0x0000412e increase  0xffffffff , 0x00000003 
+ 00023203  0x0000412f call  0x00005aa9 
+ 00023204  0x00004130 branch  0x00005a96 
+ 00023205  0x00004133 call  0x00007f6e 
+ 00023206  0x00004134 increase  0x00000002 , 0x00000003 
+ 00023207  0x00004135 ifetch  0x00000001 , 0x00000003 
+ 00023208  0x00004136 iadd  0x00000003 , 0x00000003 
+ 00023209  0x00004138 branch  0x00006322 
+ 00023210  0x0000413d set1  0x00000025 , 0x00000000 
+ 00023211  0x0000413e bpatch  0x00000063 , 0x0000402c 
+ 00023212  0x0000413f fetch  0x00000001 , 0x00000416 
+ 00023213  0x00004140 beq  0x00000000 , 0x00005acc 
+ 00023214  0x00004141 beq  0x00000001 , 0x00005ad1 
+ 00023215  0x00004142 beq  0x00000002 , 0x00005ad6 
+ 00023216  0x00004143 beq  0x00000003 , 0x00005aec 
+ 00023217  0x00004144 beq  0x00000004 , 0x00005af5 
+ 00023218  0x00004145 beq  0x00000005 , 0x00005aff 
+ 00023219  0x00004146 beq  0x00000009 , 0x00005b23 
+ 00023220  0x00004147 beq  0x0000000b , 0x00005bd3 
+ 00023221  0x00004148 beq  0x0000000c , 0x00005bd4 
+ 00023222  0x00004149 beq  0x0000000d , 0x00005be8 
+ 00023223  0x0000414a beq  0x0000000e , 0x00005bf0 
+ 00023224  0x0000414b beq  0x0000000f , 0x00005bf6 
+ 00023225  0x0000414c beq  0x00000010 , 0x00005c02 
+ 00023226  0x0000414d beq  0x00000011 , 0x00005c0a 
+ 00023227  0x0000414e beq  0x00000012 , 0x00005c0e 
+ 00023228  0x0000414f beq  0x00000026 , 0x00005c12 
+ 00023229  0x00004150 beq  0x00000028 , 0x00005c19 
+ 00023230  0x00004151 beq  0x00000029 , 0x00005c29 
+ 00023231  0x00004152 beq  0x0000002a , 0x00005c32 
+ 00023232  0x00004153 beq  0x0000002b , 0x00005c67 
+ 00023233  0x00004154 beq  0x0000002c , 0x00005c6d 
+ 00023234  0x00004155 beq  0x00000030 , 0x00005c74 
+ 00023235  0x00004156 beq  0x00000031 , 0x00005c7a 
+ 00023236  0x00004157 beq  0x00000032 , 0x00005c8b 
+ 00023237  0x00004158 beq  0x00000033 , 0x00005c93 
+ 00023238  0x00004159 beq  0x00000034 , 0x00005cb1 
+ 00023239  0x0000415a beq  0x00000035 , 0x00005cb9 
+ 00023240  0x0000415b beq  0x00000036 , 0x00005cc1 
+ 00023241  0x0000415c beq  0x00000038 , 0x00005ccb 
+ 00023242  0x0000415d beq  0x00000048 , 0x00005cd3 
+ 00023243  0x0000415e branch  0x00005cde 
+ 00023244  0x00004164 fetch  0x00000001 , 0x00000417 
+ 00023245  0x00004165 bne  0x00000006 , 0x00005cde 
+ 00023246  0x00004166 ifetch  0x00000006 , 0x00000003 
+ 00023247  0x00004167 store  0x00000006 , 0x00004140 
+ 00023248  0x00004168 branch  0x00005ce1 
+ 00023249  0x0000416c fetch  0x00000001 , 0x00000417 
+ 00023250  0x0000416d bne  0x00000006 , 0x00005cde 
+ 00023251  0x0000416e ifetch  0x00000006 , 0x00000003 
+ 00023252  0x0000416f store  0x00000006 , 0x0000453e 
+ 00023253  0x00004170 branch  0x00005ce1 
+ 00023254  0x00004175 fetch  0x00000001 , 0x00000417 
+ 00023255  0x00004176 bne  0x00000001 , 0x00005cde 
+ 00023256  0x00004177 copy  0x00000011 , 0x00000003 
+ 00023257  0x00004178 call  0x00005ce1 
+ 00023258  0x00004179 ifetcht  0x00000001 , 0x00000003 
+ 00023259  0x0000417a storet  0x00000001 , 0x0000473d 
+ 00023260  0x0000417b fetch  0x00000002 , 0x0000470b 
+ 00023261  0x0000417c rtnbit1  0x00000009 
+ 00023262  0x0000417d rtnbit1  0x00000000 
+ 00023263  0x0000417f fetch  0x00000001 , 0x0000472e 
+ 00023264  0x00004180 isolate1  0x00000000 , 0x0000003f 
+ 00023265  0x00004181 nbranch  0x00005ae5 , 0x00000001 
+ 00023266  0x00004182 fetcht  0x00000001 , 0x0000473d 
+ 00023267  0x00004183 and  0x00000002 , 0x00000003 , 0x0000003f 
+ 00023268  0x00004184 store  0x00000001 , 0x00004133 
+ 00023269  0x00004186 fetch  0x00000001 , 0x0000472e 
+ 00023270  0x00004187 isolate1  0x00000001 , 0x0000003f 
+ 00023271  0x00004188 nrtn  0x00000001 
+ 00023272  0x00004189 fetcht  0x00000001 , 0x0000473d 
+ 00023273  0x0000418a isolate1  0x00000002 , 0x00000002 
+ 00023274  0x0000418b branch  0x00003e63 , 0x00000001 
+ 00023275  0x0000418c branch  0x00003e61 
+ 00023276  0x00004190 fetch  0x00000001 , 0x00000417 
+ 00023277  0x00004191 sub  0x0000003f , 0x00000020 , 0x0000003e 
+ 00023278  0x00004192 nbranch  0x00005cde , 0x00000002 
+ 00023279  0x00004193 store  0x00000001 , 0x000045ae 
+ 00023280  0x00004194 copy  0x0000003f , 0x00000039 
+ 00023281  0x00004195 copy  0x00000011 , 0x00000003 
+ 00023282  0x00004196 arg  0x000045af , 0x00000005 
+ 00023283  0x00004197 call  0x00006341 
+ 00023284  0x00004198 branch  0x00005ce1 
+ 00023285  0x0000419d fetch  0x00000001 , 0x00000417 
+ 00023286  0x0000419e sub  0x0000003f , 0x00000013 , 0x0000003e 
+ 00023287  0x0000419f nbranch  0x00005cde , 0x00000002 
+ 00023288  0x000041a0 store  0x00000001 , 0x00004440 
+ 00023289  0x000041a1 copy  0x0000003f , 0x00000039 
+ 00023290  0x000041a2 copy  0x00000011 , 0x00000003 
+ 00023291  0x000041a3 arg  0x00004441 , 0x00000005 
+ 00023292  0x000041a4 call  0x00006341 
+ 00023293  0x000041a5 call  0x00005234 
+ 00023294  0x000041a6 branch  0x00005ce1 
+ 00023295  0x000041ab fetch  0x00000001 , 0x0000470b 
+ 00023296  0x000041ac bbit0  0x00000004 , 0x00005cde 
+ 00023297  0x000041ad call  0x00003e1d 
+ 00023298  0x000041ae branch  0x00005b0f , 0x00000001 
+ 00023299  0x000041af jam  0x00000000 , 0x00000418 
+ 00023300  0x000041b1 fetch  0x00000001 , 0x00004600 
+ 00023301  0x000041b2 rtn  0x00000034 
+ 00023302  0x000041b3 fetch  0x00000002 , 0x0000460b 
+ 00023303  0x000041b4 bne  0x00000000 , 0x00005b0d 
+ 00023304  0x000041b5 fetch  0x00000001 , 0x00000417 
+ 00023305  0x000041b6 store  0x00000002 , 0x0000460b 
+ 00023306  0x000041b8 copy  0x00000011 , 0x00000003 
+ 00023307  0x000041bb copy  0x00000003 , 0x0000003f 
+ 00023308  0x000041bc store  0x00000002 , 0x00004609 
+ 00023309  0x000041be call  0x00005b11 
+ 00023310  0x000041bf branch  0x0000685f 
+ 00023311  0x000041c1 jam  0x00000000 , 0x00000418 
+ 00023312  0x000041c2 branch  0x00005d9f 
+ 00023313  0x000041c5 call  0x00005b17 
+ 00023314  0x000041c6 fetch  0x00000002 , 0x0000460b 
+ 00023315  0x000041c7 fetcht  0x00000002 , 0x0000472c 
+ 00023316  0x000041c8 isub  0x00000002 , 0x0000003f 
+ 00023317  0x000041c9 store  0x00000002 , 0x0000460b 
+ 00023318  0x000041ca rtn 
+ 00023319  0x000041cd fetch  0x00000002 , 0x0000460b 
+ 00023320  0x000041ce arg  0x0000006e , 0x00000002 
+ 00023321  0x000041cf call  0x00007faf 
+ 00023322  0x000041d0 fetcht  0x00000002 , 0x00004604 
+ 00023323  0x000041d1 call  0x00007faf 
+ 00023324  0x000041d2 fetcht  0x00000002 , 0x000045f6 
+ 00023325  0x000041d3 call  0x00007faf 
+ 00023326  0x000041d4 store  0x00000002 , 0x0000472c 
+ 00023327  0x000041d5 rtn 
+ 00023328  0x000041d9 jam  0x00000001 , 0x00000418 
+ 00023329  0x000041da jam  0x00000005 , 0x00000416 
+ 00023330  0x000041db branch  0x00005ce1 
+ 00023331  0x000041df fetch  0x00000002 , 0x0000470b 
+ 00023332  0x000041e0 rtnbit0  0x00000009 
+ 00023333  0x000041e2 jam  0x00000000 , 0x00000418 
+ 00023334  0x000041e3 fetch  0x00000001 , 0x00004569 
+ 00023335  0x000041e4 nrtn  0x00000034 
+ 00023336  0x000041e5 fetch  0x00000002 , 0x00004760 
+ 00023337  0x000041e6 branch  0x00005b4a , 0x00000034 
+ 00023338  0x000041e7 fetcht  0x00000002 , 0x0000475e 
+ 00023339  0x000041e8 isub  0x00000002 , 0x0000003e 
+ 00023340  0x000041e9 nrtn  0x00000005 
+ 00023341  0x000041ea set1  0x00000025 , 0x00000000 
+ 00023342  0x000041eb bpatch  0x00000064 , 0x0000402c 
+ 00023343  0x000041ec jam  0x00000000 , 0x00000418 
+ 00023344  0x000041ed fetch  0x00000002 , 0x00004764 
+ 00023345  0x000041ee fetcht  0x00000002 , 0x00004760 
+ 00023346  0x000041ef isub  0x00000002 , 0x00000012 
+ 00023347  0x000041f0 nbranch  0x00003b31 , 0x00000002 
+ 00023348  0x000041f1 nbranch  0x00005b38 , 0x00000005 
+ 00023349  0x000041f2 call  0x00005b47 
+ 00023350  0x000041f3 jam  0x00000001 , 0x00000418 
+ 00023351  0x000041f4 branch  0x00005b8e 
+ 00023352  0x000041f9 fetch  0x00000001 , 0x0000475a 
+ 00023353  0x000041fa rtnbit1  0x00000002 
+ 00023354  0x000041fb hfetch  0x00000002 , 0x00008058 
+ 00023355  0x000041fc iforce  0x00000003 
+ 00023356  0x000041fd fetch  0x00000002 , 0x00004760 
+ 00023357  0x000041fe iadd  0x00000003 , 0x00000003 
+ 00023358  0x000041ff copy  0x00000003 , 0x00000011 
+ 00023359  0x00004200 setarg  0x00000901 
+ 00023360  0x00004201 istore  0x00000002 , 0x00000003 
+ 00023361  0x00004202 add  0x00000012 , 0x00000002 , 0x0000003f 
+ 00023362  0x00004203 istore  0x00000001 , 0x00000003 
+ 00023363  0x00004204 fetch  0x00000002 , 0x00004762 
+ 00023364  0x00004205 istore  0x00000002 , 0x00000003 
+ 00023365  0x00004206 copy  0x00000011 , 0x0000003f 
+ 00023366  0x00004207 hstore  0x00000002 , 0x00008058 
+ 00023367  0x00004209 setarg  0x00000000 
+ 00023368  0x0000420a store  0x00000002 , 0x00004760 
+ 00023369  0x0000420b rtn 
+ 00023370  0x0000420e copy  0x00000011 , 0x00000003 
+ 00023371  0x0000420f ifetch  0x00000002 , 0x00000003 
+ 00023372  0x00004210 store  0x00000002 , 0x00004762 
+ 00023373  0x00004211 fetch  0x00000001 , 0x00000417 
+ 00023374  0x00004212 increase  0xfffffffe , 0x0000003f 
+ 00023375  0x00004214 nbranch  0x00005cde , 0x00000002 
+ 00023376  0x00004215 branch  0x00005cde , 0x00000034 
+ 00023377  0x00004216 store  0x00000002 , 0x00004764 
+ 00023378  0x00004218 fetch  0x00000001 , 0x0000475a 
+ 00023379  0x00004219 bbit1  0x00000002 , 0x00005b5e 
+ 00023380  0x0000421b fetcht  0x00000002 , 0x0000454e 
+ 00023381  0x0000421d fetch  0x00000002 , 0x00004764 
+ 00023382  0x0000421e call  0x00007faf 
+ 00023383  0x00004220 store  0x00000002 , 0x00004760 
+ 00023384  0x00004221 copy  0x00000003 , 0x0000003f 
+ 00023385  0x00004222 store  0x00000002 , 0x0000475c 
+ 00023386  0x00004223 setarg  0x00000000 
+ 00023387  0x00004224 store  0x00000002 , 0x0000475e 
+ 00023388  0x00004225 jam  0x0000001b , 0x000009bd 
+ 00023389  0x00004226 branch  0x00004bd6 
+ 00023390  0x00004229 arg  0x00000014 , 0x00000002 
+ 00023391  0x0000422a branch  0x00005b55 
+ 00023392  0x0000422e fetch  0x00000001 , 0x0000475b 
+ 00023393  0x0000422f jam  0x00000000 , 0x0000475b 
+ 00023394  0x00004230 nbranch  0x00005bbe , 0x00000034 
+ 00023395  0x00004232 fetch  0x00000002 , 0x00004760 
+ 00023396  0x00004233 branch  0x00003b31 , 0x00000034 
+ 00023397  0x00004234 add  0x0000003f , 0x00000003 , 0x00000002 
+ 00023398  0x00004235 storet  0x00000002 , 0x00004467 
+ 00023399  0x00004236 arg  0x00000014 , 0x00000002 
+ 00023400  0x00004237 call  0x00007faf 
+ 00023401  0x00004238 copy  0x0000003f , 0x00000039 
+ 00023402  0x00004239 store  0x00000002 , 0x0000475e 
+ 00023403  0x0000423c fetcht  0x00000002 , 0x00004760 
+ 00023404  0x0000423d isub  0x00000002 , 0x00000002 
+ 00023405  0x0000423e fetch  0x00000001 , 0x0000475a 
+ 00023406  0x0000423f bbit1  0x00000002 , 0x00005b71 
+ 00023407  0x00004240 ncall  0x00005b9a , 0x00000005 
+ 00023408  0x00004241 jam  0x00000001 , 0x000003da 
+ 00023409  0x00004243 set1  0x00000025 , 0x00000000 
+ 00023410  0x00004244 bpatch  0x00000065 , 0x0000402c 
+ 00023411  0x00004245 arg  0x00000002 , 0x00000001 
+ 00023412  0x00004246 fetch  0x00000002 , 0x00004762 
+ 00023413  0x00004247 store  0x00000002 , 0x0000446c 
+ 00023414  0x00004248 fetch  0x00000002 , 0x0000475c 
+ 00023415  0x00004249 copy  0x0000003f , 0x00000003 
+ 00023416  0x0000424d call  0x00006341 
+ 00023417  0x0000424e fetch  0x00000001 , 0x0000475a 
+ 00023418  0x0000424f bbit0  0x00000002 , 0x00005bb9 
+ 00023419  0x00004250 setarg  0x00004467 
+ 00023420  0x00004251 isub  0x00000005 , 0x0000003f 
+ 00023421  0x00004252 sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00023422  0x00004253 storet  0x00000001 , 0x00004466 
+ 00023423  0x00004254 fetch  0x00000002 , 0x00004764 
+ 00023424  0x00004255 fetcht  0x00000002 , 0x00004760 
+ 00023425  0x00004256 call  0x00005b94 
+ 00023426  0x00004257 fetcht  0x00000001 , 0x00000379 
+ 00023427  0x00004258 fetch  0x00000001 , 0x00000419 
+ 00023428  0x00004259 branch  0x00005b8c , 0x00000034 
+ 00023429  0x0000425a nsetflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00023430  0x0000425b storet  0x00000001 , 0x00000379 
+ 00023431  0x0000425c jam  0x0000001b , 0x000009bd 
+ 00023432  0x0000425d call  0x00004bd6 
+ 00023433  0x0000425e jam  0x00000001 , 0x0000475b 
+ 00023434  0x0000425f fetcht  0x00000001 , 0x00000379 
+ 00023435  0x00004260 branch  0x00004f92 
+ 00023436  0x00004263 call  0x00005b8e 
+ 00023437  0x00004264 branch  0x00004f90 
+ 00023438  0x00004267 fetch  0x00000001 , 0x0000475a 
+ 00023439  0x00004268 set1  0x00000003 , 0x0000003f 
+ 00023440  0x00004269 branch  0x00005d9a 
+ 00023441  0x0000426c fetch  0x00000001 , 0x0000475a 
+ 00023442  0x0000426d set0  0x00000003 , 0x0000003f 
+ 00023443  0x0000426e branch  0x00005d9a 
+ 00023444  0x00004271 jam  0x00000000 , 0x00000419 
+ 00023445  0x00004272 isub  0x00000002 , 0x0000003e 
+ 00023446  0x00004273 rtn  0x00000005 
+ 00023447  0x00004274 nrtn  0x00000002 
+ 00023448  0x00004275 jam  0x00000001 , 0x00000419 
+ 00023449  0x00004276 rtn 
+ 00023450  0x00004279 fetch  0x00000003 , 0x00004544 
+ 00023451  0x0000427a nbranch  0x00005b9e , 0x00000034 
+ 00023452  0x0000427b jam  0x0000001f , 0x00004546 
+ 00023453  0x0000427c rtn 
+ 00023454  0x0000427e call  0x00004bd4 
+ 00023455  0x0000427f nbranch  0x00003b31 , 0x00000034 
+ 00023456  0x00004280 jam  0x0000001f , 0x00004545 
+ 00023457  0x00004281 rtn 
+ 00023458  0x00004285 set1  0x00000025 , 0x00000000 
+ 00023459  0x00004286 bpatch  0x00000066 , 0x0000402c 
+ 00023460  0x00004287 fetch  0x00000002 , 0x00004760 
+ 00023461  0x00004288 branch  0x00003b31 , 0x00000034 
+ 00023462  0x00004289 fetcht  0x00000002 , 0x0000475e 
+ 00023463  0x0000428a branch  0x00003b31 , 0x00000034 
+ 00023464  0x0000428b isub  0x00000002 , 0x0000003f 
+ 00023465  0x0000428c arg  0x0000001b , 0x00000002 
+ 00023466  0x0000428d call  0x00007faf 
+ 00023467  0x0000428e copy  0x0000003f , 0x00000039 
+ 00023468  0x0000428f fetch  0x00000002 , 0x0000475c 
+ 00023469  0x00004290 copy  0x0000003f , 0x00000003 
+ 00023470  0x00004291 fetch  0x00000002 , 0x0000475e 
+ 00023471  0x00004292 iadd  0x00000003 , 0x00000003 
+ 00023472  0x00004293 iadd  0x00000039 , 0x0000003f 
+ 00023473  0x00004294 store  0x00000002 , 0x0000475e 
+ 00023474  0x00004295 fetcht  0x00000002 , 0x00004760 
+ 00023475  0x00004296 isub  0x00000002 , 0x00000002 
+ 00023476  0x00004297 ncall  0x00005b9a , 0x00000005 
+ 00023477  0x00004298 jam  0x00000001 , 0x000003da 
+ 00023478  0x00004299 arg  0x00004467 , 0x00000005 
+ 00023479  0x0000429a call  0x00006341 
+ 00023480  0x0000429b arg  0x00000001 , 0x00000001 
+ 00023481  0x0000429d setarg  0x00004467 
+ 00023482  0x0000429e isub  0x00000005 , 0x0000003f 
+ 00023483  0x0000429f sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00023484  0x000042a0 storet  0x00000001 , 0x00004466 
+ 00023485  0x000042a1 branch  0x00004f90 
+ 00023486  0x000042a5 fetch  0x00000002 , 0x00004764 
+ 00023487  0x000042a6 fetcht  0x00000002 , 0x00004760 
+ 00023488  0x000042a7 isub  0x00000002 , 0x0000003f 
+ 00023489  0x000042a8 arg  0x00000014 , 0x00000002 
+ 00023490  0x000042a9 call  0x00007faf 
+ 00023491  0x000042aa copy  0x0000003f , 0x00000039 
+ 00023492  0x000042ab add  0x0000003f , 0x00000003 , 0x00000002 
+ 00023493  0x000042ac storet  0x00000002 , 0x00004467 
+ 00023494  0x000042ae fetcht  0x00000002 , 0x00004760 
+ 00023495  0x000042af iadd  0x00000002 , 0x0000003f 
+ 00023496  0x000042b0 store  0x00000002 , 0x00004760 
+ 00023497  0x000042b2 fetch  0x00000002 , 0x0000475c 
+ 00023498  0x000042b3 copy  0x0000003f , 0x00000003 
+ 00023499  0x000042b4 fetch  0x00000002 , 0x0000475e 
+ 00023500  0x000042b5 iadd  0x00000003 , 0x00000003 
+ 00023501  0x000042b6 iadd  0x00000039 , 0x0000003f 
+ 00023502  0x000042b7 store  0x00000002 , 0x0000475e 
+ 00023503  0x000042b8 arg  0x00000002 , 0x00000001 
+ 00023504  0x000042b9 fetch  0x00000002 , 0x00004762 
+ 00023505  0x000042ba store  0x00000002 , 0x0000446c 
+ 00023506  0x000042bb branch  0x00005b78 
+ 00023507  0x000042bf branch  0x00005d12 
+ 00023508  0x000042c4 copy  0x00000011 , 0x00000003 
+ 00023509  0x000042c5 ifetch  0x00000001 , 0x00000003 
+ 00023510  0x000042c6 beq  0x00000000 , 0x00005bdb 
+ 00023511  0x000042c7 beq  0x00000001 , 0x00005bde 
+ 00023512  0x000042c8 beq  0x00000002 , 0x00005be4 
+ 00023513  0x000042c9 beq  0x00000003 , 0x00005be6 
+ 00023514  0x000042ca branch  0x00005cde 
+ 00023515  0x000042cc call  0x00005737 
+ 00023516  0x000042cd jam  0x00000000 , 0x000046e2 
+ 00023517  0x000042ce branch  0x00005ce1 
+ 00023518  0x000042d0 setarg  0x00040003 
+ 00023519  0x000042d2 store  0x00000003 , 0x000046e3 
+ 00023520  0x000042d3 store  0x00000001 , 0x000046ea 
+ 00023521  0x000042d4 call  0x0000572f 
+ 00023522  0x000042d5 jam  0x00000001 , 0x000046e2 
+ 00023523  0x000042d6 branch  0x00005ce1 
+ 00023524  0x000042d8 setarg  0x00040002 
+ 00023525  0x000042d9 branch  0x00005bdf 
+ 00023526  0x000042dc setarg  0x00040001 
+ 00023527  0x000042dd branch  0x00005bdf 
+ 00023528  0x000042e1 fetch  0x00000001 , 0x00000417 
+ 00023529  0x000042e2 sub  0x0000003f , 0x00000010 , 0x0000003e 
+ 00023530  0x000042e3 nbranch  0x00005cde , 0x00000002 
+ 00023531  0x000042e4 store  0x00000001 , 0x00004718 
+ 00023532  0x000042e5 copy  0x0000003f , 0x00000039 
+ 00023533  0x000042e6 arg  0x00004719 , 0x00000005 
+ 00023534  0x000042e7 call  0x00006354 
+ 00023535  0x000042e8 branch  0x00005ce1 
+ 00023536  0x000042ed copy  0x00000011 , 0x00000003 
+ 00023537  0x000042ee ifetch  0x00000001 , 0x00000003 
+ 00023538  0x000042ef hfetcht  0x00000001 , 0x00008062 
+ 00023539  0x000042f0 nsetflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00023540  0x000042f1 hstoret  0x00000001 , 0x00008062 
+ 00023541  0x000042f2 branch  0x00005ce1 
+ 00023542  0x000042f7 fetch  0x00000001 , 0x00000417 
+ 00023543  0x000042f8 copy  0x0000003f , 0x00000039 
+ 00023544  0x000042f9 copy  0x00000011 , 0x00000003 
+ 00023545  0x000042fa call  0x00007f25 
+ 00023546  0x000042fb setarg  0x02dc6c00 
+ 00023547  0x000042fc idiv  0x00000002 
+ 00023548  0x000042fd call  0x00007f53 
+ 00023549  0x000042fe quotient  0x0000003f 
+ 00023550  0x00004300 store  0x00000002 , 0x000042d3 
+ 00023551  0x00004301 call  0x00005ce1 
+ 00023552  0x00004302 call  0x00007f6b 
+ 00023553  0x00004303 branch  0x00006325 
+ 00023554  0x00004308 arg  0x00000002 , 0x00000011 
+ 00023555  0x00004309 arg  0x000042a6 , 0x00000012 
+ 00023556  0x0000430a arg  0x00000000 , 0x00000002 
+ 00023557  0x0000430b branch  0x00005cec 
+ 00023558  0x0000430d store  0x00000002 , 0x000009e1 
+ 00023559  0x0000430e arg  0x000009e1 , 0x00000012 
+ 00023560  0x0000430f arg  0x00000000 , 0x00000002 
+ 00023561  0x00004310 branch  0x00005cec 
+ 00023562  0x00004315 fetch  0x00000002 , 0x0000470b 
+ 00023563  0x00004316 bbit0  0x00000000 , 0x00005cde 
+ 00023564  0x00004318 call  0x00005ce1 
+ 00023565  0x00004319 branch  0x00003e52 
+ 00023566  0x0000431e fetch  0x00000002 , 0x0000470b 
+ 00023567  0x0000431f bbit0  0x00000009 , 0x00005cde 
+ 00023568  0x00004321 call  0x00005ce1 
+ 00023569  0x00004322 branch  0x00003e6b 
+ 00023570  0x00004329 fetch  0x00000001 , 0x00000417 
+ 00023571  0x0000432a copy  0x0000003f , 0x00000039 
+ 00023572  0x0000432b copy  0x00000011 , 0x00000003 
+ 00023573  0x0000432c fetch  0x00000002 , 0x000042bc 
+ 00023574  0x0000432d icopy  0x00000005 
+ 00023575  0x0000432e call  0x00006341 
+ 00023576  0x0000432f branch  0x00005ce1 
+ 00023577  0x00004334 fetch  0x00000001 , 0x0000470b 
+ 00023578  0x00004335 bbit0  0x00000000 , 0x00005cde 
+ 00023579  0x00004336 ifetch  0x00000001 , 0x00000003 
+ 00023580  0x00004337 fetcht  0x00000001 , 0x000046e9 
+ 00023581  0x00004338 setflag  0x00000034 , 0x00000000 , 0x00000002 
+ 00023582  0x00004339 set1  0x00000007 , 0x00000002 
+ 00023583  0x0000433a storet  0x00000001 , 0x000046e9 
+ 00023584  0x0000433c call  0x00005ce1 
+ 00023585  0x0000433e fetch  0x00000001 , 0x000046e9 
+ 00023586  0x0000433f bbit1  0x00000006 , 0x00005c27 
+ 00023587  0x00004340 rtn 
+ 00023588  0x00004343 jam  0x00000000 , 0x000046e9 
+ 00023589  0x00004344 jam  0x00000021 , 0x000009bd 
+ 00023590  0x00004345 branch  0x00007d90 
+ 00023591  0x00004349 bbit1  0x00000000 , 0x000055ac 
+ 00023592  0x0000434a branch  0x00005c24 
+ 00023593  0x0000434f fetch  0x00000001 , 0x0000470b 
+ 00023594  0x00004350 rtnbit0  0x00000004 
+ 00023595  0x00004351 fetch  0x00000001 , 0x00004603 
+ 00023596  0x00004352 rtneq  0x00000000 
+ 00023597  0x00004353 ifetch  0x00000001 , 0x00000003 
+ 00023598  0x00004354 fetcht  0x00000001 , 0x00004601 
+ 00023599  0x00004355 iadd  0x00000002 , 0x00000002 
+ 00023600  0x00004356 storet  0x00000001 , 0x00004601 
+ 00023601  0x00004357 rtn 
+ 00023602  0x0000435c arg  0x00000040 , 0x00000039 
+ 00023603  0x0000435d arg  0x00004400 , 0x00000005 
+ 00023604  0x0000435e call  0x00007e9f 
+ 00023605  0x0000435f setarg  0x00000000 
+ 00023606  0x00004360 store  0x00000001 , 0x000009d6 
+ 00023607  0x00004361 copy  0x00000011 , 0x00000003 
+ 00023608  0x00004363 copy  0x00000003 , 0x0000003f 
+ 00023609  0x00004364 store  0x00000002 , 0x000009da 
+ 00023610  0x00004365 call  0x00005c62 
+ 00023611  0x00004367 fetch  0x00000001 , 0x000009d6 
+ 00023612  0x00004368 fetcht  0x00000001 , 0x000009c6 
+ 00023613  0x00004369 increase  0x00000001 , 0x00000002 
+ 00023614  0x0000436a iadd  0x00000002 , 0x0000003f 
+ 00023615  0x0000436b store  0x00000001 , 0x000009d6 
+ 00023616  0x0000436d sub  0x0000003f , 0x00000020 , 0x0000003e 
+ 00023617  0x0000436e nbranch  0x00005c4c , 0x00000002 
+ 00023618  0x00004370 fetcht  0x00000001 , 0x00004400 
+ 00023619  0x00004371 setarg  0x00004401 
+ 00023620  0x00004372 iadd  0x00000002 , 0x0000003f 
+ 00023621  0x00004373 store  0x00000002 , 0x000009df 
+ 00023622  0x00004374 fetcht  0x00000001 , 0x000009c6 
+ 00023623  0x00004375 increase  0x00000001 , 0x00000002 
+ 00023624  0x00004376 fetch  0x00000001 , 0x00004400 
+ 00023625  0x00004377 iadd  0x00000002 , 0x0000003f 
+ 00023626  0x00004378 store  0x00000001 , 0x00004400 
+ 00023627  0x00004379 branch  0x00005c55 
+ 00023628  0x0000437b fetcht  0x00000001 , 0x00004420 
+ 00023629  0x0000437c setarg  0x00004421 
+ 00023630  0x0000437d iadd  0x00000002 , 0x0000003f 
+ 00023631  0x0000437e store  0x00000002 , 0x000009df 
+ 00023632  0x0000437f fetcht  0x00000001 , 0x000009c6 
+ 00023633  0x00004380 increase  0x00000001 , 0x00000002 
+ 00023634  0x00004381 fetch  0x00000001 , 0x00004420 
+ 00023635  0x00004382 iadd  0x00000002 , 0x0000003f 
+ 00023636  0x00004383 store  0x00000001 , 0x00004420 
+ 00023637  0x00004385 fetch  0x00000002 , 0x000009df 
+ 00023638  0x00004386 copy  0x0000003f , 0x00000005 
+ 00023639  0x00004387 fetch  0x00000002 , 0x000009da 
+ 00023640  0x00004388 copy  0x0000003f , 0x00000003 
+ 00023641  0x0000438a copy  0x00000002 , 0x00000039 
+ 00023642  0x0000438b call  0x00006341 
+ 00023643  0x0000438d fetch  0x00000001 , 0x00000417 
+ 00023644  0x0000438e fetcht  0x00000001 , 0x000009d6 
+ 00023645  0x0000438f isub  0x00000002 , 0x0000003e 
+ 00023646  0x00004390 nbranch  0x00005c38 , 0x00000005 
+ 00023647  0x00004391 jam  0x0000001f , 0x00004400 
+ 00023648  0x00004392 jam  0x0000001f , 0x00004420 
+ 00023649  0x00004393 branch  0x00005ce1 
+ 00023650  0x00004397 ifetch  0x00000001 , 0x00000003 
+ 00023651  0x00004398 store  0x00000001 , 0x000009c6 
+ 00023652  0x00004399 ifetch  0x00000001 , 0x00000003 
+ 00023653  0x0000439a store  0x00000001 , 0x000009d2 
+ 00023654  0x0000439b rtn 
+ 00023655  0x000043a0 arg  0x00000000 , 0x00000002 
+ 00023656  0x000043a1 arg  0x00000002 , 0x00000011 
+ 00023657  0x000043a2 fetch  0x00000002 , 0x00004748 
+ 00023658  0x000043a3 store  0x00000002 , 0x000009e1 
+ 00023659  0x000043a4 arg  0x000009e1 , 0x00000012 
+ 00023660  0x000043a5 branch  0x00005cec 
+ 00023661  0x000043aa fetch  0x00000001 , 0x00000417 
+ 00023662  0x000043ab bne  0x00000001 , 0x00005cde 
+ 00023663  0x000043ac ifetch  0x00000001 , 0x00000003 
+ 00023664  0x000043ad store  0x00000001 , 0x00004746 
+ 00023665  0x000043ae setarg  0x00000000 
+ 00023666  0x000043af store  0x00000002 , 0x00004748 
+ 00023667  0x000043b0 branch  0x00005ce1 
+ 00023668  0x000043b5 ifetch  0x00000004 , 0x00000003 
+ 00023669  0x000043b6 store  0x00000004 , 0x00004719 
+ 00023670  0x000043b7 jam  0x00000004 , 0x00004718 
+ 00023671  0x000043b8 jam  0x00000000 , 0x000046eb 
+ 00023672  0x000043b9 call  0x00005ce1 
+ 00023673  0x000043ba branch  0x00005548 
+ 00023674  0x000043bf fetch  0x00000001 , 0x00000417 
+ 00023675  0x000043c0 bne  0x00000003 , 0x00005cde 
+ 00023676  0x000043c1 ifetch  0x00000001 , 0x00000003 
+ 00023677  0x000043c2 beq  0x00000000 , 0x00005c80 
+ 00023678  0x000043c3 beq  0x00000001 , 0x00005c85 
+ 00023679  0x000043c4 branch  0x00005cde 
+ 00023680  0x000043c6 ifetcht  0x00000001 , 0x00000003 
+ 00023681  0x000043c7 ifetch  0x00000001 , 0x00000003 
+ 00023682  0x000043c8 nsetflag  0x00000034 , 0x00000007 , 0x00000002 
+ 00023683  0x000043c9 call  0x000064df 
+ 00023684  0x000043ca branch  0x00005ce1 
+ 00023685  0x000043cd ifetcht  0x00000001 , 0x00000003 
+ 00023686  0x000043ce call  0x000064ea 
+ 00023687  0x000043cf ifetch  0x00000001 , 0x00000003 
+ 00023688  0x000043d0 isolate1  0x00000000 , 0x0000003f 
+ 00023689  0x000043d1 call  0x00006500 
+ 00023690  0x000043d2 branch  0x00005ce1 
+ 00023691  0x000043d7 fetch  0x00000001 , 0x00000417 
+ 00023692  0x000043d8 bne  0x00000001 , 0x00005cde 
+ 00023693  0x000043d9 ifetcht  0x00000001 , 0x00000003 
+ 00023694  0x000043da call  0x000064f5 
+ 00023695  0x000043db setarg  0x00000000 
+ 00023696  0x000043dc nsetflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00023697  0x000043dd arg  0x00000001 , 0x00000011 
+ 00023698  0x000043de branch  0x00005c06 
+ 00023699  0x000043e3 copy  0x00000011 , 0x00000003 
+ 00023700  0x000043e4 ifetch  0x00000001 , 0x00000003 
+ 00023701  0x000043e5 store  0x00000001 , 0x0000456c 
+ 00023702  0x000043e6 arg  0x00000000 , 0x00000002 
+ 00023703  0x000043e7 isolate1  0x00000007 , 0x0000003f 
+ 00023704  0x000043e8 setflag  0x00000001 , 0x00000000 , 0x00000002 
+ 00023705  0x000043e9 storet  0x00000001 , 0x00004563 
+ 00023706  0x000043ea beq  0x00000000 , 0x00005ca9 
+ 00023707  0x000043eb beq  0x00000001 , 0x00005cac 
+ 00023708  0x000043ec beq  0x00000002 , 0x00005cae 
+ 00023709  0x000043ed beq  0x00000081 , 0x00005ca2 
+ 00023710  0x000043ee beq  0x00000082 , 0x00005ca4 
+ 00023711  0x000043ef beq  0x00000083 , 0x00005ca7 
+ 00023712  0x000043f0 jam  0x00000000 , 0x00004563 
+ 00023713  0x000043f1 branch  0x00005cde 
+ 00023714  0x000043f4 jam  0x0000000d , 0x000044df 
+ 00023715  0x000043f5 branch  0x00005caa 
+ 00023716  0x000043f7 jam  0x0000000d , 0x000044df 
+ 00023717  0x000043f8 jam  0x00000001 , 0x000044dd 
+ 00023718  0x000043f9 branch  0x00005ce1 
+ 00023719  0x000043fb jam  0x0000000d , 0x000044df 
+ 00023720  0x000043fc branch  0x00005caf 
+ 00023721  0x000043fe jam  0x00000000 , 0x000044df 
+ 00023722  0x00004400 jam  0x00000003 , 0x000044dd 
+ 00023723  0x00004401 branch  0x00005ce1 
+ 00023724  0x00004403 jam  0x00000005 , 0x000044df 
+ 00023725  0x00004404 branch  0x00005caa 
+ 00023726  0x00004406 jam  0x00000005 , 0x000044df 
+ 00023727  0x00004408 jam  0x00000000 , 0x000044dd 
+ 00023728  0x00004409 branch  0x00005ce1 
+ 00023729  0x0000440e fetch  0x00000001 , 0x00000417 
+ 00023730  0x0000440f sub  0x0000003f , 0x0000001f , 0x0000003e 
+ 00023731  0x00004410 nbranch  0x00005cde , 0x00000002 
+ 00023732  0x00004411 copy  0x0000003f , 0x00000039 
+ 00023733  0x00004412 copy  0x00000011 , 0x00000003 
+ 00023734  0x00004413 arg  0x00004401 , 0x00000005 
+ 00023735  0x00004414 call  0x00006341 
+ 00023736  0x00004415 branch  0x00005ce1 
+ 00023737  0x0000441a fetch  0x00000001 , 0x00000417 
+ 00023738  0x0000441b sub  0x0000003f , 0x0000001f , 0x0000003e 
+ 00023739  0x0000441c nbranch  0x00005cde , 0x00000002 
+ 00023740  0x0000441d copy  0x0000003f , 0x00000039 
+ 00023741  0x0000441e copy  0x00000011 , 0x00000003 
+ 00023742  0x0000441f arg  0x00004421 , 0x00000005 
+ 00023743  0x00004420 call  0x00006341 
+ 00023744  0x00004421 branch  0x00005ce1 
+ 00023745  0x00004426 fetch  0x00000002 , 0x0000470b 
+ 00023746  0x00004427 bbit0  0x00000009 , 0x00005cde 
+ 00023747  0x00004428 fetch  0x00000001 , 0x00000417 
+ 00023748  0x00004429 bne  0x00000008 , 0x00005cde 
+ 00023749  0x0000442a copy  0x00000011 , 0x00000003 
+ 00023750  0x0000442b ifetch  0x00000008 , 0x00000003 
+ 00023751  0x0000442c store  0x00000008 , 0x0000458d 
+ 00023752  0x0000442d jam  0x00000012 , 0x000009bd 
+ 00023753  0x0000442e call  0x00007d90 
+ 00023754  0x0000442f branch  0x00005ce1 
+ 00023755  0x00004434 fetch  0x00000001 , 0x0000456c 
+ 00023756  0x00004435 branch  0x00005cde , 0x00000034 
+ 00023757  0x00004436 fetch  0x00000001 , 0x0000456a 
+ 00023758  0x00004437 bne  0x00000000 , 0x00005cde 
+ 00023759  0x00004438 fetch  0x00000001 , 0x0000456b 
+ 00023760  0x00004439 bne  0x00000000 , 0x00005cde 
+ 00023761  0x0000443a call  0x00007e29 
+ 00023762  0x0000443b branch  0x00005ce1 
+ 00023763  0x00004440 ifetch  0x00000001 , 0x00000003 
+ 00023764  0x00004441 beq  0x00000001 , 0x00005cdc 
+ 00023765  0x00004442 fetch  0x00000001 , 0x00004566 
+ 00023766  0x00004443 beq  0x00000003 , 0x00005cda 
+ 00023767  0x00004444 beq  0x00000006 , 0x00005cda 
+ 00023768  0x00004445 beq  0x00000007 , 0x00005cda 
+ 00023769  0x00004446 branch  0x00005cde 
+ 00023770  0x00004448 jam  0x00000001 , 0x00004567 
+ 00023771  0x00004449 branch  0x00005ce1 
+ 00023772  0x0000444c call  0x000050a6 
+ 00023773  0x0000444d branch  0x00005ce1 
+ 00023774  0x00004451 arg  0x00000001 , 0x00000002 
+ 00023775  0x00004452 arg  0x00000000 , 0x00000011 
+ 00023776  0x00004453 branch  0x00005cec 
+ 00023777  0x00004456 arg  0x00000000 , 0x00000002 
+ 00023778  0x00004457 arg  0x00000000 , 0x00000011 
+ 00023779  0x00004458 branch  0x00005cec 
+ 00023780  0x0000445d jam  0x00000000 , 0x00000416 
+ 00023781  0x0000445e branch  0x00005d0f 
+ 00023782  0x00004462 jam  0x00000002 , 0x00000416 
+ 00023783  0x00004463 branch  0x00005d0f 
+ 00023784  0x00004467 jam  0x00000003 , 0x00000416 
+ 00023785  0x00004468 branch  0x00005d0f 
+ 00023786  0x0000446b jam  0x00000005 , 0x00000416 
+ 00023787  0x0000446c branch  0x00005d0f 
+ 00023788  0x00004477 fetch  0x00000001 , 0x00000416 
+ 00023789  0x00004478 copy  0x0000003f , 0x00000013 
+ 00023790  0x00004479 jam  0x00000006 , 0x00000416 
+ 00023791  0x0000447a setarg  0x00000002 
+ 00023792  0x0000447b iadd  0x00000011 , 0x0000003f 
+ 00023793  0x0000447c call  0x00005d66 
+ 00023794  0x0000447d copy  0x00000013 , 0x0000003f 
+ 00023795  0x0000447e istore  0x00000001 , 0x0000000a 
+ 00023796  0x0000447f istoret  0x00000001 , 0x0000000a 
+ 00023797  0x00004480 copy  0x00000011 , 0x00000039 
+ 00023798  0x00004481 copy  0x00000012 , 0x00000006 
+ 00023799  0x00004482 call  0x0000633b 
+ 00023800  0x00004483 branch  0x0000631f 
+ 00023801  0x00004488 jam  0x00000007 , 0x00000416 
+ 00023802  0x00004489 fetch  0x00000001 , 0x0000042e 
+ 00023803  0x0000448a rtn  0x00000034 
+ 00023804  0x0000448b call  0x00005d66 
+ 00023805  0x0000448c fetch  0x00000001 , 0x0000042e 
+ 00023806  0x0000448d copy  0x0000003f , 0x00000039 
+ 00023807  0x0000448e fetch  0x00000002 , 0x00000430 
+ 00023808  0x0000448f copy  0x0000003f , 0x00000006 
+ 00023809  0x00004490 call  0x00006328 
+ 00023810  0x00004491 branch  0x0000631f 
+ 00023811  0x00004496 jam  0x00000008 , 0x00000416 
+ 00023812  0x00004497 fetch  0x00000001 , 0x00004751 
+ 00023813  0x00004498 icopy  0x00000039 
+ 00023814  0x00004499 increase  0x00000002 , 0x0000003f 
+ 00023815  0x0000449a call  0x00005d66 
+ 00023816  0x0000449b fetch  0x00000002 , 0x00004754 
+ 00023817  0x0000449c istore  0x00000002 , 0x0000000a 
+ 00023818  0x0000449d fetch  0x00000002 , 0x00004752 
+ 00023819  0x0000449e icopy  0x00000006 
+ 00023820  0x0000449f call  0x00006328 
+ 00023821  0x000044a0 branch  0x0000631f 
+ 00023822  0x000044a5 jam  0x00000009 , 0x00000416 
+ 00023823  0x000044a7 setarg  0x00000000 
+ 00023824  0x000044a8 call  0x00005d66 
+ 00023825  0x000044a9 branch  0x0000631f 
+ 00023826  0x000044ae jam  0x0000000a , 0x00000416 
+ 00023827  0x000044af setarg  0x00000001 
+ 00023828  0x000044b0 call  0x00005d66 
+ 00023829  0x000044b2 call  0x00005d23 
+ 00023830  0x000044b4 fetch  0x00000002 , 0x0000470b 
+ 00023831  0x000044b5 arg  0x00000002 , 0x00000007 
+ 00023832  0x000044b6 qisolate1  0x0000003f 
+ 00023833  0x000044b7 setflag  0x00000001 , 0x00000003 , 0x00000002 
+ 00023834  0x000044b9 arg  0x00000009 , 0x00000007 
+ 00023835  0x000044ba qisolate1  0x0000003f 
+ 00023836  0x000044bb setflag  0x00000001 , 0x00000005 , 0x00000002 
+ 00023837  0x000044bd fetch  0x00000001 , 0x0000470b 
+ 00023838  0x000044be arg  0x00000004 , 0x00000007 
+ 00023839  0x000044bf qisolate1  0x0000003f 
+ 00023840  0x000044c0 setflag  0x00000001 , 0x00000004 , 0x00000002 
+ 00023841  0x000044c2 istoret  0x00000001 , 0x0000000a 
+ 00023842  0x000044c3 branch  0x0000631f 
+ 00023843  0x000044c8 arg  0x00000000 , 0x00000002 
+ 00023844  0x000044c9 fetch  0x00000001 , 0x00004133 
+ 00023845  0x000044ca arg  0x00000000 , 0x00000007 
+ 00023846  0x000044cb qisolate1  0x0000003f 
+ 00023847  0x000044cc setflag  0x00000001 , 0x00000000 , 0x00000002 
+ 00023848  0x000044cd arg  0x00000001 , 0x00000007 
+ 00023849  0x000044ce qisolate1  0x0000003f 
+ 00023850  0x000044cf setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00023851  0x000044d1 fetch  0x00000001 , 0x000043ff 
+ 00023852  0x000044d2 arg  0x00000000 , 0x00000007 
+ 00023853  0x000044d3 qisolate1  0x0000003f 
+ 00023854  0x000044d4 setflag  0x00000001 , 0x00000002 , 0x00000002 
+ 00023855  0x000044d5 rtn 
+ 00023856  0x000044db jam  0x0000000d , 0x00000416 
+ 00023857  0x000044dc fetch  0x00000001 , 0x000042be 
+ 00023858  0x000044dd mul32  0x0000003f , 0x00000022 , 0x0000003f 
+ 00023859  0x000044de icopy  0x00000039 
+ 00023860  0x000044df call  0x00005d66 
+ 00023861  0x000044e0 fetch  0x00000002 , 0x000042bc 
+ 00023862  0x000044e1 icopy  0x00000006 
+ 00023863  0x000044e2 call  0x00006328 
+ 00023864  0x000044e3 branch  0x0000631f 
+ 00023865  0x000044e9 jam  0x0000000e , 0x00000416 
+ 00023866  0x000044ea setarg  0x00000004 
+ 00023867  0x000044eb call  0x00005d66 
+ 00023868  0x000044ec fetch  0x00000004 , 0x000008de 
+ 00023869  0x000044ed istore  0x00000004 , 0x0000000a 
+ 00023870  0x000044ee branch  0x0000631f 
+ 00023871  0x000044f2 jam  0x0000000f , 0x00000416 
+ 00023872  0x000044f3 branch  0x00005d0f 
+ 00023873  0x000044f8 jam  0x00000010 , 0x00000416 
+ 00023874  0x000044f9 branch  0x00005d0f 
+ 00023875  0x000044fd jam  0x00000011 , 0x00000416 
+ 00023876  0x000044fe setarg  0x00000004 
+ 00023877  0x000044ff call  0x00005d66 
+ 00023878  0x00004500 fetch  0x00000004 , 0x0000456d 
+ 00023879  0x00004501 istore  0x00000004 , 0x0000000a 
+ 00023880  0x00004502 branch  0x0000631f 
+ 00023881  0x00004506 arg  0x00000180 , 0x00000011 
+ 00023882  0x00004507 branch  0x00005d50 
+ 00023883  0x00004509 arg  0x00000080 , 0x00000011 
+ 00023884  0x0000450a branch  0x00005d50 
+ 00023885  0x0000450c arg  0x00000101 , 0x00000011 
+ 00023886  0x0000450d branch  0x00005d50 
+ 00023887  0x0000450f arg  0x00000001 , 0x00000011 
+ 00023888  0x00004511 jam  0x00000000 , 0x000046e9 
+ 00023889  0x00004512 jam  0x00000014 , 0x00000416 
+ 00023890  0x00004513 setarg  0x00000002 
+ 00023891  0x00004514 call  0x00005d66 
+ 00023892  0x00004515 copy  0x00000011 , 0x0000003f 
+ 00023893  0x00004516 istore  0x00000002 , 0x0000000a 
+ 00023894  0x00004517 branch  0x0000631f 
+ 00023895  0x0000451b arg  0x00000000 , 0x00000013 
+ 00023896  0x0000451c branch  0x00005d5a 
+ 00023897  0x0000451e arg  0x00000001 , 0x00000013 
+ 00023898  0x00004520 jam  0x00000015 , 0x00000416 
+ 00023899  0x00004521 setarg  0x00000001 
+ 00023900  0x00004522 call  0x00005d66 
+ 00023901  0x00004523 copy  0x00000013 , 0x0000003f 
+ 00023902  0x00004524 istore  0x00000001 , 0x0000000a 
+ 00023903  0x00004525 branch  0x0000631f 
+ 00023904  0x00004529 jam  0x0000001d , 0x00000416 
+ 00023905  0x0000452a setarg  0x00000004 
+ 00023906  0x0000452b call  0x00005d66 
+ 00023907  0x0000452c fetch  0x00000004 , 0x000008de 
+ 00023908  0x0000452d istore  0x00000004 , 0x0000000a 
+ 00023909  0x0000452e branch  0x0000631f 
+ 00023910  0x0000453a jam  0x00000002 , 0x00000415 
+ 00023911  0x0000453b store  0x00000001 , 0x00000417 
+ 00023912  0x0000453c storet  0x00000008 , 0x000009c6 
+ 00023913  0x0000453d set1  0x00000025 , 0x00000000 
+ 00023914  0x0000453e bpatch  0x00000067 , 0x0000402c 
+ 00023915  0x0000453f call  0x00005d71 
+ 00023916  0x00004540 fetcht  0x00000008 , 0x000009c6 
+ 00023917  0x00004541 call  0x0000631c 
+ 00023918  0x00004542 fetch  0x00000003 , 0x00000415 
+ 00023919  0x00004543 istore  0x00000003 , 0x0000000a 
+ 00023920  0x00004544 rtn 
+ 00023921  0x00004549 call  0x00005d7a 
+ 00023922  0x0000454a rtn  0x00000001 
+ 00023923  0x0000454c call  0x00005d78 
+ 00023924  0x0000454d fetch  0x00000004 , 0x00004737 
+ 00023925  0x0000454e rshift2  0x0000003f , 0x0000003f 
+ 00023926  0x0000454f rtn  0x00000034 
+ 00023927  0x00004550 branch  0x00005d7e 
+ 00023928  0x00004553 fetcht  0x00000001 , 0x00004736 
+ 00023929  0x00004554 branch  0x000064ff 
+ 00023930  0x00004556 fetcht  0x00000001 , 0x00004736 
+ 00023931  0x00004557 branch  0x000064f3 
+ 00023932  0x00004559 fetcht  0x00000001 , 0x00004736 
+ 00023933  0x0000455a branch  0x000064fd 
+ 00023934  0x0000455e increase  0xffffffff , 0x0000003f 
+ 00023935  0x0000455f nbranch  0x00005d7e , 0x00000034 
+ 00023936  0x00004560 rtn 
+ 00023937  0x0000456b copy  0x00000011 , 0x0000003f 
+ 00023938  0x0000456c store  0x00000002 , 0x00004752 
+ 00023939  0x0000456d copy  0x00000012 , 0x0000003f 
+ 00023940  0x0000456e store  0x00000001 , 0x00004751 
+ 00023941  0x0000456f fetch  0x00000002 , 0x0000039b 
+ 00023942  0x00004570 fetcht  0x00000002 , 0x00004756 
+ 00023943  0x00004571 isub  0x00000002 , 0x0000003e 
+ 00023944  0x00004572 branch  0x00005d8c , 0x00000005 
+ 00023945  0x00004573 fetcht  0x00000002 , 0x00004758 
+ 00023946  0x00004574 isub  0x00000002 , 0x0000003e 
+ 00023947  0x00004575 nrtn  0x00000005 
+ 00023948  0x00004577 store  0x00000002 , 0x00004754 
+ 00023949  0x00004578 branch  0x00005d98 
+ 00023950  0x0000457c fetch  0x00000001 , 0x0000475a 
+ 00023951  0x0000457d bbit1  0x00000003 , 0x00005d94 
+ 00023952  0x0000457f fetch  0x00000001 , 0x0000475a 
+ 00023953  0x00004580 rtnbit0  0x00000001 
+ 00023954  0x00004581 call  0x00005d03 
+ 00023955  0x00004582 branch  0x00005d9c 
+ 00023956  0x00004585 jam  0x00000009 , 0x00000416 
+ 00023957  0x00004586 call  0x00005ce1 
+ 00023958  0x00004587 call  0x00005b91 
+ 00023959  0x00004588 branch  0x00005d90 
+ 00023960  0x0000458c fetch  0x00000001 , 0x0000475a 
+ 00023961  0x0000458d set1  0x00000001 , 0x0000003f 
+ 00023962  0x0000458f store  0x00000001 , 0x0000475a 
+ 00023963  0x00004590 rtn 
+ 00023964  0x00004593 fetch  0x00000001 , 0x0000475a 
+ 00023965  0x00004594 set0  0x00000001 , 0x0000003f 
+ 00023966  0x00004595 branch  0x00005d9a 
+ 00023967  0x0000459b fetch  0x00000001 , 0x0000472f 
+ 00023968  0x0000459c rtnbit1  0x00000000 
+ 00023969  0x0000459d call  0x00005dbd 
+ 00023970  0x0000459e branch  0x00003e77 
+ 00023971  0x000045a4 storet  0x00000001 , 0x0000024e 
+ 00023972  0x000045a6 fetch  0x00000001 , 0x0000024e 
+ 00023973  0x000045a7 rtn  0x00000034 
+ 00023974  0x000045a8 increase  0xffffffff , 0x0000003f 
+ 00023975  0x000045a9 store  0x00000001 , 0x0000024e 
+ 00023976  0x000045aa set1  0x00000025 , 0x00000000 
+ 00023977  0x000045ab bpatch  0x00000068 , 0x0000402d 
+ 00023978  0x000045ac call  0x00005dac 
+ 00023979  0x000045ad branch  0x00005da4 
+ 00023980  0x000045b0 fetch  0x00000001 , 0x00004746 
+ 00023981  0x000045b1 rtn  0x00000034 
+ 00023982  0x000045b2 fetch  0x00000001 , 0x00004747 
+ 00023983  0x000045b3 rtn  0x00000034 
+ 00023984  0x000045b4 increase  0xffffffff , 0x0000003f 
+ 00023985  0x000045b5 store  0x00000001 , 0x00004747 
+ 00023986  0x000045b6 nrtn  0x00000034 
+ 00023987  0x000045b7 jam  0x0000000a , 0x00004747 
+ 00023988  0x000045b8 call  0x000065c0 
+ 00023989  0x000045b9 call  0x000065de 
+ 00023990  0x000045ba div  0x0000003f , 0x00000064 
+ 00023991  0x000045bb call  0x00007f53 
+ 00023992  0x000045bc quotient  0x0000003f 
+ 00023993  0x000045bd remainder  0x00000002 
+ 00023994  0x000045be store  0x00000001 , 0x00004748 
+ 00023995  0x000045bf storet  0x00000001 , 0x00004749 
+ 00023996  0x000045c0 rtn 
+ 00023997  0x000045c5 fetch  0x00000001 , 0x0000472f 
+ 00023998  0x000045c6 set1  0x00000000 , 0x0000003f 
+ 00023999  0x000045c7 store  0x00000001 , 0x0000472f 
+ 00024000  0x000045c8 rtn 
+ 00024001  0x000045cb fetch  0x00000001 , 0x0000472f 
+ 00024002  0x000045cc set0  0x00000000 , 0x0000003f 
+ 00024003  0x000045cd store  0x00000001 , 0x0000472f 
+ 00024004  0x000045ce rtn 
+ 00024005  0x000045d1 set1  0x00000025 , 0x00000000 
+ 00024006  0x000045d2 bpatch  0x00000069 , 0x0000402d 
+ 00024007  0x000045d3 call  0x00007f84 
+ 00024008  0x000045d4 branch  0x00003e41 , 0x00000002 
+ 00024009  0x000045d5 branch  0x00003e43 
+ 00024010  0x000045dd set1  0x00000025 , 0x00000000 
+ 00024011  0x000045de bpatch  0x0000006a , 0x0000402d 
+ 00024012  0x000045df setarg  0x00005fc3 
+ 00024013  0x000045e0 store  0x00000002 , 0x00004290 
+ 00024014  0x000045e1 setarg  0x00005ee2 
+ 00024015  0x000045e2 store  0x00000002 , 0x00004292 
+ 00024016  0x000045e3 setarg  0x00005e27 
+ 00024017  0x000045e4 store  0x00000002 , 0x0000428e 
+ 00024018  0x000045e5 setarg  0x00005fd4 
+ 00024019  0x000045e6 store  0x00000002 , 0x00004296 
+ 00024020  0x000045e7 setarg  0x00005def 
+ 00024021  0x000045e8 store  0x00000002 , 0x00004294 
+ 00024022  0x000045e9 setarg  0x00005efd 
+ 00024023  0x000045ea store  0x00000002 , 0x0000429c 
+ 00024024  0x000045eb jam  0x00000000 , 0x000008d4 
+ 00024025  0x000045ec jam  0x00000000 , 0x000008d5 
+ 00024026  0x000045ed set1  0x00000025 , 0x00000000 
+ 00024027  0x000045ee bpatch  0x0000006b , 0x0000402d 
+ 00024028  0x000045ef call  0x00005e0a 
+ 00024029  0x000045f0 rtn  0x0000002b 
+ 00024030  0x000045f1 call  0x00005de5 
+ 00024031  0x000045f2 call  0x00005ded 
+ 00024032  0x000045f3 setarg  0x00005e24 
+ 00024033  0x000045f4 store  0x00000002 , 0x0000428c 
+ 00024034  0x000045f5 fetch  0x00000002 , 0x0000470b 
+ 00024035  0x000045f6 bbit1  0x0000000c , 0x00006074 
+ 00024036  0x000045f7 branch  0x00006070 
+ 00024037  0x000045fa call  0x00003e28 
+ 00024038  0x000045fb branch  0x00005dea , 0x00000005 
+ 00024039  0x000045fc call  0x00006472 
+ 00024040  0x000045fd call  0x00006098 
+ 00024041  0x000045fe branch  0x00003e20 
+ 00024042  0x00004600 call  0x00006441 
+ 00024043  0x00004601 call  0x00006476 
+ 00024044  0x00004602 branch  0x0000609e 
+ 00024045  0x00004605 jam  0x00000001 , 0x00004747 
+ 00024046  0x00004606 branch  0x00005e01 
+ 00024047  0x00004609 call  0x00007e3f 
+ 00024048  0x0000460a call  0x00005df2 
+ 00024049  0x0000460b branch  0x00005e3e 
+ 00024050  0x0000460e fetcht  0x00000001 , 0x00004752 
+ 00024051  0x0000460f call  0x000064f5 
+ 00024052  0x00004610 nbranch  0x00005df9 , 0x00000001 
+ 00024053  0x00004612 fetch  0x00000001 , 0x00004747 
+ 00024054  0x00004613 rtneq  0x00000000 
+ 00024055  0x00004614 jam  0x00000000 , 0x00004747 
+ 00024056  0x00004615 rtn 
+ 00024057  0x00004617 fetch  0x00000001 , 0x00004747 
+ 00024058  0x00004618 rtneq  0x00000001 
+ 00024059  0x00004619 jam  0x00000001 , 0x00004747 
+ 00024060  0x0000461a fetch  0x00000001 , 0x00004746 
+ 00024061  0x0000461b increase  0x00000001 , 0x0000003f 
+ 00024062  0x0000461c and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00024063  0x0000461d store  0x00000001 , 0x00004746 
+ 00024064  0x0000461e branch  0x00005e01 
+ 00024065  0x00004620 setarg  0x00000006 
+ 00024066  0x00004621 call  0x000060ec 
+ 00024067  0x00004622 and  0x0000003f , 0x000000fc , 0x00000002 
+ 00024068  0x00004623 fetch  0x00000001 , 0x00004746 
+ 00024069  0x00004624 iadd  0x00000002 , 0x0000003f 
+ 00024070  0x00004625 lshift8  0x0000003f , 0x0000003f 
+ 00024071  0x00004626 add  0x0000003f , 0x00000006 , 0x0000003f 
+ 00024072  0x00004627 call  0x000060eb 
+ 00024073  0x00004628 branch  0x00006098 
+ 00024074  0x0000462b call  0x00005f8e 
+ 00024075  0x0000462c call  0x00005e10 
+ 00024076  0x0000462d hfetch  0x00000002 , 0x00008050 
+ 00024077  0x0000462e set0  0x0000000b , 0x0000003f 
+ 00024078  0x0000462f hstore  0x00000002 , 0x00008050 
+ 00024079  0x00004630 rtn 
+ 00024080  0x00004633 rtn  0x0000002b 
+ 00024081  0x00004634 call  0x00003d3e 
+ 00024082  0x00004635 fetcht  0x00000001 , 0x00004763 
+ 00024083  0x00004636 call  0x000064df 
+ 00024084  0x00004637 fetcht  0x00000001 , 0x00004764 
+ 00024085  0x00004638 call  0x000064df 
+ 00024086  0x00004639 fetcht  0x00000001 , 0x0000474d 
+ 00024087  0x0000463a call  0x000064df 
+ 00024088  0x0000463b fetcht  0x00000001 , 0x0000474e 
+ 00024089  0x0000463c call  0x000064df 
+ 00024090  0x0000463d fetcht  0x00000001 , 0x0000474f 
+ 00024091  0x0000463e call  0x000064df 
+ 00024092  0x0000463f fetcht  0x00000001 , 0x00004750 
+ 00024093  0x00004640 call  0x000064df 
+ 00024094  0x00004641 fetcht  0x00000001 , 0x00004751 
+ 00024095  0x00004642 call  0x000064df 
+ 00024096  0x00004643 fetcht  0x00000001 , 0x00004753 
+ 00024097  0x00004644 call  0x000064df 
+ 00024098  0x00004645 fetcht  0x00000001 , 0x00004752 
+ 00024099  0x00004646 branch  0x000064df 
+ 00024100  0x0000464a setarg  0x0000bc05 
+ 00024101  0x0000464b call  0x000060eb 
+ 00024102  0x0000464c jam  0x00000001 , 0x0000009f 
+ 00024103  0x0000464f call  0x00005e3e 
+ 00024104  0x00004650 arg  0x00000019 , 0x00000002 
+ 00024105  0x00004651 call  0x000064e8 
+ 00024106  0x00004652 hjam  0x00000000 , 0x00008081 
+ 00024107  0x00004653 fetcht  0x00000001 , 0x00004763 
+ 00024108  0x00004654 call  0x000064c2 
+ 00024109  0x00004655 fetcht  0x00000001 , 0x00004764 
+ 00024110  0x00004656 call  0x000064c2 
+ 00024111  0x00004657 fetcht  0x00000001 , 0x0000474d 
+ 00024112  0x00004658 call  0x000064c2 
+ 00024113  0x00004659 fetcht  0x00000001 , 0x0000474e 
+ 00024114  0x0000465a call  0x000064c2 
+ 00024115  0x0000465b fetcht  0x00000001 , 0x0000474f 
+ 00024116  0x0000465c call  0x000064c2 
+ 00024117  0x0000465d fetcht  0x00000001 , 0x00004750 
+ 00024118  0x0000465e call  0x000064c2 
+ 00024119  0x0000465f fetcht  0x00000001 , 0x00004751 
+ 00024120  0x00004660 call  0x000064c2 
+ 00024121  0x00004661 fetcht  0x00000001 , 0x00004753 
+ 00024122  0x00004662 call  0x000064c7 
+ 00024123  0x00004663 fetch  0x00000001 , 0x0000009f 
+ 00024124  0x00004664 nrtn  0x00000034 
+ 00024125  0x00004665 branch  0x000064d2 
+ 00024126  0x00004668 set1  0x00000025 , 0x00000000 
+ 00024127  0x00004669 bpatch  0x0000006c , 0x0000402d 
+ 00024128  0x0000466a call  0x00005e4d 
+ 00024129  0x0000466b call  0x00005e94 
+ 00024130  0x0000466c fetch  0x00000001 , 0x0000475e 
+ 00024131  0x0000466d fetcht  0x00000001 , 0x0000475d 
+ 00024132  0x0000466e store  0x00000001 , 0x0000475d 
+ 00024133  0x0000466f isub  0x00000002 , 0x0000003e 
+ 00024134  0x00004670 nbranch  0x00003e39 , 0x00000005 
+ 00024135  0x00004671 fetch  0x00000001 , 0x00004766 
+ 00024136  0x00004672 fetcht  0x00000001 , 0x00004765 
+ 00024137  0x00004673 store  0x00000001 , 0x00004765 
+ 00024138  0x00004674 isub  0x00000002 , 0x0000003e 
+ 00024139  0x00004675 nbranch  0x00003e39 , 0x00000005 
+ 00024140  0x00004676 rtn 
+ 00024141  0x00004678 arg  0x00000000 , 0x00000011 
+ 00024142  0x00004679 fetcht  0x00000001 , 0x0000475b 
+ 00024143  0x0000467a call  0x000064f5 
+ 00024144  0x0000467b setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00024145  0x0000467c fetcht  0x00000001 , 0x0000475c 
+ 00024146  0x0000467d call  0x000064f5 
+ 00024147  0x0000467e setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00024148  0x0000467f copy  0x00000011 , 0x0000003f 
+ 00024149  0x00004680 store  0x00000001 , 0x0000475e 
+ 00024150  0x00004681 beq  0x00000001 , 0x00005e5b 
+ 00024151  0x00004682 beq  0x00000002 , 0x00005e5f 
+ 00024152  0x00004683 fetch  0x00000001 , 0x0000475f 
+ 00024153  0x00004684 bbit1  0x00000007 , 0x00005e6b 
+ 00024154  0x00004685 rtn 
+ 00024155  0x00004688 fetch  0x00000001 , 0x0000475d 
+ 00024156  0x00004689 beq  0x00000000 , 0x00005e63 
+ 00024157  0x0000468a beq  0x00000003 , 0x00005e65 
+ 00024158  0x0000468b rtn 
+ 00024159  0x0000468d fetch  0x00000001 , 0x0000475d 
+ 00024160  0x0000468e beq  0x00000000 , 0x00005e67 
+ 00024161  0x0000468f beq  0x00000003 , 0x00005e69 
+ 00024162  0x00004690 rtn 
+ 00024163  0x00004692 jam  0x00000082 , 0x0000475f 
+ 00024164  0x00004693 rtn 
+ 00024165  0x00004695 jam  0x00000081 , 0x0000475f 
+ 00024166  0x00004696 rtn 
+ 00024167  0x00004698 jam  0x00000080 , 0x0000475f 
+ 00024168  0x00004699 rtn 
+ 00024169  0x0000469b jam  0x00000083 , 0x0000475f 
+ 00024170  0x0000469c rtn 
+ 00024171  0x0000469e fetch  0x00000001 , 0x0000475f 
+ 00024172  0x0000469f set0  0x00000007 , 0x0000003f 
+ 00024173  0x000046a0 store  0x00000001 , 0x0000475f 
+ 00024174  0x000046a1 fetch  0x00000001 , 0x0000475f 
+ 00024175  0x000046a2 beq  0x00000000 , 0x00005e74 
+ 00024176  0x000046a3 beq  0x00000001 , 0x00005e77 
+ 00024177  0x000046a4 beq  0x00000002 , 0x00005e7a 
+ 00024178  0x000046a5 beq  0x00000003 , 0x00005e7d 
+ 00024179  0x000046a6 rtn 
+ 00024180  0x000046a8 fetch  0x00000001 , 0x0000475e 
+ 00024181  0x000046a9 beq  0x00000003 , 0x00005e80 
+ 00024182  0x000046aa rtn 
+ 00024183  0x000046ac fetch  0x00000001 , 0x0000475e 
+ 00024184  0x000046ad beq  0x00000000 , 0x00005e80 
+ 00024185  0x000046ae rtn 
+ 00024186  0x000046b0 fetch  0x00000001 , 0x0000475e 
+ 00024187  0x000046b1 beq  0x00000003 , 0x00005e8a 
+ 00024188  0x000046b2 rtn 
+ 00024189  0x000046b4 fetch  0x00000001 , 0x0000475e 
+ 00024190  0x000046b5 beq  0x00000000 , 0x00005e8a 
+ 00024191  0x000046b6 rtn 
+ 00024192  0x000046b8 fetch  0x00000001 , 0x00004762 
+ 00024193  0x000046b9 increase  0x00000001 , 0x0000003f 
+ 00024194  0x000046ba store  0x00000001 , 0x00004762 
+ 00024195  0x000046bb sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00024196  0x000046bc rtn  0x00000002 
+ 00024197  0x000046bd jam  0x00000000 , 0x00004762 
+ 00024198  0x000046be fetch  0x00000001 , 0x00004760 
+ 00024199  0x000046bf increase  0x00000001 , 0x0000003f 
+ 00024200  0x000046c0 store  0x00000001 , 0x00004760 
+ 00024201  0x000046c1 rtn 
+ 00024202  0x000046c3 fetch  0x00000001 , 0x00004761 
+ 00024203  0x000046c4 increase  0x00000001 , 0x0000003f 
+ 00024204  0x000046c5 store  0x00000001 , 0x00004761 
+ 00024205  0x000046c6 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00024206  0x000046c7 rtn  0x00000002 
+ 00024207  0x000046c8 jam  0x00000000 , 0x00004761 
+ 00024208  0x000046c9 fetch  0x00000001 , 0x00004760 
+ 00024209  0x000046ca increase  0xffffffff , 0x0000003f 
+ 00024210  0x000046cb store  0x00000001 , 0x00004760 
+ 00024211  0x000046cc rtn 
+ 00024212  0x000046d0 arg  0x00000000 , 0x00000011 
+ 00024213  0x000046d1 fetcht  0x00000001 , 0x00004763 
+ 00024214  0x000046d2 call  0x000064f5 
+ 00024215  0x000046d3 setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00024216  0x000046d4 fetcht  0x00000001 , 0x00004764 
+ 00024217  0x000046d5 call  0x000064f5 
+ 00024218  0x000046d6 setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00024219  0x000046d7 copy  0x00000011 , 0x0000003f 
+ 00024220  0x000046d8 store  0x00000001 , 0x00004766 
+ 00024221  0x000046d9 beq  0x00000001 , 0x00005ea2 
+ 00024222  0x000046da beq  0x00000002 , 0x00005ea6 
+ 00024223  0x000046db fetch  0x00000001 , 0x00004767 
+ 00024224  0x000046dc bbit1  0x00000007 , 0x00005eb2 
+ 00024225  0x000046dd rtn 
+ 00024226  0x000046e0 fetch  0x00000001 , 0x00004765 
+ 00024227  0x000046e1 beq  0x00000000 , 0x00005eaa 
+ 00024228  0x000046e2 beq  0x00000003 , 0x00005eac 
+ 00024229  0x000046e3 rtn 
+ 00024230  0x000046e5 fetch  0x00000001 , 0x00004765 
+ 00024231  0x000046e6 beq  0x00000000 , 0x00005eae 
+ 00024232  0x000046e7 beq  0x00000003 , 0x00005eb0 
+ 00024233  0x000046e8 rtn 
+ 00024234  0x000046ea jam  0x00000082 , 0x00004767 
+ 00024235  0x000046eb rtn 
+ 00024236  0x000046ed jam  0x00000081 , 0x00004767 
+ 00024237  0x000046ee rtn 
+ 00024238  0x000046f0 jam  0x00000080 , 0x00004767 
+ 00024239  0x000046f1 rtn 
+ 00024240  0x000046f3 jam  0x00000083 , 0x00004767 
+ 00024241  0x000046f4 rtn 
+ 00024242  0x000046f6 fetch  0x00000001 , 0x00004767 
+ 00024243  0x000046f7 set0  0x00000007 , 0x0000003f 
+ 00024244  0x000046f8 store  0x00000001 , 0x00004767 
+ 00024245  0x000046f9 fetch  0x00000001 , 0x00004767 
+ 00024246  0x000046fa beq  0x00000000 , 0x00005ebb 
+ 00024247  0x000046fb beq  0x00000001 , 0x00005ebe 
+ 00024248  0x000046fc beq  0x00000002 , 0x00005ec1 
+ 00024249  0x000046fd beq  0x00000003 , 0x00005ec4 
+ 00024250  0x000046fe rtn 
+ 00024251  0x00004700 fetch  0x00000001 , 0x00004766 
+ 00024252  0x00004701 beq  0x00000003 , 0x00005ec7 
+ 00024253  0x00004702 rtn 
+ 00024254  0x00004704 fetch  0x00000001 , 0x00004766 
+ 00024255  0x00004705 beq  0x00000000 , 0x00005ec7 
+ 00024256  0x00004706 rtn 
+ 00024257  0x00004708 fetch  0x00000001 , 0x00004766 
+ 00024258  0x00004709 beq  0x00000003 , 0x00005ed1 
+ 00024259  0x0000470a rtn 
+ 00024260  0x0000470c fetch  0x00000001 , 0x00004766 
+ 00024261  0x0000470d beq  0x00000000 , 0x00005ed1 
+ 00024262  0x0000470e rtn 
+ 00024263  0x00004710 fetch  0x00000001 , 0x0000476a 
+ 00024264  0x00004711 increase  0x00000001 , 0x0000003f 
+ 00024265  0x00004712 store  0x00000001 , 0x0000476a 
+ 00024266  0x00004713 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00024267  0x00004714 rtn  0x00000002 
+ 00024268  0x00004715 jam  0x00000000 , 0x0000476a 
+ 00024269  0x00004716 fetch  0x00000001 , 0x00004768 
+ 00024270  0x00004717 increase  0x00000001 , 0x0000003f 
+ 00024271  0x00004718 store  0x00000001 , 0x00004768 
+ 00024272  0x00004719 rtn 
+ 00024273  0x0000471b fetch  0x00000001 , 0x00004769 
+ 00024274  0x0000471c increase  0x00000001 , 0x0000003f 
+ 00024275  0x0000471d store  0x00000001 , 0x00004769 
+ 00024276  0x0000471e sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00024277  0x0000471f rtn  0x00000002 
+ 00024278  0x00004720 jam  0x00000000 , 0x00004769 
+ 00024279  0x00004721 fetch  0x00000001 , 0x00004768 
+ 00024280  0x00004722 increase  0xffffffff , 0x0000003f 
+ 00024281  0x00004723 store  0x00000001 , 0x00004768 
+ 00024282  0x00004724 rtn 
+ 00024283  0x00004728 call  0x00003e7b 
+ 00024284  0x00004729 jam  0x00000002 , 0x0000474b 
+ 00024285  0x0000472a call  0x00003e7f 
+ 00024286  0x0000472c branch  0x00003e6d 
+ 00024287  0x00004730 setarg  0x00000002 
+ 00024288  0x00004731 store  0x00000001 , 0x00004709 
+ 00024289  0x00004732 rtn 
+ 00024290  0x00004735 fetch  0x00000001 , 0x00004283 
+ 00024291  0x00004736 rtn  0x00000034 
+ 00024292  0x00004737 call  0x00004812 
+ 00024293  0x00004738 nrtn  0x00000034 
+ 00024294  0x00004739 call  0x00005f14 
+ 00024295  0x0000473a nrtn  0x00000028 
+ 00024296  0x0000473b call  0x00005efa 
+ 00024297  0x0000473d arg  0x00000009 , 0x00000011 
+ 00024298  0x0000473e call  0x00004005 
+ 00024299  0x0000473f fetch  0x00000002 , 0x000042de 
+ 00024300  0x00004740 istore  0x00000002 , 0x00000005 
+ 00024301  0x00004741 setarg  0x000002a1 
+ 00024302  0x00004742 istore  0x00000002 , 0x00000005 
+ 00024303  0x00004743 fetch  0x00000007 , 0x00004729 
+ 00024304  0x00004744 istore  0x00000007 , 0x00000005 
+ 00024305  0x00004745 rtn 
+ 00024306  0x00004747 setarg  0x00000000 
+ 00024307  0x00004748 store  0x00000006 , 0x0000472a 
+ 00024308  0x00004749 store  0x00000001 , 0x0000472f 
+ 00024309  0x0000474a branch  0x00005ee9 
+ 00024310  0x0000474c setarg  0x00000000 
+ 00024311  0x0000474d store  0x00000006 , 0x0000472a 
+ 00024312  0x0000474e store  0x00000001 , 0x0000472f 
+ 00024313  0x0000474f branch  0x00005f0c 
+ 00024314  0x00004752 fetch  0x00000002 , 0x00004739 
+ 00024315  0x00004753 store  0x00000002 , 0x00004741 
+ 00024316  0x00004754 rtn 
+ 00024317  0x00004758 fetcht  0x00000002 , 0x000044f8 
+ 00024318  0x00004759 call  0x000051f5 
+ 00024319  0x0000475a ifetch  0x00000001 , 0x00000006 
+ 00024320  0x0000475b store  0x00000001 , 0x000003be 
+ 00024321  0x0000475c arg  0x0000446b , 0x00000005 
+ 00024322  0x0000475d increase  0x00000001 , 0x00000005 
+ 00024323  0x0000475e fetcht  0x00000002 , 0x000044f8 
+ 00024324  0x0000475f istoret  0x00000002 , 0x00000005 
+ 00024325  0x00004760 call  0x000051f5 
+ 00024326  0x00004761 ifetch  0x00000001 , 0x00000006 
+ 00024327  0x00004762 icopy  0x00000039 
+ 00024328  0x00004763 call  0x00007ecd 
+ 00024329  0x00004764 fetcht  0x00000001 , 0x000003be 
+ 00024330  0x00004765 increase  0x00000007 , 0x00000002 
+ 00024331  0x00004766 branch  0x00004f89 
+ 00024332  0x0000476a set1  0x00000025 , 0x00000000 
+ 00024333  0x0000476b bpatch  0x0000006d , 0x0000402d 
+ 00024334  0x0000476c fetcht  0x00000002 , 0x000044f8 
+ 00024335  0x0000476d call  0x000051f5 
+ 00024336  0x0000476e add  0x00000006 , 0x00000001 , 0x00000005 
+ 00024337  0x00004770 fetch  0x00000007 , 0x00004729 
+ 00024338  0x00004771 istore  0x00000007 , 0x00000005 
+ 00024339  0x00004772 rtn 
+ 00024340  0x00004775 set1  0x00000025 , 0x00000000 
+ 00024341  0x00004776 bpatch  0x0000006e , 0x0000402d 
+ 00024342  0x00004777 disable  0x00000028 
+ 00024343  0x00004778 setarg  0x00000000 
+ 00024344  0x00004779 store  0x00000006 , 0x0000472a 
+ 00024345  0x0000477a call  0x00005f1e 
+ 00024346  0x0000477b call  0x00005f87 
+ 00024347  0x0000477c call  0x00005f61 
+ 00024348  0x0000477d call  0x00005f67 
+ 00024349  0x0000477e branch  0x00005f7f 
+ 00024350  0x00004781 fetch  0x00000001 , 0x00004735 
+ 00024351  0x00004782 call  0x00005f5a , 0x00000034 
+ 00024352  0x00004783 jam  0x00000001 , 0x00004735 
+ 00024353  0x00004784 disable  0x00000028 
+ 00024354  0x00004785 fetcht  0x00000001 , 0x00004753 
+ 00024355  0x00004786 call  0x000064f5 
+ 00024356  0x00004787 nrtn  0x00000001 
+ 00024357  0x00004788 setarg  0x00000000 
+ 00024358  0x00004789 call  0x000060ec 
+ 00024359  0x0000478b setarg  0x00000002 
+ 00024360  0x0000478c call  0x000060ec 
+ 00024361  0x0000478d rtnbit0  0x00000007 
+ 00024362  0x0000478e setarg  0x00000003 
+ 00024363  0x0000478f call  0x000060ec 
+ 00024364  0x00004790 call  0x00005fbb 
+ 00024365  0x00004791 store  0x00000002 , 0x0000472a 
+ 00024366  0x00004792 setarg  0x00000004 
+ 00024367  0x00004793 call  0x000060ec 
+ 00024368  0x00004794 call  0x00005fbb 
+ 00024369  0x00004795 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00024370  0x00004796 store  0x00000002 , 0x0000472c 
+ 00024371  0x00004797 fetch  0x00000004 , 0x0000472a 
+ 00024372  0x00004798 enable  0x00000028 
+ 00024373  0x00004799 rtn 
+ 00024374  0x0000479c call  0x000060e7 
+ 00024375  0x0000479d call  0x00005f5a 
+ 00024376  0x0000479e arg  0x00000005 , 0x0000003f 
+ 00024377  0x0000479f call  0x000060ec 
+ 00024378  0x000047a0 store  0x00000001 , 0x00004730 
+ 00024379  0x000047a1 arg  0x00000007 , 0x0000003f 
+ 00024380  0x000047a2 call  0x000060ec 
+ 00024381  0x000047a3 store  0x00000001 , 0x00004731 
+ 00024382  0x000047a4 arg  0x00000008 , 0x0000003f 
+ 00024383  0x000047a5 call  0x000060ec 
+ 00024384  0x000047a6 store  0x00000001 , 0x00004732 
+ 00024385  0x000047a7 branch  0x000060e9 
+ 00024386  0x000047ab fetch  0x00000001 , 0x00004731 
+ 00024387  0x000047ac rtnne  0x00000000 
+ 00024388  0x000047ad fetch  0x00000001 , 0x00004732 
+ 00024389  0x000047ae sub  0x0000003f , 0x0000002d , 0x0000003e 
+ 00024390  0x000047af rtn  0x00000002 
+ 00024391  0x000047b0 jam  0x00000000 , 0x00004733 
+ 00024392  0x000047b1 setarg  0x0000ba41 
+ 00024393  0x000047b2 call  0x000060db 
+ 00024394  0x000047b3 setarg  0x00000032 
+ 00024395  0x000047b4 call  0x000060db 
+ 00024396  0x000047b5 setarg  0x0000b541 
+ 00024397  0x000047b6 branch  0x000060db 
+ 00024398  0x000047b8 fetch  0x00000001 , 0x00004731 
+ 00024399  0x000047b9 rtnne  0x00000000 
+ 00024400  0x000047ba fetch  0x00000001 , 0x00004732 
+ 00024401  0x000047bb sub  0x0000003f , 0x0000002d , 0x0000003e 
+ 00024402  0x000047bc nrtn  0x00000002 
+ 00024403  0x000047bd jam  0x00000001 , 0x00004733 
+ 00024404  0x000047be setarg  0x0000ba41 
+ 00024405  0x000047bf call  0x000060db 
+ 00024406  0x000047c0 setarg  0x00008032 
+ 00024407  0x000047c1 call  0x000060db 
+ 00024408  0x000047c2 setarg  0x0000b541 
+ 00024409  0x000047c3 branch  0x000060db 
+ 00024410  0x000047c8 arg  0x00000003 , 0x0000003f 
+ 00024411  0x000047c9 call  0x000060ec 
+ 00024412  0x000047ca store  0x00000002 , 0x0000472a 
+ 00024413  0x000047cb arg  0x00000004 , 0x0000003f 
+ 00024414  0x000047cc call  0x000060ec 
+ 00024415  0x000047cd store  0x00000002 , 0x0000472c 
+ 00024416  0x000047ce rtn 
+ 00024417  0x000047d1 fetch  0x00000001 , 0x00004768 
+ 00024418  0x000047d2 rtn  0x00000034 
+ 00024419  0x000047d3 store  0x00000001 , 0x0000472e 
+ 00024420  0x000047d4 jam  0x00000000 , 0x00004768 
+ 00024421  0x000047d5 enable  0x00000028 
+ 00024422  0x000047d6 rtn 
+ 00024423  0x000047d8 fetch  0x00000001 , 0x00004760 
+ 00024424  0x000047d9 rtn  0x00000034 
+ 00024425  0x000047da store  0x00000001 , 0x0000472f 
+ 00024426  0x000047db jam  0x00000000 , 0x00004760 
+ 00024427  0x000047dc enable  0x00000028 
+ 00024428  0x000047dd rtn 
+ 00024429  0x000047df arg  0x00000000 , 0x00000011 
+ 00024430  0x000047e0 fetcht  0x00000001 , 0x0000474d 
+ 00024431  0x000047e1 call  0x000064f5 
+ 00024432  0x000047e2 setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00024433  0x000047e3 fetcht  0x00000001 , 0x0000474e 
+ 00024434  0x000047e4 call  0x000064f5 
+ 00024435  0x000047e5 setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00024436  0x000047e6 fetcht  0x00000001 , 0x0000474f 
+ 00024437  0x000047e7 call  0x000064f5 
+ 00024438  0x000047e8 setflag  0x00000001 , 0x00000002 , 0x00000011 
+ 00024439  0x000047e9 fetcht  0x00000001 , 0x00004750 
+ 00024440  0x000047ea call  0x000064f5 
+ 00024441  0x000047eb setflag  0x00000001 , 0x00000003 , 0x00000011 
+ 00024442  0x000047ec fetcht  0x00000001 , 0x00004751 
+ 00024443  0x000047ed call  0x000064f5 
+ 00024444  0x000047ee setflag  0x00000001 , 0x00000004 , 0x00000011 
+ 00024445  0x000047ef copy  0x00000011 , 0x0000003f 
+ 00024446  0x000047f0 rtn 
+ 00024447  0x000047f2 call  0x00005f6d 
+ 00024448  0x000047f3 fetcht  0x00000001 , 0x00004729 
+ 00024449  0x000047f4 store  0x00000001 , 0x00004729 
+ 00024450  0x000047f5 ixor  0x00000002 , 0x0000003f 
+ 00024451  0x000047f6 sub  0x0000003f , 0x00000000 , 0x0000003e 
+ 00024452  0x000047f7 rtn  0x00000005 
+ 00024453  0x000047f8 enable  0x00000028 
+ 00024454  0x000047f9 rtn 
+ 00024455  0x000047ff arg  0x0000001a , 0x00000002 
+ 00024456  0x00004800 call  0x000064f5 
+ 00024457  0x00004801 rtn  0x00000001 
+ 00024458  0x00004802 setarg  0x0000000a 
+ 00024459  0x00004803 call  0x000060ec 
+ 00024460  0x00004804 nop  0x000003e8 
+ 00024461  0x00004805 branch  0x00005f87 
+ 00024462  0x00004808 call  0x000061ac 
+ 00024463  0x00004809 rtn  0x0000002b 
+ 00024464  0x0000480b setarg  0x00000000 
+ 00024465  0x0000480c call  0x000060ec 
+ 00024466  0x0000480d store  0x00000001 , 0x0000024b 
+ 00024467  0x0000480e beq  0x00000030 , 0x00005f98 
+ 00024468  0x00004810 beq  0x00000031 , 0x00005f98 
+ 00024469  0x00004811 call  0x000060c0 
+ 00024470  0x00004812 nop  0x000003e8 
+ 00024471  0x00004813 branch  0x00005f90 
+ 00024472  0x00004815 setarg  0x00008006 
+ 00024473  0x00004816 call  0x000060eb 
+ 00024474  0x00004817 nop  0x000003e8 
+ 00024475  0x00004818 rtn 
+ 00024476  0x0000481b fetcht  0x00000001 , 0x00004756 
+ 00024477  0x0000481c call  0x000064ff 
+ 00024478  0x0000481d call  0x00007e89 
+ 00024479  0x0000481e fetcht  0x00000001 , 0x00004756 
+ 00024480  0x0000481f call  0x000064fd 
+ 00024481  0x00004820 branch  0x00007e89 
+ 00024482  0x00004823 setarg  0x0000ba41 
+ 00024483  0x00004824 call  0x000060db 
+ 00024484  0x00004825 setarg  0x00000d11 
+ 00024485  0x00004826 call  0x000060db 
+ 00024486  0x00004827 setarg  0x0000041b 
+ 00024487  0x00004828 call  0x000060db 
+ 00024488  0x00004829 setarg  0x0000041c 
+ 00024489  0x0000482a call  0x000060db 
+ 00024490  0x0000482b setarg  0x00000f1d 
+ 00024491  0x0000482c call  0x000060db 
+ 00024492  0x0000482d setarg  0x00000032 
+ 00024493  0x0000482e call  0x000060db 
+ 00024494  0x0000482f setarg  0x0000b541 
+ 00024495  0x00004830 branch  0x000060db 
+ 00024496  0x00004835 setarg  0x0000ba41 
+ 00024497  0x00004836 call  0x000060db 
+ 00024498  0x00004837 nop  0x00000fa0 
+ 00024499  0x00004838 setarg  0x0000ff7f 
+ 00024500  0x00004839 call  0x000060db 
+ 00024501  0x0000483a copy  0x00000011 , 0x0000003f 
+ 00024502  0x0000483b call  0x000060db 
+ 00024503  0x0000483c setarg  0x0000007f 
+ 00024504  0x0000483d call  0x000060db 
+ 00024505  0x0000483e setarg  0x0000b541 
+ 00024506  0x0000483f branch  0x000060db 
+ 00024507  0x00004842 rtnbit0  0x00000007 
+ 00024508  0x00004843 arg  0x0000ff00 , 0x00000002 
+ 00024509  0x00004844 ior  0x00000002 , 0x0000003f 
+ 00024510  0x00004845 rtn 
+ 00024511  0x00004848 rtnbit0  0x00000003 
+ 00024512  0x00004849 arg  0x000000f0 , 0x00000002 
+ 00024513  0x0000484a ior  0x00000002 , 0x0000003f 
+ 00024514  0x0000484b rtn 
+ 00024515  0x0000484e call  0x00004bd4 
+ 00024516  0x0000484f nrtn  0x00000034 
+ 00024517  0x00004850 fetch  0x00000001 , 0x0000474c 
+ 00024518  0x00004851 store  0x00000001 , 0x000044f8 
+ 00024519  0x00004852 fetcht  0x00000002 , 0x000044f8 
+ 00024520  0x00004853 call  0x00004f6a 
+ 00024521  0x00004854 rtnbit0  0x00000000 
+ 00024522  0x00004855 fetch  0x00000001 , 0x00004595 
+ 00024523  0x00004856 rtnbit0  0x00000000 
+ 00024524  0x00004857 call  0x00005f14 
+ 00024525  0x00004858 nrtn  0x00000028 
+ 00024526  0x00004859 call  0x00005efa 
+ 00024527  0x0000485a fetch  0x00000001 , 0x0000474c 
+ 00024528  0x0000485b store  0x00000001 , 0x000044f8 
+ 00024529  0x0000485c jam  0x0000001b , 0x000009bd 
+ 00024530  0x0000485d call  0x00004bd6 
+ 00024531  0x0000485e branch  0x00005f0c 
+ 00024532  0x00004861 copy  0x00000013 , 0x0000003f 
+ 00024533  0x00004862 beq  0x00000014 , 0x00005fe7 
+ 00024534  0x00004863 beq  0x00000001 , 0x00006084 
+ 00024535  0x00004864 beq  0x00000015 , 0x00005ff6 
+ 00024536  0x00004865 beq  0x00000002 , 0x00005ff6 
+ 00024537  0x00004866 beq  0x00000005 , 0x00005ff5 
+ 00024538  0x00004867 beq  0x00000010 , 0x00006048 
+ 00024539  0x00004868 beq  0x00000012 , 0x00006068 
+ 00024540  0x00004869 beq  0x00000006 , 0x00005ff3 
+ 00024541  0x0000486a beq  0x00000028 , 0x00005edb 
+ 00024542  0x0000486b beq  0x00000029 , 0x00005ede 
+ 00024543  0x0000486c beq  0x00000004 , 0x00005ff0 
+ 00024544  0x0000486d beq  0x00000013 , 0x00005ff0 
+ 00024545  0x0000486e beq  0x0000000a , 0x00005fee 
+ 00024546  0x0000486f beq  0x0000002e , 0x00003e32 
+ 00024547  0x00004870 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00024548  0x00004871 and_into  0x000000f0 , 0x0000003f 
+ 00024549  0x00004872 beq  0x00000050 , 0x00006014 
+ 00024550  0x00004873 rtn 
+ 00024551  0x00004876 fetch  0x00000002 , 0x000042af 
+ 00024552  0x00004877 set0  0x00000000 , 0x0000003f 
+ 00024553  0x00004878 store  0x00000002 , 0x000042af 
+ 00024554  0x00004879 setarg  0x00000000 
+ 00024555  0x0000487a store  0x00000002 , 0x0000473f 
+ 00024556  0x0000487b call  0x00005efa 
+ 00024557  0x0000487c branch  0x00006084 
+ 00024558  0x0000487f call  0x000059d7 
+ 00024559  0x00004880 branch  0x00003e45 
+ 00024560  0x00004883 fetch  0x00000002 , 0x0000470b 
+ 00024561  0x00004884 bbit1  0x0000000c , 0x00006074 
+ 00024562  0x00004885 branch  0x00003e0a 
+ 00024563  0x00004889 call  0x00005edf 
+ 00024564  0x0000488a rtn 
+ 00024565  0x0000488c rtn 
+ 00024566  0x0000488f set1  0x00000025 , 0x00000000 
+ 00024567  0x00004890 bpatch  0x0000006f , 0x0000402d 
+ 00024568  0x00004891 call  0x00006000 
+ 00024569  0x00004892 fetch  0x00000002 , 0x000042ad 
+ 00024570  0x00004893 bbit1  0x00000007 , 0x00006010 
+ 00024571  0x00004894 bbit1  0x00000000 , 0x00003e0c 
+ 00024572  0x00004895 bbit1  0x00000001 , 0x0000600a 
+ 00024573  0x00004896 bbit1  0x00000002 , 0x0000600d 
+ 00024574  0x00004897 bbit1  0x00000003 , 0x0000600d 
+ 00024575  0x00004898 branch  0x00006074 
+ 00024576  0x0000489a setarg  0x00000000 
+ 00024577  0x0000489b store  0x00000008 , 0x0000475b 
+ 00024578  0x0000489c istore  0x00000008 , 0x00000005 
+ 00024579  0x0000489d jam  0x00000000 , 0x00004745 
+ 00024580  0x0000489e jam  0x00000000 , 0x00004735 
+ 00024581  0x0000489f jam  0x00000000 , 0x00004283 
+ 00024582  0x000048a0 jam  0x00000000 , 0x000044b2 
+ 00024583  0x000048a1 jam  0x00000000 , 0x0000474b 
+ 00024584  0x000048a2 jam  0x00000000 , 0x00004736 
+ 00024585  0x000048a3 rtn 
+ 00024586  0x000048a6 bbit1  0x00000005 , 0x0000600d 
+ 00024587  0x000048a7 bbit1  0x00000003 , 0x0000600d 
+ 00024588  0x000048a8 branch  0x00006074 
+ 00024589  0x000048aa fetch  0x00000002 , 0x0000470b 
+ 00024590  0x000048ab bbit1  0x0000000c , 0x00006074 
+ 00024591  0x000048ac branch  0x00003e0a 
+ 00024592  0x000048af call  0x000052a0 
+ 00024593  0x000048b0 fetch  0x00000002 , 0x000042ad 
+ 00024594  0x000048b1 bbit1  0x00000000 , 0x00003e0c 
+ 00024595  0x000048b2 branch  0x00003e0a 
+ 00024596  0x000048b5 set1  0x00000025 , 0x00000000 
+ 00024597  0x000048b6 bpatch  0x00000070 , 0x0000402e 
+ 00024598  0x000048b7 storet  0x00000001 , 0x0000024e 
+ 00024599  0x000048b9 fetch  0x00000001 , 0x0000024e 
+ 00024600  0x000048ba rtn  0x00000034 
+ 00024601  0x000048bb increase  0xffffffff , 0x0000003f 
+ 00024602  0x000048bc store  0x00000001 , 0x0000024e 
+ 00024603  0x000048bd call  0x00006027 
+ 00024604  0x000048be call  0x0000602d 
+ 00024605  0x000048bf call  0x00006034 
+ 00024606  0x000048c0 call  0x00006042 
+ 00024607  0x000048c1 call  0x00006021 
+ 00024608  0x000048c2 branch  0x00006017 
+ 00024609  0x000048c5 fetch  0x00000001 , 0x0000476c 
+ 00024610  0x000048c6 rtn  0x00000034 
+ 00024611  0x000048c7 pincrease  0xffffffff 
+ 00024612  0x000048c8 store  0x00000001 , 0x0000476c 
+ 00024613  0x000048c9 nrtn  0x00000034 
+ 00024614  0x000048ca branch  0x000060aa 
+ 00024615  0x000048ce fetch  0x00000001 , 0x00004709 
+ 00024616  0x000048cf rtn  0x00000034 
+ 00024617  0x000048d0 increase  0xffffffff , 0x0000003f 
+ 00024618  0x000048d1 store  0x00000001 , 0x00004709 
+ 00024619  0x000048d2 nrtn  0x00000034 
+ 00024620  0x000048d3 branch  0x00006068 
+ 00024621  0x000048d6 fetch  0x00000002 , 0x0000473d 
+ 00024622  0x000048d7 rtn  0x00000034 
+ 00024623  0x000048d8 increase  0xffffffff , 0x0000003f 
+ 00024624  0x000048d9 store  0x00000002 , 0x0000473d 
+ 00024625  0x000048da nrtn  0x00000034 
+ 00024626  0x000048db call  0x00006084 
+ 00024627  0x000048dc branch  0x00003e75 
+ 00024628  0x000048df fetch  0x00000002 , 0x0000473f 
+ 00024629  0x000048e0 rtn  0x00000034 
+ 00024630  0x000048e1 increase  0xffffffff , 0x0000003f 
+ 00024631  0x000048e2 store  0x00000002 , 0x0000473f 
+ 00024632  0x000048e3 nrtn  0x00000034 
+ 00024633  0x000048e4 call  0x00003e5f 
+ 00024634  0x000048e5 branch  0x00003e75 
+ 00024635  0x000048e8 fetch  0x00000002 , 0x00004743 
+ 00024636  0x000048e9 rtn  0x00000034 
+ 00024637  0x000048ea increase  0xffffffff , 0x0000003f 
+ 00024638  0x000048eb store  0x00000002 , 0x00004743 
+ 00024639  0x000048ec nrtn  0x00000034 
+ 00024640  0x000048ed jam  0x00000000 , 0x00004745 
+ 00024641  0x000048ee rtn 
+ 00024642  0x000048f1 fetch  0x00000002 , 0x00004741 
+ 00024643  0x000048f2 rtn  0x00000034 
+ 00024644  0x000048f3 increase  0xffffffff , 0x0000003f 
+ 00024645  0x000048f4 store  0x00000002 , 0x00004741 
+ 00024646  0x000048f5 nrtn  0x00000034 
+ 00024647  0x000048f6 branch  0x0000608f 
+ 00024648  0x000048f9 set1  0x00000025 , 0x00000000 
+ 00024649  0x000048fa bpatch  0x00000071 , 0x0000402e 
+ 00024650  0x000048fb jam  0x00000000 , 0x00004745 
+ 00024651  0x000048fc jam  0x00000001 , 0x00004736 
+ 00024652  0x000048fd setarg  0x00000000 
+ 00024653  0x000048fe store  0x00000002 , 0x0000473f 
+ 00024654  0x000048ff call  0x0000608f 
+ 00024655  0x00004900 fetch  0x00000001 , 0x00004132 
+ 00024656  0x00004901 isolate1  0x00000001 , 0x0000003f 
+ 00024657  0x00004902 call  0x00006066 , 0x00000001 
+ 00024658  0x00004903 fetch  0x00000001 , 0x00004132 
+ 00024659  0x00004904 isolate1  0x00000000 , 0x0000003f 
+ 00024660  0x00004905 call  0x00006062 , 0x00000001 
+ 00024661  0x00004906 call  0x00003e81 
+ 00024662  0x00004907 branch  0x00006074 
+ 00024663  0x0000490c fetch  0x00000006 , 0x00004273 
+ 00024664  0x0000490d branch  0x00003e54 , 0x00000034 
+ 00024665  0x0000490e branch  0x00003e49 
+ 00024666  0x00004911 fetch  0x00000006 , 0x00004273 
+ 00024667  0x00004912 branch  0x00006060 , 0x00000034 
+ 00024668  0x00004913 fetch  0x00000002 , 0x00004737 
+ 00024669  0x00004914 store  0x00000002 , 0x0000473f 
+ 00024670  0x00004915 call  0x00003e7f 
+ 00024671  0x00004916 branch  0x00003e5d 
+ 00024672  0x00004918 call  0x00003e6f 
+ 00024673  0x00004919 branch  0x00003e63 
+ 00024674  0x0000491c fetch  0x00000002 , 0x0000470b 
+ 00024675  0x0000491d isolate1  0x00000007 , 0x0000003f 
+ 00024676  0x0000491e call  0x00003e50 , 0x00000001 
+ 00024677  0x0000491f rtn 
+ 00024678  0x00004921 call  0x000052a0 
+ 00024679  0x00004922 rtn 
+ 00024680  0x00004925 jam  0x00000001 , 0x00004283 
+ 00024681  0x00004926 call  0x00003e7f 
+ 00024682  0x00004927 call  0x00003e7d 
+ 00024683  0x00004928 jam  0x00000001 , 0x0000474b 
+ 00024684  0x00004929 setarg  0x00000000 
+ 00024685  0x0000492a store  0x00000002 , 0x00004707 
+ 00024686  0x0000492b store  0x00000001 , 0x00004709 
+ 00024687  0x0000492c branch  0x00003e79 
+ 00024688  0x0000492f fetch  0x00000001 , 0x000042b5 
+ 00024689  0x00004930 beq  0x00000033 , 0x00006057 
+ 00024690  0x00004931 beq  0x00000034 , 0x0000605a 
+ 00024691  0x00004932 branch  0x00006074 
+ 00024692  0x00004935 set1  0x00000025 , 0x00000000 
+ 00024693  0x00004936 bpatch  0x00000072 , 0x0000402e 
+ 00024694  0x00004937 fetch  0x00000002 , 0x0000470b 
+ 00024695  0x00004938 bbit1  0x0000000b , 0x0000607a 
+ 00024696  0x00004939 random  0x0000003f 
+ 00024697  0x0000493a store  0x00000001 , 0x0000453f 
+ 00024698  0x0000493c call  0x00003e81 
+ 00024699  0x0000493d fetch  0x00000002 , 0x00004716 
+ 00024700  0x0000493e store  0x00000002 , 0x0000473d 
+ 00024701  0x0000493f fetch  0x00000001 , 0x00004132 
+ 00024702  0x00004940 isolate1  0x00000001 , 0x0000003f 
+ 00024703  0x00004941 call  0x00003e63 , 0x00000001 
+ 00024704  0x00004942 fetch  0x00000001 , 0x00004132 
+ 00024705  0x00004943 isolate1  0x00000000 , 0x0000003f 
+ 00024706  0x00004944 call  0x00003e57 , 0x00000001 
+ 00024707  0x00004945 branch  0x00003e6f 
+ 00024708  0x00004948 set1  0x00000025 , 0x00000000 
+ 00024709  0x00004949 bpatch  0x00000073 , 0x0000402e 
+ 00024710  0x0000494a setarg  0x00000000 
+ 00024711  0x0000494b store  0x00000002 , 0x0000473d 
+ 00024712  0x0000494c fetch  0x00000001 , 0x00004132 
+ 00024713  0x0000494d isolate1  0x00000001 , 0x0000003f 
+ 00024714  0x0000494e call  0x00003e61 , 0x00000001 
+ 00024715  0x0000494f fetch  0x00000001 , 0x00004132 
+ 00024716  0x00004950 isolate1  0x00000000 , 0x0000003f 
+ 00024717  0x00004951 call  0x00003e59 , 0x00000001 
+ 00024718  0x00004952 branch  0x00003e73 
+ 00024719  0x00004955 set1  0x00000025 , 0x00000000 
+ 00024720  0x00004956 bpatch  0x00000074 , 0x0000402e 
+ 00024721  0x00004957 setarg  0x00000000 
+ 00024722  0x00004958 store  0x00000002 , 0x00004741 
+ 00024723  0x00004959 fetch  0x00000002 , 0x0000470b 
+ 00024724  0x0000495a bbit1  0x00000009 , 0x00003e6b 
+ 00024725  0x0000495b fetch  0x00000002 , 0x0000470b 
+ 00024726  0x0000495c bbit1  0x00000000 , 0x00003e52 
+ 00024727  0x0000495d rtn 
+ 00024728  0x00004960 set1  0x00000025 , 0x00000000 
+ 00024729  0x00004961 bpatch  0x00000075 , 0x0000402e 
+ 00024730  0x00004962 arg  0x00000001 , 0x00000002 
+ 00024731  0x00004963 arg  0x00004746 , 0x00000011 
+ 00024732  0x00004964 arg  0x000000c6 , 0x00000012 
+ 00024733  0x00004965 branch  0x0000626f 
+ 00024734  0x00004968 set1  0x00000025 , 0x00000000 
+ 00024735  0x00004969 bpatch  0x00000076 , 0x0000402e 
+ 00024736  0x0000496a arg  0x00000001 , 0x00000002 
+ 00024737  0x0000496b arg  0x00004746 , 0x00000011 
+ 00024738  0x0000496c arg  0x000000c6 , 0x00000012 
+ 00024739  0x0000496d branch  0x00006245 
+ 00024740  0x00004972 set1  0x00000025 , 0x00000000 
+ 00024741  0x00004973 bpatch  0x00000077 , 0x0000402e 
+ 00024742  0x00004974 fetch  0x00000001 , 0x00004734 
+ 00024743  0x00004975 call  0x000060d1 
+ 00024744  0x00004976 beq  0x00000000 , 0x000060b0 
+ 00024745  0x00004977 rtn 
+ 00024746  0x0000497a fetcht  0x00000001 , 0x00004757 
+ 00024747  0x0000497b call  0x000064fd 
+ 00024748  0x0000497c fetcht  0x00000001 , 0x00004758 
+ 00024749  0x0000497d call  0x000064fd 
+ 00024750  0x0000497e fetcht  0x00000001 , 0x00004759 
+ 00024751  0x0000497f branch  0x000064fd 
+ 00024752  0x00004981 fetch  0x00000001 , 0x0000476b 
+ 00024753  0x00004982 rtn  0x00000034 
+ 00024754  0x00004983 jam  0x00000000 , 0x0000476b 
+ 00024755  0x00004984 jam  0x0000003c , 0x0000476c 
+ 00024756  0x00004985 call  0x000060aa 
+ 00024757  0x00004986 fetch  0x00000001 , 0x0000476d 
+ 00024758  0x00004987 beq  0x00000001 , 0x000060ba 
+ 00024759  0x00004988 beq  0x00000002 , 0x000060bc 
+ 00024760  0x00004989 beq  0x00000003 , 0x000060be 
+ 00024761  0x0000498a rtn 
+ 00024762  0x0000498c fetcht  0x00000001 , 0x00004757 
+ 00024763  0x0000498d branch  0x000064ff 
+ 00024764  0x0000498f fetcht  0x00000001 , 0x00004758 
+ 00024765  0x00004990 branch  0x000064ff 
+ 00024766  0x00004992 fetcht  0x00000001 , 0x00004759 
+ 00024767  0x00004993 branch  0x000064ff 
+ 00024768  0x0000499e set1  0x00000025 , 0x00000000 
+ 00024769  0x0000499f bpatch  0x00000078 , 0x0000402f 
+ 00024770  0x000049a0 hfetch  0x00000001 , 0x00008073 
+ 00024771  0x000049a1 arg  0x00000006 , 0x00000002 
+ 00024772  0x000049a2 ior  0x00000002 , 0x0000003f 
+ 00024773  0x000049a3 hstore  0x00000001 , 0x00008073 
+ 00024774  0x000049a4 hfetch  0x00000001 , 0x00008077 
+ 00024775  0x000049a5 ior  0x00000002 , 0x0000003f 
+ 00024776  0x000049a6 hstore  0x00000001 , 0x00008077 
+ 00024777  0x000049a7 hjam  0x00000000 , 0x00008081 
+ 00024778  0x000049a8 hfetch  0x00000001 , 0x00008077 
+ 00024779  0x000049a9 set0  0x00000001 , 0x0000003f 
+ 00024780  0x000049aa set0  0x00000002 , 0x0000003f 
+ 00024781  0x000049ab hstore  0x00000001 , 0x00008077 
+ 00024782  0x000049ac nop  0x0000001e 
+ 00024783  0x000049ad hjam  0x00000001 , 0x00008081 
+ 00024784  0x000049ae rtn 
+ 00024785  0x000049b3 copy  0x0000003f , 0x00000012 
+ 00024786  0x000049b4 call  0x000060e7 
+ 00024787  0x000049b5 nop  0x00000064 
+ 00024788  0x000049b6 copy  0x00000012 , 0x0000003f 
+ 00024789  0x000049b7 call  0x000060ec 
+ 00024790  0x000049b8 copy  0x0000003f , 0x00000012 
+ 00024791  0x000049b9 call  0x000060e9 
+ 00024792  0x000049ba nop  0x00000064 
+ 00024793  0x000049bb copy  0x00000012 , 0x0000003f 
+ 00024794  0x000049bc rtn 
+ 00024795  0x000049bf copy  0x0000003f , 0x00000012 
+ 00024796  0x000049c0 call  0x000060e7 
+ 00024797  0x000049c1 nop  0x00000064 
+ 00024798  0x000049c2 copy  0x00000012 , 0x0000003f 
+ 00024799  0x000049c3 call  0x000060eb 
+ 00024800  0x000049c4 call  0x000060e9 
+ 00024801  0x000049c5 nop  0x00000064 
+ 00024802  0x000049c6 rtn 
+ 00024803  0x000049ca fetch  0x00000001 , 0x000042bb 
+ 00024804  0x000049cb rtneq  0x000000ff 
+ 00024805  0x000049cc fetcht  0x00000001 , 0x000042bb 
+ 00024806  0x000049cd branch  0x000064e8 
+ 00024807  0x000049d1 fetcht  0x00000001 , 0x000042bb 
+ 00024808  0x000049d2 branch  0x000064ff 
+ 00024809  0x000049d6 fetcht  0x00000001 , 0x000042bb 
+ 00024810  0x000049d7 branch  0x000064fd 
+ 00024811  0x000049db branch  0x000061c1 
+ 00024812  0x000049e0 branch  0x000061c9 
+ 00024813  0x000049e8 nbranch  0x000060f1 , 0x00000028 
+ 00024814  0x000049e9 hfetch  0x00000001 , 0x00008085 
+ 00024815  0x000049ea or_into  0x00000020 , 0x0000003f 
+ 00024816  0x000049eb hstore  0x00000001 , 0x00008085 
+ 00024817  0x000049ed copy  0x00000002 , 0x0000003e 
+ 00024818  0x000049ee branch  0x000060f4 , 0x00000005 
+ 00024819  0x000049ef copy  0x00000013 , 0x0000003d 
+ 00024820  0x000049f1 isolate0  0x00000000 , 0x0000003e 
+ 00024821  0x000049f2 branch  0x0000618e 
+ 00024822  0x000049f6 force  0x00000004 , 0x00000002 
+ 00024823  0x000049f8 arg  0x00000221 , 0x00000011 
+ 00024824  0x000049f9 hfetch  0x00000001 , 0x00008085 
+ 00024825  0x000049fa and_into  0x000000df , 0x0000003f 
+ 00024826  0x000049fb hstore  0x00000001 , 0x00008085 
+ 00024827  0x000049fc call  0x000060f1 
+ 00024828  0x000049fd arg  0x000055aa , 0x00000011 
+ 00024829  0x000049fe fetch  0x00000002 , 0x00000221 
+ 00024830  0x000049ff ifetcht  0x00000002 , 0x00000006 
+ 00024831  0x00004a00 isub  0x00000011 , 0x0000003e 
+ 00024832  0x00004a01 rtn 
+ 00024833  0x00004a04 arg  0x00000002 , 0x00000002 
+ 00024834  0x00004a05 arg  0x00000227 , 0x00000011 
+ 00024835  0x00004a06 call  0x000060f1 
+ 00024836  0x00004a07 fetch  0x00000002 , 0x00000227 
+ 00024837  0x00004a08 store  0x00000002 , 0x0000021a 
+ 00024838  0x00004a09 call  0x00006108 , 0x00000028 
+ 00024839  0x00004a0a rtn 
+ 00024840  0x00004a0d arg  0x00000010 , 0x00000002 
+ 00024841  0x00004a0e arg  0x00000229 , 0x00000011 
+ 00024842  0x00004a0f hfetch  0x00000001 , 0x00008085 
+ 00024843  0x00004a10 and_into  0x000000df , 0x0000003f 
+ 00024844  0x00004a11 hstore  0x00000001 , 0x00008085 
+ 00024845  0x00004a12 call  0x000060f1 
+ 00024846  0x00004a13 arg  0x00000229 , 0x00000006 
+ 00024847  0x00004a14 arg  0x00000010 , 0x00000039 
+ 00024848  0x00004a15 call  0x000071a1 
+ 00024849  0x00004a16 call  0x00007150 
+ 00024850  0x00004a17 call  0x000071ba 
+ 00024851  0x00004a18 branch  0x0000714a 
+ 00024852  0x00004a1b disable  0x0000002d 
+ 00024853  0x00004a1c call  0x000060f6 
+ 00024854  0x00004a1d nrtn  0x00000005 
+ 00024855  0x00004a1e enable  0x0000002d 
+ 00024856  0x00004a1f hjam  0x00000080 , 0x00008023 
+ 00024857  0x00004a20 hjam  0x00000000 , 0x00008022 
+ 00024858  0x00004a21 hjam  0x00000000 , 0x00008024 
+ 00024859  0x00004a22 arg  0x00008025 , 0x00000011 
+ 00024860  0x00004a23 call  0x000060ed 
+ 00024861  0x00004a24 hjam  0x00000000 , 0x00008023 
+ 00024862  0x00004a25 call  0x000060f6 
+ 00024863  0x00004a26 nrtn  0x00000005 
+ 00024864  0x00004a27 force  0x00000000 , 0x0000003f 
+ 00024865  0x00004a28 hstore  0x00000002 , 0x00008288 
+ 00024866  0x00004a29 arg  0x0000828a , 0x00000011 
+ 00024867  0x00004a2a call  0x000060ed 
+ 00024868  0x00004a2c arg  0x00000006 , 0x00000002 
+ 00024869  0x00004a2d call  0x000060f7 
+ 00024870  0x00004a2e nrtn  0x00000005 
+ 00024871  0x00004a2f ifetch  0x00000002 , 0x00000006 
+ 00024872  0x00004a30 iforce  0x00000011 
+ 00024873  0x00004a31 call  0x000060f1 
+ 00024874  0x00004a32 branch  0x00006124 
+ 00024875  0x00004a39 set1  0x00000025 , 0x00000000 
+ 00024876  0x00004a3a bpatch  0x00000079 , 0x0000402f 
+ 00024877  0x00004a3b call  0x00007f66 
+ 00024878  0x00004a3c setarg  0x00001000 
+ 00024879  0x00004a3d store  0x00000002 , 0x0000021a 
+ 00024880  0x00004a3e arg  0x0000624c , 0x00000013 
+ 00024881  0x00004a3f arg  0x00000002 , 0x00000039 
+ 00024882  0x00004a41 call  0x000060f6 
+ 00024883  0x00004a42 nrtn  0x00000005 
+ 00024884  0x00004a43 fetch  0x00000002 , 0x0000021a 
+ 00024885  0x00004a44 byteswap  0x0000003f , 0x0000003f 
+ 00024886  0x00004a45 iadd  0x00000002 , 0x0000003f 
+ 00024887  0x00004a46 byteswap  0x0000003f , 0x0000003f 
+ 00024888  0x00004a47 store  0x00000002 , 0x0000021a 
+ 00024889  0x00004a48 loop  0x00006132 
+ 00024890  0x00004a49 branch  0x00006124 
+ 00024891  0x00004a4c hjam  0x00000025 , 0x00008050 
+ 00024892  0x00004a4d hjam  0x00000005 , 0x00008280 
+ 00024893  0x00004a4e call  0x00007f66 
+ 00024894  0x00004a4f set1  0x00000025 , 0x00000000 
+ 00024895  0x00004a50 bpatch  0x0000007a , 0x0000402f 
+ 00024896  0x00004a52 disable  0x00000028 
+ 00024897  0x00004a53 call  0x000062c4 
+ 00024898  0x00004a54 setarg  0x00000000 
+ 00024899  0x00004a55 arg  0x00000216 , 0x00000011 
+ 00024900  0x00004a56 arg  0x00000002 , 0x00000002 
+ 00024901  0x00004a57 call  0x0000630d 
+ 00024902  0x00004a58 fetch  0x00000002 , 0x00000216 
+ 00024903  0x00004a59 bbit0  0x00000007 , 0x00006150 
+ 00024904  0x00004a5a setarg  0x000007f0 
+ 00024905  0x00004a5b arg  0x00000229 , 0x00000011 
+ 00024906  0x00004a5c arg  0x00000010 , 0x00000002 
+ 00024907  0x00004a5d call  0x0000630d 
+ 00024908  0x00004a5e hjam  0x00000008 , 0x00008006 
+ 00024909  0x00004a5f arg  0x00000229 , 0x00000006 
+ 00024910  0x00004a60 call  0x000071ad 
+ 00024911  0x00004a61 enable  0x00000028 
+ 00024912  0x00004a63 set1  0x00000025 , 0x00000000 
+ 00024913  0x00004a64 bpatch  0x0000007b , 0x0000402f 
+ 00024914  0x00004a65 fetch  0x00000002 , 0x00000216 
+ 00024915  0x00004a66 byteswap  0x0000003f , 0x0000003f 
+ 00024916  0x00004a67 arg  0x000007ff , 0x00000002 
+ 00024917  0x00004a68 iand  0x00000002 , 0x0000003f 
+ 00024918  0x00004a69 branch  0x0000615e , 0x00000005 
+ 00024919  0x00004a6a call  0x000062c9 
+ 00024920  0x00004a6b arg  0x00006312 , 0x00000013 
+ 00024921  0x00004a6c call  0x00006108 , 0x00000028 
+ 00024922  0x00004a6d call  0x00006114 
+ 00024923  0x00004a6e fetch  0x00000001 , 0x00000215 
+ 00024924  0x00004a6f compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00024925  0x00004a70 nbranch  0x00006150 , 0x00000001 
+ 00024926  0x00004a72 set1  0x00000025 , 0x00000000 
+ 00024927  0x00004a73 bpatch  0x0000007c , 0x0000402f 
+ 00024928  0x00004a74 call  0x000062c7 
+ 00024929  0x00004a75 fetch  0x00000001 , 0x00000216 
+ 00024930  0x00004a76 bbit1  0x00000005 , 0x0000616d 
+ 00024931  0x00004a77 setarg  0x00000000 
+ 00024932  0x00004a78 store  0x00000003 , 0x00000219 
+ 00024933  0x00004a79 call  0x000061d9 
+ 00024934  0x00004a7a arg  0x000061fb , 0x00000013 
+ 00024935  0x00004a7b call  0x00006101 
+ 00024936  0x00004a7c call  0x00006114 
+ 00024937  0x00004a7d nbranch  0x0000616d , 0x0000002d 
+ 00024938  0x00004a7e fetch  0x00000001 , 0x00000215 
+ 00024939  0x00004a7f compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00024940  0x00004a80 nbranch  0x0000615e , 0x00000001 
+ 00024941  0x00004a82 set1  0x00000025 , 0x00000000 
+ 00024942  0x00004a83 bpatch  0x0000007d , 0x0000402f 
+ 00024943  0x00004a84 call  0x00006236 
+ 00024944  0x00004a85 fetch  0x00000001 , 0x00000216 
+ 00024945  0x00004a86 bbit1  0x00000006 , 0x00006180 
+ 00024946  0x00004a87 call  0x00006188 
+ 00024947  0x00004a88 nbranch  0x00006178 , 0x0000002d 
+ 00024948  0x00004a89 fetch  0x00000001 , 0x00000215 
+ 00024949  0x00004a8a compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00024950  0x00004a8b nbranch  0x0000616d , 0x00000001 
+ 00024951  0x00004a8c branch  0x00006180 
+ 00024952  0x00004a8e call  0x00006233 
+ 00024953  0x00004a8f fetch  0x00000001 , 0x00000216 
+ 00024954  0x00004a90 bbit1  0x00000006 , 0x00006180 
+ 00024955  0x00004a91 call  0x00006188 
+ 00024956  0x00004a92 nbranch  0x00006180 , 0x0000002d 
+ 00024957  0x00004a93 fetch  0x00000001 , 0x00000215 
+ 00024958  0x00004a94 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00024959  0x00004a95 nbranch  0x00006178 , 0x00000001 
+ 00024960  0x00004a97 force  0x00000004 , 0x00000038 
+ 00024961  0x00004a98 call  0x000071bb 
+ 00024962  0x00004a99 hjam  0x00000021 , 0x00008050 
+ 00024963  0x00004a9a fetch  0x00000001 , 0x00000216 
+ 00024964  0x00004a9b rtnbit0  0x00000004 
+ 00024965  0x00004a9c call  0x00003ecd 
+ 00024966  0x00004a9e call  0x00003ef4 
+ 00024967  0x00004a9f branch  0x00006186 
+ 00024968  0x00004aa3 setarg  0x00000000 
+ 00024969  0x00004aa4 store  0x00000002 , 0x0000021a 
+ 00024970  0x00004aa5 arg  0x0000624c , 0x00000013 
+ 00024971  0x00004aa6 call  0x0000621d 
+ 00024972  0x00004aa7 call  0x00006101 
+ 00024973  0x00004aa8 branch  0x00006114 
+ 00024974  0x00004aae fetch  0x00000001 , 0x00000215 
+ 00024975  0x00004aaf lshift  0x0000003f , 0x0000003f 
+ 00024976  0x00004ab0 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00024977  0x00004ab1 isolate0  0x0000000f , 0x00000011 
+ 00024978  0x00004ab2 rtn  0x00000001 
+ 00024979  0x00004ab3 store  0x00000001 , 0x00000215 
+ 00024980  0x00004ab4 rtn 
+ 00024981  0x00004ab8 hfetch  0x00000001 , 0x00008085 
+ 00024982  0x00004ab9 rtnbit0  0x00000005 
+ 00024983  0x00004aba branch  0x0000619b 
+ 00024984  0x00004abc hfetch  0x00000001 , 0x0000812c 
+ 00024985  0x00004abd qisolate1  0x0000003f 
+ 00024986  0x00004abe rtn  0x00000001 
+ 00024987  0x00004ac0 hfetch  0x00000001 , 0x00008108 
+ 00024988  0x00004ac1 bbit0  0x00000001 , 0x00006198 
+ 00024989  0x00004ac2 call  0x0000714a 
+ 00024990  0x00004ac3 branch  0x00006198 
+ 00024991  0x00004ac8 fetch  0x00000002 , 0x00004239 
+ 00024992  0x00004ac9 rtn  0x00000034 
+ 00024993  0x00004aca hjam  0x00000080 , 0x00008023 
+ 00024994  0x00004acb hjam  0x00000000 , 0x00008022 
+ 00024995  0x00004acc hjam  0x00000000 , 0x00008024 
+ 00024996  0x00004acd fetcht  0x00000002 , 0x0000423b 
+ 00024997  0x00004ace lshift2  0x00000002 , 0x00000039 
+ 00024998  0x00004acf iforce  0x00000006 
+ 00024999  0x00004ad1 ifetch  0x00000001 , 0x00000006 
+ 00025000  0x00004ad2 hstore  0x00000001 , 0x00008025 
+ 00025001  0x00004ad3 loop  0x000061a7 
+ 00025002  0x00004ad4 hjam  0x00000000 , 0x00008023 
+ 00025003  0x00004ad5 rtn 
+ 00025004  0x00004adb set1  0x00000025 , 0x00000000 
+ 00025005  0x00004adc bpatch  0x0000007e , 0x0000402f 
+ 00025006  0x00004add fetch  0x00000001 , 0x000042b9 
+ 00025007  0x00004ade hstore  0x00000001 , 0x00008086 
+ 00025008  0x00004adf fetch  0x00000001 , 0x000042ba 
+ 00025009  0x00004ae0 hstore  0x00000001 , 0x00008087 
+ 00025010  0x00004ae1 setarg  0x00000218 
+ 00025011  0x00004ae2 hstore  0x00000002 , 0x0000808a 
+ 00025012  0x00004ae3 setarg  0x0000021d 
+ 00025013  0x00004ae4 hstore  0x00000002 , 0x0000808c 
+ 00025014  0x00004ae5 hfetch  0x00000001 , 0x00008081 
+ 00025015  0x00004ae6 set1  0x00000000 , 0x0000003f 
+ 00025016  0x00004ae7 set0  0x00000001 , 0x0000003f 
+ 00025017  0x00004ae8 hstore  0x00000001 , 0x00008081 
+ 00025018  0x00004ae9 rtn 
+ 00025019  0x00004aec hfetch  0x00000001 , 0x00008086 
+ 00025020  0x00004aed set1  0x00000007 , 0x0000003f 
+ 00025021  0x00004aee hstore  0x00000001 , 0x00008086 
+ 00025022  0x00004aef set0  0x00000007 , 0x0000003f 
+ 00025023  0x00004af0 hstore  0x00000001 , 0x00008086 
+ 00025024  0x00004af1 rtn 
+ 00025025  0x00004af6 set1  0x00000007 , 0x0000003f 
+ 00025026  0x00004af7 store  0x00000002 , 0x00000218 
+ 00025027  0x00004af8 set1  0x00000025 , 0x00000000 
+ 00025028  0x00004af9 bpatch  0x0000007f , 0x0000402f 
+ 00025029  0x00004afa hjam  0x00000002 , 0x00008088 
+ 00025030  0x00004afb hjam  0x00000000 , 0x0000808e 
+ 00025031  0x00004afc hjam  0x00000002 , 0x00008006 
+ 00025032  0x00004afd branch  0x000061d3 
+ 00025033  0x00004b01 force  0x00000001 , 0x00000002 
+ 00025034  0x00004b05 store  0x00000001 , 0x00000218 
+ 00025035  0x00004b06 set1  0x00000025 , 0x00000000 
+ 00025036  0x00004b07 bpatch  0x00000080 , 0x00004030 
+ 00025037  0x00004b08 hjam  0x00000001 , 0x00008088 
+ 00025038  0x00004b09 hstoret  0x00000002 , 0x0000808e 
+ 00025039  0x00004b0a hjam  0x00000002 , 0x00008006 
+ 00025040  0x00004b0b call  0x000061d3 
+ 00025041  0x00004b0c fetch  0x00000001 , 0x0000021d 
+ 00025042  0x00004b0d rtn 
+ 00025043  0x00004b10 fetch  0x00000002 , 0x00004176 
+ 00025044  0x00004b11 increase  0x00000001 , 0x0000003f 
+ 00025045  0x00004b12 store  0x00000002 , 0x00004176 
+ 00025046  0x00004b13 hfetch  0x00000001 , 0x0000812c 
+ 00025047  0x00004b14 bbit0  0x00000003 , 0x000061d3 
+ 00025048  0x00004b15 rtn 
+ 00025049  0x00004b18 hjam  0x00000040 , 0x00008086 
+ 00025050  0x00004b19 hjam  0x00000000 , 0x00008087 
+ 00025051  0x00004b1a hfetch  0x00000001 , 0x00008081 
+ 00025052  0x00004b1b set0  0x00000000 , 0x0000003f 
+ 00025053  0x00004b1c set1  0x00000001 , 0x0000003f 
+ 00025054  0x00004b1d hstore  0x00000001 , 0x00008081 
+ 00025055  0x00004b1e setarg  0x00000000 
+ 00025056  0x00004b1f store  0x00000004 , 0x00000218 
+ 00025057  0x00004b20 rtn 
+ 00025058  0x00004b23 setarg  0x00000000 
+ 00025059  0x00004b24 hstore  0x00000002 , 0x0000808e 
+ 00025060  0x00004b25 setarg  0x00000001 
+ 00025061  0x00004b26 hstore  0x00000001 , 0x00008088 
+ 00025062  0x00004b27 setarg  0x00000218 
+ 00025063  0x00004b28 hstore  0x00000002 , 0x0000808a 
+ 00025064  0x00004b29 jam  0x00000006 , 0x00000218 
+ 00025065  0x00004b2a hjam  0x00000002 , 0x00008006 
+ 00025066  0x00004b2b branch  0x000061d3 
+ 00025067  0x00004b30 increase  0x00000004 , 0x00000002 
+ 00025068  0x00004b31 hstoret  0x00000002 , 0x00008088 
+ 00025069  0x00004b32 increase  0xfffffffc , 0x00000011 
+ 00025070  0x00004b33 arg  0x00000002 , 0x00000002 
+ 00025071  0x00004b34 istoret  0x00000001 , 0x00000011 
+ 00025072  0x00004b35 rshift16  0x0000003f , 0x00000002 
+ 00025073  0x00004b36 istoret  0x00000001 , 0x00000005 
+ 00025074  0x00004b37 rshift8  0x0000003f , 0x00000002 
+ 00025075  0x00004b38 istoret  0x00000001 , 0x00000005 
+ 00025076  0x00004b39 istore  0x00000001 , 0x00000005 
+ 00025077  0x00004b3a deposit  0x00000011 
+ 00025078  0x00004b3b hstore  0x00000002 , 0x0000808a 
+ 00025079  0x00004b3c setarg  0x00000000 
+ 00025080  0x00004b3d hstore  0x00000002 , 0x0000808e 
+ 00025081  0x00004b3e hjam  0x00000002 , 0x00008006 
+ 00025082  0x00004b3f branch  0x000061d3 
+ 00025083  0x00004b44 hstoret  0x00000002 , 0x0000808e 
+ 00025084  0x00004b45 setarg  0x00000004 
+ 00025085  0x00004b46 hstore  0x00000002 , 0x00008088 
+ 00025086  0x00004b47 jam  0x00000003 , 0x00000218 
+ 00025087  0x00004b48 setarg  0x00000218 
+ 00025088  0x00004b49 hstore  0x00000002 , 0x0000808a 
+ 00025089  0x00004b4a deposit  0x00000011 
+ 00025090  0x00004b4b hstore  0x00000002 , 0x0000808c 
+ 00025091  0x00004b4c hfetch  0x00000001 , 0x00008086 
+ 00025092  0x00004b4d isolate0  0x0000000f , 0x00000011 
+ 00025093  0x00004b4e setflag  0x00000001 , 0x00000006 , 0x0000003f 
+ 00025094  0x00004b4f hstore  0x00000001 , 0x00008086 
+ 00025095  0x00004b50 hjam  0x00000002 , 0x00008006 
+ 00025096  0x00004b52 hfetch  0x00000001 , 0x0000812c 
+ 00025097  0x00004b53 bbit1  0x00000007 , 0x00006208 
+ 00025098  0x00004b54 arg  0x00000003 , 0x00000007 
+ 00025099  0x00004b55 call  0x00006195 
+ 00025100  0x00004b56 call  0x000061d3 
+ 00025101  0x00004b57 isolate1  0x00000002 , 0x0000003f 
+ 00025102  0x00004b58 call  0x0000618e 
+ 00025103  0x00004b59 fetch  0x00000001 , 0x00000219 
+ 00025104  0x00004b5a lshift16  0x0000003f , 0x00000012 
+ 00025105  0x00004b5b fetch  0x00000001 , 0x0000021a 
+ 00025106  0x00004b5c lshift8  0x0000003f , 0x0000003f 
+ 00025107  0x00004b5d ior  0x00000012 , 0x00000012 
+ 00025108  0x00004b5e fetch  0x00000001 , 0x0000021b 
+ 00025109  0x00004b5f ior  0x00000012 , 0x0000003f 
+ 00025110  0x00004b60 iadd  0x00000002 , 0x0000003f 
+ 00025111  0x00004b61 store  0x00000001 , 0x0000021b 
+ 00025112  0x00004b62 rshift8  0x0000003f , 0x0000003f 
+ 00025113  0x00004b63 store  0x00000001 , 0x0000021a 
+ 00025114  0x00004b64 rshift8  0x0000003f , 0x0000003f 
+ 00025115  0x00004b65 store  0x00000001 , 0x00000219 
+ 00025116  0x00004b66 rtn 
+ 00025117  0x00004b76 hjam  0x00000005 , 0x00008091 
+ 00025118  0x00004b77 hjam  0x00000007 , 0x00008092 
+ 00025119  0x00004b78 hjam  0x00000007 , 0x00008093 
+ 00025120  0x00004b79 hjam  0x00000007 , 0x00008094 
+ 00025121  0x00004b7a hjam  0x00000007 , 0x00008095 
+ 00025122  0x00004b7b hjam  0x00000005 , 0x00008096 
+ 00025123  0x00004b7c rtn 
+ 00025124  0x00004b81 hfetch  0x00000001 , 0x0000812c 
+ 00025125  0x00004b82 bbit0  0x00000005 , 0x00006224 
+ 00025126  0x00004b83 rtn 
+ 00025127  0x00004b8c hstore  0x00000002 , 0x00008098 
+ 00025128  0x00004b8d deposit  0x00000011 
+ 00025129  0x00004b8e hstore  0x00000002 , 0x0000809a 
+ 00025130  0x00004b8f deposit  0x00000012 
+ 00025131  0x00004b90 hstore  0x00000002 , 0x0000809c 
+ 00025132  0x00004b91 deposit  0x00000002 
+ 00025133  0x00004b92 hstore  0x00000002 , 0x0000809e 
+ 00025134  0x00004b93 arg  0x00000001 , 0x00000002 
+ 00025135  0x00004b94 nsetflag  0x00000034 , 0x00000001 , 0x00000002 
+ 00025136  0x00004b95 hstore  0x00000001 , 0x00008090 
+ 00025137  0x00004b96 hjam  0x00000004 , 0x00008006 
+ 00025138  0x00004b97 branch  0x00006224 
+ 00025139  0x00004b9b set1  0x0000002a , 0x00000000 
+ 00025140  0x00004b9c jam  0x00000008 , 0x000042b6 
+ 00025141  0x00004b9d rtn 
+ 00025142  0x00004ba0 set0  0x0000002a , 0x00000000 
+ 00025143  0x00004ba1 jam  0x00000020 , 0x000042b6 
+ 00025144  0x00004ba2 rtn 
+ 00025145  0x00004ba6 fetch  0x00000001 , 0x000042a8 
+ 00025146  0x00004ba7 iadd  0x00000012 , 0x0000003f 
+ 00025147  0x00004ba8 store  0x00000001 , 0x0000021a 
+ 00025148  0x00004ba9 branch  0x00006240 
+ 00025149  0x00004bac fetch  0x00000002 , 0x0000021a 
+ 00025150  0x00004bad byteswap  0x0000003f , 0x0000003f 
+ 00025151  0x00004bae store  0x00000001 , 0x0000021a 
+ 00025152  0x00004bb4 setarg  0x00000003 
+ 00025153  0x00004bb5 hstore  0x00000002 , 0x00008098 
+ 00025154  0x00004bb6 jam  0x000000a0 , 0x00000219 
+ 00025155  0x00004bb7 jam  0x000000a1 , 0x0000021b 
+ 00025156  0x00004bb8 branch  0x00006254 
+ 00025157  0x00004bbe set1  0x00000025 , 0x00000000 
+ 00025158  0x00004bbf bpatch  0x00000081 , 0x00004030 
+ 00025159  0x00004bc0 bmark1  0x0000002a , 0x00006239 
+ 00025160  0x00004bc1 fetch  0x00000002 , 0x000042a8 
+ 00025161  0x00004bc2 iadd  0x00000012 , 0x0000003f 
+ 00025162  0x00004bc3 byteswap  0x0000003f , 0x0000003f 
+ 00025163  0x00004bc4 store  0x00000002 , 0x0000021a 
+ 00025164  0x00004bc8 set1  0x00000025 , 0x00000000 
+ 00025165  0x00004bc9 bpatch  0x00000082 , 0x00004030 
+ 00025166  0x00004bca bmark1  0x0000002a , 0x0000623d 
+ 00025167  0x00004bcb nop  0x00007530 
+ 00025168  0x00004bcc setarg  0x00000004 
+ 00025169  0x00004bcd hstore  0x00000002 , 0x00008098 
+ 00025170  0x00004bce jam  0x000000a0 , 0x00000219 
+ 00025171  0x00004bcf jam  0x000000a1 , 0x0000021c 
+ 00025172  0x00004bd1 setarg  0x00000219 
+ 00025173  0x00004bd2 hstore  0x00000002 , 0x0000809a 
+ 00025174  0x00004bd3 hstoret  0x00000002 , 0x0000809e 
+ 00025175  0x00004bd4 deposit  0x00000011 
+ 00025176  0x00004bd5 hstore  0x00000002 , 0x0000809c 
+ 00025177  0x00004bd6 setarg  0x00000002 
+ 00025178  0x00004bd7 isolate0  0x0000000f , 0x00000011 
+ 00025179  0x00004bd8 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00025180  0x00004bd9 hstore  0x00000001 , 0x00008090 
+ 00025181  0x00004bda hjam  0x00000004 , 0x00008006 
+ 00025182  0x00004bdb arg  0x00000005 , 0x00000007 
+ 00025183  0x00004bdc call  0x00006195 
+ 00025184  0x00004bdd call  0x00006224 
+ 00025185  0x00004bde isolate1  0x00000004 , 0x0000003f 
+ 00025186  0x00004bdf call  0x0000618e 
+ 00025187  0x00004be0 bmark1  0x0000002a , 0x0000626a 
+ 00025188  0x00004be1 fetch  0x00000002 , 0x0000021a 
+ 00025189  0x00004be2 byteswap  0x0000003f , 0x0000003f 
+ 00025190  0x00004be3 iadd  0x00000002 , 0x0000003f 
+ 00025191  0x00004be4 byteswap  0x0000003f , 0x0000003f 
+ 00025192  0x00004be5 store  0x00000002 , 0x0000021a 
+ 00025193  0x00004be6 rtn 
+ 00025194  0x00004be9 fetch  0x00000001 , 0x0000021a 
+ 00025195  0x00004bea iadd  0x00000002 , 0x0000003f 
+ 00025196  0x00004beb byteswap  0x0000003f , 0x0000003f 
+ 00025197  0x00004bec store  0x00000002 , 0x0000021a 
+ 00025198  0x00004bed rtn 
+ 00025199  0x00004bf5 fetch  0x00000002 , 0x000042a8 
+ 00025200  0x00004bf6 iadd  0x00000012 , 0x0000003f 
+ 00025201  0x00004bfa store  0x00000002 , 0x000009be 
+ 00025202  0x00004bfb set1  0x00000025 , 0x00000000 
+ 00025203  0x00004bfc bpatch  0x00000083 , 0x00004030 
+ 00025204  0x00004bfd storet  0x00000002 , 0x000009c6 
+ 00025205  0x00004bfe copy  0x00000011 , 0x0000003f 
+ 00025206  0x00004bff store  0x00000002 , 0x000009dd 
+ 00025207  0x00004c01 call  0x00006287 
+ 00025208  0x00004c03 fetcht  0x00000002 , 0x000009d6 
+ 00025209  0x00004c04 fetch  0x00000002 , 0x000009dd 
+ 00025210  0x00004c05 copy  0x0000003f , 0x00000011 
+ 00025211  0x00004c06 fetch  0x00000002 , 0x000009be 
+ 00025212  0x00004c08 call  0x000062a8 
+ 00025213  0x00004c0c fetch  0x00000002 , 0x000009d6 
+ 00025214  0x00004c0d fetcht  0x00000002 , 0x000009dd 
+ 00025215  0x00004c0e iadd  0x00000002 , 0x00000002 
+ 00025216  0x00004c0f storet  0x00000002 , 0x000009dd 
+ 00025217  0x00004c10 fetcht  0x00000002 , 0x000009be 
+ 00025218  0x00004c11 iadd  0x00000002 , 0x00000002 
+ 00025219  0x00004c12 storet  0x00000002 , 0x000009be 
+ 00025220  0x00004c13 fetch  0x00000002 , 0x000009c6 
+ 00025221  0x00004c14 nbranch  0x00006277 , 0x00000034 
+ 00025222  0x00004c15 rtn 
+ 00025223  0x00004c1e set1  0x00000025 , 0x00000000 
+ 00025224  0x00004c1f bpatch  0x00000084 , 0x00004030 
+ 00025225  0x00004c20 fetch  0x00000002 , 0x000042b6 
+ 00025226  0x00004c21 increase  0xffffffff , 0x0000003f 
+ 00025227  0x00004c22 fetcht  0x00000002 , 0x000009be 
+ 00025228  0x00004c23 ior  0x00000002 , 0x0000003f 
+ 00025229  0x00004c24 increase  0x00000001 , 0x0000003f 
+ 00025230  0x00004c25 store  0x00000003 , 0x000009da 
+ 00025231  0x00004c27 fetch  0x00000002 , 0x000009c6 
+ 00025232  0x00004c28 iadd  0x00000002 , 0x0000003f 
+ 00025233  0x00004c2a fetcht  0x00000003 , 0x000009da 
+ 00025234  0x00004c2b isub  0x00000002 , 0x0000003f 
+ 00025235  0x00004c2c nbranch  0x0000629a , 0x00000002 
+ 00025236  0x00004c2d store  0x00000002 , 0x000009c6 
+ 00025237  0x00004c2e fetch  0x00000003 , 0x000009da 
+ 00025238  0x00004c2f fetcht  0x00000002 , 0x000009be 
+ 00025239  0x00004c30 isub  0x00000002 , 0x0000003f 
+ 00025240  0x00004c31 store  0x00000002 , 0x000009d6 
+ 00025241  0x00004c32 rtn 
+ 00025242  0x00004c34 fetch  0x00000002 , 0x000009c6 
+ 00025243  0x00004c35 store  0x00000002 , 0x000009d6 
+ 00025244  0x00004c36 setarg  0x00000000 
+ 00025245  0x00004c37 store  0x00000002 , 0x000009c6 
+ 00025246  0x00004c38 rtn 
+ 00025247  0x00004c3b increase  0x00000002 , 0x00000002 
+ 00025248  0x00004c3c hstoret  0x00000002 , 0x00008098 
+ 00025249  0x00004c3d increase  0xfffffffe , 0x00000011 
+ 00025250  0x00004c3e ifetcht  0x00000003 , 0x00000011 
+ 00025251  0x00004c3f copy  0x00000002 , 0x00000012 
+ 00025252  0x00004c40 arg  0x000000a0 , 0x00000002 
+ 00025253  0x00004c41 istoret  0x00000001 , 0x00000011 
+ 00025254  0x00004c43 istore  0x00000001 , 0x00000005 
+ 00025255  0x00004c44 branch  0x000062b7 
+ 00025256  0x00004c48 copy  0x0000003f , 0x00000012 
+ 00025257  0x00004c49 set1  0x00000025 , 0x00000000 
+ 00025258  0x00004c4a bpatch  0x00000085 , 0x00004030 
+ 00025259  0x00004c4b nop  0x00007530 
+ 00025260  0x00004c4c bmark1  0x0000002a , 0x0000629f 
+ 00025261  0x00004c4d copy  0x00000012 , 0x0000003f 
+ 00025262  0x00004c4e increase  0x00000003 , 0x00000002 
+ 00025263  0x00004c4f hstoret  0x00000002 , 0x00008098 
+ 00025264  0x00004c50 increase  0xfffffffd , 0x00000011 
+ 00025265  0x00004c51 ifetcht  0x00000003 , 0x00000011 
+ 00025266  0x00004c52 copy  0x00000002 , 0x00000012 
+ 00025267  0x00004c53 arg  0x000000a0 , 0x00000002 
+ 00025268  0x00004c54 istoret  0x00000001 , 0x00000011 
+ 00025269  0x00004c55 byteswap  0x0000003f , 0x0000003f 
+ 00025270  0x00004c56 istore  0x00000002 , 0x00000005 
+ 00025271  0x00004c58 deposit  0x00000011 
+ 00025272  0x00004c59 hstore  0x00000002 , 0x0000809a 
+ 00025273  0x00004c5a setarg  0x00000000 
+ 00025274  0x00004c5b hstore  0x00000002 , 0x0000809e 
+ 00025275  0x00004c5c hjam  0x00000001 , 0x00008090 
+ 00025276  0x00004c5d hjam  0x00000004 , 0x00008006 
+ 00025277  0x00004c5e call  0x00006224 
+ 00025278  0x00004c5f copy  0x00000012 , 0x0000003f 
+ 00025279  0x00004c60 istore  0x00000003 , 0x00000011 
+ 00025280  0x00004c61 nop  0x00002710 
+ 00025281  0x00004c62 nop  0x00002710 
+ 00025282  0x00004c63 nop  0x00002710 
+ 00025283  0x00004c64 rtn 
+ 00025284  0x00004c69 hjam  0x00000070 , 0x00008973 
+ 00025285  0x00004c6a nop  0x00000bb8 
+ 00025286  0x00004c6b rtn 
+ 00025287  0x00004c6e hjam  0x00000030 , 0x00008973 
+ 00025288  0x00004c6f rtn 
+ 00025289  0x00004c72 lshift3  0x0000003f , 0x0000003f 
+ 00025290  0x00004c73 hstore  0x00000002 , 0x00008045 
+ 00025291  0x00004c74 hjam  0x00000000 , 0x0000804b 
+ 00025292  0x00004c75 rtn 
+ 00025293  0x00004c79 call  0x000062c9 
+ 00025294  0x00004c7a call  0x000062fa 
+ 00025295  0x00004c7c ifetcht  0x00000001 , 0x00000011 
+ 00025296  0x00004c7d increase  0x00000001 , 0x00000011 
+ 00025297  0x00004c7e force  0x00000000 , 0x00000007 
+ 00025298  0x00004c80 qisolate0  0x00000002 
+ 00025299  0x00004c81 branch  0x000062f1 , 0x00000001 
+ 00025300  0x00004c82 hfetch  0x00000001 , 0x00008046 
+ 00025301  0x00004c83 set1  0x00000006 , 0x0000003f 
+ 00025302  0x00004c84 set1  0x00000007 , 0x0000003f 
+ 00025303  0x00004c85 hstore  0x00000001 , 0x00008046 
+ 00025304  0x00004c86 hjam  0x00000002 , 0x00008047 
+ 00025305  0x00004c87 hjam  0x00000082 , 0x00008047 
+ 00025306  0x00004c88 set0  0x00000007 , 0x0000003f 
+ 00025307  0x00004c89 hstore  0x00000001 , 0x00008046 
+ 00025308  0x00004c8a hjam  0x0000008a , 0x00008047 
+ 00025309  0x00004c8b nop  0x0000000b 
+ 00025310  0x00004c8c hjam  0x000000ca , 0x00008047 
+ 00025311  0x00004c8d nop  0x00000021 
+ 00025312  0x00004c8e hjam  0x0000004a , 0x00008047 
+ 00025313  0x00004c8f nop  0x0000002c 
+ 00025314  0x00004c90 hjam  0x000000ca , 0x00008047 
+ 00025315  0x00004c91 nop  0x00000016 
+ 00025316  0x00004c92 hjam  0x0000008a , 0x00008047 
+ 00025317  0x00004c93 nop  0x00000021 
+ 00025318  0x00004c94 hjam  0x00000082 , 0x00008047 
+ 00025319  0x00004c95 nop  0x00000001 
+ 00025320  0x00004c96 hjam  0x00000092 , 0x00008047 
+ 00025321  0x00004c97 nop  0x0000000a 
+ 00025322  0x00004c98 hjam  0x000000b2 , 0x00008047 
+ 00025323  0x00004c99 hfetch  0x00000001 , 0x00008007 
+ 00025324  0x00004c9a hjam  0x00000092 , 0x00008047 
+ 00025325  0x00004c9b nop  0x00000001 
+ 00025326  0x00004c9c hjam  0x00000082 , 0x00008047 
+ 00025327  0x00004c9d qisolate0  0x0000003f 
+ 00025328  0x00004c9e branch  0x000062d2 , 0x00000001 
+ 00025329  0x00004ca0 hfetch  0x00000002 , 0x00008045 
+ 00025330  0x00004ca1 increase  0x00000001 , 0x0000003f 
+ 00025331  0x00004ca2 hstore  0x00000002 , 0x00008045 
+ 00025332  0x00004ca3 increase  0x00000001 , 0x00000007 
+ 00025333  0x00004ca4 compare  0x00000008 , 0x00000007 , 0x0000000f 
+ 00025334  0x00004ca5 nbranch  0x000062d2 , 0x00000001 
+ 00025335  0x00004ca6 loop  0x000062cf 
+ 00025336  0x00004ca7 hjam  0x00000083 , 0x00008047 
+ 00025337  0x00004ca8 rtn 
+ 00025338  0x00004cab hjam  0x00000082 , 0x00008047 
+ 00025339  0x00004cac nop  0x0000000c 
+ 00025340  0x00004cad hjam  0x00000080 , 0x00008047 
+ 00025341  0x00004cae hjam  0x00000082 , 0x00008047 
+ 00025342  0x00004caf nop  0x00000096 
+ 00025343  0x00004cb0 rtn 
+ 00025344  0x00004cb4 call  0x000062fa 
+ 00025345  0x00004cb5 hjam  0x000000a2 , 0x00008047 
+ 00025346  0x00004cb6 deposit  0x00000011 
+ 00025347  0x00004cb7 hstore  0x00000002 , 0x00008048 
+ 00025348  0x00004cb8 set1  0x0000000b , 0x00000002 
+ 00025349  0x00004cb9 isolate0  0x0000000f , 0x0000003f 
+ 00025350  0x00004cba setflag  0x00000001 , 0x0000000f , 0x00000002 
+ 00025351  0x00004cbb hstoret  0x00000002 , 0x0000804a 
+ 00025352  0x00004cbc hjam  0x00000001 , 0x00008006 
+ 00025353  0x00004cbd rtn 
+ 00025354  0x00004cc0 hfetch  0x00000001 , 0x0000812c 
+ 00025355  0x00004cc1 bbit0  0x00000001 , 0x0000630a 
+ 00025356  0x00004cc2 rtn 
+ 00025357  0x00004cc6 call  0x000062c9 
+ 00025358  0x00004cc7 call  0x00006300 
+ 00025359  0x00004cc8 call  0x0000630a 
+ 00025360  0x00004cc9 hjam  0x00000083 , 0x00008047 
+ 00025361  0x00004cca rtn 
+ 00025362  0x00004cd0 hfetch  0x00000002 , 0x00008124 
+ 00025363  0x00004cd1 hstore  0x00000002 , 0x00008045 
+ 00025364  0x00004cd2 call  0x00006300 
+ 00025365  0x00004cd3 arg  0x00000001 , 0x00000007 
+ 00025366  0x00004cd4 call  0x00006195 
+ 00025367  0x00004cd5 call  0x0000630a 
+ 00025368  0x00004cd6 isolate1  0x00000000 , 0x0000003f 
+ 00025369  0x00004cd7 call  0x0000618e 
+ 00025370  0x00004cd8 hjam  0x00000083 , 0x00008047 
+ 00025371  0x00004cd9 rtn 
+ 00025372  0x00004cdd hfetch  0x00000002 , 0x0000805e 
+ 00025373  0x00004cde iforce  0x0000000a 
+ 00025374  0x00004cdf rtn 
+ 00025375  0x00004ce2 deposit  0x0000000a 
+ 00025376  0x00004ce3 hstore  0x00000002 , 0x0000805e 
+ 00025377  0x00004ce4 rtn 
+ 00025378  0x00004ce7 deposit  0x00000003 
+ 00025379  0x00004ce8 hstore  0x00000002 , 0x00008058 
+ 00025380  0x00004ce9 rtn 
+ 00025381  0x00004cec fetch  0x00000002 , 0x000042d3 
+ 00025382  0x00004ced hstore  0x00000002 , 0x00008052 
+ 00025383  0x00004cee rtn 
+ 00025384  0x00004cf1 deposit  0x00000039 
+ 00025385  0x00004cf2 rtn  0x00000034 
+ 00025386  0x00004cf4 increase  0xfffffff8 , 0x00000039 
+ 00025387  0x00004cf5 call  0x00006335 , 0x00000002 
+ 00025388  0x00004cf6 rtn  0x00000005 
+ 00025389  0x00004cf7 branch  0x0000632a , 0x00000002 
+ 00025390  0x00004cf8 increase  0x00000008 , 0x00000039 
+ 00025391  0x00004cfa increase  0xfffffffc , 0x00000039 
+ 00025392  0x00004cfb call  0x00006338 , 0x00000002 
+ 00025393  0x00004cfc rtn  0x00000005 
+ 00025394  0x00004cfd branch  0x0000632f , 0x00000002 
+ 00025395  0x00004cfe increase  0x00000004 , 0x00000039 
+ 00025396  0x00004cff branch  0x0000633b 
+ 00025397  0x00004d02 ifetch  0x00000008 , 0x00000006 
+ 00025398  0x00004d03 istore  0x00000008 , 0x0000000a 
+ 00025399  0x00004d04 rtn 
+ 00025400  0x00004d07 ifetch  0x00000004 , 0x00000006 
+ 00025401  0x00004d08 istore  0x00000004 , 0x0000000a 
+ 00025402  0x00004d09 rtn 
+ 00025403  0x00004d0c deposit  0x00000039 
+ 00025404  0x00004d0d rtn  0x00000034 
+ 00025405  0x00004d0f ifetch  0x00000001 , 0x00000006 
+ 00025406  0x00004d10 istore  0x00000001 , 0x0000000a 
+ 00025407  0x00004d11 loop  0x0000633d 
+ 00025408  0x00004d12 rtn 
+ 00025409  0x00004d15 deposit  0x00000039 
+ 00025410  0x00004d16 rtn  0x00000034 
+ 00025411  0x00004d18 increase  0xfffffff8 , 0x00000039 
+ 00025412  0x00004d19 call  0x0000634e , 0x00000002 
+ 00025413  0x00004d1a rtn  0x00000005 
+ 00025414  0x00004d1b branch  0x00006343 , 0x00000002 
+ 00025415  0x00004d1c increase  0x00000008 , 0x00000039 
+ 00025416  0x00004d1e increase  0xfffffffc , 0x00000039 
+ 00025417  0x00004d1f call  0x00006351 , 0x00000002 
+ 00025418  0x00004d20 rtn  0x00000005 
+ 00025419  0x00004d21 branch  0x00006348 , 0x00000002 
+ 00025420  0x00004d22 increase  0x00000004 , 0x00000039 
+ 00025421  0x00004d23 branch  0x00006354 
+ 00025422  0x00004d26 ifetch  0x00000008 , 0x00000003 
+ 00025423  0x00004d27 istore  0x00000008 , 0x00000005 
+ 00025424  0x00004d28 rtn 
+ 00025425  0x00004d2b ifetch  0x00000004 , 0x00000003 
+ 00025426  0x00004d2c istore  0x00000004 , 0x00000005 
+ 00025427  0x00004d2d rtn 
+ 00025428  0x00004d31 deposit  0x00000039 
+ 00025429  0x00004d32 rtn  0x00000034 
+ 00025430  0x00004d34 ifetch  0x00000001 , 0x00000003 
+ 00025431  0x00004d35 istore  0x00000001 , 0x00000005 
+ 00025432  0x00004d36 loop  0x00006356 
+ 00025433  0x00004d37 rtn 
+ 00025434  0x00004d3d set1  0x00000025 , 0x00000000 
+ 00025435  0x00004d3e bpatch  0x00000086 , 0x00004030 
+ 00025436  0x00004d3f fetch  0x00000001 , 0x000042be 
+ 00025437  0x00004d40 rtn  0x00000034 
+ 00025438  0x00004d41 call  0x000063f3 
+ 00025439  0x00004d42 call  0x000063f9 , 0x00000005 
+ 00025440  0x00004d43 call  0x0000638e 
+ 00025441  0x00004d45 fetch  0x00000001 , 0x000042be 
+ 00025442  0x00004d46 icopy  0x00000013 
+ 00025443  0x00004d47 fetcht  0x00000002 , 0x000042bc 
+ 00025444  0x00004d48 storet  0x00000002 , 0x000001af 
+ 00025445  0x00004d4a copy  0x00000013 , 0x0000003f 
+ 00025446  0x00004d4b branch  0x00005d30 , 0x00000034 
+ 00025447  0x00004d4c increase  0xffffffff , 0x00000013 
+ 00025448  0x00004d4d copy  0x00000002 , 0x00000011 
+ 00025449  0x00004d4e ifetch  0x00000001 , 0x00000011 
+ 00025450  0x00004d4f fetcht  0x00000001 , 0x000001a7 
+ 00025451  0x00004d50 isub  0x00000002 , 0x0000003e 
+ 00025452  0x00004d51 call  0x00006375 , 0x00000005 
+ 00025453  0x00004d52 branch  0x00006371 , 0x00000002 
+ 00025454  0x00004d53 ifetch  0x00000001 , 0x00000011 
+ 00025455  0x00004d54 increase  0x00000001 , 0x0000003f 
+ 00025456  0x00004d55 istore  0x00000001 , 0x00000011 
+ 00025457  0x00004d57 fetcht  0x00000002 , 0x000001af 
+ 00025458  0x00004d58 increase  0x00000022 , 0x00000002 
+ 00025459  0x00004d59 storet  0x00000002 , 0x000001af 
+ 00025460  0x00004d5a branch  0x00006365 
+ 00025461  0x00004d5d setarg  0x00000000 
+ 00025462  0x00004d5e istore  0x00000001 , 0x00000011 
+ 00025463  0x00004d5f fetch  0x00000001 , 0x000001a8 
+ 00025464  0x00004d60 istore  0x00000001 , 0x00000005 
+ 00025465  0x00004d61 bne  0x00000033 , 0x00006383 
+ 00025466  0x00004d62 arg  0x00004261 , 0x00000012 
+ 00025467  0x00004d64 ifetch  0x00000006 , 0x00000006 
+ 00025468  0x00004d65 istore  0x00000008 , 0x00000005 
+ 00025469  0x00004d66 setarg  0x00000000 
+ 00025470  0x00004d67 istore  0x00000008 , 0x00000005 
+ 00025471  0x00004d68 copy  0x00000012 , 0x00000006 
+ 00025472  0x00004d6a call  0x00007e87 
+ 00025473  0x00004d6b force  0x00000001 , 0x0000003e 
+ 00025474  0x00004d6c rtn 
+ 00025475  0x00004d6f beq  0x00000036 , 0x00006387 
+ 00025476  0x00004d70 beq  0x00000037 , 0x0000638b 
+ 00025477  0x00004d71 arg  0x000044a2 , 0x00000012 
+ 00025478  0x00004d72 branch  0x0000637b 
+ 00025479  0x00004d75 arg  0x0000457b , 0x00000006 
+ 00025480  0x00004d76 call  0x00007e87 
+ 00025481  0x00004d78 arg  0x000044a2 , 0x00000006 
+ 00025482  0x00004d79 branch  0x00006380 
+ 00025483  0x00004d7c arg  0x00004573 , 0x00000006 
+ 00025484  0x00004d7d call  0x00007e87 
+ 00025485  0x00004d7e branch  0x00006389 
+ 00025486  0x00004d82 call  0x000031d4 
+ 00025487  0x00004d83 fetch  0x00000001 , 0x000042be 
+ 00025488  0x00004d84 rtn  0x00000034 
+ 00025489  0x00004d85 fetch  0x00000002 , 0x0000470b 
+ 00025490  0x00004d86 bbit1  0x00000000 , 0x000063a3 
+ 00025491  0x00004d89 fetch  0x00000001 , 0x0000452b 
+ 00025492  0x00004d8a beq  0x00000000 , 0x0000639c 
+ 00025493  0x00004d8b fetch  0x00000001 , 0x00000377 
+ 00025494  0x00004d8c compare  0x000000c0 , 0x0000003f , 0x000000c0 
+ 00025495  0x00004d8d branch  0x0000639c , 0x00000001 
+ 00025496  0x00004d8e compare  0x00000040 , 0x0000003f , 0x000000c0 
+ 00025497  0x00004d8f branch  0x000063a1 , 0x00000001 
+ 00025498  0x00004d90 compare  0x00000000 , 0x0000003f , 0x000000c0 
+ 00025499  0x00004d91 branch  0x0000639f , 0x00000001 
+ 00025500  0x00004d93 jam  0x00000035 , 0x000001a8 
+ 00025501  0x00004d94 fetch  0x00000006 , 0x00000372 
+ 00025502  0x00004d95 branch  0x000063a7 
+ 00025503  0x00004d98 jam  0x00000037 , 0x000001a8 
+ 00025504  0x00004d99 branch  0x000063a7 
+ 00025505  0x00004d9d jam  0x00000036 , 0x000001a8 
+ 00025506  0x00004d9e branch  0x000063a7 
+ 00025507  0x00004da2 set1  0x00000025 , 0x00000000 
+ 00025508  0x00004da3 bpatch  0x00000087 , 0x00004030 
+ 00025509  0x00004da4 jam  0x00000033 , 0x000001a8 
+ 00025510  0x00004da5 fetch  0x00000006 , 0x00000040 
+ 00025511  0x00004da7 store  0x00000006 , 0x000001a9 
+ 00025512  0x00004da8 fetch  0x00000002 , 0x000042bc 
+ 00025513  0x00004da9 ifetcht  0x00000001 , 0x0000003f 
+ 00025514  0x00004daa pincrease  0x00000001 
+ 00025515  0x00004dab store  0x00000002 , 0x000001af 
+ 00025516  0x00004dac storet  0x00000001 , 0x000001a7 
+ 00025517  0x00004dad fetch  0x00000001 , 0x000042be 
+ 00025518  0x00004dae icopy  0x00000013 
+ 00025519  0x00004db0 fetch  0x00000002 , 0x000001af 
+ 00025520  0x00004db1 copy  0x0000003f , 0x00000011 
+ 00025521  0x00004db2 call  0x000063bf 
+ 00025522  0x00004db3 rtn  0x00000028 
+ 00025523  0x00004db4 fetcht  0x00000002 , 0x000001af 
+ 00025524  0x00004db5 increase  0x00000022 , 0x00000002 
+ 00025525  0x00004db6 storet  0x00000002 , 0x000001af 
+ 00025526  0x00004db7 increase  0xffffffff , 0x00000002 
+ 00025527  0x00004db8 ifetch  0x00000001 , 0x00000002 
+ 00025528  0x00004db9 store  0x00000001 , 0x000001a7 
+ 00025529  0x00004dba increase  0xffffffff , 0x00000013 
+ 00025530  0x00004dbb nbranch  0x000063af , 0x00000005 
+ 00025531  0x00004dbc fetch  0x00000001 , 0x000042be 
+ 00025532  0x00004dbd pincrease  0xffffffff 
+ 00025533  0x00004dbe store  0x00000001 , 0x000001a7 
+ 00025534  0x00004dbf rtn 
+ 00025535  0x00004dc1 fetch  0x00000001 , 0x000001a8 
+ 00025536  0x00004dc2 bne  0x00000033 , 0x000063c6 
+ 00025537  0x00004dc4 arg  0x000001a8 , 0x00000012 
+ 00025538  0x00004dc5 arg  0x00000007 , 0x00000039 
+ 00025539  0x00004dc6 call  0x00007f55 
+ 00025540  0x00004dc7 branch  0x000064c0 , 0x00000005 
+ 00025541  0x00004dc8 rtn 
+ 00025542  0x00004dcb beq  0x00000036 , 0x000063c9 
+ 00025543  0x00004dcc beq  0x00000037 , 0x000063e4 
+ 00025544  0x00004dcd branch  0x000063c1 
+ 00025545  0x00004dd0 ifetcht  0x00000001 , 0x00000011 
+ 00025546  0x00004dd1 isub  0x00000002 , 0x0000003e 
+ 00025547  0x00004dd2 nrtn  0x00000005 
+ 00025548  0x00004dd3 arg  0x000009e1 , 0x00000005 
+ 00025549  0x00004dd4 arg  0x00000010 , 0x00000039 
+ 00025550  0x00004dd5 call  0x00007e9f 
+ 00025551  0x00004dd6 fetch  0x00000003 , 0x00000375 
+ 00025552  0x00004dd7 store  0x00000003 , 0x000009e1 
+ 00025553  0x00004dd8 call  0x000063db 
+ 00025554  0x00004dd9 fetch  0x00000002 , 0x000009fe 
+ 00025555  0x00004dda byteswap  0x0000003f , 0x0000003f 
+ 00025556  0x00004ddb lshift8  0x0000003f , 0x00000002 
+ 00025557  0x00004ddc ifetch  0x00000001 , 0x00000006 
+ 00025558  0x00004ddd iadd  0x00000002 , 0x0000003f 
+ 00025559  0x00004dde fetcht  0x00000003 , 0x00000372 
+ 00025560  0x00004ddf isub  0x00000002 , 0x0000003e 
+ 00025561  0x00004de0 branch  0x000064c0 , 0x00000005 
+ 00025562  0x00004de1 rtn 
+ 00025563  0x00004de5 arg  0x000009e1 , 0x00000006 
+ 00025564  0x00004de6 call  0x000071af 
+ 00025565  0x00004de8 ifetch  0x00000001 , 0x00000011 
+ 00025566  0x00004de9 call  0x000071b0 
+ 00025567  0x00004dea force  0x00000038 , 0x00000036 
+ 00025568  0x00004deb force  0x00000000 , 0x00000036 
+ 00025569  0x00004dec call  0x00007145 
+ 00025570  0x00004ded arg  0x000009f1 , 0x00000005 
+ 00025571  0x00004dee branch  0x000071c0 
+ 00025572  0x00004df1 ifetcht  0x00000001 , 0x00000011 
+ 00025573  0x00004df2 isub  0x00000002 , 0x0000003e 
+ 00025574  0x00004df3 nrtn  0x00000005 
+ 00025575  0x00004df4 copy  0x00000006 , 0x00000011 
+ 00025576  0x00004df5 add  0x00000006 , 0x00000008 , 0x00000013 
+ 00025577  0x00004df6 arg  0x00004573 , 0x00000012 
+ 00025578  0x00004df7 arg  0x00000008 , 0x00000039 
+ 00025579  0x00004df8 call  0x00007f55 
+ 00025580  0x00004df9 branch  0x000064c0 , 0x00000005 
+ 00025581  0x00004dfa copy  0x00000013 , 0x00000011 
+ 00025582  0x00004dfb arg  0x0000457b , 0x00000012 
+ 00025583  0x00004dfc arg  0x00000008 , 0x00000039 
+ 00025584  0x00004dfd call  0x00007f55 
+ 00025585  0x00004dfe branch  0x000064c0 , 0x00000005 
+ 00025586  0x00004dff rtn 
+ 00025587  0x00004e02 fetch  0x00000002 , 0x000042bc 
+ 00025588  0x00004e03 ifetcht  0x00000001 , 0x0000003f 
+ 00025589  0x00004e04 pincrease  0x00000022 
+ 00025590  0x00004e05 ifetch  0x00000001 , 0x0000003f 
+ 00025591  0x00004e06 isub  0x00000002 , 0x0000003e 
+ 00025592  0x00004e07 rtn 
+ 00025593  0x00004e0a fetch  0x00000001 , 0x000042be 
+ 00025594  0x00004e0b icopy  0x00000039 
+ 00025595  0x00004e0c fetcht  0x00000002 , 0x000042bc 
+ 00025596  0x00004e0d setarg  0x00000000 
+ 00025597  0x00004e0f istore  0x00000001 , 0x00000002 
+ 00025598  0x00004e10 increase  0x00000022 , 0x00000002 
+ 00025599  0x00004e11 pincrease  0x00000001 
+ 00025600  0x00004e12 loop  0x000063fd 
+ 00025601  0x00004e13 rtn 
+ 00025602  0x00004e16 set1  0x00000025 , 0x00000000 
+ 00025603  0x00004e17 bpatch  0x00000088 , 0x00004031 
+ 00025604  0x00004e18 call  0x0000638e 
+ 00025605  0x00004e19 nbranch  0x0000640a , 0x00000028 
+ 00025606  0x00004e1a add  0x00000011 , 0x0000000a , 0x00000006 
+ 00025607  0x00004e1c arg  0x00004261 , 0x00000005 
+ 00025608  0x00004e1d call  0x00007e87 
+ 00025609  0x00004e1e branch  0x000064b1 
+ 00025610  0x00004e20 jam  0x00000000 , 0x0000425d 
+ 00025611  0x00004e21 rtn 
+ 00025612  0x00004e24 fetch  0x00000009 , 0x00004571 
+ 00025613  0x00004e25 branch  0x0000642c , 0x00000034 
+ 00025614  0x00004e26 call  0x0000638e 
+ 00025615  0x00004e27 nbranch  0x0000642c , 0x00000028 
+ 00025616  0x00004e28 fetch  0x00000002 , 0x000001af 
+ 00025617  0x00004e29 add  0x0000003f , 0x00000001 , 0x00000006 
+ 00025618  0x00004e2a arg  0x0000457b , 0x00000005 
+ 00025619  0x00004e2b call  0x00007e87 
+ 00025620  0x00004e2c arg  0x000044a2 , 0x00000005 
+ 00025621  0x00004e2d call  0x00007e87 
+ 00025622  0x00004e2e jam  0x00000001 , 0x000044b2 
+ 00025623  0x00004e2f rtn 
+ 00025624  0x00004e32 fetch  0x00000002 , 0x00004571 
+ 00025625  0x00004e33 nbranch  0x0000641c , 0x00000034 
+ 00025626  0x00004e34 fetch  0x00000006 , 0x00004573 
+ 00025627  0x00004e35 branch  0x0000642b , 0x00000034 
+ 00025628  0x00004e37 jam  0x00000003 , 0x000048c6 
+ 00025629  0x00004e38 setarg  0x00112233 
+ 00025630  0x00004e39 store  0x00000003 , 0x000044a2 
+ 00025631  0x00004e3a setarg  0x00445566 
+ 00025632  0x00004e3b istore  0x00000003 , 0x00000005 
+ 00025633  0x00004e3c setarg  0x00778899 
+ 00025634  0x00004e3d istore  0x00000003 , 0x00000005 
+ 00025635  0x00004e3e setarg  0x00001122 
+ 00025636  0x00004e3f istore  0x00000003 , 0x00000005 
+ 00025637  0x00004e40 setarg  0x00334455 
+ 00025638  0x00004e41 istore  0x00000003 , 0x00000005 
+ 00025639  0x00004e42 setarg  0x00000066 
+ 00025640  0x00004e43 istore  0x00000001 , 0x00000005 
+ 00025641  0x00004e44 jam  0x00000001 , 0x000044b2 
+ 00025642  0x00004e45 rtn 
+ 00025643  0x00004e48 jam  0x00000001 , 0x000048c6 
+ 00025644  0x00004e4a jam  0x00000000 , 0x000044b2 
+ 00025645  0x00004e4b rtn 
+ 00025646  0x00004e4f fetch  0x00000006 , 0x00000372 
+ 00025647  0x00004e50 store  0x00000006 , 0x000001a9 
+ 00025648  0x00004e51 jam  0x00000034 , 0x000001a8 
+ 00025649  0x00004e52 branch  0x00006435 
+ 00025650  0x00004e54 fetch  0x00000006 , 0x00000040 
+ 00025651  0x00004e55 store  0x00000006 , 0x000001a9 
+ 00025652  0x00004e56 jam  0x00000033 , 0x000001a8 
+ 00025653  0x00004e58 set1  0x00000025 , 0x00000000 
+ 00025654  0x00004e59 bpatch  0x00000089 , 0x00004031 
+ 00025655  0x00004e5a fetch  0x00000001 , 0x00004132 
+ 00025656  0x00004e5b beq  0x0000000a , 0x0000635a 
+ 00025657  0x00004e5c call  0x00006463 
+ 00025658  0x00004e5d call  0x0000645f 
+ 00025659  0x00004e5e fetch  0x00000001 , 0x000001a8 
+ 00025660  0x00004e5f beq  0x00000034 , 0x0000643f 
+ 00025661  0x00004e60 beq  0x00000033 , 0x0000648b 
+ 00025662  0x00004e61 rtn 
+ 00025663  0x00004e63 call  0x00006489 
+ 00025664  0x00004e64 branch  0x00006472 
+ 00025665  0x00004e68 set1  0x00000025 , 0x00000000 
+ 00025666  0x00004e69 bpatch  0x0000008a , 0x00004031 
+ 00025667  0x00004e6a call  0x0000644d 
+ 00025668  0x00004e6b fetch  0x00000001 , 0x000001a7 
+ 00025669  0x00004e6c rtneq  0x000000ff 
+ 00025670  0x00004e6d fetch  0x00000006 , 0x000001a9 
+ 00025671  0x00004e6e store  0x00000006 , 0x00004273 
+ 00025672  0x00004e6f fetch  0x00000001 , 0x000001a8 
+ 00025673  0x00004e70 store  0x00000001 , 0x000042b5 
+ 00025674  0x00004e71 beq  0x00000033 , 0x00006451 
+ 00025675  0x00004e72 beq  0x00000034 , 0x00006453 
+ 00025676  0x00004e73 rtn 
+ 00025677  0x00004e75 call  0x0000645b 
+ 00025678  0x00004e76 fetch  0x00000001 , 0x000001a7 
+ 00025679  0x00004e77 rtneq  0x000000ff 
+ 00025680  0x00004e78 branch  0x0000647a 
+ 00025681  0x00004e7a call  0x00006492 
+ 00025682  0x00004e7b branch  0x000064b1 
+ 00025683  0x00004e7d call  0x00006490 
+ 00025684  0x00004e7e branch  0x000064b7 
+ 00025685  0x00004e83 set1  0x00000025 , 0x00000000 
+ 00025686  0x00004e84 bpatch  0x0000008c , 0x00004031 
+ 00025687  0x00004e85 setarg  0x00000000 
+ 00025688  0x00004e86 store  0x00000003 , 0x00000040 
+ 00025689  0x00004e87 istore  0x00000003 , 0x00000005 
+ 00025690  0x00004e88 branch  0x00006463 
+ 00025691  0x00004e8b arg  0x00000001 , 0x00000002 
+ 00025692  0x00004e8c arg  0x000001a7 , 0x00000011 
+ 00025693  0x00004e8d arg  0x0000001c , 0x00000012 
+ 00025694  0x00004e8e branch  0x00006245 
+ 00025695  0x00004e91 arg  0x00000001 , 0x00000002 
+ 00025696  0x00004e92 arg  0x000001a7 , 0x00000011 
+ 00025697  0x00004e93 arg  0x0000001c , 0x00000012 
+ 00025698  0x00004e94 branch  0x0000626f 
+ 00025699  0x00004e98 set1  0x00000025 , 0x00000000 
+ 00025700  0x00004e99 bpatch  0x0000008d , 0x00004031 
+ 00025701  0x00004e9a call  0x00006497 
+ 00025702  0x00004e9b disable  0x00000028 
+ 00025703  0x00004e9c call  0x0000649b 
+ 00025704  0x00004e9d rtn  0x00000028 
+ 00025705  0x00004e9f jam  0x00000000 , 0x000001a7 
+ 00025706  0x00004ea0 fetch  0x00000006 , 0x000001a9 
+ 00025707  0x00004ea1 store  0x00000006 , 0x00000184 
+ 00025708  0x00004ea2 fetch  0x00000001 , 0x000001a8 
+ 00025709  0x00004ea3 store  0x00000001 , 0x00000183 
+ 00025710  0x00004ea4 arg  0x0000001c , 0x00000002 
+ 00025711  0x00004ea5 arg  0x00000183 , 0x00000011 
+ 00025712  0x00004ea6 arg  0x00000000 , 0x00000012 
+ 00025713  0x00004ea7 branch  0x0000626f 
+ 00025714  0x00004eab arg  0x00000006 , 0x00000002 
+ 00025715  0x00004eac arg  0x0000453e , 0x00000011 
+ 00025716  0x00004ead arg  0x0000001d , 0x00000012 
+ 00025717  0x00004eae branch  0x0000626f 
+ 00025718  0x00004eb1 arg  0x00000006 , 0x00000002 
+ 00025719  0x00004eb2 arg  0x0000453e , 0x00000011 
+ 00025720  0x00004eb3 arg  0x0000001d , 0x00000012 
+ 00025721  0x00004eb4 branch  0x00006245 
+ 00025722  0x00004eb8 set1  0x00000025 , 0x00000000 
+ 00025723  0x00004eb9 bpatch  0x0000008e , 0x00004031 
+ 00025724  0x00004eba arg  0x00000007 , 0x00000002 
+ 00025725  0x00004ebb arg  0x000001a8 , 0x00000011 
+ 00025726  0x00004ebc arg  0x00000000 , 0x00000012 
+ 00025727  0x00004ebd fetch  0x00000001 , 0x000001a7 
+ 00025728  0x00004ebe mul32  0x0000003f , 0x00000007 , 0x0000003f 
+ 00025729  0x00004ebf iadd  0x00000012 , 0x00000012 
+ 00025730  0x00004ec0 branch  0x00006245 
+ 00025731  0x00004ec3 arg  0x00000010 , 0x00000002 
+ 00025732  0x00004ec4 arg  0x00000023 , 0x00000012 
+ 00025733  0x00004ec5 fetch  0x00000001 , 0x000001a7 
+ 00025734  0x00004ec6 lshift4  0x0000003f , 0x0000003f 
+ 00025735  0x00004ec7 iadd  0x00000012 , 0x00000012 
+ 00025736  0x00004ec8 rtn 
+ 00025737  0x00004ecb arg  0x000044a2 , 0x00000011 
+ 00025738  0x00004ecc branch  0x0000648c 
+ 00025739  0x00004ece arg  0x00004261 , 0x00000011 
+ 00025740  0x00004ed0 set1  0x00000025 , 0x00000000 
+ 00025741  0x00004ed1 bpatch  0x0000008f , 0x00004031 
+ 00025742  0x00004ed2 call  0x00006483 
+ 00025743  0x00004ed3 branch  0x0000626f 
+ 00025744  0x00004ed6 arg  0x000044a2 , 0x00000011 
+ 00025745  0x00004ed7 branch  0x00006493 
+ 00025746  0x00004ed9 arg  0x00004261 , 0x00000011 
+ 00025747  0x00004edb set1  0x00000025 , 0x00000000 
+ 00025748  0x00004edc bpatch  0x00000090 , 0x00004032 
+ 00025749  0x00004edd call  0x00006483 
+ 00025750  0x00004ede branch  0x00006245 
+ 00025751  0x00004ee3 arg  0x0000001c , 0x00000002 
+ 00025752  0x00004ee4 arg  0x0000018a , 0x00000011 
+ 00025753  0x00004ee5 arg  0x00000000 , 0x00000012 
+ 00025754  0x00004ee6 branch  0x00006245 
+ 00025755  0x00004eea set1  0x00000025 , 0x00000000 
+ 00025756  0x00004eeb bpatch  0x00000091 , 0x00004032 
+ 00025757  0x00004eec setarg  0x0000018a 
+ 00025758  0x00004eed store  0x00000002 , 0x000001af 
+ 00025759  0x00004eee jam  0x00000000 , 0x000001a7 
+ 00025760  0x00004eef arg  0x00000004 , 0x00000039 
+ 00025761  0x00004ef1 copy  0x00000039 , 0x0000003f 
+ 00025762  0x00004ef2 store  0x00000001 , 0x000009be 
+ 00025763  0x00004ef3 fetch  0x00000002 , 0x000001af 
+ 00025764  0x00004ef4 copy  0x0000003f , 0x00000011 
+ 00025765  0x00004ef5 call  0x000064bb 
+ 00025766  0x00004ef6 rtn  0x00000028 
+ 00025767  0x00004ef7 fetch  0x00000002 , 0x000001af 
+ 00025768  0x00004ef8 increase  0x00000007 , 0x0000003f 
+ 00025769  0x00004ef9 store  0x00000002 , 0x000001af 
+ 00025770  0x00004efa fetch  0x00000001 , 0x000001a7 
+ 00025771  0x00004efb increase  0x00000001 , 0x0000003f 
+ 00025772  0x00004efc store  0x00000001 , 0x000001a7 
+ 00025773  0x00004efd fetch  0x00000001 , 0x000009be 
+ 00025774  0x00004efe copy  0x0000003f , 0x00000039 
+ 00025775  0x00004eff loop  0x000064a1 
+ 00025776  0x00004f00 rtn 
+ 00025777  0x00004f04 fetch  0x00000008 , 0x00004261 
+ 00025778  0x00004f05 fetcht  0x00000008 , 0x00004269 
+ 00025779  0x00004f06 ior  0x00000002 , 0x0000003f 
+ 00025780  0x00004f07 rtn  0x00000034 
+ 00025781  0x00004f08 jam  0x00000001 , 0x0000425d 
+ 00025782  0x00004f09 rtn 
+ 00025783  0x00004f0b fetch  0x00000006 , 0x00004273 
+ 00025784  0x00004f0c rtn  0x00000034 
+ 00025785  0x00004f0d jam  0x00000001 , 0x000044b2 
+ 00025786  0x00004f0e rtn 
+ 00025787  0x00004f11 arg  0x000001a8 , 0x00000012 
+ 00025788  0x00004f12 arg  0x00000007 , 0x00000039 
+ 00025789  0x00004f13 call  0x00007f55 
+ 00025790  0x00004f14 branch  0x000064c0 , 0x00000005 
+ 00025791  0x00004f15 rtn 
+ 00025792  0x00004f17 enable  0x00000028 
+ 00025793  0x00004f18 rtn 
+ 00025794  0x00004f20 set1  0x00000025 , 0x00000000 
+ 00025795  0x00004f21 bpatch  0x00000092 , 0x00004032 
+ 00025796  0x00004f22 set1  0x00000007 , 0x00000002 
+ 00025797  0x00004f23 call  0x000064f5 
+ 00025798  0x00004f24 nsetflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00025799  0x00004f2a set1  0x00000025 , 0x00000000 
+ 00025800  0x00004f2b bpatch  0x00000093 , 0x00004032 
+ 00025801  0x00004f2c isolate0  0x00000007 , 0x00000002 
+ 00025802  0x00004f2d and  0x00000002 , 0x0000001f , 0x00000007 
+ 00025803  0x00004f2e fetch  0x00000004 , 0x000000a0 
+ 00025804  0x00004f2f qsetflag  0x00000001 , 0x0000003f 
+ 00025805  0x00004f30 store  0x00000004 , 0x000000a0 
+ 00025806  0x00004f31 fetch  0x00000004 , 0x000000a4 
+ 00025807  0x00004f32 nqsetflag  0x00000001 , 0x0000003f 
+ 00025808  0x00004f33 store  0x00000004 , 0x000000a4 
+ 00025809  0x00004f34 rtn 
+ 00025810  0x00004f38 set1  0x00000025 , 0x00000000 
+ 00025811  0x00004f39 bpatch  0x00000094 , 0x00004032 
+ 00025812  0x00004f3a isolate0  0x00000007 , 0x00000002 
+ 00025813  0x00004f3b and  0x00000002 , 0x0000001f , 0x00000007 
+ 00025814  0x00004f3c fetch  0x00000004 , 0x000000a0 
+ 00025815  0x00004f3d qset0  0x0000003f 
+ 00025816  0x00004f3e store  0x00000004 , 0x000000a0 
+ 00025817  0x00004f3f fetch  0x00000004 , 0x000000a4 
+ 00025818  0x00004f40 qset0  0x0000003f 
+ 00025819  0x00004f41 store  0x00000004 , 0x000000a4 
+ 00025820  0x00004f42 rtn 
+ 00025821  0x00004f46 call  0x000064d2 
+ 00025822  0x00004f47 branch  0x000064e0 
+ 00025823  0x00004f4b ncall  0x000064c7 , 0x0000002b 
+ 00025824  0x00004f4e arg  0x0000807c , 0x00000005 
+ 00025825  0x00004f4f call  0x00006504 
+ 00025826  0x00004f50 setflip  0x00000007 , 0x00000002 
+ 00025827  0x00004f51 arg  0x00008078 , 0x00000005 
+ 00025828  0x00004f52 call  0x00006504 
+ 00025829  0x00004f53 set0  0x00000007 , 0x00000002 
+ 00025830  0x00004f54 arg  0x00008070 , 0x00000005 
+ 00025831  0x00004f55 branch  0x00006504 
+ 00025832  0x00004f59 setflip  0x00000007 , 0x00000002 
+ 00025833  0x00004f5a call  0x00006503 
+ 00025834  0x00004f5c set1  0x00000007 , 0x00000002 
+ 00025835  0x00004f5d arg  0x00008070 , 0x00000005 
+ 00025836  0x00004f5e branch  0x00006504 
+ 00025837  0x00004f61 and  0x00000002 , 0x00000007 , 0x00000007 
+ 00025838  0x00004f62 rshift3  0x00000002 , 0x0000003f 
+ 00025839  0x00004f63 and_into  0x00000003 , 0x0000003f 
+ 00025840  0x00004f64 iadd  0x00000005 , 0x00000005 
+ 00025841  0x00004f65 ifetch  0x00000001 , 0x00000005 
+ 00025842  0x00004f66 rtn 
+ 00025843  0x00004f69 arg  0x00008074 , 0x00000005 
+ 00025844  0x00004f6a branch  0x000064f6 
+ 00025845  0x00004f6f arg  0x0000811c , 0x00000005 
+ 00025846  0x00004f71 call  0x000064ed 
+ 00025847  0x00004f72 isolate1  0x00000007 , 0x00000002 
+ 00025848  0x00004f73 branch  0x000064fb , 0x00000001 
+ 00025849  0x00004f74 qisolate0  0x0000003f 
+ 00025850  0x00004f75 rtn 
+ 00025851  0x00004f77 qisolate1  0x0000003f 
+ 00025852  0x00004f78 rtn 
+ 00025853  0x00004f7b isolate1  0x00000007 , 0x0000003e 
+ 00025854  0x00004f7c branch  0x00006500 
+ 00025855  0x00004f7f isolate0  0x00000007 , 0x0000003e 
+ 00025856  0x00004f83 setarg  0x00000000 
+ 00025857  0x00004f84 nsetflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00025858  0x00004f85 ixor  0x00000002 , 0x00000002 
+ 00025859  0x00004f89 arg  0x00008074 , 0x00000005 
+ 00025860  0x00004f8d call  0x000064ed 
+ 00025861  0x00004f8e isolate1  0x00000007 , 0x00000002 
+ 00025862  0x00004f8f qsetflag  0x00000001 , 0x0000003f 
+ 00025863  0x00004f90 istore  0x00000001 , 0x00000005 
+ 00025864  0x00004f91 rtn 
+ 00025865  0x00004f94 arg  0xffffffff , 0x00000011 
+ 00025866  0x00004f95 hfetch  0x00000001 , 0x00008081 
+ 00025867  0x00004f96 isolate1  0x00000001 , 0x0000003f 
+ 00025868  0x00004f97 call  0x0000654d , 0x00000001 
+ 00025869  0x00004f99 and  0x0000003f , 0x00000003 , 0x00000012 
+ 00025870  0x00004f9a sub  0x00000012 , 0x00000001 , 0x0000003e 
+ 00025871  0x00004f9b call  0x0000654f , 0x00000005 
+ 00025872  0x00004f9d isolate1  0x00000002 , 0x0000003f 
+ 00025873  0x00004f9e call  0x00006549 , 0x00000001 
+ 00025874  0x00004fa0 isolate1  0x00000003 , 0x0000003f 
+ 00025875  0x00004fa1 call  0x0000654b , 0x00000001 
+ 00025876  0x00004fa3 isolate1  0x00000005 , 0x0000003f 
+ 00025877  0x00004fa4 call  0x00006551 , 0x00000001 
+ 00025878  0x00004fa6 isolate1  0x00000006 , 0x0000003f 
+ 00025879  0x00004fa7 arg  0x00000004 , 0x00000007 
+ 00025880  0x00004fa8 call  0x00006555 , 0x00000001 
+ 00025881  0x00004fa9 nsetflag  0x00000001 , 0x00000004 , 0x00000011 
+ 00025882  0x00004fab isolate1  0x00000007 , 0x0000003f 
+ 00025883  0x00004fac arg  0x00000005 , 0x00000007 
+ 00025884  0x00004fad call  0x00006555 , 0x00000001 
+ 00025885  0x00004faf hfetch  0x00000001 , 0x00008082 
+ 00025886  0x00004fb0 isolate1  0x00000000 , 0x0000003f 
+ 00025887  0x00004fb1 arg  0x00000003 , 0x00000007 
+ 00025888  0x00004fb2 call  0x00006555 , 0x00000001 
+ 00025889  0x00004fb4 hfetcht  0x00000001 , 0x00008080 
+ 00025890  0x00004fb5 isolate1  0x00000000 , 0x00000002 
+ 00025891  0x00004fb6 arg  0x00000005 , 0x00000007 
+ 00025892  0x00004fb7 call  0x00006555 , 0x00000001 
+ 00025893  0x00004fb9 ior  0x00000002 , 0x0000003f 
+ 00025894  0x00004fbb isolate1  0x00000001 , 0x0000003f 
+ 00025895  0x00004fbc arg  0x00000006 , 0x00000007 
+ 00025896  0x00004fbd call  0x00006555 , 0x00000001 
+ 00025897  0x00004fbf isolate1  0x00000002 , 0x0000003f 
+ 00025898  0x00004fc0 arg  0x00000007 , 0x00000007 
+ 00025899  0x00004fc1 call  0x00006555 , 0x00000001 
+ 00025900  0x00004fc3 isolate1  0x00000003 , 0x0000003f 
+ 00025901  0x00004fc4 arg  0x00000012 , 0x00000007 
+ 00025902  0x00004fc5 call  0x00006555 , 0x00000001 
+ 00025903  0x00004fc7 isolate1  0x00000004 , 0x0000003f 
+ 00025904  0x00004fc8 arg  0x00000013 , 0x00000007 
+ 00025905  0x00004fc9 call  0x00006555 , 0x00000001 
+ 00025906  0x00004fcb isolate1  0x00000005 , 0x0000003f 
+ 00025907  0x00004fcc arg  0x00000014 , 0x00000007 
+ 00025908  0x00004fcd call  0x00006555 , 0x00000001 
+ 00025909  0x00004fcf isolate1  0x00000006 , 0x0000003f 
+ 00025910  0x00004fd0 arg  0x00000015 , 0x00000007 
+ 00025911  0x00004fd1 call  0x00006555 , 0x00000001 
+ 00025912  0x00004fd3 isolate1  0x00000007 , 0x0000003f 
+ 00025913  0x00004fd4 arg  0x00000016 , 0x00000007 
+ 00025914  0x00004fd5 call  0x00006555 , 0x00000001 
+ 00025915  0x00004fd7 hfetch  0x00000001 , 0x00008062 
+ 00025916  0x00004fd8 isolate1  0x00000004 , 0x0000003f 
+ 00025917  0x00004fd9 call  0x00006553 , 0x00000001 
+ 00025918  0x00004fda set1  0x00000025 , 0x00000000 
+ 00025919  0x00004fdb bpatch  0x00000095 , 0x00004032 
+ 00025920  0x00004fdd hfetch  0x00000004 , 0x00008078 
+ 00025921  0x00004fde hfetcht  0x00000004 , 0x0000807c 
+ 00025922  0x00004fdf ior  0x00000002 , 0x0000003f 
+ 00025923  0x00004fe0 invert  0x0000003f , 0x0000003f 
+ 00025924  0x00004fe1 iand  0x00000011 , 0x0000003f 
+ 00025925  0x00004fe3 hfetcht  0x00000004 , 0x0000807c 
+ 00025926  0x00004fe4 ior  0x00000002 , 0x0000003f 
+ 00025927  0x00004fe5 hstore  0x00000004 , 0x0000807c 
+ 00025928  0x00004fe6 rtn 
+ 00025929  0x00004fe8 arg  0x00000006 , 0x00000007 
+ 00025930  0x00004fe9 branch  0x00006559 
+ 00025931  0x00004feb arg  0x00000009 , 0x00000007 
+ 00025932  0x00004fec branch  0x00006557 
+ 00025933  0x00004fee arg  0x00000017 , 0x00000007 
+ 00025934  0x00004fef branch  0x00006557 
+ 00025935  0x00004ff1 arg  0x00000019 , 0x00000007 
+ 00025936  0x00004ff2 branch  0x00006559 
+ 00025937  0x00004ff4 arg  0x0000001b , 0x00000007 
+ 00025938  0x00004ff5 branch  0x00006559 
+ 00025939  0x00004ff7 arg  0x00000002 , 0x00000007 
+ 00025940  0x00004ff8 branch  0x00006559 
+ 00025941  0x00004ffa arg  0x00000001 , 0x00000039 
+ 00025942  0x00004ffb branch  0x0000655a 
+ 00025943  0x00004ffd arg  0x00000004 , 0x00000039 
+ 00025944  0x00004ffe branch  0x0000655a 
+ 00025945  0x00005000 arg  0x00000002 , 0x00000039 
+ 00025946  0x00005002 qset0  0x00000011 
+ 00025947  0x00005003 increase  0x00000001 , 0x00000007 
+ 00025948  0x00005004 loop  0x0000655a 
+ 00025949  0x00005005 rtn 
+ 00025950  0x0000500e call  0x0000656a 
+ 00025951  0x0000500f arg  0x00000006 , 0x00000002 
+ 00025952  0x00005010 branch  0x000064e8 
+ 00025953  0x00005013 call  0x0000655e 
+ 00025954  0x00005014 arg  0x00000006 , 0x00000002 
+ 00025955  0x00005015 branch  0x000064fd 
+ 00025956  0x0000501a call  0x0000656a 
+ 00025957  0x0000501b hfetch  0x00000001 , 0x00008078 
+ 00025958  0x0000501c set1  0x00000007 , 0x0000003f 
+ 00025959  0x0000501d hstore  0x00000001 , 0x00008078 
+ 00025960  0x0000501e arg  0x00000007 , 0x00000002 
+ 00025961  0x0000501f branch  0x000064df 
+ 00025962  0x00005022 hfetch  0x00000001 , 0x00008081 
+ 00025963  0x00005023 and_into  0x000000fb , 0x0000003f 
+ 00025964  0x00005024 hstore  0x00000001 , 0x00008081 
+ 00025965  0x00005025 rtn 
+ 00025966  0x00005028 hfetch  0x00000001 , 0x00008081 
+ 00025967  0x00005029 isolate1  0x00000002 , 0x0000003f 
+ 00025968  0x0000502a rtn 
+ 00025969  0x0000502d call  0x000062c4 
+ 00025970  0x0000502e setarg  0x000007e0 
+ 00025971  0x0000502f arg  0x000041f0 , 0x00000011 
+ 00025972  0x00005030 arg  0x00000002 , 0x00000002 
+ 00025973  0x00005031 call  0x0000630d 
+ 00025974  0x00005032 branch  0x000062c7 
+ 00025975  0x00005037 set1  0x00000025 , 0x00000000 
+ 00025976  0x00005038 bpatch  0x00000096 , 0x00004032 
+ 00025977  0x0000503a call  0x000062c4 
+ 00025978  0x0000503b setarg  0x000007e2 
+ 00025979  0x0000503c arg  0x000042bf , 0x00000011 
+ 00025980  0x0000503d arg  0x0000000e , 0x00000002 
+ 00025981  0x0000503e call  0x0000630d 
+ 00025982  0x0000503f call  0x000062c7 
+ 00025983  0x00005041 fetch  0x00000001 , 0x000042cf 
+ 00025984  0x00005042 bbit1  0x00000000 , 0x00006584 
+ 00025985  0x00005043 bbit1  0x00000001 , 0x00006598 
+ 00025986  0x00005044 bbit1  0x00000002 , 0x000065ac 
+ 00025987  0x00005045 rtn 
+ 00025988  0x00005048 fetcht  0x00000002 , 0x000042cb 
+ 00025989  0x00005049 setarg  0x0000aa55 
+ 00025990  0x0000504a isub  0x00000002 , 0x0000003e 
+ 00025991  0x0000504b branch  0x0000658d , 0x00000005 
+ 00025992  0x0000504c setarg  0x00004dfa 
+ 00025993  0x0000504d store  0x00000002 , 0x000042c9 
+ 00025994  0x0000504e setarg  0x00004894 
+ 00025995  0x0000504f store  0x00000002 , 0x000042c3 
+ 00025996  0x00005050 branch  0x00006595 
+ 00025997  0x00005053 fetch  0x00000002 , 0x000042c9 
+ 00025998  0x00005054 nbranch  0x00006591 , 0x00000034 
+ 00025999  0x00005055 setarg  0x00004dfa 
+ 00026000  0x00005056 store  0x00000002 , 0x000042c9 
+ 00026001  0x00005058 fetch  0x00000002 , 0x000042c3 
+ 00026002  0x00005059 nbranch  0x00006595 , 0x00000034 
+ 00026003  0x0000505a setarg  0x00004894 
+ 00026004  0x0000505b store  0x00000002 , 0x000042c3 
+ 00026005  0x0000505d setarg  0x00000064 
+ 00026006  0x0000505e store  0x00000002 , 0x000042cd 
+ 00026007  0x0000505f rtn 
+ 00026008  0x00005062 fetcht  0x00000002 , 0x000042cb 
+ 00026009  0x00005063 setarg  0x0000aa55 
+ 00026010  0x00005064 isub  0x00000002 , 0x0000003e 
+ 00026011  0x00005065 branch  0x000065a1 , 0x00000005 
+ 00026012  0x00005066 setarg  0x00005932 
+ 00026013  0x00005067 store  0x00000002 , 0x000042c7 
+ 00026014  0x00005068 setarg  0x00004323 
+ 00026015  0x00005069 store  0x00000002 , 0x000042c1 
+ 00026016  0x0000506a branch  0x000065a9 
+ 00026017  0x0000506d fetch  0x00000002 , 0x000042c7 
+ 00026018  0x0000506e nbranch  0x000065a5 , 0x00000034 
+ 00026019  0x0000506f setarg  0x00005932 
+ 00026020  0x00005070 store  0x00000002 , 0x000042c7 
+ 00026021  0x00005072 fetch  0x00000002 , 0x000042c1 
+ 00026022  0x00005073 nbranch  0x000065a9 , 0x00000034 
+ 00026023  0x00005074 setarg  0x00004323 
+ 00026024  0x00005075 store  0x00000002 , 0x000042c1 
+ 00026025  0x00005077 setarg  0x00000190 
+ 00026026  0x00005078 store  0x00000002 , 0x000042cd 
+ 00026027  0x00005079 rtn 
+ 00026028  0x0000507c fetcht  0x00000002 , 0x000042cb 
+ 00026029  0x0000507d setarg  0x0000aa55 
+ 00026030  0x0000507e isub  0x00000002 , 0x0000003e 
+ 00026031  0x0000507f branch  0x000065b5 , 0x00000005 
+ 00026032  0x00005080 setarg  0x00006946 
+ 00026033  0x00005081 store  0x00000002 , 0x000042c5 
+ 00026034  0x00005082 setarg  0x00005377 
+ 00026035  0x00005083 store  0x00000002 , 0x000042bf 
+ 00026036  0x00005084 branch  0x000065bd 
+ 00026037  0x00005087 fetch  0x00000002 , 0x000042c5 
+ 00026038  0x00005088 nbranch  0x000065b9 , 0x00000034 
+ 00026039  0x00005089 setarg  0x00006946 
+ 00026040  0x0000508a store  0x00000002 , 0x000042c5 
+ 00026041  0x0000508c fetch  0x00000002 , 0x000042bf 
+ 00026042  0x0000508d nbranch  0x000065bd , 0x00000034 
+ 00026043  0x0000508e setarg  0x00005377 
+ 00026044  0x0000508f store  0x00000002 , 0x000042bf 
+ 00026045  0x00005091 setarg  0x00000032 
+ 00026046  0x00005092 store  0x00000002 , 0x000042cd 
+ 00026047  0x00005093 rtn 
+ 00026048  0x00005097 fetch  0x00000001 , 0x000042cf 
+ 00026049  0x00005098 bbit1  0x00000000 , 0x000065c5 
+ 00026050  0x00005099 bbit1  0x00000001 , 0x000065c7 
+ 00026051  0x0000509a bbit1  0x00000002 , 0x000065c9 
+ 00026052  0x0000509b rtn 
+ 00026053  0x0000509d hjam  0x000000bf , 0x00008971 
+ 00026054  0x0000509e branch  0x000065cd 
+ 00026055  0x000050a0 hjam  0x000000af , 0x00008971 
+ 00026056  0x000050a1 branch  0x000065cd 
+ 00026057  0x000050a3 hjam  0x0000008f , 0x00008971 
+ 00026058  0x000050a4 fetch  0x00000001 , 0x000042d0 
+ 00026059  0x000050a5 hstore  0x00000001 , 0x00008973 
+ 00026060  0x000050a6 branch  0x000065cd 
+ 00026061  0x000050a8 set1  0x00000025 , 0x00000000 
+ 00026062  0x000050a9 bpatch  0x00000097 , 0x00004032 
+ 00026063  0x000050aa hfetch  0x00000001 , 0x00008053 
+ 00026064  0x000050ab set1  0x00000007 , 0x0000003f 
+ 00026065  0x000050ac hstore  0x00000001 , 0x00008053 
+ 00026066  0x000050ad hfetch  0x00000001 , 0x00008973 
+ 00026067  0x000050ae or_into  0x00000030 , 0x0000003f 
+ 00026068  0x000050af hstore  0x00000001 , 0x00008973 
+ 00026069  0x000050b0 hjam  0x0000007c , 0x00008906 
+ 00026070  0x000050b1 hjam  0x000000aa , 0x00008972 
+ 00026071  0x000050b2 nop  0x00001388 
+ 00026072  0x000050b3 hfetcht  0x00000002 , 0x00008150 
+ 00026073  0x000050b4 hfetch  0x00000001 , 0x00008053 
+ 00026074  0x000050b5 set0  0x00000007 , 0x0000003f 
+ 00026075  0x000050b6 hstore  0x00000001 , 0x00008053 
+ 00026076  0x000050b7 storet  0x00000002 , 0x000042d1 
+ 00026077  0x000050b8 rtn 
+ 00026078  0x000050bb set1  0x00000025 , 0x00000000 
+ 00026079  0x000050bc bpatch  0x00000098 , 0x00004033 
+ 00026080  0x000050bd fetch  0x00000001 , 0x000042cf 
+ 00026081  0x000050be bbit1  0x00000000 , 0x000065e5 
+ 00026082  0x000050bf bbit1  0x00000001 , 0x000065e9 
+ 00026083  0x000050c0 bbit1  0x00000002 , 0x000065ed 
+ 00026084  0x000050c1 rtn 
+ 00026085  0x000050c4 fetch  0x00000002 , 0x000042c9 
+ 00026086  0x000050c5 fetcht  0x00000002 , 0x000042c3 
+ 00026087  0x000050c6 arg  0x000000c8 , 0x00000013 
+ 00026088  0x000050c7 branch  0x000065f1 
+ 00026089  0x000050ca fetch  0x00000002 , 0x000042c7 
+ 00026090  0x000050cb fetcht  0x00000002 , 0x000042c1 
+ 00026091  0x000050cc arg  0x00000064 , 0x00000013 
+ 00026092  0x000050cd branch  0x000065f1 
+ 00026093  0x000050d0 fetch  0x00000002 , 0x000042c5 
+ 00026094  0x000050d1 fetcht  0x00000002 , 0x000042bf 
+ 00026095  0x000050d2 arg  0x00000032 , 0x00000013 
+ 00026096  0x000050d3 branch  0x000065f1 
+ 00026097  0x000050d6 isub  0x00000002 , 0x00000011 
+ 00026098  0x000050d7 fetch  0x00000002 , 0x000042d1 
+ 00026099  0x000050d8 isub  0x00000002 , 0x0000003f 
+ 00026100  0x000050d9 nbranch  0x000065fe , 0x00000002 
+ 00026101  0x000050da fetcht  0x00000002 , 0x000042cd 
+ 00026102  0x000050db imul32  0x00000002 , 0x00000012 
+ 00026103  0x000050dc copy  0x00000013 , 0x0000003f 
+ 00026104  0x000050dd imul32  0x00000011 , 0x0000003f 
+ 00026105  0x000050de iadd  0x00000012 , 0x0000003f 
+ 00026106  0x000050e0 idiv  0x00000011 
+ 00026107  0x000050e1 call  0x00007f53 
+ 00026108  0x000050e2 quotient  0x0000003f 
+ 00026109  0x000050e3 rtn 
+ 00026110  0x000050e6 copy  0x00000002 , 0x0000003f 
+ 00026111  0x000050e7 fetcht  0x00000002 , 0x000042d1 
+ 00026112  0x000050e8 isub  0x00000002 , 0x0000003f 
+ 00026113  0x000050e9 fetcht  0x00000002 , 0x000042cd 
+ 00026114  0x000050ea imul32  0x00000002 , 0x00000012 
+ 00026115  0x000050eb copy  0x00000013 , 0x0000003f 
+ 00026116  0x000050ec imul32  0x00000011 , 0x0000003f 
+ 00026117  0x000050ed isub  0x00000012 , 0x0000003f 
+ 00026118  0x000050ee branch  0x000065fa 
+ 00026119  0x000050f4 rtn  0x0000002b 
+ 00026120  0x000050f5 jam  0x00000000 , 0x000045ff 
+ 00026121  0x000050f6 jam  0x00000003 , 0x0000041c 
+ 00026122  0x000050f7 jam  0x00000003 , 0x0000041d 
+ 00026123  0x000050f8 jam  0x00000011 , 0x00000421 
+ 00026124  0x000050f9 jam  0x00000013 , 0x00000422 
+ 00026125  0x000050fa setarg  0x00000000 
+ 00026126  0x000050fb store  0x00000003 , 0x0000041e 
+ 00026127  0x000050fc store  0x00000001 , 0x000042e4 
+ 00026128  0x000050fd jam  0x00000000 , 0x0000470a 
+ 00026129  0x00005100 set1  0x00000025 , 0x00000000 
+ 00026130  0x00005101 bpatch  0x00000099 , 0x00004033 
+ 00026131  0x00005102 setarg  0x00000000 
+ 00026132  0x00005103 store  0x00000001 , 0x000042e4 
+ 00026133  0x00005104 store  0x00000001 , 0x000045fc 
+ 00026134  0x00005105 store  0x00000001 , 0x000045f5 
+ 00026135  0x00005106 fetch  0x00000001 , 0x00004603 
+ 00026136  0x00005107 beq  0x00000001 , 0x0000661b 
+ 00026137  0x00005108 jam  0x00000050 , 0x00004601 
+ 00026138  0x00005109 rtn 
+ 00026139  0x0000510c jam  0x00000000 , 0x00004601 
+ 00026140  0x0000510d rtn 
+ 00026141  0x00005110 or_into  0x00000002 , 0x00000002 
+ 00026142  0x00005111 rtn 
+ 00026143  0x0000511e copy  0x00000002 , 0x0000003f 
+ 00026144  0x0000511f reverse  0x0000003f , 0x0000003f 
+ 00026145  0x00005120 store  0x00000001 , 0x000045fa 
+ 00026146  0x00005121 force  0x0000003f , 0x0000003f 
+ 00026147  0x00005122 reverse  0x0000003f , 0x0000003f 
+ 00026148  0x00005123 store  0x00000001 , 0x000045f9 
+ 00026149  0x00005124 force  0x00000001 , 0x0000003f 
+ 00026150  0x00005125 reverse  0x0000003f , 0x0000003f 
+ 00026151  0x00005126 store  0x00000001 , 0x000045f8 
+ 00026152  0x00005127 call  0x00006655 
+ 00026153  0x00005128 copy  0x00000002 , 0x0000003f 
+ 00026154  0x00005129 rtn 
+ 00026155  0x0000512b reverse  0x0000003f , 0x0000003f 
+ 00026156  0x0000512c store  0x00000001 , 0x000045fa 
+ 00026157  0x0000512d force  0x00000073 , 0x0000003f 
+ 00026158  0x0000512e reverse  0x0000003f , 0x0000003f 
+ 00026159  0x0000512f store  0x00000001 , 0x000045f9 
+ 00026160  0x00005130 force  0x00000001 , 0x0000003f 
+ 00026161  0x00005131 reverse  0x0000003f , 0x0000003f 
+ 00026162  0x00005132 store  0x00000001 , 0x000045f8 
+ 00026163  0x00005133 branch  0x00006655 
+ 00026164  0x00005136 fetch  0x00000001 , 0x000045fb 
+ 00026165  0x00005137 branch  0x00006638 , 0x00000034 
+ 00026166  0x00005138 setarg  0x00000070 
+ 00026167  0x00005139 rtn 
+ 00026168  0x0000513b setarg  0x000000aa 
+ 00026169  0x0000513c rtn 
+ 00026170  0x0000513f reverse  0x0000003f , 0x0000003f 
+ 00026171  0x00005140 store  0x00000001 , 0x000045fa 
+ 00026172  0x00005141 force  0x000000ef , 0x0000003f 
+ 00026173  0x00005142 call  0x00006649 
+ 00026174  0x00005143 fetcht  0x00000002 , 0x00000426 
+ 00026175  0x00005144 copy  0x00000002 , 0x00000005 
+ 00026176  0x00005145 istore  0x00000001 , 0x00000005 
+ 00026177  0x00005146 copy  0x00000005 , 0x00000002 
+ 00026178  0x00005147 storet  0x00000002 , 0x00000426 
+ 00026179  0x00005148 force  0x000000ff , 0x0000003f 
+ 00026180  0x00005149 call  0x00006649 
+ 00026181  0x0000514a fetcht  0x00000002 , 0x00000426 
+ 00026182  0x0000514b copy  0x00000002 , 0x00000005 
+ 00026183  0x0000514c istore  0x00000001 , 0x00000005 
+ 00026184  0x0000514d rtn 
+ 00026185  0x00005157 reverse  0x0000003f , 0x0000003f 
+ 00026186  0x00005158 store  0x00000001 , 0x000045f9 
+ 00026187  0x00005159 fetch  0x00000002 , 0x000045f9 
+ 00026188  0x0000515a lshift8  0x0000003f , 0x0000003f 
+ 00026189  0x0000515b store  0x00000003 , 0x00000423 
+ 00026190  0x0000515c arg  0x00000107 , 0x00000011 
+ 00026191  0x0000515d arg  0x0000000f , 0x00000012 
+ 00026192  0x0000515e call  0x00006662 
+ 00026193  0x0000515f xor_into  0x000000d7 , 0x0000003f 
+ 00026194  0x00005160 invert  0x0000003f , 0x0000003f 
+ 00026195  0x00005161 reverse  0x0000003f , 0x0000003f 
+ 00026196  0x00005162 rtn 
+ 00026197  0x0000516d fetch  0x00000003 , 0x000045f8 
+ 00026198  0x0000516e store  0x00000003 , 0x00000423 
+ 00026199  0x0000516f arg  0x00000107 , 0x00000011 
+ 00026200  0x00005170 arg  0x0000000f , 0x00000012 
+ 00026201  0x00005171 call  0x00006662 
+ 00026202  0x00005172 lshift8  0x0000003f , 0x0000003f 
+ 00026203  0x00005173 arg  0x00000007 , 0x00000012 
+ 00026204  0x00005174 call  0x00006662 
+ 00026205  0x00005175 xor_into  0x0000002b , 0x0000003f 
+ 00026206  0x00005176 invert  0x0000003f , 0x0000003f 
+ 00026207  0x00005177 reverse  0x0000003f , 0x0000003f 
+ 00026208  0x00005178 copy  0x0000003f , 0x00000002 
+ 00026209  0x00005179 rtn 
+ 00026210  0x0000517c arg  0x00000000 , 0x00000013 
+ 00026211  0x0000517d copy  0x00000012 , 0x00000039 
+ 00026212  0x0000517e call  0x00007e43 
+ 00026213  0x0000517f icopy  0x00000002 
+ 00026214  0x00005185 copy  0x00000002 , 0x0000003f 
+ 00026215  0x00005186 lshift  0x00000013 , 0x00000013 
+ 00026216  0x00005187 bbit0  0x00000008 , 0x0000666b 
+ 00026217  0x00005188 ixor  0x00000011 , 0x00000002 
+ 00026218  0x00005189 increase  0x00000001 , 0x00000013 
+ 00026219  0x0000518b lshift  0x00000002 , 0x00000002 
+ 00026220  0x0000518c fetch  0x00000003 , 0x00000423 
+ 00026221  0x0000518d increase  0xffffffff , 0x00000012 
+ 00026222  0x0000518e compare  0x000000ff , 0x00000012 , 0x000000ff 
+ 00026223  0x0000518f branch  0x00006675 , 0x00000001 
+ 00026224  0x00005190 copy  0x00000012 , 0x00000039 
+ 00026225  0x00005191 call  0x00007e43 
+ 00026226  0x00005192 isolate1  0x00000000 , 0x0000003f 
+ 00026227  0x00005193 setflag  0x00000001 , 0x00000000 , 0x00000002 
+ 00026228  0x00005194 branch  0x00006666 
+ 00026229  0x00005197 rshift  0x00000002 , 0x0000003f 
+ 00026230  0x00005198 rtn 
+ 00026231  0x0000519b fetcht  0x00000001 , 0x000045f5 
+ 00026232  0x0000519e lshift2  0x00000002 , 0x00000002 
+ 00026233  0x0000519f set1  0x00000000 , 0x00000002 
+ 00026234  0x000051a0 fetch  0x00000001 , 0x000045fb 
+ 00026235  0x000051a1 ncall  0x0000661d , 0x00000034 
+ 00026236  0x000051a2 storet  0x00000001 , 0x0000043c 
+ 00026237  0x000051a3 rtn 
+ 00026238  0x000051a7 lshift  0x00000002 , 0x00000002 
+ 00026239  0x000051a8 fetch  0x00000001 , 0x000045fb 
+ 00026240  0x000051a9 setflag  0x00000034 , 0x00000000 , 0x00000002 
+ 00026241  0x000051ab rtn 
+ 00026242  0x000051ad fetcht  0x00000001 , 0x0000042b 
+ 00026243  0x000051ae jam  0x000000d7 , 0x0000042d 
+ 00026244  0x000051af call  0x000067c1 
+ 00026245  0x000051b0 fetch  0x00000001 , 0x000042e1 
+ 00026246  0x000051b1 set1  0x00000006 , 0x0000003f 
+ 00026247  0x000051b2 set1  0x00000007 , 0x0000003f 
+ 00026248  0x000051b3 store  0x00000001 , 0x000042e1 
+ 00026249  0x000051b4 jam  0x00000000 , 0x000045fb 
+ 00026250  0x000051b5 branch  0x000067a1 
+ 00026251  0x000051b7 fetch  0x00000001 , 0x000042e1 
+ 00026252  0x000051b8 set1  0x00000007 , 0x0000003f 
+ 00026253  0x000051b9 store  0x00000001 , 0x000042e1 
+ 00026254  0x000051ba branch  0x000067a1 
+ 00026255  0x000051be set1  0x00000025 , 0x00000000 
+ 00026256  0x000051bf bpatch  0x0000009a , 0x00004033 
+ 00026257  0x000051c0 fetch  0x00000001 , 0x0000470a 
+ 00026258  0x000051c1 beq  0x00000000 , 0x00006694 
+ 00026259  0x000051c2 branch  0x00006755 
+ 00026260  0x000051c5 fetch  0x00000002 , 0x0000028d 
+ 00026261  0x000051c6 copy  0x0000003f , 0x00000006 
+ 00026262  0x000051c7 call  0x000066bf 
+ 00026263  0x000051c8 fetch  0x00000001 , 0x0000042b 
+ 00026264  0x000051c9 beq  0x00000000 , 0x0000669a 
+ 00026265  0x000051ca branch  0x00006720 
+ 00026266  0x000051cc set1  0x00000025 , 0x00000000 
+ 00026267  0x000051cd bpatch  0x0000009b , 0x00004033 
+ 00026268  0x000051ce fetch  0x00000001 , 0x0000042c 
+ 00026269  0x000051cf beq  0x0000003f , 0x00006682 
+ 00026270  0x000051d0 beq  0x00000073 , 0x0000668b 
+ 00026271  0x000051d1 beq  0x000000ef , 0x000066a2 
+ 00026272  0x000051d2 beq  0x00000053 , 0x0000674d 
+ 00026273  0x000051d3 rtn 
+ 00026274  0x000051d7 fetch  0x00000002 , 0x00000430 
+ 00026275  0x000051d8 copy  0x0000003f , 0x00000006 
+ 00026276  0x000051d9 call  0x000066ca 
+ 00026277  0x000051da fetch  0x00000001 , 0x00000432 
+ 00026278  0x000051db beq  0x00000041 , 0x000066ac 
+ 00026279  0x000051dc beq  0x00000040 , 0x000066b4 
+ 00026280  0x000051dd beq  0x00000071 , 0x000066ed 
+ 00026281  0x000051de beq  0x00000070 , 0x000066f9 
+ 00026282  0x000051df beq  0x00000049 , 0x00006704 
+ 00026283  0x000051e0 branch  0x000067a1 
+ 00026284  0x000051e3 call  0x000066b6 
+ 00026285  0x000051e5 branch  0x000066ae 
+ 00026286  0x000051e8 fetch  0x00000001 , 0x000042e4 
+ 00026287  0x000051e9 set1  0x00000000 , 0x0000003f 
+ 00026288  0x000051ea set1  0x00000001 , 0x0000003f 
+ 00026289  0x000051eb store  0x00000001 , 0x000042e4 
+ 00026290  0x000051ec call  0x000067ed 
+ 00026291  0x000051ed branch  0x000067a1 
+ 00026292  0x000051f0 call  0x000066b6 
+ 00026293  0x000051f1 branch  0x000067a1 
+ 00026294  0x000051f4 call  0x000066d2 
+ 00026295  0x000051f5 branch  0x000066de 
+ 00026296  0x000051f8 call  0x000066d2 
+ 00026297  0x000051f9 ifetch  0x00000001 , 0x00000006 
+ 00026298  0x000051fa rshift3  0x0000003f , 0x0000003f 
+ 00026299  0x000051fb store  0x00000001 , 0x00004602 
+ 00026300  0x000051fc ifetch  0x00000001 , 0x00000006 
+ 00026301  0x000051fd store  0x00000001 , 0x00000437 
+ 00026302  0x000051fe rtn 
+ 00026303  0x00005202 ifetch  0x00000001 , 0x00000006 
+ 00026304  0x00005203 store  0x00000001 , 0x0000042a 
+ 00026305  0x00005204 rshift3  0x0000003f , 0x0000003f 
+ 00026306  0x00005205 store  0x00000001 , 0x0000042b 
+ 00026307  0x00005206 ifetch  0x00000001 , 0x00000006 
+ 00026308  0x00005207 store  0x00000001 , 0x0000042c 
+ 00026309  0x00005209 call  0x000066d5 
+ 00026310  0x0000520a storet  0x00000002 , 0x0000042e 
+ 00026311  0x0000520b copy  0x00000006 , 0x0000003f 
+ 00026312  0x0000520c store  0x00000002 , 0x00000430 
+ 00026313  0x0000520d rtn 
+ 00026314  0x00005210 ifetch  0x00000001 , 0x00000006 
+ 00026315  0x00005211 rshift  0x0000003f , 0x0000003f 
+ 00026316  0x00005212 store  0x00000001 , 0x00000432 
+ 00026317  0x00005213 call  0x000066d5 
+ 00026318  0x00005214 storet  0x00000002 , 0x00000433 
+ 00026319  0x00005215 copy  0x00000006 , 0x0000003f 
+ 00026320  0x00005216 store  0x00000002 , 0x00000435 
+ 00026321  0x00005217 rtn 
+ 00026322  0x0000521b fetch  0x00000002 , 0x00000435 
+ 00026323  0x0000521c copy  0x0000003f , 0x00000006 
+ 00026324  0x0000521d rtn 
+ 00026325  0x00005220 ifetch  0x00000001 , 0x00000006 
+ 00026326  0x00005221 copy  0x0000003f , 0x00000002 
+ 00026327  0x00005222 rshift  0x00000002 , 0x00000002 
+ 00026328  0x00005223 rtnbit1  0x00000000 
+ 00026329  0x00005224 ifetch  0x00000001 , 0x00000006 
+ 00026330  0x00005225 lshift3  0x0000003f , 0x0000003f 
+ 00026331  0x00005226 lshift4  0x0000003f , 0x0000003f 
+ 00026332  0x00005227 iadd  0x00000002 , 0x00000002 
+ 00026333  0x00005228 rtn 
+ 00026334  0x0000522b ifetch  0x00000001 , 0x00000006 
+ 00026335  0x0000522c store  0x00000001 , 0x000045f5 
+ 00026336  0x0000522d ifetch  0x00000001 , 0x00000006 
+ 00026337  0x0000522e store  0x00000001 , 0x00000438 
+ 00026338  0x0000522f ifetch  0x00000001 , 0x00000006 
+ 00026339  0x00005230 store  0x00000001 , 0x00000439 
+ 00026340  0x00005231 ifetch  0x00000001 , 0x00000006 
+ 00026341  0x00005232 store  0x00000001 , 0x0000043a 
+ 00026342  0x00005233 ifetch  0x00000002 , 0x00000006 
+ 00026343  0x00005234 store  0x00000002 , 0x000045f6 
+ 00026344  0x00005235 ifetch  0x00000001 , 0x00000006 
+ 00026345  0x00005236 store  0x00000001 , 0x0000043b 
+ 00026346  0x00005237 ifetch  0x00000001 , 0x00000006 
+ 00026347  0x00005238 store  0x00000001 , 0x00004600 
+ 00026348  0x00005239 rtn 
+ 00026349  0x0000523d call  0x000066b8 
+ 00026350  0x0000523f branch  0x000066ef 
+ 00026351  0x00005242 fetch  0x00000001 , 0x000042e4 
+ 00026352  0x00005243 set1  0x00000005 , 0x0000003f 
+ 00026353  0x00005244 set1  0x00000006 , 0x0000003f 
+ 00026354  0x00005245 store  0x00000001 , 0x000042e4 
+ 00026355  0x00005246 fetcht  0x00000001 , 0x000045f5 
+ 00026356  0x00005247 lshift2  0x00000002 , 0x00000002 
+ 00026357  0x00005248 or_into  0x00000003 , 0x00000002 
+ 00026358  0x00005249 call  0x00006820 
+ 00026359  0x0000524a jam  0x00000003 , 0x000045ff 
+ 00026360  0x0000524b branch  0x000067a1 
+ 00026361  0x0000524e jam  0x00000008 , 0x000009bd 
+ 00026362  0x0000524f call  0x00007d86 
+ 00026363  0x00005250 call  0x000066b8 
+ 00026364  0x00005251 fetch  0x00000001 , 0x00004602 
+ 00026365  0x00005252 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00026366  0x00005253 branch  0x00006700 , 0x00000005 
+ 00026367  0x00005254 branch  0x00003b31 
+ 00026368  0x00005256 fetch  0x00000001 , 0x000042e4 
+ 00026369  0x00005257 set1  0x00000007 , 0x0000003f 
+ 00026370  0x00005258 store  0x00000001 , 0x000042e4 
+ 00026371  0x00005259 branch  0x000067a1 
+ 00026372  0x0000525c call  0x000066d2 
+ 00026373  0x0000525d ifetch  0x00000001 , 0x00000006 
+ 00026374  0x0000525e store  0x00000001 , 0x000009e1 
+ 00026375  0x0000525f call  0x0000487a 
+ 00026376  0x00005260 call  0x00004889 
+ 00026377  0x00005261 setarg  0x0000000e 
+ 00026378  0x00005262 istore  0x00000002 , 0x00000005 
+ 00026379  0x00005263 fetch  0x00000002 , 0x000042da 
+ 00026380  0x00005264 istore  0x00000002 , 0x00000005 
+ 00026381  0x00005265 fetch  0x00000001 , 0x000045fb 
+ 00026382  0x00005267 lshift  0x0000003f , 0x0000003f 
+ 00026383  0x00005268 set1  0x00000000 , 0x0000003f 
+ 00026384  0x00005269 istore  0x00000001 , 0x00000005 
+ 00026385  0x0000526a set1  0x00000025 , 0x00000000 
+ 00026386  0x0000526b bpatch  0x0000009c , 0x00004033 
+ 00026387  0x0000526c setarg  0x000015ef 
+ 00026388  0x0000526d istore  0x00000002 , 0x00000005 
+ 00026389  0x0000526e setarg  0x00001191 
+ 00026390  0x0000526f istore  0x00000002 , 0x00000005 
+ 00026391  0x00005272 fetch  0x00000001 , 0x000009e1 
+ 00026392  0x00005273 istore  0x00000001 , 0x00000005 
+ 00026393  0x00005274 setarg  0x00000007 
+ 00026394  0x00005275 istore  0x00000005 , 0x00000005 
+ 00026395  0x00005278 setarg  0x00000001 
+ 00026396  0x00005279 istore  0x00000002 , 0x00000005 
+ 00026397  0x0000527c call  0x00006634 
+ 00026398  0x0000527d istore  0x00000001 , 0x00000005 
+ 00026399  0x0000527e rtn 
+ 00026400  0x00005283 branch  0x00006721 
+ 00026401  0x00005286 set1  0x00000025 , 0x00000000 
+ 00026402  0x00005287 bpatch  0x0000009d , 0x00004033 
+ 00026403  0x00005288 fetch  0x00000001 , 0x0000042c 
+ 00026404  0x00005289 beq  0x00000073 , 0x0000672a 
+ 00026405  0x0000528a beq  0x0000003f , 0x0000672e 
+ 00026406  0x0000528b beq  0x000000ef , 0x00006748 
+ 00026407  0x0000528c beq  0x000000ff , 0x00006740 
+ 00026408  0x0000528d beq  0x00000053 , 0x0000674f 
+ 00026409  0x0000528e rtn 
+ 00026410  0x00005290 fetch  0x00000001 , 0x000042e4 
+ 00026411  0x00005291 set1  0x00000003 , 0x0000003f 
+ 00026412  0x00005292 store  0x00000001 , 0x000042e4 
+ 00026413  0x00005293 branch  0x000067a1 
+ 00026414  0x00005295 fetch  0x00000001 , 0x000042e4 
+ 00026415  0x00005296 set1  0x00000003 , 0x0000003f 
+ 00026416  0x00005297 set1  0x00000002 , 0x0000003f 
+ 00026417  0x00005298 store  0x00000001 , 0x000042e4 
+ 00026418  0x00005299 fetch  0x00000001 , 0x0000042a 
+ 00026419  0x0000529a call  0x0000662b 
+ 00026420  0x0000529b store  0x00000001 , 0x0000042d 
+ 00026421  0x0000529c call  0x000067c1 
+ 00026422  0x0000529d fetch  0x00000001 , 0x0000042a 
+ 00026423  0x0000529e rshift2  0x0000003f , 0x0000003f 
+ 00026424  0x0000529f store  0x00000001 , 0x000045f5 
+ 00026425  0x000052a0 lshift2  0x0000003f , 0x0000003f 
+ 00026426  0x000052a1 set0  0x00000001 , 0x0000003f 
+ 00026427  0x000052a2 set1  0x00000000 , 0x0000003f 
+ 00026428  0x000052a3 arg  0x000045fd , 0x00000002 
+ 00026429  0x000052a4 storet  0x00000002 , 0x00000426 
+ 00026430  0x000052a5 call  0x0000663a 
+ 00026431  0x000052a6 branch  0x000067a1 
+ 00026432  0x000052a9 fetch  0x00000002 , 0x00000430 
+ 00026433  0x000052aa copy  0x0000003f , 0x00000006 
+ 00026434  0x000052ab increase  0x00000001 , 0x0000003f 
+ 00026435  0x000052ac store  0x00000002 , 0x00000430 
+ 00026436  0x000052ad ifetch  0x00000001 , 0x00000006 
+ 00026437  0x000052ae fetcht  0x00000001 , 0x00004600 
+ 00026438  0x000052af iadd  0x00000002 , 0x0000003f 
+ 00026439  0x000052b0 store  0x00000001 , 0x00004600 
+ 00026440  0x000052b2 call  0x00006853 
+ 00026441  0x000052b4 call  0x00006677 
+ 00026442  0x000052b5 call  0x00006838 
+ 00026443  0x000052b6 call  0x0000685d 
+ 00026444  0x000052b7 branch  0x000067a1 
+ 00026445  0x000052ba jam  0x00000009 , 0x000009bd 
+ 00026446  0x000052bb call  0x00007d86 
+ 00026447  0x000052bd call  0x00006611 
+ 00026448  0x000052be fetch  0x00000001 , 0x0000042a 
+ 00026449  0x000052bf call  0x0000662b 
+ 00026450  0x000052c0 store  0x00000001 , 0x0000042d 
+ 00026451  0x000052c1 call  0x000067c1 
+ 00026452  0x000052c2 branch  0x000067a1 
+ 00026453  0x000052c8 fetch  0x00000002 , 0x0000028d 
+ 00026454  0x000052c9 copy  0x0000003f , 0x00000006 
+ 00026455  0x000052ca call  0x000066bf 
+ 00026456  0x000052cb fetch  0x00000001 , 0x0000042b 
+ 00026457  0x000052cc beq  0x00000000 , 0x0000675b 
+ 00026458  0x000052cd branch  0x00006790 
+ 00026459  0x000052d0 set1  0x00000025 , 0x00000000 
+ 00026460  0x000052d1 bpatch  0x0000009e , 0x00004033 
+ 00026461  0x000052d2 fetch  0x00000001 , 0x0000042c 
+ 00026462  0x000052d3 beq  0x0000003f , 0x00006682 
+ 00026463  0x000052d4 beq  0x00000073 , 0x0000668b 
+ 00026464  0x000052d5 beq  0x000000ef , 0x00006762 
+ 00026465  0x000052d6 branch  0x000067a1 
+ 00026466  0x000052d8 fetch  0x00000002 , 0x00000430 
+ 00026467  0x000052d9 copy  0x0000003f , 0x00000006 
+ 00026468  0x000052da call  0x000066ca 
+ 00026469  0x000052db fetch  0x00000001 , 0x00000432 
+ 00026470  0x000052dc beq  0x00000041 , 0x0000676b 
+ 00026471  0x000052dd beq  0x00000040 , 0x0000676b 
+ 00026472  0x000052de beq  0x00000071 , 0x00006776 
+ 00026473  0x000052df beq  0x00000070 , 0x00006786 
+ 00026474  0x000052e0 branch  0x000067a1 
+ 00026475  0x000052e3 call  0x000066b6 
+ 00026476  0x000052e4 fetch  0x00000001 , 0x000045f5 
+ 00026477  0x000052e5 rshift  0x0000003f , 0x0000003f 
+ 00026478  0x000052e6 fetcht  0x00000001 , 0x000045fc 
+ 00026479  0x000052e7 isub  0x00000002 , 0x0000003e 
+ 00026480  0x000052e8 branch  0x00006772 , 0x00000005 
+ 00026481  0x000052e9 branch  0x00003b31 
+ 00026482  0x000052eb fetch  0x00000001 , 0x000042e4 
+ 00026483  0x000052ec set1  0x00000001 , 0x0000003f 
+ 00026484  0x000052ed store  0x00000001 , 0x000042e4 
+ 00026485  0x000052ee branch  0x000067a1 
+ 00026486  0x000052f1 call  0x000066b8 
+ 00026487  0x000052f2 fetch  0x00000001 , 0x00004602 
+ 00026488  0x000052f3 fetcht  0x00000001 , 0x000045fc 
+ 00026489  0x000052f4 isub  0x00000002 , 0x0000003e 
+ 00026490  0x000052f5 branch  0x0000677d , 0x00000005 
+ 00026491  0x000052f6 branch  0x00003b31 
+ 00026492  0x000052f7 branch  0x000067a1 
+ 00026493  0x000052f9 fetch  0x00000001 , 0x000042e4 
+ 00026494  0x000052fa set1  0x00000005 , 0x0000003f 
+ 00026495  0x000052fb set1  0x00000006 , 0x0000003f 
+ 00026496  0x000052fc store  0x00000001 , 0x000042e4 
+ 00026497  0x000052fd fetcht  0x00000001 , 0x000045f5 
+ 00026498  0x000052fe lshift2  0x00000002 , 0x00000002 
+ 00026499  0x000052ff or_into  0x00000003 , 0x00000002 
+ 00026500  0x00005300 call  0x00006820 
+ 00026501  0x00005301 branch  0x000067a1 
+ 00026502  0x00005304 call  0x000066b8 
+ 00026503  0x00005305 fetch  0x00000001 , 0x00004602 
+ 00026504  0x00005306 fetcht  0x00000001 , 0x000045fc 
+ 00026505  0x00005307 isub  0x00000002 , 0x0000003e 
+ 00026506  0x00005308 branch  0x0000678c , 0x00000005 
+ 00026507  0x00005309 branch  0x00003b31 
+ 00026508  0x0000530b fetch  0x00000001 , 0x000042e4 
+ 00026509  0x0000530c set1  0x00000007 , 0x0000003f 
+ 00026510  0x0000530d store  0x00000001 , 0x000042e4 
+ 00026511  0x0000530e branch  0x000067a1 
+ 00026512  0x00005311 fetch  0x00000001 , 0x0000042b 
+ 00026513  0x00005312 fetcht  0x00000001 , 0x000045fc 
+ 00026514  0x00005313 isub  0x00000002 , 0x0000003e 
+ 00026515  0x00005314 branch  0x00006796 , 0x00000005 
+ 00026516  0x00005315 branch  0x00003b31 
+ 00026517  0x00005316 branch  0x000067a1 
+ 00026518  0x00005319 fetch  0x00000001 , 0x0000042c 
+ 00026519  0x0000531a beq  0x00000073 , 0x0000679b 
+ 00026520  0x0000531b beq  0x000000ef , 0x00006748 
+ 00026521  0x0000531c beq  0x000000ff , 0x00006740 
+ 00026522  0x0000531d beq  0x00000053 , 0x000067a0 
+ 00026523  0x0000531f fetch  0x00000001 , 0x000042e4 
+ 00026524  0x00005320 set1  0x00000003 , 0x0000003f 
+ 00026525  0x00005321 store  0x00000001 , 0x000042e4 
+ 00026526  0x00005322 branch  0x000067a1 
+ 00026527  0x00005324 branch  0x0000679f 
+ 00026528  0x00005326 branch  0x0000674f 
+ 00026529  0x00005328 rtn 
+ 00026530  0x0000532b fetch  0x00000001 , 0x000045ff 
+ 00026531  0x0000532c rtn  0x00000034 
+ 00026532  0x0000532d beq  0x00000003 , 0x000067a6 
+ 00026533  0x0000532e branch  0x00003b31 
+ 00026534  0x00005331 jam  0x00000000 , 0x000045ff 
+ 00026535  0x00005332 call  0x0000487a 
+ 00026536  0x00005333 arg  0x00000001 , 0x00000002 
+ 00026537  0x00005334 fetcht  0x00000001 , 0x000045f5 
+ 00026538  0x00005335 lshift2  0x00000002 , 0x00000002 
+ 00026539  0x00005337 or_into  0x00000003 , 0x00000002 
+ 00026540  0x00005338 arg  0x000000aa , 0x00000011 
+ 00026541  0x00005339 call  0x0000680a 
+ 00026542  0x0000533a call  0x00004889 
+ 00026543  0x0000533b copy  0x00000005 , 0x00000006 
+ 00026544  0x0000533c ifetch  0x00000002 , 0x00000006 
+ 00026545  0x0000533d branch  0x00003b31 , 0x00000034 
+ 00026546  0x0000533e rtn 
+ 00026547  0x00005341 call  0x00004889 
+ 00026548  0x00005342 setarg  0x00000004 
+ 00026549  0x00005343 istore  0x00000002 , 0x00000005 
+ 00026550  0x00005344 fetch  0x00000002 , 0x000042da 
+ 00026551  0x00005345 istore  0x00000002 , 0x00000005 
+ 00026552  0x00005346 fetch  0x00000001 , 0x0000042a 
+ 00026553  0x00005347 istore  0x00000001 , 0x00000005 
+ 00026554  0x00005348 set1  0x00000025 , 0x00000000 
+ 00026555  0x00005349 bpatch  0x0000009f , 0x00004033 
+ 00026556  0x0000534a setarg  0x0000013f 
+ 00026557  0x0000534b istore  0x00000002 , 0x00000005 
+ 00026558  0x0000534c fetch  0x00000001 , 0x0000042d 
+ 00026559  0x0000534d istore  0x00000001 , 0x00000005 
+ 00026560  0x0000534e rtn 
+ 00026561  0x00005350 call  0x0000487a 
+ 00026562  0x00005351 call  0x00004889 
+ 00026563  0x00005352 setarg  0x00000004 
+ 00026564  0x00005353 istore  0x00000002 , 0x00000005 
+ 00026565  0x00005354 fetch  0x00000002 , 0x000042da 
+ 00026566  0x00005355 istore  0x00000002 , 0x00000005 
+ 00026567  0x00005356 fetch  0x00000001 , 0x0000042a 
+ 00026568  0x00005357 istore  0x00000001 , 0x00000005 
+ 00026569  0x00005358 set1  0x00000025 , 0x00000000 
+ 00026570  0x00005359 bpatch  0x000000a0 , 0x00004034 
+ 00026571  0x0000535a setarg  0x00000173 
+ 00026572  0x0000535b istore  0x00000002 , 0x00000005 
+ 00026573  0x0000535c fetch  0x00000001 , 0x0000042d 
+ 00026574  0x0000535d istore  0x00000001 , 0x00000005 
+ 00026575  0x0000535e rtn 
+ 00026576  0x00005360 call  0x00004889 
+ 00026577  0x00005361 setarg  0x0000000e 
+ 00026578  0x00005362 istore  0x00000002 , 0x00000005 
+ 00026579  0x00005363 fetch  0x00000002 , 0x000042da 
+ 00026580  0x00005364 istore  0x00000002 , 0x00000005 
+ 00026581  0x00005365 fetch  0x00000001 , 0x000045fb 
+ 00026582  0x00005366 lshift  0x0000003f , 0x0000003f 
+ 00026583  0x00005367 set1  0x00000000 , 0x0000003f 
+ 00026584  0x00005368 istore  0x00000001 , 0x00000005 
+ 00026585  0x00005369 set1  0x00000025 , 0x00000000 
+ 00026586  0x0000536a bpatch  0x000000a1 , 0x00004034 
+ 00026587  0x0000536b setarg  0x000015ef 
+ 00026588  0x0000536c istore  0x00000002 , 0x00000005 
+ 00026589  0x0000536d setarg  0x00001183 
+ 00026590  0x0000536e istore  0x00000002 , 0x00000005 
+ 00026591  0x0000536f copy  0x00000002 , 0x0000003f 
+ 00026592  0x00005370 istore  0x00000001 , 0x00000005 
+ 00026593  0x00005371 setarg  0x000000f0 
+ 00026594  0x00005372 istore  0x00000003 , 0x00000005 
+ 00026595  0x00005373 setarg  0x0000007f 
+ 00026596  0x00005374 istore  0x00000002 , 0x00000005 
+ 00026597  0x00005375 setarg  0x00000000 
+ 00026598  0x00005376 istore  0x00000001 , 0x00000005 
+ 00026599  0x00005377 setarg  0x00000001 
+ 00026600  0x00005378 istore  0x00000001 , 0x00000005 
+ 00026601  0x00005379 call  0x00006634 
+ 00026602  0x0000537a istore  0x00000001 , 0x00000005 
+ 00026603  0x0000537b jam  0x00000010 , 0x00004601 
+ 00026604  0x0000537c rtn 
+ 00026605  0x0000537e call  0x0000487a 
+ 00026606  0x0000537f call  0x00004889 
+ 00026607  0x00005380 setarg  0x0000000e 
+ 00026608  0x00005381 istore  0x00000002 , 0x00000005 
+ 00026609  0x00005382 fetch  0x00000002 , 0x000042da 
+ 00026610  0x00005383 istore  0x00000002 , 0x00000005 
+ 00026611  0x00005384 fetch  0x00000001 , 0x000045fb 
+ 00026612  0x00005385 lshift  0x0000003f , 0x0000003f 
+ 00026613  0x00005386 set1  0x00000000 , 0x0000003f 
+ 00026614  0x00005387 istore  0x00000001 , 0x00000005 
+ 00026615  0x00005388 set1  0x00000025 , 0x00000000 
+ 00026616  0x00005389 bpatch  0x000000a2 , 0x00004034 
+ 00026617  0x0000538a setarg  0x000015ef 
+ 00026618  0x0000538b istore  0x00000002 , 0x00000005 
+ 00026619  0x0000538c setarg  0x00001181 
+ 00026620  0x0000538d istore  0x00000002 , 0x00000005 
+ 00026621  0x0000538e fetch  0x00000001 , 0x000045f5 
+ 00026622  0x0000538f istore  0x00000001 , 0x00000005 
+ 00026623  0x00005390 setarg  0x000000e0 
+ 00026624  0x00005391 istore  0x00000003 , 0x00000005 
+ 00026625  0x00005392 fetch  0x00000002 , 0x00004604 
+ 00026626  0x00005393 istore  0x00000002 , 0x00000005 
+ 00026627  0x00005394 setarg  0x00000000 
+ 00026628  0x00005395 istore  0x00000001 , 0x00000005 
+ 00026629  0x00005396 fetch  0x00000001 , 0x00004606 
+ 00026630  0x00005397 istore  0x00000001 , 0x00000005 
+ 00026631  0x00005398 call  0x00006634 
+ 00026632  0x00005399 istore  0x00000001 , 0x00000005 
+ 00026633  0x0000539a rtn 
+ 00026634  0x0000539c call  0x00004889 
+ 00026635  0x0000539d setarg  0x00000008 
+ 00026636  0x0000539e istore  0x00000002 , 0x00000005 
+ 00026637  0x0000539f fetch  0x00000002 , 0x000042da 
+ 00026638  0x000053a0 istore  0x00000002 , 0x00000005 
+ 00026639  0x000053a1 fetch  0x00000001 , 0x000045fb 
+ 00026640  0x000053a2 lshift  0x0000003f , 0x0000003f 
+ 00026641  0x000053a3 set1  0x00000000 , 0x0000003f 
+ 00026642  0x000053a4 istore  0x00000001 , 0x00000005 
+ 00026643  0x000053a5 set1  0x00000025 , 0x00000000 
+ 00026644  0x000053a6 bpatch  0x000000a3 , 0x00004034 
+ 00026645  0x000053a7 setarg  0x000009ef 
+ 00026646  0x000053a8 istore  0x00000002 , 0x00000005 
+ 00026647  0x000053a9 setarg  0x000005e3 
+ 00026648  0x000053aa istore  0x00000002 , 0x00000005 
+ 00026649  0x000053ab copy  0x00000002 , 0x0000003f 
+ 00026650  0x000053ac istore  0x00000001 , 0x00000005 
+ 00026651  0x000053ad setarg  0x0000008d 
+ 00026652  0x000053ae istore  0x00000001 , 0x00000005 
+ 00026653  0x000053af call  0x00006634 
+ 00026654  0x000053b0 istore  0x00000001 , 0x00000005 
+ 00026655  0x000053b1 rtn 
+ 00026656  0x000053b4 call  0x0000487a 
+ 00026657  0x000053b5 call  0x00004889 
+ 00026658  0x000053b6 setarg  0x00000008 
+ 00026659  0x000053b7 istore  0x00000002 , 0x00000005 
+ 00026660  0x000053b8 fetch  0x00000002 , 0x000042da 
+ 00026661  0x000053b9 istore  0x00000002 , 0x00000005 
+ 00026662  0x000053ba copy  0x00000002 , 0x0000000b 
+ 00026663  0x000053bb fetch  0x00000001 , 0x000045fb 
+ 00026664  0x000053bc lshift  0x0000003f , 0x0000003f 
+ 00026665  0x000053bd set1  0x00000000 , 0x0000003f 
+ 00026666  0x000053be istore  0x00000001 , 0x00000005 
+ 00026667  0x000053bf set1  0x00000025 , 0x00000000 
+ 00026668  0x000053c0 bpatch  0x000000a4 , 0x00004034 
+ 00026669  0x000053c1 setarg  0x000009ef 
+ 00026670  0x000053c2 istore  0x00000002 , 0x00000005 
+ 00026671  0x000053c3 setarg  0x000005e1 
+ 00026672  0x000053c4 istore  0x00000002 , 0x00000005 
+ 00026673  0x000053c5 copy  0x0000000b , 0x0000003f 
+ 00026674  0x000053c6 istore  0x00000001 , 0x00000005 
+ 00026675  0x000053c7 setarg  0x0000008d 
+ 00026676  0x000053c8 istore  0x00000001 , 0x00000005 
+ 00026677  0x000053c9 call  0x00006634 
+ 00026678  0x000053ca istore  0x00000001 , 0x00000005 
+ 00026679  0x000053cb rtn 
+ 00026680  0x000053ce set1  0x00000025 , 0x00000000 
+ 00026681  0x000053cf bpatch  0x000000a5 , 0x00004034 
+ 00026682  0x000053d0 fetch  0x00000001 , 0x00004601 
+ 00026683  0x000053d1 rtn  0x00000034 
+ 00026684  0x000053d2 hfetch  0x00000002 , 0x00008112 
+ 00026685  0x000053d3 nrtn  0x00000034 
+ 00026686  0x000053d4 copy  0x00000011 , 0x0000003f 
+ 00026687  0x000053d5 store  0x00000001 , 0x000009bf 
+ 00026688  0x000053d6 storet  0x00000001 , 0x000009be 
+ 00026689  0x000053d7 call  0x0000480e 
+ 00026690  0x000053d8 nrtn  0x00000034 
+ 00026691  0x000053d9 call  0x0000487a 
+ 00026692  0x000053da call  0x00004889 
+ 00026693  0x000053db setarg  0x00000005 
+ 00026694  0x000053dc istore  0x00000002 , 0x00000005 
+ 00026695  0x000053dd fetch  0x00000002 , 0x000042da 
+ 00026696  0x000053de istore  0x00000002 , 0x00000005 
+ 00026697  0x000053df fetch  0x00000001 , 0x0000043c 
+ 00026698  0x000053e0 istore  0x00000001 , 0x00000005 
+ 00026699  0x000053e1 setarg  0x000001ff 
+ 00026700  0x000053e2 istore  0x00000002 , 0x00000005 
+ 00026701  0x000053e3 fetch  0x00000001 , 0x00004601 
+ 00026702  0x000053e4 istore  0x00000001 , 0x00000005 
+ 00026703  0x000053e5 fetch  0x00000001 , 0x000045fe 
+ 00026704  0x000053e6 istore  0x00000001 , 0x00000005 
+ 00026705  0x000053e7 jam  0x00000000 , 0x00004601 
+ 00026706  0x000053e8 rtn 
+ 00026707  0x000053eb set1  0x00000025 , 0x00000000 
+ 00026708  0x000053ec bpatch  0x000000a6 , 0x00004034 
+ 00026709  0x000053ed fetch  0x00000001 , 0x00004603 
+ 00026710  0x000053ee rtneq  0x00000001 
+ 00026711  0x000053ef fetch  0x00000002 , 0x0000042e 
+ 00026712  0x000053f0 rtn  0x00000034 
+ 00026713  0x000053f1 fetch  0x00000001 , 0x00004601 
+ 00026714  0x000053f2 increase  0x00000001 , 0x0000003f 
+ 00026715  0x000053f3 store  0x00000001 , 0x00004601 
+ 00026716  0x000053f4 rtn 
+ 00026717  0x000053f7 fetch  0x00000002 , 0x00004607 
+ 00026718  0x000053f8 branch  0x00007f69 
+ 00026719  0x000053fb set1  0x00000025 , 0x00000000 
+ 00026720  0x000053fc bpatch  0x000000a7 , 0x00004034 
+ 00026721  0x000053fe fetch  0x00000001 , 0x00004600 
+ 00026722  0x000053ff rtn  0x00000034 
+ 00026723  0x00005400 increase  0xffffffff , 0x0000003f 
+ 00026724  0x00005401 store  0x00000001 , 0x00004600 
+ 00026725  0x00005402 fetch  0x00000002 , 0x000045f6 
+ 00026726  0x00005403 fetcht  0x00000002 , 0x0000472c 
+ 00026727  0x00005404 isub  0x00000002 , 0x0000003e 
+ 00026728  0x00005405 branch  0x0000686a , 0x00000002 
+ 00026729  0x00005406 store  0x00000002 , 0x0000472c 
+ 00026730  0x00005408 fetch  0x00000001 , 0x00004601 
+ 00026731  0x00005409 branch  0x00006872 , 0x00000034 
+ 00026732  0x0000540a jam  0x00000001 , 0x0000043f 
+ 00026733  0x0000540b fetch  0x00000001 , 0x000045fe 
+ 00026734  0x0000540c store  0x00000001 , 0x0000043e 
+ 00026735  0x0000540d setarg  0x000000ff 
+ 00026736  0x0000540e store  0x00000001 , 0x0000043d 
+ 00026737  0x0000540f branch  0x00006877 
+ 00026738  0x00005411 jam  0x00000000 , 0x0000043f 
+ 00026739  0x00005412 fetch  0x00000001 , 0x000045fd 
+ 00026740  0x00005413 store  0x00000001 , 0x0000043e 
+ 00026741  0x00005414 setarg  0x000000ef 
+ 00026742  0x00005415 store  0x00000001 , 0x0000043d 
+ 00026743  0x00005417 set1  0x00000025 , 0x00000000 
+ 00026744  0x00005418 bpatch  0x000000a8 , 0x00004035 
+ 00026745  0x00005419 fetch  0x00000002 , 0x0000472c 
+ 00026746  0x0000541a sub  0x0000003f , 0x0000007f , 0x0000003e 
+ 00026747  0x0000541b branch  0x0000687f , 0x00000002 
+ 00026748  0x0000541c fetch  0x00000001 , 0x0000043f 
+ 00026749  0x0000541d increase  0x00000001 , 0x0000003f 
+ 00026750  0x0000541e store  0x00000001 , 0x0000043f 
+ 00026751  0x00005420 call  0x00006677 
+ 00026752  0x00005421 fetch  0x00000002 , 0x0000472c 
+ 00026753  0x00005422 increase  0x00000008 , 0x0000003f 
+ 00026754  0x00005423 fetcht  0x00000001 , 0x0000043f 
+ 00026755  0x00005424 iadd  0x00000002 , 0x00000011 
+ 00026756  0x00005426 call  0x000047dc 
+ 00026757  0x00005427 store  0x00000002 , 0x000002a0 
+ 00026758  0x00005428 increase  0x00000004 , 0x0000003f 
+ 00026759  0x00005429 store  0x00000002 , 0x000002a2 
+ 00026760  0x0000542a copy  0x0000003f , 0x00000005 
+ 00026761  0x0000542b fetch  0x00000001 , 0x0000043c 
+ 00026762  0x0000542c istore  0x00000001 , 0x00000005 
+ 00026763  0x0000542d fetch  0x00000001 , 0x0000043d 
+ 00026764  0x0000542e istore  0x00000001 , 0x00000005 
+ 00026765  0x0000542f call  0x000068aa 
+ 00026766  0x00005430 call  0x000068bc 
+ 00026767  0x00005431 set1  0x00000025 , 0x00000000 
+ 00026768  0x00005432 bpatch  0x000000a9 , 0x00004035 
+ 00026769  0x00005433 fetch  0x00000002 , 0x00004609 
+ 00026770  0x00005434 copy  0x0000003f , 0x00000003 
+ 00026771  0x00005435 fetch  0x00000002 , 0x0000472c 
+ 00026772  0x00005436 copy  0x0000003f , 0x00000039 
+ 00026773  0x00005437 call  0x00006341 
+ 00026774  0x00005438 copy  0x00000005 , 0x00000002 
+ 00026775  0x00005439 copy  0x00000003 , 0x0000003f 
+ 00026776  0x0000543a store  0x00000002 , 0x00004609 
+ 00026777  0x0000543b copy  0x00000002 , 0x00000005 
+ 00026778  0x0000543c fetch  0x00000001 , 0x0000043e 
+ 00026779  0x0000543d istore  0x00000001 , 0x00000005 
+ 00026780  0x0000543e fetch  0x00000002 , 0x000002a0 
+ 00026781  0x0000543f copy  0x0000003f , 0x00000005 
+ 00026782  0x00005440 fetch  0x00000002 , 0x0000472c 
+ 00026783  0x00005441 fetcht  0x00000001 , 0x0000043f 
+ 00026784  0x00005442 iadd  0x00000002 , 0x0000003f 
+ 00026785  0x00005443 increase  0x00000004 , 0x0000003f 
+ 00026786  0x00005444 istore  0x00000002 , 0x00000005 
+ 00026787  0x00005445 fetch  0x00000002 , 0x000042da 
+ 00026788  0x00005446 istore  0x00000002 , 0x00000005 
+ 00026789  0x00005447 jam  0x00000000 , 0x00004601 
+ 00026790  0x00005448 fetch  0x00000002 , 0x0000460b 
+ 00026791  0x00005449 beq  0x00000000 , 0x00005b20 
+ 00026792  0x0000544a jam  0x00000000 , 0x00000418 
+ 00026793  0x0000544b rtn 
+ 00026794  0x0000544e set1  0x00000025 , 0x00000000 
+ 00026795  0x0000544f bpatch  0x000000aa , 0x00004035 
+ 00026796  0x00005450 fetch  0x00000002 , 0x0000472c 
+ 00026797  0x00005451 sub  0x0000003f , 0x0000007f , 0x0000003e 
+ 00026798  0x00005452 nbranch  0x000068b3 , 0x00000002 
+ 00026799  0x00005453 lshift  0x0000003f , 0x0000003f 
+ 00026800  0x00005454 set1  0x00000000 , 0x0000003f 
+ 00026801  0x00005455 istore  0x00000001 , 0x00000005 
+ 00026802  0x00005456 rtn 
+ 00026803  0x00005458 fetch  0x00000002 , 0x0000472c 
+ 00026804  0x00005459 rshift3  0x0000003f , 0x0000003f 
+ 00026805  0x0000545a rshift4  0x0000003f , 0x00000002 
+ 00026806  0x0000545b and_into  0x0000007f , 0x0000003f 
+ 00026807  0x0000545c lshift  0x0000003f , 0x0000003f 
+ 00026808  0x0000545d set0  0x00000000 , 0x0000003f 
+ 00026809  0x0000545e istore  0x00000001 , 0x00000005 
+ 00026810  0x0000545f istoret  0x00000001 , 0x00000005 
+ 00026811  0x00005460 rtn 
+ 00026812  0x00005462 fetch  0x00000001 , 0x00004601 
+ 00026813  0x00005463 rtn  0x00000034 
+ 00026814  0x00005464 istore  0x00000001 , 0x00000005 
+ 00026815  0x00005465 rtn 
+ 00026816  0x0000546b set1  0x00000025 , 0x00000000 
+ 00026817  0x0000546c bpatch  0x000000ab , 0x00004035 
+ 00026818  0x0000546d call  0x00007d9e 
+ 00026819  0x0000546e call  0x00003d69 
+ 00026820  0x0000546f call  0x00005926 
+ 00026821  0x00005471 set1  0x00000025 , 0x00000000 
+ 00026822  0x00005472 bpatch  0x000000ac , 0x00004035 
+ 00026823  0x00005473 call  0x000076f7 
+ 00026824  0x00005474 call  0x000076ce 
+ 00026825  0x00005475 call  0x000076e0 
+ 00026826  0x00005478 call  0x0000480e 
+ 00026827  0x00005479 nrtn  0x00000034 
+ 00026828  0x0000547b call  0x0000432d 
+ 00026829  0x0000547c call  0x0000480e 
+ 00026830  0x0000547d nrtn  0x00000034 
+ 00026831  0x0000547e set1  0x00000025 , 0x00000000 
+ 00026832  0x0000547f bpatch  0x000000ad , 0x00004035 
+ 00026833  0x00005481 call  0x00006913 
+ 00026834  0x00005482 call  0x000044f2 
+ 00026835  0x00005483 call  0x000067a2 
+ 00026836  0x00005485 call  0x000068d8 
+ 00026837  0x00005486 set1  0x00000025 , 0x00000000 
+ 00026838  0x00005487 bpatch  0x000000ae , 0x00004035 
+ 00026839  0x0000548a branch  0x00003d65 
+ 00026840  0x0000548d fetch  0x00000001 , 0x000002a8 
+ 00026841  0x0000548e bbit1  0x00000000 , 0x00004619 
+ 00026842  0x0000548f bbit1  0x00000007 , 0x00004623 
+ 00026843  0x00005490 rtn 
+ 00026844  0x00005493 set1  0x00000025 , 0x00000000 
+ 00026845  0x00005494 bpatch  0x000000af , 0x00004035 
+ 00026846  0x00005495 call  0x00004816 
+ 00026847  0x00005496 rtn  0x00000034 
+ 00026848  0x00005497 fetch  0x00000001 , 0x0000004b 
+ 00026849  0x00005498 rtnbit1  0x00000006 
+ 00026850  0x00005499 call  0x000047f5 
+ 00026851  0x0000549a store  0x00000002 , 0x0000016e 
+ 00026852  0x0000549b copy  0x0000003f , 0x00000006 
+ 00026853  0x0000549c ifetch  0x00000002 , 0x00000006 
+ 00026854  0x0000549d increase  0x00000004 , 0x0000003f 
+ 00026855  0x0000549e store  0x00000002 , 0x0000427e 
+ 00026856  0x0000549f jam  0x00000006 , 0x0000427d 
+ 00026857  0x000054a0 set1  0x00000025 , 0x00000000 
+ 00026858  0x000054a1 bpatch  0x000000b0 , 0x00004036 
+ 00026859  0x000054a2 fetch  0x00000002 , 0x000042d6 
+ 00026860  0x000054a3 branch  0x000068f9 , 0x00000034 
+ 00026861  0x000054a4 fetch  0x00000001 , 0x0000004b 
+ 00026862  0x000054a5 rtnbit0  0x00000007 
+ 00026863  0x000054a6 set0  0x00000007 , 0x0000003f 
+ 00026864  0x000054a7 store  0x00000001 , 0x0000004b 
+ 00026865  0x000054a8 jam  0x00000005 , 0x0000427d 
+ 00026866  0x000054a9 fetcht  0x00000002 , 0x000042d6 
+ 00026867  0x000054aa fetch  0x00000002 , 0x0000016e 
+ 00026868  0x000054ab iadd  0x00000002 , 0x0000003f 
+ 00026869  0x000054ac store  0x00000002 , 0x0000016e 
+ 00026870  0x000054ad fetch  0x00000002 , 0x0000427e 
+ 00026871  0x000054ae isub  0x00000002 , 0x0000003f 
+ 00026872  0x000054af store  0x00000002 , 0x0000427e 
+ 00026873  0x000054b1 set1  0x00000025 , 0x00000000 
+ 00026874  0x000054b2 bpatch  0x000000b1 , 0x00004036 
+ 00026875  0x000054b3 fetch  0x00000002 , 0x0000427e 
+ 00026876  0x000054b4 branch  0x00003b31 , 0x00000034 
+ 00026877  0x000054b5 arg  0x00000104 , 0x00000002 
+ 00026878  0x000054b6 isub  0x00000002 , 0x0000003f 
+ 00026879  0x000054b7 nbranch  0x00006907 , 0x00000002 
+ 00026880  0x000054b8 set1  0x00000025 , 0x00000000 
+ 00026881  0x000054b9 bpatch  0x000000b2 , 0x00004036 
+ 00026882  0x000054ba storet  0x00000002 , 0x0000427e 
+ 00026883  0x000054bb fetch  0x00000002 , 0x000042d6 
+ 00026884  0x000054bc iadd  0x00000002 , 0x0000003f 
+ 00026885  0x000054bd store  0x00000002 , 0x000042d6 
+ 00026886  0x000054be branch  0x00006909 
+ 00026887  0x000054c0 setarg  0x00000000 
+ 00026888  0x000054c1 store  0x00000002 , 0x000042d6 
+ 00026889  0x000054c3 fetch  0x00000001 , 0x0000004b 
+ 00026890  0x000054c4 set1  0x00000006 , 0x0000003f 
+ 00026891  0x000054c5 store  0x00000001 , 0x0000004b 
+ 00026892  0x000054c6 rtn 
+ 00026893  0x000054c9 fetch  0x00000001 , 0x0000470d 
+ 00026894  0x000054ca bbit1  0x00000000 , 0x00006911 
+ 00026895  0x000054cb jam  0x00000001 , 0x000002b0 
+ 00026896  0x000054cc rtn 
+ 00026897  0x000054ce jam  0x0000000f , 0x000002b0 
+ 00026898  0x000054cf rtn 
+ 00026899  0x000054d2 fetch  0x00000001 , 0x0000470a 
+ 00026900  0x000054d3 nbranch  0x00006919 , 0x00000034 
+ 00026901  0x000054d5 fetch  0x00000001 , 0x000002af 
+ 00026902  0x000054d7 rtn  0x00000034 
+ 00026903  0x000054d9 jam  0x00000000 , 0x000002af 
+ 00026904  0x000054db rtn 
+ 00026905  0x000054df set1  0x00000025 , 0x00000000 
+ 00026906  0x000054e0 bpatch  0x000000b3 , 0x00004036 
+ 00026907  0x000054e1 fetch  0x00000001 , 0x000002b0 
+ 00026908  0x000054e2 rtn  0x00000034 
+ 00026909  0x000054e3 beq  0x00000001 , 0x0000693a 
+ 00026910  0x000054e4 beq  0x00000002 , 0x00006993 
+ 00026911  0x000054e5 beq  0x00000003 , 0x00006940 
+ 00026912  0x000054e6 beq  0x00000004 , 0x00006997 
+ 00026913  0x000054e7 beq  0x0000003b , 0x0000694a 
+ 00026914  0x000054e8 beq  0x0000003c , 0x0000699a 
+ 00026915  0x000054e9 beq  0x0000000d , 0x0000694f 
+ 00026916  0x000054ea beq  0x0000000e , 0x0000699f 
+ 00026917  0x000054eb beq  0x0000000f , 0x00006952 
+ 00026918  0x000054ec beq  0x00000010 , 0x000069a5 
+ 00026919  0x000054ed beq  0x00000011 , 0x00006958 
+ 00026920  0x000054ee beq  0x00000012 , 0x000069a9 
+ 00026921  0x000054ef beq  0x00000013 , 0x0000695e 
+ 00026922  0x000054f0 beq  0x00000014 , 0x000069ad 
+ 00026923  0x000054f1 beq  0x00000015 , 0x00006964 
+ 00026924  0x000054f2 beq  0x00000016 , 0x000069b1 
+ 00026925  0x000054f3 beq  0x00000017 , 0x0000696a 
+ 00026926  0x000054f4 beq  0x00000018 , 0x000069b6 
+ 00026927  0x000054f5 beq  0x00000019 , 0x00006970 
+ 00026928  0x000054f6 beq  0x0000001a , 0x000069ba 
+ 00026929  0x000054f7 beq  0x0000001b , 0x00006976 
+ 00026930  0x000054f8 beq  0x0000001c , 0x000069be 
+ 00026931  0x000054f9 beq  0x0000001d , 0x0000697c 
+ 00026932  0x000054fa beq  0x0000001e , 0x000069c3 
+ 00026933  0x000054fb beq  0x0000001f , 0x00006982 
+ 00026934  0x000054fc beq  0x00000020 , 0x000069c7 
+ 00026935  0x000054fd beq  0x00000021 , 0x0000698d 
+ 00026936  0x000054fe beq  0x00000022 , 0x000069cb 
+ 00026937  0x00005500 rtn 
+ 00026938  0x00005502 call  0x000069d6 
+ 00026939  0x00005503 jam  0x00000002 , 0x000002b0 
+ 00026940  0x00005504 fetch  0x00000001 , 0x000042e0 
+ 00026941  0x00005505 set1  0x00000000 , 0x0000003f 
+ 00026942  0x00005506 store  0x00000001 , 0x000042e0 
+ 00026943  0x00005507 rtn 
+ 00026944  0x00005509 jam  0x00000004 , 0x000002b0 
+ 00026945  0x0000550a fetch  0x00000001 , 0x000042e0 
+ 00026946  0x0000550b rtnbit1  0x00000002 
+ 00026947  0x0000550c jam  0x00000003 , 0x000002b0 
+ 00026948  0x0000550d call  0x000069de 
+ 00026949  0x0000550e jam  0x00000004 , 0x000002b0 
+ 00026950  0x0000550f fetch  0x00000001 , 0x000042e0 
+ 00026951  0x00005510 set1  0x00000002 , 0x0000003f 
+ 00026952  0x00005511 store  0x00000001 , 0x000042e0 
+ 00026953  0x00005512 rtn 
+ 00026954  0x00005514 call  0x00004816 
+ 00026955  0x00005515 nrtn  0x00000034 
+ 00026956  0x00005516 call  0x000069ef 
+ 00026957  0x00005517 jam  0x0000003c , 0x000002b0 
+ 00026958  0x00005518 rtn 
+ 00026959  0x0000551a call  0x000069e4 
+ 00026960  0x0000551b jam  0x0000000e , 0x000002b0 
+ 00026961  0x0000551c rtn 
+ 00026962  0x0000551e call  0x00006a02 
+ 00026963  0x0000551f jam  0x00000010 , 0x000002b0 
+ 00026964  0x00005520 fetch  0x00000001 , 0x000042e2 
+ 00026965  0x00005521 set1  0x00000000 , 0x0000003f 
+ 00026966  0x00005522 store  0x00000001 , 0x000042e2 
+ 00026967  0x00005523 rtn 
+ 00026968  0x00005525 call  0x00006a0a 
+ 00026969  0x00005526 jam  0x00000012 , 0x000002b0 
+ 00026970  0x00005527 fetch  0x00000001 , 0x000042e2 
+ 00026971  0x00005528 set1  0x00000002 , 0x0000003f 
+ 00026972  0x00005529 store  0x00000001 , 0x000042e2 
+ 00026973  0x0000552a rtn 
+ 00026974  0x0000552c call  0x00006a10 
+ 00026975  0x0000552d jam  0x00000014 , 0x000002b0 
+ 00026976  0x0000552e fetch  0x00000001 , 0x000042e3 
+ 00026977  0x0000552f set1  0x00000000 , 0x0000003f 
+ 00026978  0x00005530 store  0x00000001 , 0x000042e3 
+ 00026979  0x00005531 rtn 
+ 00026980  0x00005533 call  0x00006a18 
+ 00026981  0x00005534 jam  0x00000016 , 0x000002b0 
+ 00026982  0x00005535 fetch  0x00000001 , 0x000042e3 
+ 00026983  0x00005536 set1  0x00000002 , 0x0000003f 
+ 00026984  0x00005537 store  0x00000001 , 0x000042e3 
+ 00026985  0x00005538 rtn 
+ 00026986  0x0000553a call  0x000069f4 
+ 00026987  0x0000553b jam  0x00000018 , 0x000002b0 
+ 00026988  0x0000553c fetch  0x00000001 , 0x000042e1 
+ 00026989  0x0000553d set1  0x00000000 , 0x0000003f 
+ 00026990  0x0000553e store  0x00000001 , 0x000042e1 
+ 00026991  0x0000553f rtn 
+ 00026992  0x00005541 call  0x000069fc 
+ 00026993  0x00005542 jam  0x0000001a , 0x000002b0 
+ 00026994  0x00005543 fetch  0x00000001 , 0x000042e1 
+ 00026995  0x00005544 set1  0x00000002 , 0x0000003f 
+ 00026996  0x00005545 store  0x00000001 , 0x000042e1 
+ 00026997  0x00005546 rtn 
+ 00026998  0x00005548 call  0x00006a1e 
+ 00026999  0x00005549 jam  0x0000001c , 0x000002b0 
+ 00027000  0x0000554a fetch  0x00000001 , 0x000042e1 
+ 00027001  0x0000554b set1  0x00000006 , 0x0000003f 
+ 00027002  0x0000554c store  0x00000001 , 0x000042e1 
+ 00027003  0x0000554d rtn 
+ 00027004  0x0000554f call  0x00006a26 
+ 00027005  0x00005550 fetch  0x00000001 , 0x000042e4 
+ 00027006  0x00005551 set1  0x00000000 
+ 00027007  0x00005552 store  0x00000001 , 0x000042e4 
+ 00027008  0x00005553 jam  0x0000001e , 0x000002b0 
+ 00027009  0x00005554 rtn 
+ 00027010  0x00005556 call  0x00006a2d 
+ 00027011  0x00005557 fetch  0x00000001 , 0x000042e4 
+ 00027012  0x00005558 set1  0x00000002 
+ 00027013  0x00005559 store  0x00000001 , 0x000042e4 
+ 00027014  0x0000555a jam  0x00000020 , 0x000002b0 
+ 00027015  0x0000555b fetch  0x00000001 , 0x000045fc 
+ 00027016  0x0000555c lshift3  0x0000003f , 0x0000003f 
+ 00027017  0x0000555d or_into  0x00000003 , 0x0000003f 
+ 00027018  0x0000555e arg  0x000045fd , 0x00000002 
+ 00027019  0x0000555f storet  0x00000002 , 0x00000426 
+ 00027020  0x00005560 branch  0x0000663a 
+ 00027021  0x00005562 call  0x00006a38 
+ 00027022  0x00005563 fetch  0x00000001 , 0x000042e4 
+ 00027023  0x00005564 set1  0x00000004 
+ 00027024  0x00005565 store  0x00000001 , 0x000042e4 
+ 00027025  0x00005566 jam  0x00000022 , 0x000002b0 
+ 00027026  0x00005567 rtn 
+ 00027027  0x0000556a fetch  0x00000001 , 0x000042e0 
+ 00027028  0x0000556b rtnbit0  0x00000001 
+ 00027029  0x0000556c jam  0x00000003 , 0x000002b0 
+ 00027030  0x0000556d branch  0x00006919 
+ 00027031  0x0000556f fetch  0x00000001 , 0x000042e0 
+ 00027032  0x00005570 rtnne  0x0000003f 
+ 00027033  0x00005571 jam  0x0000003b , 0x000002b0 
+ 00027034  0x00005573 fetch  0x00000001 , 0x000002ae 
+ 00027035  0x00005574 rtnne  0x00000017 
+ 00027036  0x00005575 jam  0x00000000 , 0x000002ae 
+ 00027037  0x00005576 jam  0x0000000d , 0x000002b0 
+ 00027038  0x00005577 branch  0x00006919 
+ 00027039  0x00005579 fetch  0x00000001 , 0x000042e0 
+ 00027040  0x0000557a nrtn  0x00000034 
+ 00027041  0x0000557b fetch  0x00000001 , 0x0000470d 
+ 00027042  0x0000557c bbit1  0x00000000 , 0x000069ce 
+ 00027043  0x0000557d bbit1  0x00000006 , 0x000069d0 
+ 00027044  0x0000557e branch  0x000069d4 
+ 00027045  0x00005580 fetch  0x00000001 , 0x000042e2 
+ 00027046  0x00005581 rtnbit0  0x00000001 
+ 00027047  0x00005582 jam  0x00000011 , 0x000002b0 
+ 00027048  0x00005583 branch  0x00006919 
+ 00027049  0x00005585 fetch  0x00000001 , 0x000042e2 
+ 00027050  0x00005586 rtnne  0x0000003f 
+ 00027051  0x00005587 jam  0x00000013 , 0x000002b0 
+ 00027052  0x00005588 branch  0x00006919 
+ 00027053  0x0000558a fetch  0x00000001 , 0x000042e3 
+ 00027054  0x0000558b rtnbit0  0x00000001 
+ 00027055  0x0000558c jam  0x00000015 , 0x000002b0 
+ 00027056  0x0000558d branch  0x00006919 
+ 00027057  0x0000558f fetch  0x00000001 , 0x000042e3 
+ 00027058  0x00005590 rtnne  0x0000003f 
+ 00027059  0x00005591 fetch  0x00000001 , 0x0000470d 
+ 00027060  0x00005592 bbit1  0x00000006 , 0x000069d0 
+ 00027061  0x00005593 branch  0x000069d4 
+ 00027062  0x00005595 fetch  0x00000001 , 0x000042e1 
+ 00027063  0x00005596 rtnbit0  0x00000001 
+ 00027064  0x00005597 jam  0x00000019 , 0x000002b0 
+ 00027065  0x00005598 branch  0x00006919 
+ 00027066  0x0000559a fetch  0x00000001 , 0x000042e1 
+ 00027067  0x0000559b rtnne  0x0000003f 
+ 00027068  0x0000559c jam  0x0000001b , 0x000002b0 
+ 00027069  0x0000559d branch  0x00006919 
+ 00027070  0x0000559f fetch  0x00000001 , 0x000042e1 
+ 00027071  0x000055a0 rtnne  0x000000ff 
+ 00027072  0x000055a1 fetch  0x00000001 , 0x0000470d 
+ 00027073  0x000055a2 bbit1  0x00000006 , 0x000069d2 
+ 00027074  0x000055a3 branch  0x000069d4 
+ 00027075  0x000055a5 fetch  0x00000001 , 0x000042e4 
+ 00027076  0x000055a6 rtnbit0  0x00000001 
+ 00027077  0x000055a7 jam  0x0000001f , 0x000002b0 
+ 00027078  0x000055a8 branch  0x00006919 
+ 00027079  0x000055aa fetch  0x00000001 , 0x000042e4 
+ 00027080  0x000055ab rtnbit0  0x00000003 
+ 00027081  0x000055ac jam  0x00000021 , 0x000002b0 
+ 00027082  0x000055ad branch  0x00006919 
+ 00027083  0x000055af fetch  0x00000001 , 0x000042e4 
+ 00027084  0x000055b0 rtnne  0x000000ff 
+ 00027085  0x000055b1 branch  0x000069d4 
+ 00027086  0x000055b4 jam  0x0000000f , 0x000002b0 
+ 00027087  0x000055b5 branch  0x00006919 
+ 00027088  0x000055b8 jam  0x00000017 , 0x000002b0 
+ 00027089  0x000055b9 branch  0x00006919 
+ 00027090  0x000055bb jam  0x0000001d , 0x000002b0 
+ 00027091  0x000055bc branch  0x00006919 
+ 00027092  0x000055c1 jam  0x00000000 , 0x000002b0 
+ 00027093  0x000055c2 rtn 
+ 00027094  0x000055c4 set1  0x00000025 , 0x00000000 
+ 00027095  0x000055c5 bpatch  0x000000b4 , 0x00004036 
+ 00027096  0x000055c6 call  0x0000485e 
+ 00027097  0x000055c7 setarg  0x00000001 
+ 00027098  0x000055c8 copy  0x0000003f , 0x00000002 
+ 00027099  0x000055c9 setarg  0x00000050 
+ 00027100  0x000055ca copy  0x0000003f , 0x0000000b 
+ 00027101  0x000055cb branch  0x0000463a 
+ 00027102  0x000055ce set1  0x00000025 , 0x00000000 
+ 00027103  0x000055cf bpatch  0x000000b5 , 0x00004036 
+ 00027104  0x000055d0 call  0x0000485e 
+ 00027105  0x000055d1 fetch  0x00000002 , 0x000042d8 
+ 00027106  0x000055d2 copy  0x0000003f , 0x00000002 
+ 00027107  0x000055d3 branch  0x0000464a 
+ 00027108  0x000055d6 set1  0x00000025 , 0x00000000 
+ 00027109  0x000055d7 bpatch  0x000000b6 , 0x00004036 
+ 00027110  0x000055d8 call  0x0000485e 
+ 00027111  0x000055d9 fetch  0x00000002 , 0x000042d8 
+ 00027112  0x000055da copy  0x0000003f , 0x00000002 
+ 00027113  0x000055db arg  0x00000050 , 0x0000000b 
+ 00027114  0x000055dc call  0x00004660 
+ 00027115  0x000055dd fetch  0x00000001 , 0x000042e0 
+ 00027116  0x000055de set0  0x00000005 , 0x0000003f 
+ 00027117  0x000055df store  0x00000001 , 0x000042e0 
+ 00027118  0x000055e0 rtn 
+ 00027119  0x000055e3 set1  0x00000025 , 0x00000000 
+ 00027120  0x000055e4 bpatch  0x000000b7 , 0x00004036 
+ 00027121  0x000055e5 call  0x0000486c 
+ 00027122  0x000055e6 call  0x00006d01 
+ 00027123  0x000055e7 branch  0x0000467c 
+ 00027124  0x000055ea set1  0x00000025 , 0x00000000 
+ 00027125  0x000055eb bpatch  0x000000b8 , 0x00004037 
+ 00027126  0x000055ec call  0x0000485e 
+ 00027127  0x000055ed setarg  0x00000003 
+ 00027128  0x000055ee copy  0x0000003f , 0x00000002 
+ 00027129  0x000055ef setarg  0x00000051 
+ 00027130  0x000055f0 copy  0x0000003f , 0x0000000b 
+ 00027131  0x000055f1 branch  0x0000463a 
+ 00027132  0x000055f4 set1  0x00000025 , 0x00000000 
+ 00027133  0x000055f5 bpatch  0x000000b9 , 0x00004037 
+ 00027134  0x000055f6 call  0x0000485e 
+ 00027135  0x000055f7 fetch  0x00000002 , 0x000042da 
+ 00027136  0x000055f8 copy  0x0000003f , 0x00000002 
+ 00027137  0x000055f9 branch  0x0000464a 
+ 00027138  0x000055fc set1  0x00000025 , 0x00000000 
+ 00027139  0x000055fd bpatch  0x000000ba , 0x00004037 
+ 00027140  0x000055fe call  0x0000485e 
+ 00027141  0x000055ff setarg  0x00000011 
+ 00027142  0x00005600 copy  0x0000003f , 0x00000002 
+ 00027143  0x00005601 setarg  0x00000052 
+ 00027144  0x00005602 copy  0x0000003f , 0x0000000b 
+ 00027145  0x00005603 branch  0x0000463a 
+ 00027146  0x00005606 set1  0x00000025 , 0x00000000 
+ 00027147  0x00005607 bpatch  0x000000bb , 0x00004037 
+ 00027148  0x00005608 call  0x0000485e 
+ 00027149  0x00005609 fetch  0x00000002 , 0x000042dc 
+ 00027150  0x0000560a copy  0x0000003f , 0x00000002 
+ 00027151  0x0000560b branch  0x0000464a 
+ 00027152  0x0000560e set1  0x00000025 , 0x00000000 
+ 00027153  0x0000560f bpatch  0x000000bc , 0x00004037 
+ 00027154  0x00005610 call  0x0000485e 
+ 00027155  0x00005611 setarg  0x00000013 
+ 00027156  0x00005612 copy  0x0000003f , 0x00000002 
+ 00027157  0x00005613 setarg  0x00000053 
+ 00027158  0x00005614 copy  0x0000003f , 0x0000000b 
+ 00027159  0x00005615 branch  0x0000463a 
+ 00027160  0x00005618 set1  0x00000025 , 0x00000000 
+ 00027161  0x00005619 bpatch  0x000000bd , 0x00004037 
+ 00027162  0x0000561a call  0x0000485e 
+ 00027163  0x0000561b fetch  0x00000002 , 0x000042de 
+ 00027164  0x0000561c copy  0x0000003f , 0x00000002 
+ 00027165  0x0000561d branch  0x0000464a 
+ 00027166  0x00005620 set1  0x00000025 , 0x00000000 
+ 00027167  0x00005621 bpatch  0x000000be , 0x00004037 
+ 00027168  0x00005622 call  0x0000487a 
+ 00027169  0x00005624 jam  0x00000003 , 0x0000042a 
+ 00027170  0x00005625 jam  0x0000001c , 0x0000042d 
+ 00027171  0x00005626 call  0x000067b3 
+ 00027172  0x00005627 jam  0x00000001 , 0x000045fb 
+ 00027173  0x00005628 rtn 
+ 00027174  0x0000562b set1  0x00000025 , 0x00000000 
+ 00027175  0x0000562c bpatch  0x000000bf , 0x00004037 
+ 00027176  0x0000562d call  0x0000487a 
+ 00027177  0x0000562e fetcht  0x00000001 , 0x000045fc 
+ 00027178  0x0000562f call  0x0000667e 
+ 00027179  0x00005630 storet  0x00000001 , 0x000045f5 
+ 00027180  0x00005631 branch  0x000067d0 
+ 00027181  0x00005634 set1  0x00000025 , 0x00000000 
+ 00027182  0x00005635 bpatch  0x000000c0 , 0x00004038 
+ 00027183  0x00005636 call  0x0000487a 
+ 00027184  0x00005637 fetcht  0x00000001 , 0x000045f5 
+ 00027185  0x00005638 call  0x00006678 
+ 00027186  0x00005639 call  0x0000661f 
+ 00027187  0x0000563a store  0x00000001 , 0x0000042d 
+ 00027188  0x0000563b fetcht  0x00000001 , 0x000045f5 
+ 00027189  0x0000563c call  0x00006678 
+ 00027190  0x0000563d storet  0x00000001 , 0x0000042a 
+ 00027191  0x0000563e branch  0x000067b3 
+ 00027192  0x00005641 set1  0x00000025 , 0x00000000 
+ 00027193  0x00005642 bpatch  0x000000c1 , 0x00004038 
+ 00027194  0x00005643 call  0x0000487a 
+ 00027195  0x00005644 fetcht  0x00000001 , 0x000045f5 
+ 00027196  0x00005645 call  0x00006678 
+ 00027197  0x00005646 branch  0x0000680a 
+ 00027198  0x00005654 set1  0x00000025 , 0x00000000 
+ 00027199  0x00005655 bpatch  0x000000c2 , 0x00004038 
+ 00027200  0x00005656 fetch  0x00000002 , 0x0000028d 
+ 00027201  0x00005657 iforce  0x00000006 
+ 00027202  0x00005658 ifetch  0x00000001 , 0x00000006 
+ 00027203  0x00005659 copy  0x0000003f , 0x00000012 
+ 00027204  0x0000565a store  0x00000001 , 0x00000446 
+ 00027205  0x0000565b ifetch  0x00000002 , 0x00000006 
+ 00027206  0x0000565c store  0x00000002 , 0x00000447 
+ 00027207  0x0000565d ifetch  0x00000001 , 0x00000006 
+ 00027208  0x0000565e lshift8  0x0000003f , 0x0000000b 
+ 00027209  0x0000565f ifetch  0x00000001 , 0x00000006 
+ 00027210  0x00005660 iadd  0x0000000b , 0x0000000b 
+ 00027211  0x00005661 set1  0x00000025 , 0x00000000 
+ 00027212  0x00005662 bpatch  0x000000c3 , 0x00004038 
+ 00027213  0x00005663 deposit  0x00000012 
+ 00027214  0x00005664 beq  0x00000002 , 0x00006a53 
+ 00027215  0x00005665 beq  0x00000004 , 0x00006a7c 
+ 00027216  0x00005666 beq  0x00000006 , 0x00006b5d 
+ 00027217  0x00005667 beq  0x00000007 , 0x00006d18 
+ 00027218  0x00005668 branch  0x00006d40 
+ 00027219  0x00005674 call  0x00006d4f 
+ 00027220  0x00005675 compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00027221  0x00005676 branch  0x00006dbd , 0x00000001 
+ 00027222  0x00005677 compare  0x000000ff , 0x00000002 , 0x000000ff 
+ 00027223  0x00005678 branch  0x00006d43 , 0x00000001 
+ 00027224  0x0000567a ifetch  0x00000002 , 0x00000006 
+ 00027225  0x0000567b store  0x00000002 , 0x0000044b 
+ 00027226  0x0000567c increase  0xfffffffe , 0x0000000b 
+ 00027227  0x0000567e increase  0xffffffff , 0x0000000b 
+ 00027228  0x0000567f nbranch  0x00006d3d , 0x00000005 
+ 00027229  0x00005680 arg  0x00000440 , 0x0000000b 
+ 00027230  0x00005681 ifetch  0x00000002 , 0x0000000b 
+ 00027231  0x00005682 rtn  0x00000034 
+ 00027232  0x00005683 increase  0x00000002 , 0x0000000b 
+ 00027233  0x00005684 call  0x00006e09 
+ 00027234  0x00005685 call  0x00004878 
+ 00027235  0x00005686 force  0x00000003 , 0x0000003f 
+ 00027236  0x00005687 istore  0x00000001 , 0x00000005 
+ 00027237  0x00005688 fetch  0x00000002 , 0x00000447 
+ 00027238  0x00005689 istore  0x00000002 , 0x00000005 
+ 00027239  0x0000568a lshift2  0x00000007 , 0x0000003f 
+ 00027240  0x0000568b add  0x0000003f , 0x00000005 , 0x0000003f 
+ 00027241  0x0000568c add  0x0000003f , 0x00000005 , 0x00000013 
+ 00027242  0x0000568d byteswap  0x0000003f , 0x0000003f 
+ 00027243  0x0000568e istore  0x00000002 , 0x00000005 
+ 00027244  0x0000568f deposit  0x00000007 
+ 00027245  0x00005690 byteswap  0x0000003f , 0x0000003f 
+ 00027246  0x00005691 istore  0x00000002 , 0x00000005 
+ 00027247  0x00005692 istore  0x00000002 , 0x00000005 
+ 00027248  0x00005693 arg  0x0000045c , 0x00000006 
+ 00027249  0x00005694 copy  0x00000007 , 0x00000039 
+ 00027250  0x00005695 branch  0x00006a76 , 0x00000005 
+ 00027251  0x00005697 ifetch  0x00000004 , 0x00000006 
+ 00027252  0x00005698 istore  0x00000004 , 0x00000005 
+ 00027253  0x00005699 loop  0x00006a73 
+ 00027254  0x0000569b force  0x00000000 , 0x0000003f 
+ 00027255  0x0000569c istore  0x00000001 , 0x00000005 
+ 00027256  0x0000569d deposit  0x00000013 
+ 00027257  0x0000569e store  0x00000001 , 0x0000029e 
+ 00027258  0x0000569f branch  0x00003b31 , 0x00000034 
+ 00027259  0x000056a0 rtn 
+ 00027260  0x000056ac ifetch  0x00000004 , 0x00000006 
+ 00027261  0x000056ad store  0x00000004 , 0x00000455 
+ 00027262  0x000056ae increase  0xfffffffc , 0x0000000b 
+ 00027263  0x000056af iforce  0x00000002 
+ 00027264  0x000056b0 ifetch  0x00000002 , 0x00000006 
+ 00027265  0x000056b1 byteswap  0x0000003f , 0x0000003f 
+ 00027266  0x000056b2 increase  0xffffffee , 0x0000003f 
+ 00027267  0x000056b3 store  0x00000002 , 0x00000449 
+ 00027268  0x000056b4 increase  0xfffffffe , 0x0000000b 
+ 00027269  0x000056b5 call  0x00006da6 
+ 00027270  0x000056b6 branch  0x00006d43 , 0x00000005 
+ 00027271  0x000056b7 compare  0x00000005 , 0x00000011 , 0x000000ff 
+ 00027272  0x000056b9 branch  0x00006a8c , 0x00000001 
+ 00027273  0x000056bb arg  0x00000428 , 0x00000005 
+ 00027274  0x000056bc force  0x00000000 , 0x00000007 
+ 00027275  0x000056bd branch  0x00006a9c 
+ 00027276  0x000056bf ifetch  0x00000001 , 0x00000006 
+ 00027277  0x000056c0 bne  0x0000000a , 0x00006d43 
+ 00027278  0x000056c1 ifetch  0x00000002 , 0x00000006 
+ 00027279  0x000056c2 nbranch  0x00006a9a , 0x00000034 
+ 00027280  0x000056c3 ifetch  0x00000001 , 0x00000006 
+ 00027281  0x000056c4 bne  0x000000ff , 0x00006a98 
+ 00027282  0x000056c5 ifetch  0x00000001 , 0x00000006 
+ 00027283  0x000056c6 bne  0x000000ff , 0x00006a96 
+ 00027284  0x000056c7 increase  0xfffffffb , 0x00000006 
+ 00027285  0x000056c8 branch  0x00006af2 
+ 00027286  0x000056ca increase  0xfffffffb , 0x00000006 
+ 00027287  0x000056cb branch  0x00006a89 
+ 00027288  0x000056cd increase  0xfffffffc , 0x00000006 
+ 00027289  0x000056ce branch  0x00006a89 
+ 00027290  0x000056d0 increase  0xfffffffd , 0x00000006 
+ 00027291  0x000056d1 branch  0x00006a89 
+ 00027292  0x000056d3 ifetch  0x00000001 , 0x00000006 
+ 00027293  0x000056d4 beq  0x00000009 , 0x00006ab1 
+ 00027294  0x000056d5 beq  0x0000000a , 0x00006a9f 
+ 00027295  0x000056d7 ifetch  0x00000002 , 0x00000006 
+ 00027296  0x000056d8 istore  0x00000002 , 0x00000005 
+ 00027297  0x000056d9 increase  0x00000001 , 0x00000007 
+ 00027298  0x000056da byteswap  0x0000003f , 0x00000012 
+ 00027299  0x000056db ifetch  0x00000002 , 0x00000006 
+ 00027300  0x000056dc byteswap  0x0000003f , 0x0000003f 
+ 00027301  0x000056de increase  0x00000001 , 0x00000012 
+ 00027302  0x000056df isub  0x00000012 , 0x0000003e 
+ 00027303  0x000056e0 nbranch  0x00006aae , 0x00000002 
+ 00027304  0x000056e1 copy  0x0000003f , 0x00000013 
+ 00027305  0x000056e2 byteswap  0x00000012 , 0x0000003f 
+ 00027306  0x000056e3 istore  0x00000002 , 0x00000005 
+ 00027307  0x000056e4 increase  0x00000001 , 0x00000007 
+ 00027308  0x000056e5 copy  0x00000013 , 0x0000003f 
+ 00027309  0x000056e6 branch  0x00006aa5 
+ 00027310  0x000056e8 increase  0xfffffffb , 0x0000000b 
+ 00027311  0x000056e9 increase  0xfffffffb , 0x00000011 
+ 00027312  0x000056ea branch  0x00006ab6 
+ 00027313  0x000056ec ifetch  0x00000002 , 0x00000006 
+ 00027314  0x000056ed istore  0x00000002 , 0x00000005 
+ 00027315  0x000056ee increase  0x00000001 , 0x00000007 
+ 00027316  0x000056ef increase  0xfffffffd , 0x0000000b 
+ 00027317  0x000056f0 increase  0xfffffffd , 0x00000011 
+ 00027318  0x000056f2 nbranch  0x00006d43 , 0x00000002 
+ 00027319  0x000056f3 nbranch  0x00006a9c , 0x00000005 
+ 00027320  0x000056f4 increase  0xffffffff , 0x0000000b 
+ 00027321  0x000056f5 nbranch  0x00006d43 , 0x00000005 
+ 00027322  0x000056f7 call  0x00004878 
+ 00027323  0x000056f8 increase  0x0000000a , 0x00000005 
+ 00027324  0x000056f9 arg  0x00000428 , 0x00000011 
+ 00027325  0x000056fb set1  0x00000025 , 0x00000000 
+ 00027326  0x000056fc bpatch  0x000000c4 , 0x00004038 
+ 00027327  0x000056fd copy  0x00000007 , 0x0000003f 
+ 00027328  0x000056fe branch  0x00006ad2 , 0x00000034 
+ 00027329  0x000056ff ifetch  0x00000002 , 0x00000011 
+ 00027330  0x00005700 branch  0x00006ad2 , 0x00000034 
+ 00027331  0x00005701 iforce  0x00000012 
+ 00027332  0x00005702 fetch  0x00000004 , 0x00000455 
+ 00027333  0x00005703 iforce  0x00000002 
+ 00027334  0x00005704 call  0x00006e52 
+ 00027335  0x00005705 branch  0x00006acf , 0x00000034 
+ 00027336  0x00005706 increase  0xfffffffd , 0x00000006 
+ 00027337  0x00005707 ifetch  0x00000003 , 0x00000006 
+ 00027338  0x00005708 istore  0x00000003 , 0x00000005 
+ 00027339  0x00005709 call  0x00006cea 
+ 00027340  0x0000570a branch  0x00006acf , 0x00000034 
+ 00027341  0x0000570b iforce  0x00000039 
+ 00027342  0x0000570c call  0x00007ecd 
+ 00027343  0x0000570e increase  0x00000002 , 0x00000011 
+ 00027344  0x0000570f increase  0xffffffff , 0x00000007 
+ 00027345  0x00005710 branch  0x00006abd 
+ 00027346  0x00005713 set1  0x00000025 , 0x00000000 
+ 00027347  0x00005714 bpatch  0x000000c5 , 0x00004038 
+ 00027348  0x00005715 force  0x00000000 , 0x0000003f 
+ 00027349  0x00005716 istore  0x00000001 , 0x00000005 
+ 00027350  0x00005717 increase  0xffffffff , 0x00000005 
+ 00027351  0x00005718 fetcht  0x00000002 , 0x0000029c 
+ 00027352  0x00005719 add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00027353  0x0000571a isub  0x00000005 , 0x0000003f 
+ 00027354  0x0000571b sub  0x0000003f , 0x00000000 , 0x00000011 
+ 00027355  0x0000571c byteswap  0x00000011 , 0x0000003f 
+ 00027356  0x0000571d add  0x00000002 , 0x00000008 , 0x00000012 
+ 00027357  0x0000571e istore  0x00000002 , 0x00000012 
+ 00027358  0x0000571f increase  0x00000003 , 0x00000011 
+ 00027359  0x00005720 byteswap  0x00000011 , 0x0000003f 
+ 00027360  0x00005721 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027361  0x00005722 istore  0x00000002 , 0x00000012 
+ 00027362  0x00005723 increase  0x00000003 , 0x00000011 
+ 00027363  0x00005724 byteswap  0x00000011 , 0x0000003f 
+ 00027364  0x00005725 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027365  0x00005726 istore  0x00000002 , 0x00000012 
+ 00027366  0x00005727 increase  0x00000005 , 0x00000011 
+ 00027367  0x00005728 copy  0x00000011 , 0x0000003f 
+ 00027368  0x00005729 store  0x00000002 , 0x0000029e 
+ 00027369  0x0000572a setarg  0x00000036 
+ 00027370  0x0000572b add  0x00000002 , 0x00000007 , 0x00000012 
+ 00027371  0x0000572c istore  0x00000001 , 0x00000012 
+ 00027372  0x0000572d setarg  0x00000005 
+ 00027373  0x0000572e istore  0x00000001 , 0x00000002 
+ 00027374  0x0000572f fetch  0x00000002 , 0x00000447 
+ 00027375  0x00005730 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027376  0x00005731 istore  0x00000002 , 0x00000012 
+ 00027377  0x00005732 rtn 
+ 00027378  0x00005734 ifetch  0x00000001 , 0x00000006 
+ 00027379  0x00005735 bne  0x0000000a , 0x00006d43 
+ 00027380  0x00005736 ifetch  0x00000002 , 0x00000006 
+ 00027381  0x00005737 nbranch  0x00006d43 , 0x00000034 
+ 00027382  0x00005738 ifetch  0x00000001 , 0x00000006 
+ 00027383  0x00005739 bne  0x000000ff , 0x00006d43 
+ 00027384  0x0000573a ifetch  0x00000001 , 0x00000006 
+ 00027385  0x0000573b bne  0x000000ff , 0x00006d43 
+ 00027386  0x0000573c increase  0xfffffffb , 0x0000000b 
+ 00027387  0x0000573d ifetch  0x00000001 , 0x00000006 
+ 00027388  0x0000573e beq  0x00000000 , 0x00006aff 
+ 00027389  0x0000573f beq  0x00000001 , 0x00006b02 
+ 00027390  0x00005740 beq  0x00000002 , 0x00006b06 
+ 00027391  0x00005742 store  0x00000002 , 0x00000444 
+ 00027392  0x00005743 increase  0xffffffff , 0x0000000b 
+ 00027393  0x00005744 branch  0x00006b0a 
+ 00027394  0x00005746 ifetch  0x00000001 , 0x00000006 
+ 00027395  0x00005747 store  0x00000002 , 0x00000444 
+ 00027396  0x00005748 increase  0xfffffffe , 0x0000000b 
+ 00027397  0x00005749 branch  0x00006b0a 
+ 00027398  0x0000574b ifetch  0x00000002 , 0x00000006 
+ 00027399  0x0000574c byteswap  0x0000003f , 0x0000003f 
+ 00027400  0x0000574d store  0x00000002 , 0x00000444 
+ 00027401  0x0000574e increase  0xfffffffd , 0x0000000b 
+ 00027402  0x00005750 nbranch  0x00006d3d , 0x00000005 
+ 00027403  0x00005751 set1  0x00000025 , 0x00000000 
+ 00027404  0x00005752 bpatch  0x000000c6 , 0x00004038 
+ 00027405  0x00005753 call  0x00006e20 
+ 00027406  0x00005754 nbranch  0x00006d3a , 0x00000005 
+ 00027407  0x00005755 copy  0x00000006 , 0x00000011 
+ 00027408  0x00005756 call  0x00004878 
+ 00027409  0x00005757 copy  0x00000011 , 0x00000006 
+ 00027410  0x00005758 increase  0x00000003 , 0x00000005 
+ 00027411  0x00005759 copy  0x00000006 , 0x0000000b 
+ 00027412  0x0000575a call  0x00006dea 
+ 00027413  0x0000575b copy  0x0000003f , 0x00000011 
+ 00027414  0x0000575c fetch  0x00000002 , 0x00000444 
+ 00027415  0x0000575d copy  0x0000003f , 0x00000012 
+ 00027416  0x0000575e copy  0x00000011 , 0x0000003f 
+ 00027417  0x0000575f isub  0x00000012 , 0x00000012 
+ 00027418  0x00005760 fetch  0x00000002 , 0x00000449 
+ 00027419  0x00005761 isub  0x00000012 , 0x0000003e 
+ 00027420  0x00005762 nbranch  0x00006b38 , 0x00000002 
+ 00027421  0x00005764 disable  0x00000028 
+ 00027422  0x00005765 fetch  0x00000002 , 0x00000444 
+ 00027423  0x00005766 branch  0x00006b2b , 0x00000034 
+ 00027424  0x00005767 iadd  0x0000000b , 0x00000006 
+ 00027425  0x00005768 increase  0x00000003 , 0x00000012 
+ 00027426  0x00005769 copy  0x00000012 , 0x00000039 
+ 00027427  0x0000576a copy  0x00000039 , 0x0000003f 
+ 00027428  0x0000576b increase  0x00000003 , 0x0000003f 
+ 00027429  0x0000576c byteswap  0x0000003f , 0x0000003f 
+ 00027430  0x0000576d istore  0x00000002 , 0x00000005 
+ 00027431  0x0000576e copy  0x00000039 , 0x0000003f 
+ 00027432  0x0000576f byteswap  0x0000003f , 0x0000003f 
+ 00027433  0x00005770 istore  0x00000002 , 0x00000005 
+ 00027434  0x00005771 branch  0x00006b46 
+ 00027435  0x00005773 add  0x00000011 , 0x00000006 , 0x00000039 
+ 00027436  0x00005774 branch  0x00006b2f , 0x00000028 
+ 00027437  0x00005775 byteswap  0x00000039 , 0x0000003f 
+ 00027438  0x00005776 branch  0x00006b32 
+ 00027439  0x00005778 copy  0x00000039 , 0x0000003f 
+ 00027440  0x00005779 increase  0x00000002 , 0x0000003f 
+ 00027441  0x0000577a byteswap  0x0000003f , 0x0000003f 
+ 00027442  0x0000577c istore  0x00000002 , 0x00000005 
+ 00027443  0x0000577d increase  0xfffffffd , 0x00000039 
+ 00027444  0x0000577e byteswap  0x00000039 , 0x0000003f 
+ 00027445  0x0000577f istore  0x00000002 , 0x00000005 
+ 00027446  0x00005780 copy  0x0000000b , 0x00000006 
+ 00027447  0x00005781 branch  0x00006b46 
+ 00027448  0x00005783 enable  0x00000028 
+ 00027449  0x00005784 fetch  0x00000002 , 0x00000449 
+ 00027450  0x00005785 copy  0x0000003f , 0x00000011 
+ 00027451  0x00005786 copy  0x0000003f , 0x00000039 
+ 00027452  0x00005787 fetch  0x00000002 , 0x00000444 
+ 00027453  0x00005788 branch  0x00006b2b , 0x00000034 
+ 00027454  0x00005789 iadd  0x0000000b , 0x00000006 
+ 00027455  0x0000578a copy  0x00000011 , 0x0000003f 
+ 00027456  0x0000578b increase  0x00000005 , 0x0000003f 
+ 00027457  0x0000578c byteswap  0x0000003f , 0x0000003f 
+ 00027458  0x0000578d istore  0x00000002 , 0x00000005 
+ 00027459  0x0000578e copy  0x00000011 , 0x0000003f 
+ 00027460  0x0000578f byteswap  0x0000003f , 0x0000003f 
+ 00027461  0x00005790 istore  0x00000002 , 0x00000005 
+ 00027462  0x00005792 ifetch  0x00000001 , 0x00000006 
+ 00027463  0x00005793 istore  0x00000001 , 0x00000005 
+ 00027464  0x00005794 loop  0x00006b46 
+ 00027465  0x00005795 nbranch  0x00006b51 , 0x00000028 
+ 00027466  0x00005796 force  0x00000002 , 0x0000003f 
+ 00027467  0x00005797 istore  0x00000001 , 0x00000005 
+ 00027468  0x00005798 copy  0x00000006 , 0x0000003f 
+ 00027469  0x00005799 isub  0x0000000b , 0x0000003f 
+ 00027470  0x0000579a byteswap  0x0000003f , 0x0000003f 
+ 00027471  0x0000579b istore  0x00000002 , 0x00000005 
+ 00027472  0x0000579c branch  0x00006b53 
+ 00027473  0x0000579e force  0x00000000 , 0x0000003f 
+ 00027474  0x0000579f istore  0x00000001 , 0x00000005 
+ 00027475  0x000057a1 fetch  0x00000002 , 0x0000029c 
+ 00027476  0x000057a2 isub  0x00000005 , 0x0000003f 
+ 00027477  0x000057a3 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027478  0x000057a4 store  0x00000002 , 0x0000029e 
+ 00027479  0x000057a5 call  0x00004878 
+ 00027480  0x000057a6 setarg  0x00000005 
+ 00027481  0x000057a7 istore  0x00000001 , 0x00000005 
+ 00027482  0x000057a8 fetch  0x00000002 , 0x00000447 
+ 00027483  0x000057a9 istore  0x00000002 , 0x00000005 
+ 00027484  0x000057aa rtn 
+ 00027485  0x000057b7 call  0x00006d4f 
+ 00027486  0x000057b8 compare  0x000000ff , 0x00000002 , 0x000000ff 
+ 00027487  0x000057b9 branch  0x00006b88 , 0x00000001 
+ 00027488  0x000057ba ifetch  0x00000002 , 0x00000006 
+ 00027489  0x000057bb byteswap  0x0000003f , 0x0000003f 
+ 00027490  0x000057bc increase  0xffffffee , 0x0000003f 
+ 00027491  0x000057bd store  0x00000002 , 0x00000449 
+ 00027492  0x000057be increase  0xfffffffe , 0x0000000b 
+ 00027493  0x000057bf call  0x00006da6 
+ 00027494  0x000057c0 arg  0x00000428 , 0x00000005 
+ 00027495  0x000057c1 force  0x00000000 , 0x00000007 
+ 00027496  0x000057c3 ifetch  0x00000003 , 0x00000006 
+ 00027497  0x000057c4 bne  0x00000009 , 0x00006b88 
+ 00027498  0x000057c6 rshift8  0x0000003f , 0x0000003f 
+ 00027499  0x000057c7 istore  0x00000002 , 0x00000005 
+ 00027500  0x000057c8 increase  0x00000001 , 0x00000007 
+ 00027501  0x000057c9 increase  0xfffffffd , 0x0000000b 
+ 00027502  0x000057ca increase  0xfffffffd , 0x00000011 
+ 00027503  0x000057cb nbranch  0x00006d43 , 0x00000002 
+ 00027504  0x000057cc nbranch  0x00006b68 , 0x00000005 
+ 00027505  0x000057cd increase  0xffffffff , 0x0000000b 
+ 00027506  0x000057ce nbranch  0x00006d43 , 0x00000005 
+ 00027507  0x000057d0 call  0x00004878 
+ 00027508  0x000057d1 increase  0x0000000d , 0x00000005 
+ 00027509  0x000057d2 fetch  0x00000002 , 0x00000440 
+ 00027510  0x000057d3 iforce  0x00000013 
+ 00027511  0x000057d4 arg  0x00000428 , 0x00000011 
+ 00027512  0x000057d6 ifetch  0x00000004 , 0x00000011 
+ 00027513  0x000057d7 branch  0x00006bae , 0x00000034 
+ 00027514  0x000057d8 ifetch  0x00000002 , 0x00000011 
+ 00027515  0x000057d9 iforce  0x00000012 
+ 00027516  0x000057da call  0x00006e2e 
+ 00027517  0x000057db branch  0x00006b86 , 0x00000034 
+ 00027518  0x000057dc increase  0xfffffffd , 0x00000006 
+ 00027519  0x000057dd ifetch  0x00000003 , 0x00000006 
+ 00027520  0x000057de istore  0x00000003 , 0x00000005 
+ 00027521  0x000057df call  0x00006cea 
+ 00027522  0x000057e0 iforce  0x00000039 
+ 00027523  0x000057e2 ifetch  0x00000001 , 0x00000006 
+ 00027524  0x000057e3 istore  0x00000001 , 0x00000005 
+ 00027525  0x000057e4 loop  0x00006b83 
+ 00027526  0x000057e6 increase  0x00000002 , 0x00000011 
+ 00027527  0x000057e7 branch  0x00006b78 
+ 00027528  0x000057e9 set1  0x00000025 , 0x00000000 
+ 00027529  0x000057ea bpatch  0x000000c7 , 0x00004038 
+ 00027530  0x000057ee ifetch  0x00000001 , 0x00000006 
+ 00027531  0x000057f0 ifetch  0x00000001 , 0x00000006 
+ 00027532  0x000057f2 increase  0xfffffffb , 0x0000000b 
+ 00027533  0x000057f3 increase  0xfffffffb , 0x00000011 
+ 00027534  0x000057f4 nbranch  0x00006d43 , 0x00000002 
+ 00027535  0x000057f5 ifetch  0x00000001 , 0x00000006 
+ 00027536  0x000057f6 increase  0xffffffff , 0x0000000b 
+ 00027537  0x000057f7 jam  0x00000000 , 0x00000444 
+ 00027538  0x000057f8 jam  0x00000000 , 0x00000445 
+ 00027539  0x000057f9 nbranch  0x00006b9f , 0x00000034 
+ 00027540  0x000057fa arg  0x00000440 , 0x0000000b 
+ 00027541  0x000057fb ifetch  0x00000002 , 0x0000000b 
+ 00027542  0x000057fd increase  0x00000002 , 0x0000000b 
+ 00027543  0x000057fe call  0x00006e09 
+ 00027544  0x000057ff deposit  0x00000007 
+ 00027545  0x00005800 store  0x00000001 , 0x00000474 
+ 00027546  0x00005801 branch  0x00006dc0 , 0x00000034 
+ 00027547  0x00005802 arg  0x00000000 , 0x00000007 
+ 00027548  0x00005803 call  0x00004878 
+ 00027549  0x00005804 increase  0x0000000a , 0x00000005 
+ 00027550  0x00005805 branch  0x00006c05 
+ 00027551  0x00005808 ifetch  0x00000002 , 0x00000006 
+ 00027552  0x00005809 increase  0xfffffffe , 0x0000000b 
+ 00027553  0x0000580a byteswap  0x0000003f , 0x0000003f 
+ 00027554  0x0000580b store  0x00000002 , 0x00000444 
+ 00027555  0x0000580c arg  0x00000440 , 0x0000000b 
+ 00027556  0x0000580d ifetch  0x00000002 , 0x0000000b 
+ 00027557  0x0000580f increase  0x00000002 , 0x0000000b 
+ 00027558  0x00005810 call  0x00006e09 
+ 00027559  0x00005811 deposit  0x00000007 
+ 00027560  0x00005812 store  0x00000001 , 0x00000474 
+ 00027561  0x00005813 branch  0x00006dc0 , 0x00000034 
+ 00027562  0x00005814 arg  0x00000000 , 0x00000007 
+ 00027563  0x00005815 call  0x00004878 
+ 00027564  0x00005816 increase  0x00000007 , 0x00000005 
+ 00027565  0x00005817 branch  0x00006c14 
+ 00027566  0x0000581a force  0x00000000 , 0x0000003f 
+ 00027567  0x0000581b istore  0x00000001 , 0x00000005 
+ 00027568  0x0000581c increase  0xffffffff , 0x00000005 
+ 00027569  0x0000581d fetcht  0x00000002 , 0x0000029c 
+ 00027570  0x0000581e add  0x00000002 , 0x0000000d , 0x0000003f 
+ 00027571  0x0000581f isub  0x00000005 , 0x0000003f 
+ 00027572  0x00005820 branch  0x00006bd2 , 0x00000005 
+ 00027573  0x00005821 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027574  0x00005822 add  0x00000002 , 0x0000000c , 0x00000012 
+ 00027575  0x00005823 istore  0x00000001 , 0x00000012 
+ 00027576  0x00005824 increase  0x00000003 , 0x0000003f 
+ 00027577  0x00005825 add  0x00000002 , 0x00000009 , 0x00000012 
+ 00027578  0x00005826 istore  0x00000001 , 0x00000012 
+ 00027579  0x00005827 increase  0x00000003 , 0x0000003f 
+ 00027580  0x00005828 byteswap  0x0000003f , 0x0000003f 
+ 00027581  0x00005829 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027582  0x0000582a istore  0x00000002 , 0x00000012 
+ 00027583  0x0000582b rshift8  0x0000003f , 0x0000003f 
+ 00027584  0x0000582c increase  0x00000003 , 0x0000003f 
+ 00027585  0x0000582d byteswap  0x0000003f , 0x0000003f 
+ 00027586  0x0000582e add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027587  0x0000582f istore  0x00000002 , 0x00000012 
+ 00027588  0x00005830 rshift8  0x0000003f , 0x0000003f 
+ 00027589  0x00005831 increase  0x00000005 , 0x0000003f 
+ 00027590  0x00005832 store  0x00000001 , 0x0000029e 
+ 00027591  0x00005834 fetch  0x00000002 , 0x00000447 
+ 00027592  0x00005835 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027593  0x00005836 istore  0x00000002 , 0x00000012 
+ 00027594  0x00005837 setarg  0x00000007 
+ 00027595  0x00005838 istore  0x00000001 , 0x00000002 
+ 00027596  0x0000583d setarg  0x00000036 
+ 00027597  0x0000583e add  0x00000002 , 0x00000007 , 0x00000012 
+ 00027598  0x0000583f istore  0x00000002 , 0x00000012 
+ 00027599  0x00005840 add  0x00000002 , 0x0000000a , 0x00000012 
+ 00027600  0x00005841 istore  0x00000002 , 0x00000012 
+ 00027601  0x00005842 rtn 
+ 00027602  0x00005844 jam  0x0000000a , 0x0000029e 
+ 00027603  0x00005845 call  0x00004878 
+ 00027604  0x00005847 setarg  0x00000007 
+ 00027605  0x00005848 istore  0x00000001 , 0x00000005 
+ 00027606  0x00005849 fetch  0x00000002 , 0x00000447 
+ 00027607  0x0000584a istore  0x00000002 , 0x00000005 
+ 00027608  0x0000584e setarg  0x00000500 
+ 00027609  0x0000584f istore  0x00000002 , 0x00000005 
+ 00027610  0x00005852 setarg  0x00000200 
+ 00027611  0x00005853 istore  0x00000002 , 0x00000005 
+ 00027612  0x00005857 setarg  0x00000035 
+ 00027613  0x00005858 istore  0x00000003 , 0x00000005 
+ 00027614  0x00005859 rtn 
+ 00027615  0x0000585c ifetch  0x00000001 , 0x00000006 
+ 00027616  0x0000585d istore  0x00000001 , 0x00000005 
+ 00027617  0x0000585e increase  0x00000001 , 0x00000012 
+ 00027618  0x0000585f increase  0xffffffff , 0x00000011 
+ 00027619  0x00005860 branch  0x00006be5 , 0x00000005 
+ 00027620  0x00005861 loop  0x00006bdf 
+ 00027621  0x00005863 copy  0x00000005 , 0x0000000b 
+ 00027622  0x00005864 copy  0x00000012 , 0x0000003f 
+ 00027623  0x00005865 store  0x00000002 , 0x00000444 
+ 00027624  0x00005866 copy  0x00000011 , 0x0000003f 
+ 00027625  0x00005867 store  0x00000002 , 0x00000449 
+ 00027626  0x00005868 branch  0x00006c26 , 0x00000034 
+ 00027627  0x00005869 branch  0x00006c85 , 0x00000028 
+ 00027628  0x0000586a copy  0x0000000b , 0x00000005 
+ 00027629  0x0000586c increase  0x00000001 , 0x00000007 
+ 00027630  0x0000586d fetch  0x00000001 , 0x00000474 
+ 00027631  0x0000586e isub  0x00000007 , 0x0000003e 
+ 00027632  0x0000586f nbranch  0x00006c05 , 0x00000005 
+ 00027633  0x00005870 branch  0x00006ca4 
+ 00027634  0x00005873 ifetch  0x00000001 , 0x00000006 
+ 00027635  0x00005874 istore  0x00000001 , 0x00000005 
+ 00027636  0x00005875 increase  0x00000001 , 0x00000012 
+ 00027637  0x00005876 increase  0xffffffff , 0x00000011 
+ 00027638  0x00005877 branch  0x00006bf8 , 0x00000005 
+ 00027639  0x00005878 loop  0x00006bf2 
+ 00027640  0x0000587a copy  0x00000005 , 0x0000000b 
+ 00027641  0x0000587b copy  0x00000012 , 0x0000003f 
+ 00027642  0x0000587c store  0x00000002 , 0x00000444 
+ 00027643  0x0000587d copy  0x00000011 , 0x0000003f 
+ 00027644  0x0000587e store  0x00000002 , 0x00000449 
+ 00027645  0x0000587f branch  0x00006c61 , 0x00000034 
+ 00027646  0x00005880 branch  0x00006c85 , 0x00000028 
+ 00027647  0x00005881 copy  0x0000000b , 0x00000005 
+ 00027648  0x00005883 increase  0x00000001 , 0x00000007 
+ 00027649  0x00005884 fetch  0x00000001 , 0x00000474 
+ 00027650  0x00005885 isub  0x00000007 , 0x0000003e 
+ 00027651  0x00005886 nbranch  0x00006c14 , 0x00000005 
+ 00027652  0x00005887 branch  0x00006ccc 
+ 00027653  0x0000588a arg  0x0000045c , 0x00000006 
+ 00027654  0x0000588b lshift2  0x00000007 , 0x0000003f 
+ 00027655  0x0000588c iadd  0x00000006 , 0x00000006 
+ 00027656  0x0000588d ifetch  0x00000004 , 0x00000006 
+ 00027657  0x0000588e iforce  0x00000002 
+ 00027658  0x0000588f call  0x00006e20 
+ 00027659  0x00005890 copy  0x00000006 , 0x0000000b 
+ 00027660  0x00005891 call  0x00006dea 
+ 00027661  0x00005892 add  0x0000003f , 0x00000003 , 0x00000039 
+ 00027662  0x00005893 fetch  0x00000002 , 0x00000449 
+ 00027663  0x00005894 copy  0x0000003f , 0x00000011 
+ 00027664  0x00005895 fetch  0x00000002 , 0x00000444 
+ 00027665  0x00005896 copy  0x0000003f , 0x00000012 
+ 00027666  0x00005897 copy  0x0000000b , 0x00000006 
+ 00027667  0x00005898 branch  0x00006bdf 
+ 00027668  0x0000589b arg  0x0000045c , 0x00000006 
+ 00027669  0x0000589c lshift2  0x00000007 , 0x0000003f 
+ 00027670  0x0000589d iadd  0x00000006 , 0x00000006 
+ 00027671  0x0000589e ifetch  0x00000004 , 0x00000006 
+ 00027672  0x0000589f iforce  0x00000002 
+ 00027673  0x000058a0 call  0x00006e20 
+ 00027674  0x000058a1 copy  0x00000006 , 0x0000000b 
+ 00027675  0x000058a2 call  0x00006dea 
+ 00027676  0x000058a3 add  0x0000003f , 0x00000003 , 0x0000003f 
+ 00027677  0x000058a4 fetcht  0x00000002 , 0x00000444 
+ 00027678  0x000058a5 isub  0x00000002 , 0x00000039 
+ 00027679  0x000058a6 fetch  0x00000002 , 0x00000449 
+ 00027680  0x000058a7 copy  0x0000003f , 0x00000011 
+ 00027681  0x000058a8 fetch  0x00000002 , 0x00000444 
+ 00027682  0x000058a9 copy  0x0000003f , 0x00000012 
+ 00027683  0x000058aa copy  0x0000000b , 0x00000006 
+ 00027684  0x000058ab iadd  0x00000006 , 0x00000006 
+ 00027685  0x000058ac branch  0x00006bf2 
+ 00027686  0x000058af arg  0x00000000 , 0x00000007 
+ 00027687  0x000058b0 arg  0x00000000 , 0x00000012 
+ 00027688  0x000058b2 arg  0x0000045c , 0x00000006 
+ 00027689  0x000058b3 lshift2  0x00000007 , 0x0000003f 
+ 00027690  0x000058b4 iadd  0x00000006 , 0x00000006 
+ 00027691  0x000058b5 ifetch  0x00000004 , 0x00000006 
+ 00027692  0x000058b6 iforce  0x00000002 
+ 00027693  0x000058b7 call  0x00006e20 
+ 00027694  0x000058b8 call  0x00006dea 
+ 00027695  0x000058b9 add  0x0000003f , 0x00000003 , 0x0000003f 
+ 00027696  0x000058ba iadd  0x00000012 , 0x00000012 
+ 00027697  0x000058bb increase  0x00000001 , 0x00000007 
+ 00027698  0x000058bc fetch  0x00000001 , 0x00000474 
+ 00027699  0x000058bd isub  0x00000007 , 0x0000003e 
+ 00027700  0x000058be nbranch  0x00006c28 , 0x00000005 
+ 00027701  0x000058c0 copy  0x0000000b , 0x00000005 
+ 00027702  0x000058c1 force  0x00000002 , 0x0000003f 
+ 00027703  0x000058c2 istore  0x00000001 , 0x00000005 
+ 00027704  0x000058c3 fetch  0x00000002 , 0x00000444 
+ 00027705  0x000058c4 byteswap  0x0000003f , 0x0000003f 
+ 00027706  0x000058c5 istore  0x00000002 , 0x00000005 
+ 00027707  0x000058c6 increase  0xfffffffd , 0x00000005 
+ 00027708  0x000058c7 fetcht  0x00000002 , 0x0000029c 
+ 00027709  0x000058c8 add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00027710  0x000058c9 isub  0x00000005 , 0x0000003f 
+ 00027711  0x000058ca sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027712  0x000058cb iforce  0x00000011 
+ 00027713  0x000058cd deposit  0x00000012 
+ 00027714  0x000058ce add  0x00000002 , 0x00000009 , 0x00000012 
+ 00027715  0x000058cf istore  0x00000001 , 0x00000012 
+ 00027716  0x000058d0 rshift8  0x0000003f , 0x0000003f 
+ 00027717  0x000058d1 add  0x00000002 , 0x00000008 , 0x00000012 
+ 00027718  0x000058d2 istore  0x00000001 , 0x00000012 
+ 00027719  0x000058d3 increase  0x00000003 , 0x00000011 
+ 00027720  0x000058d4 deposit  0x00000011 
+ 00027721  0x000058d5 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027722  0x000058d6 istore  0x00000001 , 0x00000012 
+ 00027723  0x000058d7 rshift8  0x0000003f , 0x0000003f 
+ 00027724  0x000058d8 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027725  0x000058d9 istore  0x00000001 , 0x00000012 
+ 00027726  0x000058da increase  0x00000005 , 0x00000011 
+ 00027727  0x000058db deposit  0x00000011 
+ 00027728  0x000058dc add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027729  0x000058dd istore  0x00000001 , 0x00000012 
+ 00027730  0x000058de rshift8  0x0000003f , 0x0000003f 
+ 00027731  0x000058df add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027732  0x000058e0 istore  0x00000001 , 0x00000012 
+ 00027733  0x000058e1 increase  0x00000005 , 0x00000011 
+ 00027734  0x000058e2 deposit  0x00000011 
+ 00027735  0x000058e3 store  0x00000002 , 0x0000029e 
+ 00027736  0x000058e4 setarg  0x00000007 
+ 00027737  0x000058e5 istore  0x00000001 , 0x00000002 
+ 00027738  0x000058e6 setarg  0x00000036 
+ 00027739  0x000058e7 add  0x00000002 , 0x00000007 , 0x00000012 
+ 00027740  0x000058e8 istore  0x00000001 , 0x00000012 
+ 00027741  0x000058e9 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027742  0x000058ea fetch  0x00000002 , 0x00000447 
+ 00027743  0x000058eb istore  0x00000002 , 0x00000012 
+ 00027744  0x000058ec rtn 
+ 00027745  0x000058ef arg  0x00000000 , 0x00000007 
+ 00027746  0x000058f0 arg  0x00000000 , 0x00000012 
+ 00027747  0x000058f2 copy  0x0000000b , 0x00000005 
+ 00027748  0x000058f3 force  0x00000002 , 0x0000003f 
+ 00027749  0x000058f4 istore  0x00000001 , 0x00000005 
+ 00027750  0x000058f5 fetch  0x00000002 , 0x00000444 
+ 00027751  0x000058f6 byteswap  0x0000003f , 0x0000003f 
+ 00027752  0x000058f7 istore  0x00000002 , 0x00000005 
+ 00027753  0x000058f8 increase  0xfffffffd , 0x00000005 
+ 00027754  0x000058f9 fetcht  0x00000002 , 0x0000029c 
+ 00027755  0x000058fa add  0x00000002 , 0x00000007 , 0x0000003f 
+ 00027756  0x000058fb isub  0x00000005 , 0x0000003f 
+ 00027757  0x000058fc sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027758  0x000058fd iforce  0x00000011 
+ 00027759  0x000058ff deposit  0x00000011 
+ 00027760  0x00005900 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027761  0x00005901 istore  0x00000001 , 0x00000012 
+ 00027762  0x00005902 rshift8  0x0000003f , 0x0000003f 
+ 00027763  0x00005903 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027764  0x00005904 istore  0x00000001 , 0x00000012 
+ 00027765  0x00005905 increase  0x00000005 , 0x00000011 
+ 00027766  0x00005906 deposit  0x00000011 
+ 00027767  0x00005907 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027768  0x00005908 istore  0x00000001 , 0x00000012 
+ 00027769  0x00005909 rshift8  0x0000003f , 0x0000003f 
+ 00027770  0x0000590a add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027771  0x0000590b istore  0x00000001 , 0x00000012 
+ 00027772  0x0000590c increase  0x00000005 , 0x00000011 
+ 00027773  0x0000590d deposit  0x00000011 
+ 00027774  0x0000590e store  0x00000002 , 0x0000029e 
+ 00027775  0x0000590f setarg  0x00000007 
+ 00027776  0x00005910 istore  0x00000001 , 0x00000002 
+ 00027777  0x00005911 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027778  0x00005912 fetch  0x00000002 , 0x00000447 
+ 00027779  0x00005913 istore  0x00000002 , 0x00000012 
+ 00027780  0x00005914 rtn 
+ 00027781  0x00005917 copy  0x0000000b , 0x00000005 
+ 00027782  0x00005918 force  0x00000000 , 0x0000003f 
+ 00027783  0x00005919 istore  0x00000001 , 0x00000005 
+ 00027784  0x0000591a increase  0xffffffff , 0x00000005 
+ 00027785  0x0000591b fetcht  0x00000002 , 0x0000029c 
+ 00027786  0x0000591c add  0x00000002 , 0x00000007 , 0x0000003f 
+ 00027787  0x0000591d isub  0x00000005 , 0x0000003f 
+ 00027788  0x0000591e sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027789  0x0000591f iforce  0x00000011 
+ 00027790  0x00005921 deposit  0x00000011 
+ 00027791  0x00005922 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027792  0x00005923 istore  0x00000001 , 0x00000012 
+ 00027793  0x00005924 rshift8  0x0000003f , 0x0000003f 
+ 00027794  0x00005925 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027795  0x00005926 istore  0x00000001 , 0x00000012 
+ 00027796  0x00005927 increase  0x00000003 , 0x00000011 
+ 00027797  0x00005928 deposit  0x00000011 
+ 00027798  0x00005929 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027799  0x0000592a istore  0x00000001 , 0x00000012 
+ 00027800  0x0000592b rshift8  0x0000003f , 0x0000003f 
+ 00027801  0x0000592c add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027802  0x0000592d istore  0x00000001 , 0x00000012 
+ 00027803  0x0000592e increase  0x00000005 , 0x00000011 
+ 00027804  0x0000592f deposit  0x00000011 
+ 00027805  0x00005930 store  0x00000002 , 0x0000029e 
+ 00027806  0x00005932 setarg  0x00000007 
+ 00027807  0x00005933 istore  0x00000001 , 0x00000002 
+ 00027808  0x00005935 fetch  0x00000002 , 0x00000447 
+ 00027809  0x00005936 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027810  0x00005937 istore  0x00000002 , 0x00000012 
+ 00027811  0x00005938 rtn 
+ 00027812  0x0000593b force  0x00000000 , 0x0000003f 
+ 00027813  0x0000593c istore  0x00000001 , 0x00000005 
+ 00027814  0x0000593d increase  0xffffffff , 0x00000005 
+ 00027815  0x0000593e fetcht  0x00000002 , 0x0000029c 
+ 00027816  0x0000593f add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00027817  0x00005940 isub  0x00000005 , 0x0000003f 
+ 00027818  0x00005941 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027819  0x00005942 iforce  0x00000011 
+ 00027820  0x00005944 deposit  0x00000011 
+ 00027821  0x00005945 add  0x00000002 , 0x00000009 , 0x00000012 
+ 00027822  0x00005946 istore  0x00000001 , 0x00000012 
+ 00027823  0x00005947 rshift8  0x0000003f , 0x0000003f 
+ 00027824  0x00005948 add  0x00000002 , 0x00000008 , 0x00000012 
+ 00027825  0x00005949 istore  0x00000001 , 0x00000012 
+ 00027826  0x0000594b increase  0x00000003 , 0x00000011 
+ 00027827  0x0000594c deposit  0x00000011 
+ 00027828  0x0000594d add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027829  0x0000594e istore  0x00000001 , 0x00000012 
+ 00027830  0x0000594f rshift8  0x0000003f , 0x0000003f 
+ 00027831  0x00005950 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027832  0x00005951 istore  0x00000001 , 0x00000012 
+ 00027833  0x00005952 increase  0x00000003 , 0x00000011 
+ 00027834  0x00005953 deposit  0x00000011 
+ 00027835  0x00005954 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027836  0x00005955 istore  0x00000001 , 0x00000012 
+ 00027837  0x00005956 rshift8  0x0000003f , 0x0000003f 
+ 00027838  0x00005957 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027839  0x00005958 istore  0x00000001 , 0x00000012 
+ 00027840  0x00005959 increase  0x00000005 , 0x00000011 
+ 00027841  0x0000595a deposit  0x00000011 
+ 00027842  0x0000595b store  0x00000002 , 0x0000029e 
+ 00027843  0x0000595c setarg  0x00000036 
+ 00027844  0x0000595d add  0x00000002 , 0x00000007 , 0x00000012 
+ 00027845  0x0000595e istore  0x00000001 , 0x00000012 
+ 00027846  0x0000595f setarg  0x00000007 
+ 00027847  0x00005960 istore  0x00000001 , 0x00000002 
+ 00027848  0x00005961 fetch  0x00000002 , 0x00000447 
+ 00027849  0x00005962 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027850  0x00005963 istore  0x00000002 , 0x00000012 
+ 00027851  0x00005964 rtn 
+ 00027852  0x00005967 force  0x00000000 , 0x0000003f 
+ 00027853  0x00005968 istore  0x00000001 , 0x00000005 
+ 00027854  0x00005969 increase  0xffffffff , 0x00000005 
+ 00027855  0x0000596a fetcht  0x00000002 , 0x0000029c 
+ 00027856  0x0000596b add  0x00000002 , 0x00000007 , 0x0000003f 
+ 00027857  0x0000596c isub  0x00000005 , 0x0000003f 
+ 00027858  0x0000596d sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027859  0x0000596e iforce  0x00000011 
+ 00027860  0x00005971 deposit  0x00000011 
+ 00027861  0x00005972 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027862  0x00005973 istore  0x00000001 , 0x00000012 
+ 00027863  0x00005974 rshift8  0x0000003f , 0x0000003f 
+ 00027864  0x00005975 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027865  0x00005976 istore  0x00000001 , 0x00000012 
+ 00027866  0x00005977 increase  0x00000003 , 0x00000011 
+ 00027867  0x00005978 deposit  0x00000011 
+ 00027868  0x00005979 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027869  0x0000597a istore  0x00000001 , 0x00000012 
+ 00027870  0x0000597b rshift8  0x0000003f , 0x0000003f 
+ 00027871  0x0000597c add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027872  0x0000597d istore  0x00000001 , 0x00000012 
+ 00027873  0x0000597e increase  0x00000005 , 0x00000011 
+ 00027874  0x0000597f deposit  0x00000011 
+ 00027875  0x00005980 store  0x00000002 , 0x0000029e 
+ 00027876  0x00005984 setarg  0x00000007 
+ 00027877  0x00005985 istore  0x00000001 , 0x00000002 
+ 00027878  0x00005986 fetch  0x00000002 , 0x00000447 
+ 00027879  0x00005987 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027880  0x00005988 istore  0x00000002 , 0x00000012 
+ 00027881  0x00005989 rtn 
+ 00027882  0x0000598c copy  0x00000006 , 0x0000000b 
+ 00027883  0x0000598d ifetch  0x00000001 , 0x00000006 
+ 00027884  0x0000598e and  0x0000003f , 0x00000007 , 0x00000039 
+ 00027885  0x0000598f rshift3  0x0000003f , 0x0000003f 
+ 00027886  0x00005990 beq  0x00000006 , 0x00006cf3 
+ 00027887  0x00005991 beq  0x00000001 , 0x00006de2 
+ 00027888  0x00005992 beq  0x00000004 , 0x00006de7 
+ 00027889  0x00005993 beq  0x00000005 , 0x00006de5 
+ 00027890  0x00005994 branch  0x00006de0 
+ 00027891  0x00005996 call  0x00006cf5 
+ 00027892  0x00005997 branch  0x00006de0 
+ 00027893  0x00005999 deposit  0x00000039 
+ 00027894  0x0000599a beq  0x00000005 , 0x00006cfa 
+ 00027895  0x0000599b beq  0x00000006 , 0x00006cfd 
+ 00027896  0x0000599c force  0x00000003 , 0x00000039 
+ 00027897  0x0000599d branch  0x00006df1 
+ 00027898  0x0000599f ifetch  0x00000001 , 0x00000006 
+ 00027899  0x000059a0 increase  0x00000002 , 0x0000003f 
+ 00027900  0x000059a1 rtn 
+ 00027901  0x000059a3 ifetch  0x00000002 , 0x00000006 
+ 00027902  0x000059a4 byteswap  0x0000003f , 0x0000003f 
+ 00027903  0x000059a5 increase  0x00000003 , 0x0000003f 
+ 00027904  0x000059a6 rtn 
+ 00027905  0x000059a9 call  0x00004878 
+ 00027906  0x000059aa copy  0x0000003f , 0x00000005 
+ 00027907  0x000059ab setarg  0x00000006 
+ 00027908  0x000059ac istore  0x00000001 , 0x00000005 
+ 00027909  0x000059ad setarg  0x0000006e 
+ 00027910  0x000059ae istore  0x00000002 , 0x00000005 
+ 00027911  0x000059af setarg  0x00000f00 
+ 00027912  0x000059b0 istore  0x00000002 , 0x00000005 
+ 00027913  0x000059b1 setarg  0x001a0535 
+ 00027914  0x000059b2 istore  0x00000003 , 0x00000005 
+ 00027915  0x000059b3 setarg  0x00000111 
+ 00027916  0x000059b4 lshift16  0x0000003f , 0x0000003f 
+ 00027917  0x000059b5 istore  0x00000004 , 0x00000005 
+ 00027918  0x000059b6 setarg  0x00002600 
+ 00027919  0x000059b7 istore  0x00000002 , 0x00000005 
+ 00027920  0x000059b8 setarg  0x00000335 
+ 00027921  0x000059b9 istore  0x00000002 , 0x00000005 
+ 00027922  0x000059ba setarg  0x00000009 
+ 00027923  0x000059bb istore  0x00000002 , 0x00000005 
+ 00027924  0x000059bc setarg  0x00000004 
+ 00027925  0x000059bd istore  0x00000002 , 0x00000005 
+ 00027926  0x000059be jam  0x00000014 , 0x0000029e 
+ 00027927  0x000059bf rtn 
+ 00027928  0x000059ca copy  0x00000006 , 0x00000002 
+ 00027929  0x000059cb fetch  0x00000002 , 0x00000447 
+ 00027930  0x000059cc beq  0x0000006e , 0x00006d1c 
+ 00027931  0x000059cf branch  0x00006d25 
+ 00027932  0x000059d2 copy  0x00000002 , 0x00000006 
+ 00027933  0x000059d3 increase  0xfffffffd , 0x0000000b 
+ 00027934  0x000059d4 copy  0x0000000b , 0x0000003f 
+ 00027935  0x000059d5 beq  0x00000002 , 0x00006d25 
+ 00027936  0x000059d6 call  0x00006d26 
+ 00027937  0x000059d7 rtn  0x00000028 
+ 00027938  0x000059d8 store  0x00000001 , 0x000045fc 
+ 00027939  0x000059d9 jam  0x00000017 , 0x000002ae 
+ 00027940  0x000059da rtn 
+ 00027941  0x000059dd rtn 
+ 00027942  0x000059e4 enable  0x00000028 
+ 00027943  0x000059e5 copy  0x0000003f , 0x00000039 
+ 00027944  0x000059e6 arg  0x00000400 , 0x00000002 
+ 00027945  0x000059e8 ifetch  0x00000002 , 0x00000006 
+ 00027946  0x000059e9 isub  0x00000002 , 0x0000003e 
+ 00027947  0x000059ea branch  0x00006d2f , 0x00000005 
+ 00027948  0x000059eb increase  0xffffffff , 0x00000006 
+ 00027949  0x000059ec loop  0x00006d29 
+ 00027950  0x000059ed rtn 
+ 00027951  0x000059ef arg  0x00000300 , 0x00000002 
+ 00027952  0x000059f1 ifetch  0x00000002 , 0x00000006 
+ 00027953  0x000059f2 isub  0x00000002 , 0x0000003e 
+ 00027954  0x000059f3 branch  0x00006d36 , 0x00000005 
+ 00027955  0x000059f4 increase  0xffffffff , 0x00000006 
+ 00027956  0x000059f5 loop  0x00006d30 
+ 00027957  0x000059f6 rtn 
+ 00027958  0x000059f8 ifetch  0x00000001 , 0x00000006 
+ 00027959  0x000059f9 ifetch  0x00000001 , 0x00000006 
+ 00027960  0x000059fa disable  0x00000028 
+ 00027961  0x000059fb rtn 
+ 00027962  0x000059fe setarg  0x00000200 
+ 00027963  0x000059ff store  0x00000002 , 0x0000044d 
+ 00027964  0x00005a00 branch  0x00006d45 
+ 00027965  0x00005a02 setarg  0x00000400 
+ 00027966  0x00005a03 store  0x00000002 , 0x0000044d 
+ 00027967  0x00005a04 branch  0x00006d45 
+ 00027968  0x00005a06 setarg  0x00000600 
+ 00027969  0x00005a07 store  0x00000002 , 0x0000044d 
+ 00027970  0x00005a08 branch  0x00006d45 
+ 00027971  0x00005a0a setarg  0x00000300 
+ 00027972  0x00005a0b store  0x00000002 , 0x0000044d 
+ 00027973  0x00005a0d call  0x00004878 
+ 00027974  0x00005a0e istore  0x00000001 , 0x00000005 
+ 00027975  0x00005a0f fetch  0x00000002 , 0x00000447 
+ 00027976  0x00005a10 istore  0x00000002 , 0x00000005 
+ 00027977  0x00005a11 setarg  0x00000200 
+ 00027978  0x00005a12 istore  0x00000002 , 0x00000005 
+ 00027979  0x00005a13 fetch  0x00000002 , 0x0000044d 
+ 00027980  0x00005a14 istore  0x00000002 , 0x00000005 
+ 00027981  0x00005a15 jam  0x00000007 , 0x0000029e 
+ 00027982  0x00005a16 rtn 
+ 00027983  0x00005a19 set1  0x00000025 , 0x00000000 
+ 00027984  0x00005a1a bpatch  0x000000c8 , 0x00004039 
+ 00027985  0x00005a1b force  0x00000000 , 0x00000002 
+ 00027986  0x00005a1c arg  0x00000440 , 0x00000005 
+ 00027987  0x00005a1d call  0x00006da6 
+ 00027988  0x00005a1e branch  0x00006da4 , 0x00000005 
+ 00027989  0x00005a20 ifetch  0x00000001 , 0x00000006 
+ 00027990  0x00005a21 increase  0xffffffff , 0x00000011 
+ 00027991  0x00005a22 increase  0xffffffff , 0x0000000b 
+ 00027992  0x00005a23 compare  0x00000018 , 0x0000003f , 0x000000f8 
+ 00027993  0x00005a24 nbranch  0x00006da4 , 0x00000001 
+ 00027994  0x00005a25 compare  0x00000004 , 0x0000003f , 0x00000007 
+ 00027995  0x00005a26 nbranch  0x00006d72 , 0x00000001 
+ 00027996  0x00005a27 force  0x00000001 , 0x00000002 
+ 00027997  0x00005a29 ifetch  0x00000001 , 0x00000006 
+ 00027998  0x00005a2a increase  0xffffffff , 0x00000011 
+ 00027999  0x00005a2b increase  0xffffffff , 0x0000000b 
+ 00028000  0x00005a2c bne  0x00000000 , 0x00006d66 
+ 00028001  0x00005a2d ifetch  0x00000001 , 0x00000006 
+ 00028002  0x00005a2e increase  0xffffffff , 0x00000011 
+ 00028003  0x00005a2f increase  0xffffffff , 0x0000000b 
+ 00028004  0x00005a30 beq  0x00000000 , 0x00006d77 
+ 00028005  0x00005a31 branch  0x00006d69 
+ 00028006  0x00005a33 increase  0x00000001 , 0x00000006 
+ 00028007  0x00005a34 increase  0xffffffff , 0x00000011 
+ 00028008  0x00005a35 increase  0xffffffff , 0x0000000b 
+ 00028009  0x00005a37 increase  0x00000002 , 0x00000006 
+ 00028010  0x00005a38 increase  0xfffffffe , 0x00000011 
+ 00028011  0x00005a39 increase  0xfffffffe , 0x0000000b 
+ 00028012  0x00005a3a compare  0x00000000 , 0x00000002 , 0x000000ff 
+ 00028013  0x00005a3b branch  0x00006d9f , 0x00000001 
+ 00028014  0x00005a3c increase  0x0000000c , 0x00000006 
+ 00028015  0x00005a3d increase  0xfffffff4 , 0x00000011 
+ 00028016  0x00005a3e increase  0xfffffff4 , 0x0000000b 
+ 00028017  0x00005a3f branch  0x00006d9f 
+ 00028018  0x00005a41 compare  0x00000002 , 0x0000003f , 0x00000007 
+ 00028019  0x00005a42 nbranch  0x00006d75 , 0x00000001 
+ 00028020  0x00005a43 branch  0x00006d5d 
+ 00028021  0x00005a45 compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00028022  0x00005a46 nbranch  0x00006da4 , 0x00000001 
+ 00028023  0x00005a48 ifetch  0x00000002 , 0x00000006 
+ 00028024  0x00005a49 increase  0xfffffffe , 0x00000011 
+ 00028025  0x00005a4a increase  0xfffffffe , 0x0000000b 
+ 00028026  0x00005a4b istore  0x00000002 , 0x00000005 
+ 00028027  0x00005a4d compare  0x00000000 , 0x00000002 , 0x000000ff 
+ 00028028  0x00005a4e branch  0x00006d9f , 0x00000001 
+ 00028029  0x00005a4f copy  0x00000006 , 0x00000002 
+ 00028030  0x00005a50 set1  0x00000025 , 0x00000000 
+ 00028031  0x00005a51 bpatch  0x000000c9 , 0x00004039 
+ 00028032  0x00005a52 ifetch  0x00000001 , 0x00000006 
+ 00028033  0x00005a53 bne  0x00000000 , 0x00006d98 
+ 00028034  0x00005a54 ifetch  0x00000001 , 0x00000006 
+ 00028035  0x00005a55 bne  0x00000000 , 0x00006d98 
+ 00028036  0x00005a56 ifetch  0x00000001 , 0x00000006 
+ 00028037  0x00005a57 bne  0x00000010 , 0x00006d98 
+ 00028038  0x00005a58 ifetch  0x00000001 , 0x00000006 
+ 00028039  0x00005a59 bne  0x00000000 , 0x00006d98 
+ 00028040  0x00005a5a ifetch  0x00000001 , 0x00000006 
+ 00028041  0x00005a5b bne  0x00000080 , 0x00006d98 
+ 00028042  0x00005a5c ifetch  0x00000001 , 0x00000006 
+ 00028043  0x00005a5d bne  0x00000000 , 0x00006d98 
+ 00028044  0x00005a5e ifetch  0x00000001 , 0x00000006 
+ 00028045  0x00005a5f bne  0x00000000 , 0x00006d98 
+ 00028046  0x00005a60 ifetch  0x00000001 , 0x00000006 
+ 00028047  0x00005a61 bne  0x00000080 , 0x00006d98 
+ 00028048  0x00005a62 ifetch  0x00000001 , 0x00000006 
+ 00028049  0x00005a63 bne  0x0000005f , 0x00006d98 
+ 00028050  0x00005a64 ifetch  0x00000001 , 0x00000006 
+ 00028051  0x00005a65 bne  0x0000009b , 0x00006d98 
+ 00028052  0x00005a66 ifetch  0x00000001 , 0x00000006 
+ 00028053  0x00005a67 bne  0x00000034 , 0x00006d98 
+ 00028054  0x00005a68 ifetch  0x00000001 , 0x00000006 
+ 00028055  0x00005a69 beq  0x000000fb , 0x00006d9d 
+ 00028056  0x00005a6b copy  0x00000002 , 0x00000006 
+ 00028057  0x00005a6d increase  0x0000000c , 0x00000006 
+ 00028058  0x00005a6e force  0x00000000 , 0x00000007 
+ 00028059  0x00005a6f force  0x00000000 , 0x00000002 
+ 00028060  0x00005a70 branch  0x00006d9d 
+ 00028061  0x00005a72 increase  0xfffffff4 , 0x0000000b 
+ 00028062  0x00005a73 increase  0xfffffff4 , 0x00000011 
+ 00028063  0x00005a75 compare  0x00000000 , 0x00000011 , 0x000000ff 
+ 00028064  0x00005a76 nbranch  0x00006d55 , 0x00000001 
+ 00028065  0x00005a77 force  0x00000000 , 0x0000003f 
+ 00028066  0x00005a78 istore  0x00000002 , 0x00000005 
+ 00028067  0x00005a79 rtn ,
+ 00028068  0x00005a7b arg  0x000000ff , 0x00000002 
+ 00028069  0x00005a7c rtn 
+ 00028070  0x00005a87 ifetch  0x00000001 , 0x00000006 
+ 00028071  0x00005a88 increase  0xffffffff , 0x0000000b 
+ 00028072  0x00005a89 compare  0x00000030 , 0x0000003f , 0x000000f8 
+ 00028073  0x00005a8a nbranch  0x00006dbb , 0x00000001 
+ 00028074  0x00005a8b compare  0x00000007 , 0x0000003f , 0x00000007 
+ 00028075  0x00005a8c branch  0x00006db4 , 0x00000001 
+ 00028076  0x00005a8d compare  0x00000006 , 0x0000003f , 0x00000007 
+ 00028077  0x00005a8e branch  0x00006db6 , 0x00000001 
+ 00028078  0x00005a8f compare  0x00000005 , 0x0000003f , 0x00000007 
+ 00028079  0x00005a90 nbranch  0x00006dbb , 0x00000001 
+ 00028080  0x00005a91 ifetch  0x00000001 , 0x00000006 
+ 00028081  0x00005a92 copy  0x0000003f , 0x00000011 
+ 00028082  0x00005a93 increase  0xffffffff , 0x0000000b 
+ 00028083  0x00005a94 branch  0x00006db9 
+ 00028084  0x00005a96 increase  0x00000002 , 0x00000006 
+ 00028085  0x00005a97 increase  0xfffffffe , 0x0000000b 
+ 00028086  0x00005a99 ifetch  0x00000002 , 0x00000006 
+ 00028087  0x00005a9a byteswap  0x0000003f , 0x00000011 
+ 00028088  0x00005a9b increase  0xfffffffe , 0x0000000b 
+ 00028089  0x00005a9d force  0x00000001 , 0x0000003f 
+ 00028090  0x00005a9e rtn 
+ 00028091  0x00005aa0 force  0x00000000 , 0x0000003f 
+ 00028092  0x00005aa1 rtn 
+ 00028093  0x00005aac setarg  0x00000003 
+ 00028094  0x00005aad store  0x00000001 , 0x00000446 
+ 00028095  0x00005aae branch  0x00006dc2 
+ 00028096  0x00005ab0 setarg  0x00000007 
+ 00028097  0x00005ab1 store  0x00000001 , 0x00000446 
+ 00028098  0x00005ab3 call  0x00004878 
+ 00028099  0x00005ab4 fetch  0x00000001 , 0x00000446 
+ 00028100  0x00005ab5 istore  0x00000001 , 0x00000005 
+ 00028101  0x00005ab6 copy  0x0000003f , 0x00000012 
+ 00028102  0x00005ab7 fetch  0x00000002 , 0x00000447 
+ 00028103  0x00005ab8 istore  0x00000002 , 0x00000005 
+ 00028104  0x00005aba setarg  0x00000500 
+ 00028105  0x00005abb istore  0x00000002 , 0x00000005 
+ 00028106  0x00005abc compare  0x00000005 , 0x00000012 , 0x000000ff 
+ 00028107  0x00005abd branch  0x00006dd2 , 0x00000001 
+ 00028108  0x00005abe compare  0x00000007 , 0x00000012 , 0x000000ff 
+ 00028109  0x00005abf branch  0x00006dd2 , 0x00000001 
+ 00028110  0x00005ac0 setarg  0x00000000 
+ 00028111  0x00005ac1 istore  0x00000003 , 0x00000005 
+ 00028112  0x00005ac2 istore  0x00000002 , 0x00000005 
+ 00028113  0x00005ac3 branch  0x00006dd6 
+ 00028114  0x00005acc setarg  0x00350200 
+ 00028115  0x00005acd istore  0x00000003 , 0x00000005 
+ 00028116  0x00005ad2 setarg  0x00000000 
+ 00028117  0x00005ad3 istore  0x00000002 , 0x00000005 
+ 00028118  0x00005ad5 jam  0x0000000a , 0x0000029e 
+ 00028119  0x00005ad6 rtn 
+ 00028120  0x00005ad9 copy  0x00000006 , 0x0000000b 
+ 00028121  0x00005ada ifetch  0x00000001 , 0x00000006 
+ 00028122  0x00005adb and  0x0000003f , 0x00000007 , 0x00000039 
+ 00028123  0x00005adc rshift3  0x0000003f , 0x0000003f 
+ 00028124  0x00005add beq  0x00000006 , 0x00006de7 
+ 00028125  0x00005ade beq  0x00000001 , 0x00006de2 
+ 00028126  0x00005adf beq  0x00000004 , 0x00006de7 
+ 00028127  0x00005ae0 beq  0x00000005 , 0x00006de5 
+ 00028128  0x00005ae2 copy  0x0000000b , 0x00000006 
+ 00028129  0x00005ae3 rtn 
+ 00028130  0x00005ae5 call  0x00006e03 
+ 00028131  0x00005ae6 increase  0x00000001 , 0x0000003f 
+ 00028132  0x00005ae7 branch  0x00006de0 
+ 00028133  0x00005ae9 force  0x00000002 , 0x0000003f 
+ 00028134  0x00005aea branch  0x00006de0 
+ 00028135  0x00005aec call  0x00006df9 
+ 00028136  0x00005aed increase  0x00000002 , 0x0000003f 
+ 00028137  0x00005aee branch  0x00006de0 
+ 00028138  0x00005af1 ifetch  0x00000001 , 0x00000006 
+ 00028139  0x00005af2 and  0x0000003f , 0x00000007 , 0x00000039 
+ 00028140  0x00005af3 rshift3  0x0000003f , 0x0000003f 
+ 00028141  0x00005af4 beq  0x00000006 , 0x00006df9 
+ 00028142  0x00005af5 beq  0x00000001 , 0x00006df1 
+ 00028143  0x00005af6 beq  0x00000005 , 0x00006dfe 
+ 00028144  0x00005af7 rtn 
+ 00028145  0x00005af9 call  0x00006e03 
+ 00028146  0x00005afa iforce  0x00000039 
+ 00028147  0x00005afb force  0x00000000 , 0x00000002 
+ 00028148  0x00005afd lshift8  0x00000002 , 0x00000002 
+ 00028149  0x00005afe ifetch  0x00000001 , 0x00000006 
+ 00028150  0x00005aff ior  0x00000002 , 0x00000002 
+ 00028151  0x00005b00 loop  0x00006df4 
+ 00028152  0x00005b01 rtn 
+ 00028153  0x00005b03 deposit  0x00000039 
+ 00028154  0x00005b04 beq  0x00000005 , 0x00006dfe 
+ 00028155  0x00005b05 beq  0x00000006 , 0x00006e00 
+ 00028156  0x00005b06 force  0x00000003 , 0x00000039 
+ 00028157  0x00005b07 branch  0x00006df1 
+ 00028158  0x00005b09 ifetch  0x00000001 , 0x00000006 
+ 00028159  0x00005b0a rtn 
+ 00028160  0x00005b0c ifetch  0x00000002 , 0x00000006 
+ 00028161  0x00005b0d byteswap  0x0000003f , 0x0000003f 
+ 00028162  0x00005b0e rtn 
+ 00028163  0x00005b12 force  0x00000001 , 0x0000003f 
+ 00028164  0x00005b13 copy  0x00000039 , 0x0000003e 
+ 00028165  0x00005b14 rtn  0x00000005 
+ 00028166  0x00005b16 lshift  0x0000003f , 0x0000003f 
+ 00028167  0x00005b17 loop  0x00006e06 
+ 00028168  0x00005b18 rtn 
+ 00028169  0x00005b1e iforce  0x00000013 
+ 00028170  0x00005b1f set1  0x00000025 , 0x00000000 
+ 00028171  0x00005b20 bpatch  0x000000ca , 0x00004039 
+ 00028172  0x00005b21 force  0x00000000 , 0x00000007 
+ 00028173  0x00005b22 fetch  0x00000002 , 0x0000460d 
+ 00028174  0x00005b23 iforce  0x00000006 
+ 00028175  0x00005b24 arg  0x0000045c , 0x00000005 
+ 00028176  0x00005b26 disable  0x00000028 
+ 00028177  0x00005b27 ifetch  0x00000001 , 0x00000006 
+ 00028178  0x00005b28 rtn  0x00000034 
+ 00028179  0x00005b29 iforce  0x00000039 
+ 00028180  0x00005b2b ifetch  0x00000002 , 0x00000006 
+ 00028181  0x00005b2c isub  0x00000013 , 0x0000003e 
+ 00028182  0x00005b2d nbranch  0x00006e18 , 0x00000005 
+ 00028183  0x00005b2e enable  0x00000028 
+ 00028184  0x00005b30 loop  0x00006e14 
+ 00028185  0x00005b31 ifetch  0x00000004 , 0x00000006 
+ 00028186  0x00005b32 nbranch  0x00006e1d , 0x00000028 
+ 00028187  0x00005b33 istore  0x00000004 , 0x00000005 
+ 00028188  0x00005b34 increase  0x00000001 , 0x00000007 
+ 00028189  0x00005b36 call  0x00006dea 
+ 00028190  0x00005b37 iadd  0x00000006 , 0x00000006 
+ 00028191  0x00005b38 branch  0x00006e10 
+ 00028192  0x00005b3c set1  0x00000025 , 0x00000000 
+ 00028193  0x00005b3d bpatch  0x000000cb , 0x00004039 
+ 00028194  0x00005b3e fetch  0x00000002 , 0x0000460d 
+ 00028195  0x00005b3f iforce  0x00000006 
+ 00028196  0x00005b41 ifetch  0x00000001 , 0x00000006 
+ 00028197  0x00005b42 rtn  0x00000034 
+ 00028198  0x00005b43 lshift  0x0000003f , 0x0000003f 
+ 00028199  0x00005b44 iadd  0x00000006 , 0x00000006 
+ 00028200  0x00005b45 ifetch  0x00000004 , 0x00000006 
+ 00028201  0x00005b46 isub  0x00000002 , 0x0000003e 
+ 00028202  0x00005b47 rtn  0x00000005 
+ 00028203  0x00005b48 call  0x00006dea 
+ 00028204  0x00005b49 iadd  0x00000006 , 0x00000006 
+ 00028205  0x00005b4a branch  0x00006e24 
+ 00028206  0x00005b52 set1  0x00000025 , 0x00000000 
+ 00028207  0x00005b53 bpatch  0x000000cc , 0x00004039 
+ 00028208  0x00005b54 fetch  0x00000002 , 0x0000460d 
+ 00028209  0x00005b55 iforce  0x00000006 
+ 00028210  0x00005b57 ifetch  0x00000001 , 0x00000006 
+ 00028211  0x00005b58 branch  0x00006e4f , 0x00000034 
+ 00028212  0x00005b59 iforce  0x00000039 
+ 00028213  0x00005b5b ifetch  0x00000002 , 0x00000006 
+ 00028214  0x00005b5c isub  0x00000013 , 0x0000003e 
+ 00028215  0x00005b5d branch  0x00006e3d , 0x00000005 
+ 00028216  0x00005b5e loop  0x00006e35 
+ 00028217  0x00005b5f increase  0x00000004 , 0x00000006 
+ 00028218  0x00005b60 call  0x00006dea 
+ 00028219  0x00005b61 iadd  0x00000006 , 0x00000006 
+ 00028220  0x00005b62 branch  0x00006e32 
+ 00028221  0x00005b64 increase  0xffffffff , 0x00000039 
+ 00028222  0x00005b65 lshift  0x00000039 , 0x0000003f 
+ 00028223  0x00005b66 iadd  0x00000006 , 0x00000006 
+ 00028224  0x00005b67 increase  0x00000004 , 0x00000006 
+ 00028225  0x00005b68 call  0x00006dea 
+ 00028226  0x00005b69 iadd  0x00000006 , 0x00000002 
+ 00028227  0x00005b6b increase  0x00000001 , 0x00000006 
+ 00028228  0x00005b6c ifetch  0x00000002 , 0x00000006 
+ 00028229  0x00005b6d isub  0x00000012 , 0x0000000b 
+ 00028230  0x00005b6f setflag  0x00000005 , 0x00000000 , 0x0000003f 
+ 00028231  0x00005b70 copy  0x0000000b , 0x0000000b 
+ 00028232  0x00005b71 rtn  0x00000005 
+ 00028233  0x00005b72 call  0x00006dd8 
+ 00028234  0x00005b73 iadd  0x00000006 , 0x00000006 
+ 00028235  0x00005b74 deposit  0x00000002 
+ 00028236  0x00005b75 isub  0x00000006 , 0x0000003e 
+ 00028237  0x00005b76 branch  0x00006e4f , 0x00000005 
+ 00028238  0x00005b77 branch  0x00006e43 
+ 00028239  0x00005b79 force  0x00000000 , 0x00000006 
+ 00028240  0x00005b7a force  0x00000000 , 0x0000003f 
+ 00028241  0x00005b7b rtn 
+ 00028242  0x00005b82 set1  0x00000025 , 0x00000000 
+ 00028243  0x00005b83 bpatch  0x000000cd , 0x00004039 
+ 00028244  0x00005b84 fetch  0x00000002 , 0x0000460d 
+ 00028245  0x00005b85 iforce  0x00000006 
+ 00028246  0x00005b87 ifetch  0x00000001 , 0x00000006 
+ 00028247  0x00005b88 branch  0x00006e6c , 0x00000034 
+ 00028248  0x00005b89 lshift  0x0000003f , 0x0000003f 
+ 00028249  0x00005b8a iadd  0x00000006 , 0x00000006 
+ 00028250  0x00005b8b ifetch  0x00000004 , 0x00000006 
+ 00028251  0x00005b8c isub  0x00000002 , 0x0000003e 
+ 00028252  0x00005b8d branch  0x00006e60 , 0x00000005 
+ 00028253  0x00005b8e call  0x00006dea 
+ 00028254  0x00005b8f iadd  0x00000006 , 0x00000006 
+ 00028255  0x00005b90 branch  0x00006e56 
+ 00028256  0x00005b92 call  0x00006dea 
+ 00028257  0x00005b93 iadd  0x00000006 , 0x00000002 
+ 00028258  0x00005b95 increase  0x00000001 , 0x00000006 
+ 00028259  0x00005b96 ifetch  0x00000002 , 0x00000006 
+ 00028260  0x00005b97 isub  0x00000012 , 0x0000003e 
+ 00028261  0x00005b98 rtn  0x00000005 
+ 00028262  0x00005b99 call  0x00006dd8 
+ 00028263  0x00005b9a iadd  0x00000006 , 0x00000006 
+ 00028264  0x00005b9b deposit  0x00000002 
+ 00028265  0x00005b9c isub  0x00000006 , 0x0000003e 
+ 00028266  0x00005b9d branch  0x00006e6c , 0x00000005 
+ 00028267  0x00005b9e branch  0x00006e62 
+ 00028268  0x00005ba0 force  0x00000000 , 0x00000006 
+ 00028269  0x00005ba1 rtn 
+ 00028270  0x00005ba7 set1  0x00000025 , 0x00000000 
+ 00028271  0x00005ba8 bpatch  0x000000ce , 0x00004039 
+ 00028272  0x00005ba9 jam  0x00000050 , 0x00000509 
+ 00028273  0x00005baa arg  0x0000050a , 0x00000005 
+ 00028274  0x00005bab arg  0x000044c3 , 0x00000006 
+ 00028275  0x00005bac call  0x00007e87 
+ 00028276  0x00005bad arg  0x0000465a , 0x00000006 
+ 00028277  0x00005bae call  0x00007e85 
+ 00028278  0x00005baf arg  0x000008e2 , 0x00000006 
+ 00028279  0x00005bb0 call  0x00007e85 
+ 00028280  0x00005bb1 call  0x00006f2d 
+ 00028281  0x00005bb2 arg  0x00000352 , 0x00000006 
+ 00028282  0x00005bb3 call  0x00006f28 
+ 00028283  0x00005bb4 call  0x00006ef2 
+ 00028284  0x00005bb6 arg  0x00000a11 , 0x00000005 
+ 00028285  0x00005bb7 call  0x00006f24 
+ 00028286  0x00005bb8 setarg  0x000f4240 
+ 00028287  0x00005bb9 copy  0x0000003f , 0x00000011 
+ 00028288  0x00005bba fetch  0x00000004 , 0x00000a11 
+ 00028289  0x00005bbb idiv  0x00000011 
+ 00028290  0x00005bbc call  0x00007f53 
+ 00028291  0x00005bbd remainder  0x0000003f 
+ 00028292  0x00005bbe store  0x00000004 , 0x000008de 
+ 00028293  0x00005bc0 rtn 
+ 00028294  0x00005bc3 jam  0x00000041 , 0x00000509 
+ 00028295  0x00005bc4 arg  0x0000050a , 0x00000005 
+ 00028296  0x00005bc5 call  0x00006ed7 
+ 00028297  0x00005bc6 call  0x00006ed2 
+ 00028298  0x00005bc7 fetch  0x00000003 , 0x000044dd 
+ 00028299  0x00005bc8 istore  0x00000003 , 0x00000005 
+ 00028300  0x00005bcb call  0x00006e96 
+ 00028301  0x00005bcd arg  0x00000352 , 0x00000006 
+ 00028302  0x00005bce call  0x00007e87 
+ 00028303  0x00005bcf arg  0x000044c3 , 0x00000006 
+ 00028304  0x00005bd0 call  0x00007e87 
+ 00028305  0x00005bd1 call  0x00006f2d 
+ 00028306  0x00005bd2 arg  0x00000a31 , 0x00000006 
+ 00028307  0x00005bd3 arg  0x000009e1 , 0x00000005 
+ 00028308  0x00005bd4 call  0x00007e87 
+ 00028309  0x00005bd6 branch  0x00006ef2 
+ 00028310  0x00005bdb fetch  0x00000004 , 0x0000456d 
+ 00028311  0x00005bdc istore  0x00000004 , 0x00000005 
+ 00028312  0x00005bdd call  0x00007e98 
+ 00028313  0x00005bde branch  0x00007e95 
+ 00028314  0x00005be1 set1  0x00000025 , 0x00000000 
+ 00028315  0x00005be2 bpatch  0x000000cf , 0x00004039 
+ 00028316  0x00005be3 jam  0x00000041 , 0x00000509 
+ 00028317  0x00005be4 arg  0x0000050a , 0x00000005 
+ 00028318  0x00005be5 call  0x00006ed2 
+ 00028319  0x00005be6 call  0x00006ed7 
+ 00028320  0x00005be7 fetch  0x00000003 , 0x000044d6 
+ 00028321  0x00005be8 istore  0x00000003 , 0x00000005 
+ 00028322  0x00005beb call  0x00006e96 
+ 00028323  0x00005bec arg  0x000044c3 , 0x00000006 
+ 00028324  0x00005bed call  0x00007e87 
+ 00028325  0x00005bee arg  0x00000352 , 0x00000006 
+ 00028326  0x00005bef call  0x00007e87 
+ 00028327  0x00005bf0 call  0x00006f2d 
+ 00028328  0x00005bf1 arg  0x00000a31 , 0x00000006 
+ 00028329  0x00005bf2 arg  0x000009e1 , 0x00000005 
+ 00028330  0x00005bf3 call  0x00007e87 
+ 00028331  0x00005bf5 call  0x00006ef2 
+ 00028332  0x00005bf6 arg  0x00000a11 , 0x00000005 
+ 00028333  0x00005bf7 branch  0x00006f24 
+ 00028334  0x00005bfa jam  0x00000020 , 0x00000509 
+ 00028335  0x00005bfb arg  0x00000922 , 0x00000006 
+ 00028336  0x00005bfc arg  0x0000050a , 0x00000005 
+ 00028337  0x00005bfd call  0x00007e85 
+ 00028338  0x00005bfe call  0x00006f2d 
+ 00028339  0x00005bff arg  0x000008c2 , 0x00000006 
+ 00028340  0x00005c00 call  0x00006f28 
+ 00028341  0x00005c01 call  0x00006ef2 
+ 00028342  0x00005c02 arg  0x000009e1 , 0x00000005 
+ 00028343  0x00005c03 call  0x000071c0 
+ 00028344  0x00005c04 arg  0x00000001 , 0x00000002 
+ 00028345  0x00005c05 call  0x00006ec0 
+ 00028346  0x00005c06 arg  0x000044a2 , 0x00000005 
+ 00028347  0x00005c07 call  0x00006f24 
+ 00028348  0x00005c08 arg  0x00000000 , 0x00000002 
+ 00028349  0x00005c09 call  0x00006ec0 
+ 00028350  0x00005c0a arg  0x00000a31 , 0x00000005 
+ 00028351  0x00005c0c branch  0x000071c0 
+ 00028352  0x00005c10 set1  0x00000025 , 0x00000000 
+ 00028353  0x00005c11 bpatch  0x000000d0 , 0x0000403a 
+ 00028354  0x00005c12 jam  0x00000035 , 0x00000509 
+ 00028355  0x00005c13 setarg  0x00000100 
+ 00028356  0x00005c14 store  0x00000002 , 0x0000050a 
+ 00028357  0x00005c15 call  0x00006ed2 
+ 00028358  0x00005c16 call  0x00006ed7 
+ 00028359  0x00005c17 arg  0x000044c3 , 0x00000006 
+ 00028360  0x00005c18 call  0x00007e87 
+ 00028361  0x00005c19 arg  0x00000352 , 0x00000006 
+ 00028362  0x00005c1a call  0x00007e87 
+ 00028363  0x00005c1c setarg  0x00006c65 
+ 00028364  0x00005c1d istore  0x00000002 , 0x00000005 
+ 00028365  0x00005c1e setarg  0x00006274 
+ 00028366  0x00005c1f istore  0x00000002 , 0x00000005 
+ 00028367  0x00005c20 istoret  0x00000001 , 0x00000005 
+ 00028368  0x00005c21 call  0x00006f2d 
+ 00028369  0x00005c22 branch  0x00006ef2 
+ 00028370  0x00005c25 fetch  0x00000006 , 0x0000453e 
+ 00028371  0x00005c26 istore  0x00000006 , 0x00000005 
+ 00028372  0x00005c27 fetch  0x00000001 , 0x00004532 
+ 00028373  0x00005c28 istore  0x00000001 , 0x00000005 
+ 00028374  0x00005c29 rtn 
+ 00028375  0x00005c2c fetch  0x00000006 , 0x00000372 
+ 00028376  0x00005c2d istore  0x00000006 , 0x00000005 
+ 00028377  0x00005c32 fetch  0x00000001 , 0x0000452b 
+ 00028378  0x00005c33 istore  0x00000001 , 0x00000005 
+ 00028379  0x00005c34 rtn 
+ 00028380  0x00005c37 jam  0x00000041 , 0x00000509 
+ 00028381  0x00005c38 fetch  0x00000001 , 0x000046ec 
+ 00028382  0x00005c39 store  0x00000001 , 0x0000050a 
+ 00028383  0x00005c3a arg  0x0000465a , 0x00000006 
+ 00028384  0x00005c3b call  0x00007e85 
+ 00028385  0x00005c3c arg  0x000008e2 , 0x00000006 
+ 00028386  0x00005c3d call  0x00007e85 
+ 00028387  0x00005c3e call  0x00006f2d 
+ 00028388  0x00005c3f arg  0x00000352 , 0x00000006 
+ 00028389  0x00005c40 call  0x00006f28 
+ 00028390  0x00005c41 branch  0x00006ef2 
+ 00028391  0x00005c45 jam  0x00000041 , 0x00000509 
+ 00028392  0x00005c46 fetch  0x00000001 , 0x000046ec 
+ 00028393  0x00005c47 store  0x00000001 , 0x0000050a 
+ 00028394  0x00005c48 arg  0x000008e2 , 0x00000006 
+ 00028395  0x00005c49 call  0x00007e85 
+ 00028396  0x00005c4a arg  0x0000465a , 0x00000006 
+ 00028397  0x00005c4b call  0x00007e85 
+ 00028398  0x00005c4c call  0x00006f2d 
+ 00028399  0x00005c4d arg  0x000044c3 , 0x00000006 
+ 00028400  0x00005c4e call  0x00006f28 
+ 00028401  0x00005c4f branch  0x00006ef2 
+ 00028402  0x00005c52 set1  0x00000025 , 0x00000000 
+ 00028403  0x00005c53 bpatch  0x000000d1 , 0x0000403a 
+ 00028404  0x00005c54 call  0x00006f42 
+ 00028405  0x00005c58 fetch  0x00000001 , 0x00000509 
+ 00028406  0x00005c59 copy  0x0000003f , 0x00000002 
+ 00028407  0x00005c5b increase  0x0000000f , 0x0000003f 
+ 00028408  0x00005c5c rshift4  0x0000003f , 0x0000003f 
+ 00028409  0x00005c5d copy  0x0000003f , 0x00000012 
+ 00028410  0x00005c5e branch  0x00006f05 , 0x00000034 
+ 00028411  0x00005c5f and  0x00000002 , 0x0000000f , 0x0000003f 
+ 00028412  0x00005c60 nbranch  0x00006f08 , 0x00000034 
+ 00028413  0x00005c62 arg  0x000009f1 , 0x00000013 
+ 00028414  0x00005c63 arg  0x0000050a , 0x0000003f 
+ 00028415  0x00005c64 increase  0xfffffff0 , 0x0000003f 
+ 00028416  0x00005c67 iadd  0x00000002 , 0x00000011 
+ 00028417  0x00005c68 arg  0x00000a21 , 0x00000005 
+ 00028418  0x00005c69 arg  0x00000004 , 0x00000039 
+ 00028419  0x00005c6a call  0x00007ea8 
+ 00028420  0x00005c6e branch  0x00006f13 
+ 00028421  0x00005c71 arg  0x00000001 , 0x00000012 
+ 00028422  0x00005c72 arg  0x00000000 , 0x00000011 
+ 00028423  0x00005c74 branch  0x00006f09 
+ 00028424  0x00005c79 and  0x00000002 , 0x0000000f , 0x00000011 
+ 00028425  0x00005c7b arg  0x0000050a , 0x0000003f 
+ 00028426  0x00005c7c iadd  0x00000002 , 0x0000003f 
+ 00028427  0x00005c7d isub  0x00000011 , 0x00000006 
+ 00028428  0x00005c7f arg  0x00000a11 , 0x00000005 
+ 00028429  0x00005c80 call  0x00006f69 
+ 00028430  0x00005c82 arg  0x00000a01 , 0x00000013 
+ 00028431  0x00005c83 arg  0x00000a11 , 0x00000011 
+ 00028432  0x00005c84 arg  0x00000a21 , 0x00000005 
+ 00028433  0x00005c85 arg  0x00000004 , 0x00000039 
+ 00028434  0x00005c86 call  0x00007ea8 
+ 00028435  0x00005c92 call  0x000071ba 
+ 00028436  0x00005c93 call  0x00007150 
+ 00028437  0x00005c96 arg  0x0000050a , 0x00000006 
+ 00028438  0x00005c99 increase  0xffffffff , 0x00000012 
+ 00028439  0x00005c9a deposit  0x00000012 
+ 00028440  0x00005c9b branch  0x00006f1c , 0x00000034 
+ 00028441  0x00005c9c call  0x000071af 
+ 00028442  0x00005c9d call  0x0000714a 
+ 00028443  0x00005c9e branch  0x00006f16 
+ 00028444  0x00005ca1 arg  0x00000a11 , 0x00000005 
+ 00028445  0x00005ca2 call  0x000071c0 
+ 00028446  0x00005ca3 arg  0x00000a21 , 0x00000006 
+ 00028447  0x00005ca4 call  0x000071af 
+ 00028448  0x00005ca5 call  0x00007150 
+ 00028449  0x00005ca6 arg  0x00000a11 , 0x00000006 
+ 00028450  0x00005ca7 call  0x000071af 
+ 00028451  0x00005ca8 branch  0x0000714a 
+ 00028452  0x00005cae copy  0x00000005 , 0x00000011 
+ 00028453  0x00005caf call  0x000071c0 
+ 00028454  0x00005cb1 arg  0x00000010 , 0x00000039 
+ 00028455  0x00005cb2 branch  0x00007eb0 
+ 00028456  0x00005cb5 arg  0x000009e1 , 0x00000005 
+ 00028457  0x00005cb6 call  0x00007e87 
+ 00028458  0x00005cb8 arg  0x00000010 , 0x00000039 
+ 00028459  0x00005cb9 arg  0x000009e1 , 0x00000011 
+ 00028460  0x00005cba branch  0x00007eb0 
+ 00028461  0x00005cbd fetch  0x00000001 , 0x00000509 
+ 00028462  0x00005cbe copy  0x0000003f , 0x00000039 
+ 00028463  0x00005cbf arg  0x0000050a , 0x00000011 
+ 00028464  0x00005cc0 branch  0x00007eb0 
+ 00028465  0x00005cc3 ifetch  0x00000001 , 0x00000011 
+ 00028466  0x00005cc4 lshift  0x0000003f , 0x0000003f 
+ 00028467  0x00005cc5 isolate1  0x00000000 , 0x00000013 
+ 00028468  0x00005cc6 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00028469  0x00005cc7 isolate1  0x00000008 , 0x0000003f 
+ 00028470  0x00005cc8 setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00028471  0x00005cc9 istore  0x00000001 , 0x00000011 
+ 00028472  0x00005cca increase  0xffffffff , 0x00000011 
+ 00028473  0x00005ccb loop  0x00006f31 
+ 00028474  0x00005ccc rtn 
+ 00028475  0x00005ccf arg  0x000009f1 , 0x00000011 
+ 00028476  0x00005cd1 increase  0x0000000f , 0x00000011 
+ 00028477  0x00005cd2 force  0x00000010 , 0x00000039 
+ 00028478  0x00005cd3 force  0x00000000 , 0x00000013 
+ 00028479  0x00005cd4 branch  0x00006f31 
+ 00028480  0x00005cd7 arg  0x00000a01 , 0x00000011 
+ 00028481  0x00005cd8 branch  0x00006f3c 
+ 00028482  0x00005cdc arg  0x000009e1 , 0x00000006 
+ 00028483  0x00005cdd call  0x000071ad 
+ 00028484  0x00005ce0 force  0x00000008 , 0x00000038 
+ 00028485  0x00005ce1 call  0x000071bb 
+ 00028486  0x00005ce2 call  0x000071ba 
+ 00028487  0x00005ce3 call  0x00007147 
+ 00028488  0x00005ce8 arg  0x000009f1 , 0x00000005 
+ 00028489  0x00005ce9 call  0x000071c0 
+ 00028490  0x00005ceb set1  0x00000025 , 0x00000000 
+ 00028491  0x00005cec bpatch  0x000000d2 , 0x0000403a 
+ 00028492  0x00005ced fetch  0x00000001 , 0x000009f1 
+ 00028493  0x00005cee isolate1  0x00000007 , 0x0000003f 
+ 00028494  0x00005cef nbranch  0x00006f54 , 0x00000001 
+ 00028495  0x00005cf0 call  0x00006f3b 
+ 00028496  0x00005cf3 arg  0x000009f1 , 0x00000013 
+ 00028497  0x00005cf5 arg  0x000009f1 , 0x00000005 
+ 00028498  0x00005cf8 call  0x00006f5e 
+ 00028499  0x00005cf9 branch  0x00006f55 
+ 00028500  0x00005cfb call  0x00006f3b 
+ 00028501  0x00005cfe arg  0x000009f1 , 0x00000006 
+ 00028502  0x00005cff arg  0x00000a01 , 0x00000005 
+ 00028503  0x00005d00 call  0x00007e87 
+ 00028504  0x00005d01 fetch  0x00000001 , 0x00000a01 
+ 00028505  0x00005d02 isolate1  0x00000007 , 0x0000003f 
+ 00028506  0x00005d03 nbranch  0x00006f40 , 0x00000001 
+ 00028507  0x00005d04 call  0x00006f40 
+ 00028508  0x00005d06 arg  0x00000a01 , 0x00000013 
+ 00028509  0x00005d08 arg  0x00000a01 , 0x00000005 
+ 00028510  0x00005d0f arg  0x00000003 , 0x00000039 
+ 00028511  0x00005d11 arg  0x00000000 , 0x00000002 
+ 00028512  0x00005d12 call  0x00006f65 
+ 00028513  0x00005d13 increase  0x00000004 , 0x00000013 
+ 00028514  0x00005d14 loop  0x00006f5f 
+ 00028515  0x00005d15 arg  0x00008700 , 0x00000002 
+ 00028516  0x00005d16 lshift16  0x00000002 , 0x00000002 
+ 00028517  0x00005d18 ifetch  0x00000004 , 0x00000013 
+ 00028518  0x00005d19 ixor  0x00000002 , 0x0000003f 
+ 00028519  0x00005d1a istore  0x00000004 , 0x00000005 
+ 00028520  0x00005d1b rtn 
+ 00028521  0x00005d22 set1  0x00000025 , 0x00000000 
+ 00028522  0x00005d23 bpatch  0x000000d3 , 0x0000403a 
+ 00028523  0x00005d24 arg  0x00000010 , 0x00000039 
+ 00028524  0x00005d25 arg  0x00000000 , 0x0000003f 
+ 00028525  0x00005d27 isub  0x00000011 , 0x0000003e 
+ 00028526  0x00005d28 branch  0x00006f75 , 0x00000005 
+ 00028527  0x00005d29 branch  0x00006f78 , 0x00000002 
+ 00028528  0x00005d2a ifetcht  0x00000001 , 0x00000006 
+ 00028529  0x00005d2b istoret  0x00000001 , 0x00000005 
+ 00028530  0x00005d2d increase  0x00000001 , 0x0000003f 
+ 00028531  0x00005d2e loop  0x00006f6d 
+ 00028532  0x00005d2f rtn 
+ 00028533  0x00005d31 arg  0x00000080 , 0x00000002 
+ 00028534  0x00005d33 istoret  0x00000001 , 0x00000005 
+ 00028535  0x00005d34 branch  0x00006f72 
+ 00028536  0x00005d37 arg  0x00000000 , 0x00000002 
+ 00028537  0x00005d38 branch  0x00006f76 
+ 00028538  0x00005d3c call  0x00006f8d 
+ 00028539  0x00005d3d arg  0x000004b6 , 0x00000006 
+ 00028540  0x00005d3e arg  0x000004a6 , 0x00000005 
+ 00028541  0x00005d3f branch  0x00007e87 
+ 00028542  0x00005d43 disable  0x00000028 
+ 00028543  0x00005d44 call  0x00007084 
+ 00028544  0x00005d45 arg  0x00000486 , 0x00000006 
+ 00028545  0x00005d46 arg  0x000004c6 , 0x00000005 
+ 00028546  0x00005d47 force  0x0000000f , 0x00000039 
+ 00028547  0x00005d48 call  0x00007ecd 
+ 00028548  0x00005d49 ifetch  0x00000001 , 0x00000006 
+ 00028549  0x00005d4a xor_into  0x00000006 , 0x0000003f 
+ 00028550  0x00005d4b istore  0x00000001 , 0x00000005 
+ 00028551  0x00005d4c setarg  0x000004d6 
+ 00028552  0x00005d4d store  0x00000002 , 0x000004fa 
+ 00028553  0x00005d4e setarg  0x000004c6 
+ 00028554  0x00005d4f store  0x00000002 , 0x000004f8 
+ 00028555  0x00005d50 set1  0x00000012 , 0x00000000 
+ 00028556  0x00005d51 branch  0x00006fcd 
+ 00028557  0x00005d56 fetcht  0x00000001 , 0x00004718 
+ 00028558  0x00005d57 force  0x00000010 , 0x00000012 
+ 00028559  0x00005d58 add  0x00000002 , 0x00000006 , 0x00000013 
+ 00028560  0x00005d59 sub  0x00000013 , 0x00000010 , 0x0000003e 
+ 00028561  0x00005d5a branch  0x00006f93 , 0x00000002 
+ 00028562  0x00005d5b force  0x00000010 , 0x00000013 
+ 00028563  0x00005d5d arg  0x000004c6 , 0x00000005 
+ 00028564  0x00005d5f arg  0x00004719 , 0x00000006 
+ 00028565  0x00005d60 copy  0x00000002 , 0x00000039 
+ 00028566  0x00005d61 disable  0x00000028 
+ 00028567  0x00005d63 ifetch  0x00000001 , 0x00000006 
+ 00028568  0x00005d64 istore  0x00000001 , 0x00000005 
+ 00028569  0x00005d65 increase  0xffffffff , 0x00000012 
+ 00028570  0x00005d66 branch  0x00006fa1 , 0x00000005 
+ 00028571  0x00005d67 loop  0x00006f97 
+ 00028572  0x00005d68 branch  0x00006f94 , 0x00000028 
+ 00028573  0x00005d69 enable  0x00000028 
+ 00028574  0x00005d6a force  0x00000006 , 0x00000039 
+ 00028575  0x00005d6b copy  0x00000011 , 0x00000006 
+ 00028576  0x00005d6c branch  0x00006f97 
+ 00028577  0x00005d6e arg  0x00000486 , 0x00000006 
+ 00028578  0x00005d6f arg  0x000004d6 , 0x00000005 
+ 00028579  0x00005d70 call  0x00007e87 
+ 00028580  0x00005d71 fetch  0x00000001 , 0x000004e5 
+ 00028581  0x00005d72 ixor  0x00000013 , 0x0000003f 
+ 00028582  0x00005d73 store  0x00000001 , 0x000004e5 
+ 00028583  0x00005d74 setarg  0x000004d6 
+ 00028584  0x00005d75 store  0x00000002 , 0x000004fa 
+ 00028585  0x00005d76 setarg  0x000004c6 
+ 00028586  0x00005d77 store  0x00000002 , 0x000004f8 
+ 00028587  0x00005d78 set1  0x00000012 , 0x00000000 
+ 00028588  0x00005d79 branch  0x00006fcd 
+ 00028589  0x00005d7f disable  0x00000028 
+ 00028590  0x00005d80 call  0x00007084 
+ 00028591  0x00005d81 branch  0x00006fb7 
+ 00028592  0x00005d84 arg  0x00000056 , 0x00000011 
+ 00028593  0x00005d85 enable  0x00000028 
+ 00028594  0x00005d86 call  0x00007084 
+ 00028595  0x00005d87 call  0x00006fb7 
+ 00028596  0x00005d88 arg  0x000004b6 , 0x00000006 
+ 00028597  0x00005d89 arg  0x00000062 , 0x00000005 
+ 00028598  0x00005d8a branch  0x00007e87 
+ 00028599  0x00005d8e setarg  0x00000486 
+ 00028600  0x00005d8f store  0x00000002 , 0x000004fa 
+ 00028601  0x00005d90 setarg  0x00004261 
+ 00028602  0x00005d91 store  0x00000002 , 0x000004f8 
+ 00028603  0x00005d92 set0  0x00000012 , 0x00000000 
+ 00028604  0x00005d93 call  0x00006fcd 
+ 00028605  0x00005d94 arg  0x000004b6 , 0x00000011 
+ 00028606  0x00005d95 arg  0x00000486 , 0x00000012 
+ 00028607  0x00005d96 arg  0x000004c6 , 0x00000005 
+ 00028608  0x00005d97 call  0x00007077 
+ 00028609  0x00005d98 arg  0x000004c6 , 0x00000011 
+ 00028610  0x00005d99 arg  0x000004d6 , 0x00000012 
+ 00028611  0x00005d9a copy  0x00000012 , 0x00000005 
+ 00028612  0x00005d9b enable  0x00000028 
+ 00028613  0x00005d9c call  0x00007075 
+ 00028614  0x00005d9d call  0x0000708f 
+ 00028615  0x00005d9e setarg  0x000004d6 
+ 00028616  0x00005d9f store  0x00000002 , 0x000004fa 
+ 00028617  0x00005da0 setarg  0x000004c6 
+ 00028618  0x00005da1 store  0x00000002 , 0x000004f8 
+ 00028619  0x00005da2 set1  0x00000012 , 0x00000000 
+ 00028620  0x00005da3 branch  0x00006fcd 
+ 00028621  0x00005da8 jam  0x00000000 , 0x000004fc 
+ 00028622  0x00005da9 fetch  0x00000002 , 0x000004f8 
+ 00028623  0x00005daa iforce  0x00000006 
+ 00028624  0x00005dab arg  0x000004e6 , 0x00000005 
+ 00028625  0x00005dac call  0x00007e87 
+ 00028626  0x00005dad fetch  0x00000002 , 0x000004fa 
+ 00028627  0x00005dae iforce  0x00000006 
+ 00028628  0x00005daf arg  0x000004b6 , 0x00000005 
+ 00028629  0x00005db0 call  0x00007e87 
+ 00028630  0x00005db3 call  0x00006ff4 
+ 00028631  0x00005db4 disable  0x00000028 
+ 00028632  0x00005db5 bmark0  0x00000012 , 0x00006fde 
+ 00028633  0x00005db6 fetch  0x00000001 , 0x000004fc 
+ 00028634  0x00005db7 bne  0x00000004 , 0x00006fde 
+ 00028635  0x00005db8 fetch  0x00000002 , 0x000004fa 
+ 00028636  0x00005db9 iforce  0x00000012 
+ 00028637  0x00005dba call  0x00007026 
+ 00028638  0x00005dbc call  0x00007025 
+ 00028639  0x00005dbd call  0x00007038 
+ 00028640  0x00005dbe fetch  0x00000001 , 0x000004fc 
+ 00028641  0x00005dbf increase  0x00000001 , 0x0000003f 
+ 00028642  0x00005dc0 store  0x00000001 , 0x000004fc 
+ 00028643  0x00005dc2 call  0x00006ff4 
+ 00028644  0x00005dc3 enable  0x00000028 
+ 00028645  0x00005dc4 call  0x00007025 
+ 00028646  0x00005dc5 call  0x00007047 
+ 00028647  0x00005dc6 call  0x00007056 
+ 00028648  0x00005dc7 call  0x00007047 
+ 00028649  0x00005dc8 call  0x00007056 
+ 00028650  0x00005dc9 call  0x00007047 
+ 00028651  0x00005dca call  0x00007056 
+ 00028652  0x00005dcb call  0x00007047 
+ 00028653  0x00005dcc fetch  0x00000001 , 0x000004fc 
+ 00028654  0x00005dcd increase  0x00000001 , 0x0000003f 
+ 00028655  0x00005dce store  0x00000001 , 0x000004fc 
+ 00028656  0x00005dcf bne  0x00000010 , 0x00006fd6 
+ 00028657  0x00005dd0 call  0x00006ff4 
+ 00028658  0x00005dd1 disable  0x00000028 
+ 00028659  0x00005dd2 branch  0x00007025 
+ 00028660  0x00005dd7 fetch  0x00000001 , 0x000004fc 
+ 00028661  0x00005dd8 arg  0x000004e6 , 0x00000006 
+ 00028662  0x00005dd9 branch  0x0000701b , 0x00000034 
+ 00028663  0x00005dda iforce  0x00000012 
+ 00028664  0x00005ddb force  0x00000011 , 0x00000039 
+ 00028665  0x00005ddc copy  0x00000006 , 0x00000005 
+ 00028666  0x00005dde ifetch  0x00000001 , 0x00000006 
+ 00028667  0x00005ddf lshift3  0x0000003f , 0x00000002 
+ 00028668  0x00005de0 rshift2  0x0000003f , 0x0000003f 
+ 00028669  0x00005de1 rshift3  0x0000003f , 0x0000003f 
+ 00028670  0x00005de2 ior  0x00000002 , 0x0000003f 
+ 00028671  0x00005de3 istore  0x00000001 , 0x00000005 
+ 00028672  0x00005de4 loop  0x00006ffa 
+ 00028673  0x00005de5 setarg  0x000004e6 
+ 00028674  0x00005de6 iadd  0x00000012 , 0x00000006 
+ 00028675  0x00005de7 force  0x00000010 , 0x00000039 
+ 00028676  0x00005de8 arg  0x00000496 , 0x00000005 
+ 00028677  0x00005dea ifetch  0x00000001 , 0x00000006 
+ 00028678  0x00005deb istore  0x00000001 , 0x00000005 
+ 00028679  0x00005dec compare  0x000004f7 , 0x00000006 , 0x000000ff 
+ 00028680  0x00005ded nbranch  0x0000700a , 0x00000001 
+ 00028681  0x00005dee increase  0xffffffef , 0x00000006 
+ 00028682  0x00005df0 loop  0x00007005 
+ 00028683  0x00005df1 force  0x00000000 , 0x00000011 
+ 00028684  0x00005df2 add  0x00000012 , 0xffffffff , 0x00000013 
+ 00028685  0x00005df3 lshift2  0x00000013 , 0x00000013 
+ 00028686  0x00005df4 lshift2  0x00000013 , 0x00000013 
+ 00028687  0x00005df5 call  0x000071e2 
+ 00028688  0x00005df6 setarg  0x00008400 
+ 00028689  0x00005df7 iadd  0x00000013 , 0x00000013 
+ 00028690  0x00005df8 arg  0x00000496 , 0x00000005 
+ 00028691  0x00005df9 force  0x00000010 , 0x00000039 
+ 00028692  0x00005dfb ifetcht  0x00000001 , 0x00000013 
+ 00028693  0x00005dfc ifetch  0x00000001 , 0x00000005 
+ 00028694  0x00005dfd iadd  0x00000002 , 0x0000003f 
+ 00028695  0x00005dfe istore  0x00000001 , 0x00000005 
+ 00028696  0x00005dff increase  0x00000001 , 0x00000013 
+ 00028697  0x00005e00 loop  0x00007014 
+ 00028698  0x00005e01 branch  0x000071e6 
+ 00028699  0x00005e04 force  0x00000010 , 0x00000039 
+ 00028700  0x00005e05 force  0x00000000 , 0x00000002 
+ 00028701  0x00005e07 ifetch  0x00000001 , 0x00000006 
+ 00028702  0x00005e08 ixor  0x00000002 , 0x00000002 
+ 00028703  0x00005e09 loop  0x0000701d 
+ 00028704  0x00005e0a deposit  0x00000002 
+ 00028705  0x00005e0b istore  0x00000001 , 0x00000006 
+ 00028706  0x00005e0c arg  0x000004e6 , 0x00000006 
+ 00028707  0x00005e0d arg  0x00000496 , 0x00000005 
+ 00028708  0x00005e0e branch  0x00007e87 
+ 00028709  0x00005e11 arg  0x00000496 , 0x00000012 
+ 00028710  0x00005e13 force  0x00000010 , 0x00000039 
+ 00028711  0x00005e14 arg  0x000004b6 , 0x00000011 
+ 00028712  0x00005e15 copy  0x00000011 , 0x00000005 
+ 00028713  0x00005e17 ifetcht  0x00000001 , 0x00000011 
+ 00028714  0x00005e18 ifetch  0x00000001 , 0x00000012 
+ 00028715  0x00005e19 ixor  0x00000002 , 0x00000030 
+ 00028716  0x00005e1a and  0x00000039 , 0x00000003 , 0x00000013 
+ 00028717  0x00005e1b nbranch  0x0000702f , 0x00000028 
+ 00028718  0x00005e1c xor_into  0x00000003 , 0x00000013 
+ 00028719  0x00005e1e sub  0x00000013 , 0x00000001 , 0x00000013 
+ 00028720  0x00005e1f branch  0x00007032 , 0x00000002 
+ 00028721  0x00005e20 iadd  0x00000002 , 0x00000030 
+ 00028722  0x00005e22 deposit  0x00000030 
+ 00028723  0x00005e23 istore  0x00000001 , 0x00000005 
+ 00028724  0x00005e24 increase  0x00000001 , 0x00000011 
+ 00028725  0x00005e25 increase  0x00000001 , 0x00000012 
+ 00028726  0x00005e26 loop  0x00007029 
+ 00028727  0x00005e27 rtn 
+ 00028728  0x00005e2a call  0x000071e2 
+ 00028729  0x00005e2b force  0x00000010 , 0x00000039 
+ 00028730  0x00005e2c arg  0x000004b6 , 0x00000011 
+ 00028731  0x00005e2e ifetch  0x00000001 , 0x00000011 
+ 00028732  0x00005e2f arg  0x00008500 , 0x00000006 
+ 00028733  0x00005e30 and  0x00000039 , 0x00000003 , 0x00000013 
+ 00028734  0x00005e31 sub  0x00000013 , 0x00000001 , 0x0000003e 
+ 00028735  0x00005e32 branch  0x00007041 , 0x00000002 
+ 00028736  0x00005e33 arg  0x00008600 , 0x00000006 
+ 00028737  0x00005e35 iadd  0x00000006 , 0x00000006 
+ 00028738  0x00005e36 ifetch  0x00000001 , 0x00000006 
+ 00028739  0x00005e37 istore  0x00000001 , 0x00000011 
+ 00028740  0x00005e38 increase  0x00000001 , 0x00000011 
+ 00028741  0x00005e39 loop  0x0000703b 
+ 00028742  0x00005e3a branch  0x000071e6 
+ 00028743  0x00005e3d force  0x00000008 , 0x00000039 
+ 00028744  0x00005e3e arg  0x000004b6 , 0x00000006 
+ 00028745  0x00005e3f copy  0x00000006 , 0x00000005 
+ 00028746  0x00005e41 ifetch  0x00000001 , 0x00000006 
+ 00028747  0x00005e42 iforce  0x00000011 
+ 00028748  0x00005e43 ifetch  0x00000001 , 0x00000006 
+ 00028749  0x00005e44 iforce  0x00000012 
+ 00028750  0x00005e45 lshift  0x00000011 , 0x0000003f 
+ 00028751  0x00005e46 iadd  0x00000012 , 0x0000003f 
+ 00028752  0x00005e47 istore  0x00000001 , 0x00000005 
+ 00028753  0x00005e48 deposit  0x00000011 
+ 00028754  0x00005e49 iadd  0x00000012 , 0x0000003f 
+ 00028755  0x00005e4a istore  0x00000001 , 0x00000005 
+ 00028756  0x00005e4b loop  0x0000704a 
+ 00028757  0x00005e4c rtn 
+ 00028758  0x00005e50 setarg  0x008ae42c 
+ 00028759  0x00005e51 iforce  0x00000002 
+ 00028760  0x00005e52 force  0x00000007 , 0x00000039 
+ 00028761  0x00005e53 call  0x00007065 
+ 00028762  0x00005e54 setarg  0x000d751b 
+ 00028763  0x00005e55 iforce  0x00000002 
+ 00028764  0x00005e56 force  0x00000005 , 0x00000039 
+ 00028765  0x00005e57 call  0x00007065 
+ 00028766  0x00005e58 fetch  0x00000001 , 0x000004c5 
+ 00028767  0x00005e59 iforce  0x00000011 
+ 00028768  0x00005e5a fetch  0x00000001 , 0x000004b9 
+ 00028769  0x00005e5b store  0x00000001 , 0x000004c5 
+ 00028770  0x00005e5c deposit  0x00000011 
+ 00028771  0x00005e5d store  0x00000001 , 0x000004b9 
+ 00028772  0x00005e5e rtn 
+ 00028773  0x00005e61 and  0x00000002 , 0x0000000f , 0x00000012 
+ 00028774  0x00005e63 and  0x00000002 , 0x0000000f , 0x0000003f 
+ 00028775  0x00005e64 arg  0x000004b6 , 0x00000005 
+ 00028776  0x00005e65 iadd  0x00000005 , 0x00000005 
+ 00028777  0x00005e66 ifetch  0x00000001 , 0x00000005 
+ 00028778  0x00005e67 iforce  0x00000013 
+ 00028779  0x00005e68 deposit  0x00000011 
+ 00028780  0x00005e69 istore  0x00000001 , 0x00000005 
+ 00028781  0x00005e6a copy  0x00000013 , 0x00000011 
+ 00028782  0x00005e6b rshift4  0x00000002 , 0x00000002 
+ 00028783  0x00005e6c loop  0x00007066 
+ 00028784  0x00005e6d setarg  0x000004b6 
+ 00028785  0x00005e6e iadd  0x00000012 , 0x00000005 
+ 00028786  0x00005e6f deposit  0x00000011 
+ 00028787  0x00005e70 istore  0x00000001 , 0x00000005 
+ 00028788  0x00005e71 rtn 
+ 00028789  0x00005e74 enable  0x00000028 
+ 00028790  0x00005e75 branch  0x00007078 
+ 00028791  0x00005e78 disable  0x00000028 
+ 00028792  0x00005e7a force  0x00000010 , 0x00000039 
+ 00028793  0x00005e7c ifetcht  0x00000001 , 0x00000011 
+ 00028794  0x00005e7d ifetch  0x00000001 , 0x00000012 
+ 00028795  0x00005e7e branch  0x0000707e , 0x00000028 
+ 00028796  0x00005e7f ixor  0x00000002 , 0x0000003f 
+ 00028797  0x00005e80 branch  0x0000707f 
+ 00028798  0x00005e82 iadd  0x00000002 , 0x0000003f 
+ 00028799  0x00005e84 istore  0x00000001 , 0x00000005 
+ 00028800  0x00005e85 increase  0x00000001 , 0x00000011 
+ 00028801  0x00005e86 increase  0x00000001 , 0x00000012 
+ 00028802  0x00005e87 loop  0x00007079 
+ 00028803  0x00005e88 rtn 
+ 00028804  0x00005e8c arg  0x000004d6 , 0x00000005 
+ 00028805  0x00005e8d ifetch  0x00000006 , 0x00000011 
+ 00028806  0x00005e8e istore  0x00000006 , 0x00000005 
+ 00028807  0x00005e8f branch  0x0000708a , 0x00000028 
+ 00028808  0x00005e90 ifetch  0x00000006 , 0x00000011 
+ 00028809  0x00005e91 branch  0x0000708b 
+ 00028810  0x00005e93 ifetch  0x00000006 , 0x00000006 
+ 00028811  0x00005e95 istore  0x00000006 , 0x00000005 
+ 00028812  0x00005e96 ifetch  0x00000004 , 0x00000011 
+ 00028813  0x00005e97 istore  0x00000004 , 0x00000005 
+ 00028814  0x00005e98 rtn 
+ 00028815  0x00005e9b arg  0x00004261 , 0x00000006 
+ 00028816  0x00005e9c arg  0x000004c6 , 0x00000005 
+ 00028817  0x00005e9d arg  0x00000000 , 0x00000002 
+ 00028818  0x00005e9e setarg  0x008395a7 
+ 00028819  0x00005e9f call  0x000070b0 
+ 00028820  0x00005ea0 setarg  0x00b3c1df 
+ 00028821  0x00005ea1 call  0x000070b0 
+ 00028822  0x00005ea2 setarg  0x0000e5e9 
+ 00028823  0x00005ea3 call  0x000070b1 
+ 00028824  0x00005ea4 copy  0x00000002 , 0x00000014 
+ 00028825  0x00005ea5 disable  0x00000028 
+ 00028826  0x00005ea6 call  0x0000709e 
+ 00028827  0x00005ea7 copy  0x00000014 , 0x00000002 
+ 00028828  0x00005ea8 enable  0x00000028 
+ 00028829  0x00005ea9 branch  0x0000709e 
+ 00028830  0x00005eac force  0x00000008 , 0x00000039 
+ 00028831  0x00005eae ifetch  0x00000001 , 0x00000006 
+ 00028832  0x00005eaf compare  0x00000001 , 0x00000039 , 0x00000001 
+ 00028833  0x00005eb0 branch  0x000070a5 , 0x00000028 
+ 00028834  0x00005eb1 branch  0x000070a6 , 0x00000001 
+ 00028835  0x00005eb3 iadd  0x00000002 , 0x0000003f 
+ 00028836  0x00005eb4 branch  0x000070a7 
+ 00028837  0x00005eb6 branch  0x000070a3 , 0x00000001 
+ 00028838  0x00005eb8 ixor  0x00000002 , 0x0000003f 
+ 00028839  0x00005eba istore  0x00000001 , 0x00000005 
+ 00028840  0x00005ebb rshift8  0x00000002 , 0x00000002 
+ 00028841  0x00005ebc loop  0x0000709f 
+ 00028842  0x00005ebd rtn 
+ 00028843  0x00005ec0 fetch  0x00000006 , 0x000004ba 
+ 00028844  0x00005ec1 store  0x00000006 , 0x00000056 
+ 00028845  0x00005ec2 ifetch  0x00000006 , 0x00000006 
+ 00028846  0x00005ec3 istore  0x00000006 , 0x00000005 
+ 00028847  0x00005ec4 rtn 
+ 00028848  0x00005ec7 lshift8  0x00000002 , 0x00000002 
+ 00028849  0x00005ec9 lshift16  0x00000002 , 0x00000002 
+ 00028850  0x00005eca ior  0x00000002 , 0x00000002 
+ 00028851  0x00005ecb rtn 
+ 00028852  0x00005ecf branch  0x000070b4 
+ 00028853  0x00005ed4 set1  0x00000025 , 0x00000000 
+ 00028854  0x00005ed5 bpatch  0x000000d4 , 0x0000403a 
+ 00028855  0x00005ed6 call  0x00007153 
+ 00028856  0x00005ed7 arg  0x000044a2 , 0x00000005 
+ 00028857  0x00005ed8 branch  0x000071c0 
+ 00028858  0x00005edc arg  0x000044c3 , 0x00000005 
+ 00028859  0x00005edd branch  0x000070bd , 0x00000029 
+ 00028860  0x00005ede arg  0x00000352 , 0x00000005 
+ 00028861  0x00005ee0 copy  0x00000006 , 0x00000011 
+ 00028862  0x00005ee1 call  0x00007e87 
+ 00028863  0x00005ee2 call  0x00007168 
+ 00028864  0x00005ee3 arg  0x000044b3 , 0x00000006 
+ 00028865  0x00005ee4 branch  0x000071d9 
+ 00028866  0x00005ee7 arg  0x00000352 , 0x00000011 
+ 00028867  0x00005ee8 branch  0x000070c5 , 0x00000029 
+ 00028868  0x00005ee9 arg  0x000044c3 , 0x00000011 
+ 00028869  0x00005eeb copy  0x00000011 , 0x00000005 
+ 00028870  0x00005eec call  0x00005917 
+ 00028871  0x00005eed branch  0x00007168 
+ 00028872  0x00005ef0 arg  0x00004551 , 0x00000006 
+ 00028873  0x00005ef1 call  0x000071af 
+ 00028874  0x00005ef2 arg  0x000044a2 , 0x00000006 
+ 00028875  0x00005ef3 call  0x000071b0 
+ 00028876  0x00005ef4 force  0x00000038 , 0x00000036 
+ 00028877  0x00005ef5 force  0x00000000 , 0x00000036 
+ 00028878  0x00005ef6 call  0x00007145 
+ 00028879  0x00005ef7 arg  0x000003a0 , 0x00000005 
+ 00028880  0x00005ef8 branch  0x000071c0 
+ 00028881  0x00005efc force  0x00000049 , 0x0000003f 
+ 00028882  0x00005efd branch  0x000070d4 
+ 00028883  0x00005eff force  0x00000001 , 0x0000003f 
+ 00028884  0x00005f01 force  0x00000000 , 0x00000038 
+ 00028885  0x00005f02 lshift8  0x00000002 , 0x0000002f 
+ 00028886  0x00005f03 ior  0x0000002f , 0x0000002f 
+ 00028887  0x00005f04 increase  0x00000001 , 0x00000038 
+ 00028888  0x00005f05 rshift8  0x00000002 , 0x0000002f 
+ 00028889  0x00005f06 rshift16  0x0000002f , 0x0000002f 
+ 00028890  0x00005f07 fetch  0x00000002 , 0x0000449a 
+ 00028891  0x00005f08 lshift16 , 0x0000003f , 0x0000003f 
+ 00028892  0x00005f09 ior  0x0000002f , 0x0000002f 
+ 00028893  0x00005f0a increase  0x00000001 , 0x00000038 
+ 00028894  0x00005f0b ifetch  0x00000004 , 0x00000006 
+ 00028895  0x00005f0c iforce  0x0000002f 
+ 00028896  0x00005f0d increase  0x00000001 , 0x00000038 
+ 00028897  0x00005f0e ifetch  0x00000002 , 0x00000006 
+ 00028898  0x00005f0f byteswap  0x00000011 , 0x0000002f 
+ 00028899  0x00005f10 lshift16  0x0000002f , 0x0000002f 
+ 00028900  0x00005f11 ior  0x0000002f , 0x0000002f 
+ 00028901  0x00005f12 increase  0x00000001 , 0x00000038 
+ 00028902  0x00005f13 rtn 
+ 00028903  0x00005f18 add  0x00000013 , 0x00000001 , 0x00000006 
+ 00028904  0x00005f19 ifetch  0x00000001 , 0x00000006 
+ 00028905  0x00005f1a iforce  0x00000011 
+ 00028906  0x00005f1b call  0x000070d1 
+ 00028907  0x00005f1c call  0x00007147 
+ 00028908  0x00005f1e force  0x00000000 , 0x00000038 
+ 00028909  0x00005f1f ifetch  0x00000001 , 0x00000013 
+ 00028910  0x00005f20 and_into  0x00000003 , 0x0000003f 
+ 00028911  0x00005f21 lshift16  0x0000003f , 0x0000002f 
+ 00028912  0x00005f22 set1  0x00000008 , 0x0000002f 
+ 00028913  0x00005f23 call  0x000071b8 
+ 00028914  0x00005f24 call  0x0000714a 
+ 00028915  0x00005f26 copy  0x00000011 , 0x00000039 
+ 00028916  0x00005f27 add  0x00000013 , 0x00000002 , 0x00000006 
+ 00028917  0x00005f28 call  0x00007197 
+ 00028918  0x00005f2a call  0x000071a1 
+ 00028919  0x00005f2b call  0x0000714a 
+ 00028920  0x00005f2c deposit  0x00000039 
+ 00028921  0x00005f2d branch  0x000070fb , 0x00000034 
+ 00028922  0x00005f2e branch  0x000070f6 
+ 00028923  0x00005f30 force  0x0000000c , 0x00000038 
+ 00028924  0x00005f31 deposit  0x0000002f 
+ 00028925  0x00005f32 store  0x00000004 , 0x0000033a 
+ 00028926  0x00005f33 rtn 
+ 00028927  0x00005f36 increase  0x00000001 , 0x00000011 
+ 00028928  0x00005f37 call  0x000070d3 
+ 00028929  0x00005f38 copy  0x00000013 , 0x00000006 
+ 00028930  0x00005f39 call  0x000071ab 
+ 00028931  0x00005f3a call  0x0000714d 
+ 00028932  0x00005f3b call  0x000071c7 
+ 00028933  0x00005f3c increase  0x00000010 , 0x00000013 
+ 00028934  0x00005f3d increase  0xfffffff0 , 0x00000012 
+ 00028935  0x00005f3e branch  0x000070ff , 0x00000002 
+ 00028936  0x00005f3f rtn 
+ 00028937  0x00005f42 set1  0x00000025 , 0x00000000 
+ 00028938  0x00005f43 bpatch  0x000000d5 , 0x0000403a 
+ 00028939  0x00005f44 arg  0x00004465 , 0x00000013 
+ 00028940  0x00005f45 fetcht  0x00000005 , 0x0000448c 
+ 00028941  0x00005f46 call  0x000070e7 
+ 00028942  0x00005f47 force  0x00000008 , 0x00000038 
+ 00028943  0x00005f48 iforce  0x0000002f 
+ 00028944  0x00005f49 force  0x00000000 , 0x00000011 
+ 00028945  0x00005f4a call  0x000070d3 
+ 00028946  0x00005f4b call  0x0000714d 
+ 00028947  0x00005f4c arg  0x00004467 , 0x00000013 
+ 00028948  0x00005f4d fetch  0x00000001 , 0x00004466 
+ 00028949  0x00005f4e add  0x0000003f , 0xffffffff , 0x00000012 
+ 00028950  0x00005f4f iadd  0x00000013 , 0x00000005 
+ 00028951  0x00005f50 force  0x0000000c , 0x00000038 
+ 00028952  0x00005f51 deposit  0x0000002f 
+ 00028953  0x00005f52 istore  0x00000004 , 0x00000005 
+ 00028954  0x00005f53 call  0x000070ff 
+ 00028955  0x00005f54 fetch  0x00000001 , 0x00004466 
+ 00028956  0x00005f55 increase  0x00000004 , 0x0000003f 
+ 00028957  0x00005f56 store  0x00000001 , 0x00004466 
+ 00028958  0x00005f57 fetcht  0x00000005 , 0x0000448c 
+ 00028959  0x00005f58 increase  0x00000001 , 0x00000002 
+ 00028960  0x00005f59 storet  0x00000005 , 0x0000448c 
+ 00028961  0x00005f5a rtn 
+ 00028962  0x00005f5d set1  0x00000025 , 0x00000000 
+ 00028963  0x00005f5e bpatch  0x000000d6 , 0x0000403a 
+ 00028964  0x00005f5f fetch  0x00000001 , 0x00000303 
+ 00028965  0x00005f60 sub  0x0000003f , 0x00000014 , 0x0000003e 
+ 00028966  0x00005f61 branch  0x00007127 , 0x00000002 
+ 00028967  0x00005f63 arg  0x00000304 , 0x00000013 
+ 00028968  0x00005f64 add  0x0000003f , 0xffffffff , 0x00000012 
+ 00028969  0x00005f65 increase  0xfffffffc , 0x0000003f 
+ 00028970  0x00005f66 store  0x00000001 , 0x00000303 
+ 00028971  0x00005f67 iadd  0x00000013 , 0x00000006 
+ 00028972  0x00005f68 ifetch  0x00000004 , 0x00000006 
+ 00028973  0x00005f69 force  0x00000008 , 0x00000038 
+ 00028974  0x00005f6a iforce  0x0000002f 
+ 00028975  0x00005f6b force  0x00000000 , 0x00000011 
+ 00028976  0x00005f6c fetcht  0x00000005 , 0x00004491 
+ 00028977  0x00005f6d call  0x000070d3 
+ 00028978  0x00005f6e call  0x0000714d 
+ 00028979  0x00005f6f force  0x0000000c , 0x00000038 
+ 00028980  0x00005f70 deposit  0x0000002f 
+ 00028981  0x00005f71 store  0x00000004 , 0x0000033e 
+ 00028982  0x00005f72 call  0x000070ff 
+ 00028983  0x00005f73 arg  0x00000302 , 0x00000013 
+ 00028984  0x00005f74 call  0x000070e7 
+ 00028985  0x00005f75 fetcht  0x00000004 , 0x0000033e 
+ 00028986  0x00005f76 isub  0x00000002 , 0x0000003f 
+ 00028987  0x00005f77 nrtn  0x00000034 
+ 00028988  0x00005f78 fetch  0x00000004 , 0x00004496 
+ 00028989  0x00005f79 isub  0x00000002 , 0x0000003f 
+ 00028990  0x00005f7a rtn  0x00000034 
+ 00028991  0x00005f7b storet  0x00000004 , 0x00004496 
+ 00028992  0x00005f7c fetch  0x00000005 , 0x00004491 
+ 00028993  0x00005f7d increase  0x00000001 , 0x0000003f 
+ 00028994  0x00005f7e store  0x00000005 , 0x00004491 
+ 00028995  0x00005f7f force  0x00000000 , 0x0000003f 
+ 00028996  0x00005f80 rtn 
+ 00028997  0x00005f83 nbranch  0x00007145 , 0x00000037 
+ 00028998  0x00005f84 rtn 
+ 00028999  0x00005f87 force  0x00000030 , 0x00000036 
+ 00029000  0x00005f88 force  0x00000000 , 0x00000036 
+ 00029001  0x00005f89 branch  0x00007145 
+ 00029002  0x00005f8c force  0x00000032 , 0x00000036 
+ 00029003  0x00005f8d force  0x00000002 , 0x00000036 
+ 00029004  0x00005f8e branch  0x00007145 
+ 00029005  0x00005f91 force  0x00000034 , 0x00000036 
+ 00029006  0x00005f92 force  0x00000004 , 0x00000036 
+ 00029007  0x00005f93 branch  0x00007145 
+ 00029008  0x00005f97 force  0x00000001 , 0x00000036 
+ 00029009  0x00005f98 force  0x00000000 , 0x00000036 
+ 00029010  0x00005f99 rtn 
+ 00029011  0x00005f9b force  0x00000000 , 0x00000038 
+ 00029012  0x00005f9c fetch  0x00000004 , 0x00000352 
+ 00029013  0x00005f9d iforce  0x0000002f 
+ 00029014  0x00005f9e increase  0x00000001 , 0x00000038 
+ 00029015  0x00005f9f ifetch  0x00000004 , 0x00000006 
+ 00029016  0x00005fa0 iforce  0x0000002f 
+ 00029017  0x00005fa1 increase  0x00000001 , 0x00000038 
+ 00029018  0x00005fa2 fetch  0x00000004 , 0x000044c3 
+ 00029019  0x00005fa3 iforce  0x0000002f 
+ 00029020  0x00005fa4 increase  0x00000001 , 0x00000038 
+ 00029021  0x00005fa5 ifetch  0x00000004 , 0x00000006 
+ 00029022  0x00005fa6 iforce  0x0000002f 
+ 00029023  0x00005fa7 increase  0x00000001 , 0x00000038 
+ 00029024  0x00005fa8 call  0x000071bb 
+ 00029025  0x00005fa9 increase  0xfffffffc , 0x00000038 
+ 00029026  0x00005faa fetch  0x00000004 , 0x0000456d 
+ 00029027  0x00005fab copy  0x0000003f , 0x0000002f 
+ 00029028  0x00005fac increase  0x00000004 , 0x00000038 
+ 00029029  0x00005fad force  0x00000038 , 0x00000036 
+ 00029030  0x00005fae force  0x00000008 , 0x00000036 
+ 00029031  0x00005faf branch  0x00007145 
+ 00029032  0x00005fb3 set1  0x00000025 , 0x00000000 
+ 00029033  0x00005fb4 bpatch  0x000000d7 , 0x0000403a 
+ 00029034  0x00005fb5 fetch  0x00000006 , 0x0000453e 
+ 00029035  0x00005fb6 fetcht  0x00000006 , 0x00000372 
+ 00029036  0x00005fb7 branch  0x0000716f , 0x00000029 
+ 00029037  0x00005fb8 fetch  0x00000006 , 0x00000372 
+ 00029038  0x00005fb9 fetcht  0x00000006 , 0x0000453e 
+ 00029039  0x00005fbb force  0x00000008 , 0x00000038 
+ 00029040  0x00005fbc copy  0x00000002 , 0x0000002f 
+ 00029041  0x00005fbd increase  0x00000001 , 0x00000038 
+ 00029042  0x00005fbe rshift32  0x00000002 , 0x0000002f 
+ 00029043  0x00005fbf lshift16  0x0000003f , 0x0000003f 
+ 00029044  0x00005fc0 ior  0x0000002f , 0x0000002f 
+ 00029045  0x00005fc1 increase  0x00000001 , 0x00000038 
+ 00029046  0x00005fc2 rshift32  0x0000003f , 0x0000002f 
+ 00029047  0x00005fc3 increase  0x00000001 , 0x00000038 
+ 00029048  0x00005fc4 force  0x00000000 , 0x0000002f 
+ 00029049  0x00005fc5 force  0x00000000 , 0x0000003f 
+ 00029050  0x00005fc6 fetch  0x00000001 , 0x0000452b 
+ 00029051  0x00005fc7 fetcht  0x00000001 , 0x00004521 
+ 00029052  0x00005fc8 nbranch  0x0000717f , 0x00000029 
+ 00029053  0x00005fca fetch  0x00000001 , 0x00004532 
+ 00029054  0x00005fcb fetcht  0x00000001 , 0x0000452b 
+ 00029055  0x00005fcd store  0x00000001 , 0x000044d3 
+ 00029056  0x00005fce storet  0x00000001 , 0x000044d4 
+ 00029057  0x00005fcf force  0x00000000 , 0x00000038 
+ 00029058  0x00005fd0 arg  0x000044d3 , 0x00000012 
+ 00029059  0x00005fd1 force  0x00000004 , 0x00000039 
+ 00029060  0x00005fd3 ifetch  0x00000004 , 0x00000011 
+ 00029061  0x00005fd4 ifetcht  0x00000004 , 0x00000012 
+ 00029062  0x00005fd5 ixor  0x00000002 , 0x0000002f 
+ 00029063  0x00005fd6 increase  0x00000001 , 0x00000038 
+ 00029064  0x00005fd7 increase  0x00000004 , 0x00000011 
+ 00029065  0x00005fd8 increase  0x00000004 , 0x00000012 
+ 00029066  0x00005fd9 loop  0x00007184 
+ 00029067  0x00005fda call  0x000071bb 
+ 00029068  0x00005fdb increase  0xfffffffc , 0x00000038 
+ 00029069  0x00005fdc fetch  0x00000004 , 0x0000456d 
+ 00029070  0x00005fdd copy  0x0000003f , 0x0000002f 
+ 00029071  0x00005fde increase  0x00000004 , 0x00000038 
+ 00029072  0x00005fdf force  0x00000038 , 0x00000036 
+ 00029073  0x00005fe0 force  0x0000000c , 0x00000036 
+ 00029074  0x00005fe1 call  0x00007145 
+ 00029075  0x00005fe3 call  0x000071ba 
+ 00029076  0x00005fe4 force  0x0000003a , 0x00000036 
+ 00029077  0x00005fe5 force  0x00000008 , 0x00000036 
+ 00029078  0x00005fe6 branch  0x00007145 
+ 00029079  0x00005fe9 compare  0x00000000 , 0x00000039 , 0x00000003 
+ 00029080  0x00005fea rtn  0x00000001 
+ 00029081  0x00005feb deposit  0x00000006 
+ 00029082  0x00005fec iadd  0x00000039 , 0x00000005 
+ 00029083  0x00005fed force  0x00000000 , 0x0000003f 
+ 00029084  0x00005fef istore  0x00000001 , 0x00000005 
+ 00029085  0x00005ff0 increase  0x00000001 , 0x00000039 
+ 00029086  0x00005ff1 compare  0x00000000 , 0x00000039 , 0x00000003 
+ 00029087  0x00005ff2 rtn  0x00000001 
+ 00029088  0x00005ff3 branch  0x0000719c 
+ 00029089  0x00005ff6 force  0x00000000 , 0x00000038 
+ 00029090  0x00005ff8 deposit  0x00000039 
+ 00029091  0x00005ff9 branch  0x000071a6 , 0x00000034 
+ 00029092  0x00005ffa ifetch  0x00000004 , 0x00000006 
+ 00029093  0x00005ffb increase  0xfffffffc , 0x00000039 
+ 00029094  0x00005ffd iforce  0x0000002f 
+ 00029095  0x00005ffe increase  0x00000001 , 0x00000038 
+ 00029096  0x00005fff compare  0x00000004 , 0x00000038 , 0x0000000f 
+ 00029097  0x00006000 rtn  0x00000001 
+ 00029098  0x00006001 branch  0x000071a2 
+ 00029099  0x00006004 force  0x00000008 , 0x00000038 
+ 00029100  0x00006005 branch  0x000071b0 
+ 00029101  0x00006007 force  0x00000004 , 0x00000038 
+ 00029102  0x00006008 branch  0x000071b0 
+ 00029103  0x0000600a force  0x00000000 , 0x00000038 
+ 00029104  0x0000600c force  0x00000004 , 0x00000039 
+ 00029105  0x0000600e ifetch  0x00000004 , 0x00000006 
+ 00029106  0x0000600f iforce  0x0000002f 
+ 00029107  0x00006010 increase  0x00000001 , 0x00000038 
+ 00029108  0x00006011 loop  0x000071b1 
+ 00029109  0x00006012 rtn 
+ 00029110  0x00006015 arg  0x000003a0 , 0x00000006 
+ 00029111  0x00006016 branch  0x000071ad 
+ 00029112  0x00006019 force  0x00000004 , 0x00000039 
+ 00029113  0x0000601a branch  0x000071bd 
+ 00029114  0x0000601d force  0x00000000 , 0x00000038 
+ 00029115  0x0000601f force  0x00000004 , 0x00000039 
+ 00029116  0x00006021 force  0x00000000 , 0x0000002f 
+ 00029117  0x00006023 increase  0x00000001 , 0x00000038 
+ 00029118  0x00006024 loop  0x000071bc 
+ 00029119  0x00006025 rtn 
+ 00029120  0x00006028 force  0x0000000c , 0x00000038 
+ 00029121  0x00006029 force  0x00000004 , 0x00000039 
+ 00029122  0x0000602b deposit  0x0000002f 
+ 00029123  0x0000602c istore  0x00000004 , 0x00000005 
+ 00029124  0x0000602d increase  0x00000001 , 0x00000038 
+ 00029125  0x0000602e loop  0x000071c2 
+ 00029126  0x0000602f rtn 
+ 00029127  0x00006032 force  0x0000000c , 0x00000038 
+ 00029128  0x00006033 copy  0x00000013 , 0x00000005 
+ 00029129  0x00006034 add  0x00000012 , 0x00000001 , 0x00000039 
+ 00029130  0x00006035 sub  0x00000039 , 0x0000000f , 0x0000003e 
+ 00029131  0x00006036 branch  0x000071cd , 0x00000002 
+ 00029132  0x00006037 force  0x00000010 , 0x00000039 
+ 00029133  0x00006039 deposit  0x0000002f 
+ 00029134  0x0000603a sub  0x00000039 , 0x00000003 , 0x0000003e 
+ 00029135  0x0000603b branch  0x000071d5 , 0x00000002 
+ 00029136  0x0000603c istore  0x00000004 , 0x00000005 
+ 00029137  0x0000603d increase  0xfffffffc , 0x00000039 
+ 00029138  0x0000603e rtn  0x00000005 
+ 00029139  0x0000603f increase  0x00000001 , 0x00000038 
+ 00029140  0x00006040 branch  0x000071cd 
+ 00029141  0x00006042 istore  0x00000001 , 0x00000005 
+ 00029142  0x00006043 rshift8  0x0000003f , 0x0000003f 
+ 00029143  0x00006044 loop  0x000071d5 
+ 00029144  0x00006045 rtn 
+ 00029145  0x00006049 force  0x0000000c , 0x00000038 
+ 00029146  0x0000604a force  0x00000004 , 0x00000039 
+ 00029147  0x0000604c ifetch  0x00000004 , 0x00000006 
+ 00029148  0x0000604d isub  0x0000002f , 0x0000003e 
+ 00029149  0x0000604e nrtn  0x00000005 
+ 00029150  0x0000604f increase  0x00000001 , 0x00000038 
+ 00029151  0x00006050 loop  0x000071db 
+ 00029152  0x00006051 force  0x00000000 , 0x0000003e 
+ 00029153  0x00006052 rtn 
+ 00029154  0x00006055 hfetch  0x00000001 , 0x00008050 
+ 00029155  0x00006056 set0  0x00000000 , 0x0000003f 
+ 00029156  0x00006057 hstore  0x00000001 , 0x00008050 
+ 00029157  0x00006058 rtn 
+ 00029158  0x0000605b hfetch  0x00000001 , 0x00008050 
+ 00029159  0x0000605c set1  0x00000000 , 0x0000003f 
+ 00029160  0x0000605d hstore  0x00000001 , 0x00008050 
+ 00029161  0x0000605e rtn 
+ 00029162  0x00006061 arg  0x000007aa , 0x00000005 
+ 00029163  0x00006062 setsect  0x00000000 , 0x0003ffff 
+ 00029164  0x00006063 setsect  0x00000001 , 0x0003ffff 
+ 00029165  0x00006064 setsect  0x00000002 , 0x0003ffff 
+ 00029166  0x00006065 setsect  0x00000003 , 0x0003fbff 
+ 00029167  0x00006066 istore  0x00000009 , 0x00000005 
+ 00029168  0x00006067 setsect  0x00000000 , 0x0003ffff 
+ 00029169  0x00006068 setsect  0x00000001 , 0x0003ffff 
+ 00029170  0x00006069 setsect  0x00000002 , 0x0003ffff 
+ 00029171  0x0000606a setsect  0x00000003 , 0x0003ffff 
+ 00029172  0x0000606b istore  0x00000009 , 0x00000005 
+ 00029173  0x0000606c setsect  0x00000000 , 0x0003ffff 
+ 00029174  0x0000606d setsect  0x00000001 , 0x0003ffff 
+ 00029175  0x0000606e setsect  0x00000002 , 0x0003cfff 
+ 00029176  0x0000606f setsect  0x00000003 , 0x0003ffff 
+ 00029177  0x00006070 istore  0x00000009 , 0x00000005 
+ 00029178  0x00006071 setsect  0x00000000 , 0x0003ffff 
+ 00029179  0x00006072 setsect  0x00000001 , 0x0003ffff 
+ 00029180  0x00006073 setsect  0x00000002 , 0x0003ffef 
+ 00029181  0x00006074 setsect  0x00000003 , 0x0003ffff 
+ 00029182  0x00006075 istore  0x00000009 , 0x00000005 
+ 00029183  0x00006076 setsect  0x00000000 , 0x0003ffff 
+ 00029184  0x00006077 setsect  0x00000001 , 0x0003ffff 
+ 00029185  0x00006078 setsect  0x00000002 , 0x0003ffff 
+ 00029186  0x00006079 setsect  0x00000003 , 0x0003ffff 
+ 00029187  0x0000607a istore  0x00000009 , 0x00000005 
+ 00029188  0x0000607b setsect  0x00000000 , 0x0003ffff 
+ 00029189  0x0000607c setsect  0x00000001 , 0x00026c7f 
+ 00029190  0x0000607d setsect  0x00000002 , 0x0000146b 
+ 00029191  0x0000607e setsect  0x00000003 , 0x00037bb3 
+ 00029192  0x0000607f istore  0x00000009 , 0x00000005 
+ 00029193  0x00006080 setsect  0x00000000 , 0x0001feb8 
+ 00029194  0x00006081 setsect  0x00000001 , 0x00010c12 
+ 00029195  0x00006082 setsect  0x00000002 , 0x0002b722 
+ 00029196  0x00006083 setsect  0x00000003 , 0x00029fa6 
+ 00029197  0x00006084 istore  0x00000009 , 0x00000005 
+ 00029198  0x00006085 setsect  0x00000000 , 0x0000e70f 
+ 00029199  0x00006086 setsect  0x00000001 , 0x00016720 
+ 00029200  0x00006087 setsect  0x00000002 , 0x0000519e 
+ 00029201  0x00006088 setsect  0x00000003 , 0x00019084 
+ 00029202  0x00006089 istore  0x00000009 , 0x00000005 
+ 00029203  0x0000608a setsect  0x00000000 , 0x00031012 
+ 00029204  0x0000608b setsect  0x00000001 , 0x000360bf 
+ 00029205  0x0000608c setsect  0x00000002 , 0x0003f0af 
+ 00029206  0x0000608d setsect  0x00000003 , 0x000003d3 
+ 00029207  0x0000608e istore  0x00000009 , 0x00000005 
+ 00029208  0x0000608f setsect  0x00000000 , 0x0003a188 
+ 00029209  0x00006090 setsect  0x00000001 , 0x00003ad0 
+ 00029210  0x00006091 setsect  0x00000002 , 0x0003cbf2 
+ 00029211  0x00006092 setsect  0x00000003 , 0x000243d9 
+ 00029212  0x00006093 istore  0x00000009 , 0x00000005 
+ 00029213  0x00006094 setsect  0x00000000 , 0x0002b030 
+ 00029214  0x00006095 setsect  0x00000001 , 0x00036a03 
+ 00029215  0x00006096 setsect  0x00000002 , 0x00011188 
+ 00029216  0x00006097 setsect  0x00000003 , 0x0001e520 
+ 00029217  0x00006098 istore  0x00000009 , 0x00000005 
+ 00029218  0x00006099 setsect  0x00000000 , 0x0003a11e 
+ 00029219  0x0000609a setsect  0x00000001 , 0x0000fe5d 
+ 00029220  0x0000609b setsect  0x00000002 , 0x0000dd57 
+ 00029221  0x0000609c setsect  0x00000003 , 0x0001ac93 
+ 00029222  0x0000609d istore  0x00000009 , 0x00000005 
+ 00029223  0x0000609e setsect  0x00000000 , 0x000011ed 
+ 00029224  0x0000609f setsect  0x00000001 , 0x000218c4 
+ 00029225  0x000060a0 setsect  0x00000002 , 0x00008da7 
+ 00029226  0x000060a1 setsect  0x00000003 , 0x000257ff 
+ 00029227  0x000060a2 istore  0x00000009 , 0x00000005 
+ 00029228  0x000060a3 setsect  0x00000000 , 0x0003192b 
+ 00029229  0x000060a4 setsect  0x00000001 , 0x00034641 
+ 00029230  0x000060a5 setsect  0x00000002 , 0x0001be0c 
+ 00029231  0x000060a6 setsect  0x00000003 , 0x000366ad 
+ 00029232  0x000060a7 istore  0x00000009 , 0x00000005 
+ 00029233  0x000060a8 setsect  0x00000000 , 0x00001f83 
+ 00029234  0x000060a9 setsect  0x00000001 , 0x00015a23 
+ 00029235  0x000060aa setsect  0x00000002 , 0x0003f9b0 
+ 00029236  0x000060ab setsect  0x00000003 , 0x00003949 
+ 00029237  0x000060ac istore  0x00000009 , 0x00000005 
+ 00029238  0x000060ad setsect  0x00000000 , 0x00013a51 
+ 00029239  0x000060ae setsect  0x00000001 , 0x000153fd 
+ 00029240  0x000060af setsect  0x00000002 , 0x0003372a 
+ 00029241  0x000060b0 setsect  0x00000003 , 0x0000f1bb 
+ 00029242  0x000060b1 istore  0x00000009 , 0x00000005 
+ 00029243  0x000060b2 setsect  0x00000000 , 0x0003ae85 
+ 00029244  0x000060b3 setsect  0x00000001 , 0x0001eed9 
+ 00029245  0x000060b4 setsect  0x00000002 , 0x00009e66 
+ 00029246  0x000060b5 setsect  0x00000003 , 0x000001a8 
+ 00029247  0x000060b6 istore  0x00000008 , 0x00000005 
+ 00029248  0x000060b7 rtn 
+ 00029249  0x000060bc arg  0x00000842 , 0x00000005 
+ 00029250  0x000060bd setsect  0x00000000 , 0x0003ffff 
+ 00029251  0x000060be setsect  0x00000001 , 0x0003ffff 
+ 00029252  0x000060bf setsect  0x00000002 , 0x0003ffff 
+ 00029253  0x000060c0 setsect  0x00000003 , 0x0003ffff 
+ 00029254  0x000060c1 istore  0x00000009 , 0x00000005 
+ 00029255  0x000060c2 setsect  0x00000000 , 0x0003ffff 
+ 00029256  0x000060c3 setsect  0x00000001 , 0x0000003f 
+ 00029257  0x000060c4 setsect  0x00000002 , 0x00000000 
+ 00029258  0x000060c5 setsect  0x00000003 , 0x00000000 
+ 00029259  0x000060c6 istore  0x00000009 , 0x00000005 
+ 00029260  0x000060c7 setsect  0x00000000 , 0x00000000 
+ 00029261  0x000060c8 setsect  0x00000001 , 0x00000000 
+ 00029262  0x000060c9 setsect  0x00000002 , 0x00001000 
+ 00029263  0x000060ca setsect  0x00000003 , 0x00000000 
+ 00029264  0x000060cb istore  0x00000009 , 0x00000005 
+ 00029265  0x000060cc setsect  0x00000000 , 0x0003ff00 
+ 00029266  0x000060cd setsect  0x00000001 , 0x0003ffff 
+ 00029267  0x000060ce setsect  0x00000002 , 0x0003ffcf 
+ 00029268  0x000060cf setsect  0x00000003 , 0x0003ffff 
+ 00029269  0x000060d0 istore  0x00000009 , 0x00000005 
+ 00029270  0x000060d1 setsect  0x00000000 , 0x0003ffff 
+ 00029271  0x000060d2 setsect  0x00000001 , 0x0003ffff 
+ 00029272  0x000060d3 setsect  0x00000002 , 0x0003ffff 
+ 00029273  0x000060d4 setsect  0x00000003 , 0x000003ff 
+ 00029274  0x000060d5 istore  0x00000009 , 0x00000005 
+ 00029275  0x000060d6 setsect  0x00000000 , 0x00000000 
+ 00029276  0x000060d7 setsect  0x00000001 , 0x00000000 
+ 00029277  0x000060d8 setsect  0x00000002 , 0x00000000 
+ 00029278  0x000060d9 setsect  0x00000003 , 0x00000000 
+ 00029279  0x000060da istore  0x00000009 , 0x00000005 
+ 00029280  0x000060db setsect  0x00000000 , 0x00010000 
+ 00029281  0x000060dc setsect  0x00000001 , 0x00000000 
+ 00029282  0x000060dd setsect  0x00000002 , 0x0003f000 
+ 00029283  0x000060de setsect  0x00000003 , 0x0003ffff 
+ 00029284  0x000060df istore  0x00000009 , 0x00000005 
+ 00029285  0x000060e0 setsect  0x00000000 , 0x000296ff 
+ 00029286  0x000060e1 setsect  0x00000001 , 0x00022630 
+ 00029287  0x000060e2 setsect  0x00000002 , 0x0003945d 
+ 00029288  0x000060e3 setsect  0x00000003 , 0x0003d284 
+ 00029289  0x000060e4 istore  0x00000009 , 0x00000005 
+ 00029290  0x000060e5 setsect  0x00000000 , 0x000333a0 
+ 00029291  0x000060e6 setsect  0x00000001 , 0x00004b7a 
+ 00029292  0x000060e7 setsect  0x00000002 , 0x000037d8 
+ 00029293  0x000060e8 setsect  0x00000003 , 0x0003c9dc 
+ 00029294  0x000060e9 istore  0x00000009 , 0x00000005 
+ 00029295  0x000060ea setsect  0x00000000 , 0x0003a440 
+ 00029296  0x000060eb setsect  0x00000001 , 0x0001b958 
+ 00029297  0x000060ec setsect  0x00000002 , 0x00038bce 
+ 00029298  0x000060ed setsect  0x00000003 , 0x0001091f 
+ 00029299  0x000060ee istore  0x00000009 , 0x00000005 
+ 00029300  0x000060ef setsect  0x00000000 , 0x0002e12c 
+ 00029301  0x000060f0 setsect  0x00000001 , 0x0001f47c 
+ 00029302  0x000060f1 setsect  0x00000002 , 0x000356b1 
+ 00029303  0x000060f2 setsect  0x00000003 , 0x0002fd47 
+ 00029304  0x000060f3 istore  0x00000009 , 0x00000005 
+ 00029305  0x000060f4 setsect  0x00000000 , 0x00006837 
+ 00029306  0x000060f5 setsect  0x00000001 , 0x0002ed90 
+ 00029307  0x000060f6 setsect  0x00000002 , 0x0001ecec 
+ 00029308  0x000060f7 setsect  0x00000003 , 0x0001acc5 
+ 00029309  0x000060f8 istore  0x00000009 , 0x00000005 
+ 00029310  0x000060f9 setsect  0x00000000 , 0x00023357 
+ 00029311  0x000060fa setsect  0x00000001 , 0x00018af3 
+ 00029312  0x000060fb setsect  0x00000002 , 0x0000f9e1 
+ 00029313  0x000060fc setsect  0x00000003 , 0x000129f0 
+ 00029314  0x000060fd istore  0x00000009 , 0x00000005 
+ 00029315  0x000060fe setsect  0x00000000 , 0x0002e7eb 
+ 00029316  0x000060ff setsect  0x00000001 , 0x0003e6e3 
+ 00029317  0x00006100 setsect  0x00000002 , 0x0003e1a7 
+ 00029318  0x00006101 setsect  0x00000003 , 0x00010b8b 
+ 00029319  0x00006102 istore  0x00000009 , 0x00000005 
+ 00029320  0x00006103 setsect  0x00000000 , 0x00024fe3 
+ 00029321  0x00006104 setsect  0x00000001 , 0x000020ef 
+ 00029322  0x00006105 setsect  0x00000002 , 0x0001b5a6 
+ 00029323  0x00006106 setsect  0x00000003 , 0x0000dc2f 
+ 00029324  0x00006107 istore  0x00000009 , 0x00000005 
+ 00029325  0x00006108 setsect  0x00000000 , 0x00013860 
+ 00029326  0x00006109 setsect  0x00000001 , 0x0002bd69 
+ 00029327  0x0000610a setsect  0x00000002 , 0x0000391a 
+ 00029328  0x0000610b setsect  0x00000003 , 0x0001b222 
+ 00029329  0x0000610c istore  0x00000009 , 0x00000005 
+ 00029330  0x0000610d rtn 
+ 00029331  0x00006113 rtn  0x0000002b 
+ 00029332  0x00006114 call  0x000074fd 
+ 00029333  0x00006115 call  0x000075c9 
+ 00029334  0x00006116 hjam  0x00000000 , 0x00008081 
+ 00029335  0x00006117 call  0x000073a5 
+ 00029336  0x00006118 setarg  0x0000737c 
+ 00029337  0x00006119 store  0x00000002 , 0x0000428c 
+ 00029338  0x0000611b setarg  0x0000748c 
+ 00029339  0x0000611c store  0x00000002 , 0x0000428e 
+ 00029340  0x0000611e setarg  0x00007365 
+ 00029341  0x0000611f store  0x00000002 , 0x00004298 
+ 00029342  0x00006121 setarg  0x0000737a 
+ 00029343  0x00006122 store  0x00000002 , 0x00004294 
+ 00029344  0x00006124 setarg  0x00007371 
+ 00029345  0x00006125 store  0x00000002 , 0x00004290 
+ 00029346  0x00006127 setarg  0x000072f4 
+ 00029347  0x00006128 store  0x00000002 , 0x00004296 
+ 00029348  0x0000612a setarg  0x000072ef 
+ 00029349  0x0000612b store  0x00000002 , 0x0000428a 
+ 00029350  0x0000612d setarg  0x000074e5 
+ 00029351  0x0000612e store  0x00000002 , 0x0000429c 
+ 00029352  0x0000612f setarg  0x000074f4 
+ 00029353  0x00006130 store  0x00000002 , 0x0000429a 
+ 00029354  0x00006131 call  0x00007496 
+ 00029355  0x00006132 jam  0x00000000 , 0x00004212 
+ 00029356  0x00006133 jam  0x00000000 , 0x000048c7 
+ 00029357  0x00006134 set1  0x00000025 , 0x00000000 
+ 00029358  0x00006135 bpatch  0x000000d8 , 0x0000403b 
+ 00029359  0x00006136 fetch  0x00000001 , 0x00004755 
+ 00029360  0x00006137 beq  0x00000000 , 0x000072b8 
+ 00029361  0x00006138 call  0x00007382 
+ 00029362  0x00006139 call  0x00007cf6 
+ 00029363  0x0000613a call  0x00007d02 
+ 00029364  0x0000613b jam  0x00000000 , 0x00004756 
+ 00029365  0x0000613c fetch  0x00000002 , 0x0000470b 
+ 00029366  0x0000613d rtnbit1  0x0000000c 
+ 00029367  0x0000613e branch  0x00003e75 
+ 00029368  0x00006142 jam  0x00000001 , 0x00004756 
+ 00029369  0x00006143 jam  0x00000001 , 0x0000475b 
+ 00029370  0x00006144 call  0x00007382 
+ 00029371  0x00006145 setarg  0x00004771 
+ 00029372  0x00006146 call  0x0000738e 
+ 00029373  0x00006148 call  0x00007d44 
+ 00029374  0x00006149 fetch  0x00000001 , 0x00004713 
+ 00029375  0x0000614a nbranch  0x000072bd , 0x00000034 
+ 00029376  0x0000614d jam  0x00000001 , 0x000043ff 
+ 00029377  0x0000614e setarg  0x00000000 
+ 00029378  0x0000614f store  0x00000004 , 0x00004729 
+ 00029379  0x00006150 call  0x00007382 
+ 00029380  0x00006153 fetch  0x00000002 , 0x00004748 
+ 00029381  0x00006154 store  0x00000002 , 0x0000474a 
+ 00029382  0x00006155 call  0x000072e5 
+ 00029383  0x00006157 jam  0x00000000 , 0x00004746 
+ 00029384  0x00006158 call  0x00005234 
+ 00029385  0x00006159 fetch  0x00000006 , 0x0000453e 
+ 00029386  0x0000615a call  0x000072d6 
+ 00029387  0x0000615b call  0x000072d2 
+ 00029388  0x0000615c rtn 
+ 00029389  0x00006161 store  0x00000002 , 0x000041f4 
+ 00029390  0x00006162 increase  0xfffffffc , 0x0000003f 
+ 00029391  0x00006163 store  0x00000002 , 0x0000451c 
+ 00029392  0x00006164 store  0x00000002 , 0x0000451e 
+ 00029393  0x00006165 rtn 
+ 00029394  0x00006168 fetcht  0x00000002 , 0x00004741 
+ 00029395  0x00006169 rtn  0x00000034 
+ 00029396  0x0000616a istore  0x00000006 , 0x00000002 
+ 00029397  0x0000616b rtn 
+ 00029398  0x0000616e store  0x00000006 , 0x00000100 
+ 00029399  0x0000616f fetch  0x00000001 , 0x00000100 
+ 00029400  0x00006170 store  0x00000001 , 0x0000010b 
+ 00029401  0x00006171 ifetch  0x00000001 , 0x00000006 
+ 00029402  0x00006172 store  0x00000001 , 0x0000010a 
+ 00029403  0x00006173 ifetch  0x00000001 , 0x00000006 
+ 00029404  0x00006174 store  0x00000001 , 0x00000109 
+ 00029405  0x00006175 ifetch  0x00000001 , 0x00000006 
+ 00029406  0x00006176 store  0x00000001 , 0x00000108 
+ 00029407  0x00006177 ifetch  0x00000001 , 0x00000006 
+ 00029408  0x00006178 store  0x00000001 , 0x00000107 
+ 00029409  0x00006179 ifetch  0x00000001 , 0x00000006 
+ 00029410  0x0000617a store  0x00000001 , 0x00000106 
+ 00029411  0x0000617b fetch  0x00000006 , 0x00000106 
+ 00029412  0x0000617c rtn 
+ 00029413  0x0000617f jam  0x00000000 , 0x000048bb 
+ 00029414  0x00006180 fetch  0x00000002 , 0x0000474e 
+ 00029415  0x00006181 nbranch  0x000072ec , 0x00000034 
+ 00029416  0x00006182 setarg  0x00004763 
+ 00029417  0x00006183 call  0x0000738e 
+ 00029418  0x00006184 setarg  0x000000a0 
+ 00029419  0x00006185 call  0x000072cd 
+ 00029420  0x00006187 fetch  0x00000002 , 0x0000474c 
+ 00029421  0x00006188 store  0x00000002 , 0x0000474e 
+ 00029422  0x00006189 rtn 
+ 00029423  0x00006192 fetch  0x00000001 , 0x00004740 
+ 00029424  0x00006193 beq  0x00000001 , 0x00003e35 
+ 00029425  0x00006194 fetch  0x00000001 , 0x00004877 
+ 00029426  0x00006195 nbranch  0x00003e35 , 0x00000034 
+ 00029427  0x00006196 branch  0x00003e37 
+ 00029428  0x00006199 copy  0x00000013 , 0x0000003f 
+ 00029429  0x0000619b beq  0x0000002d , 0x00007475 
+ 00029430  0x0000619c beq  0x00000010 , 0x0000747a 
+ 00029431  0x0000619d beq  0x00000014 , 0x00007334 
+ 00029432  0x0000619e beq  0x00000015 , 0x0000734c 
+ 00029433  0x0000619f and  0x0000003f , 0x0000000f , 0x00000002 
+ 00029434  0x000061a0 and_into  0x000000f0 , 0x0000003f 
+ 00029435  0x000061a1 beq  0x00000050 , 0x000072fd 
+ 00029436  0x000061a2 rtn 
+ 00029437  0x000061a5 storet  0x00000001 , 0x0000024e 
+ 00029438  0x000061a7 fetch  0x00000001 , 0x0000024e 
+ 00029439  0x000061a8 rtn  0x00000034 
+ 00029440  0x000061a9 increase  0xffffffff , 0x0000003f 
+ 00029441  0x000061aa store  0x00000001 , 0x0000024e 
+ 00029442  0x000061ab set1  0x00000025 , 0x00000000 
+ 00029443  0x000061ac bpatch  0x000000d9 , 0x0000403b 
+ 00029444  0x000061ad call  0x00007d1f 
+ 00029445  0x000061ae call  0x0000731f 
+ 00029446  0x000061af call  0x0000732c 
+ 00029447  0x000061b0 call  0x0000746c 
+ 00029448  0x000061b1 call  0x00007464 
+ 00029449  0x000061b2 call  0x00007313 
+ 00029450  0x000061b3 call  0x0000730c 
+ 00029451  0x000061b4 branch  0x000072fe 
+ 00029452  0x000061b7 fetch  0x00000001 , 0x000048c7 
+ 00029453  0x000061b8 rtn  0x00000034 
+ 00029454  0x000061b9 increase  0xffffffff , 0x0000003f 
+ 00029455  0x000061ba store  0x00000001 , 0x000048c7 
+ 00029456  0x000061bb nrtn  0x00000034 
+ 00029457  0x000061bc jam  0x00000005 , 0x00004212 
+ 00029458  0x000061bd rtn 
+ 00029459  0x000061c0 fetch  0x00000001 , 0x000048c2 
+ 00029460  0x000061c1 rtn  0x00000034 
+ 00029461  0x000061c2 increase  0xffffffff , 0x0000003f 
+ 00029462  0x000061c3 store  0x00000001 , 0x000048c2 
+ 00029463  0x000061c4 nrtn  0x00000034 
+ 00029464  0x000061c5 fetch  0x00000001 , 0x00000362 
+ 00029465  0x000061c6 bbit0  0x00000004 , 0x0000731c 
+ 00029466  0x000061c7 jam  0x00000001 , 0x000048c2 
+ 00029467  0x000061c8 rtn 
+ 00029468  0x000061cb call  0x00003e7f 
+ 00029469  0x000061cc jam  0x00000012 , 0x000009bd 
+ 00029470  0x000061cd branch  0x00007d90 
+ 00029471  0x000061d1 fetch  0x00000001 , 0x00004756 
+ 00029472  0x000061d2 rtnne  0x00000001 
+ 00029473  0x000061d3 fetch  0x00000002 , 0x0000474e 
+ 00029474  0x000061d4 rtn  0x00000034 
+ 00029475  0x000061d5 increase  0xffffffff , 0x0000003f 
+ 00029476  0x000061d6 store  0x00000002 , 0x0000474e 
+ 00029477  0x000061d7 nrtn  0x00000034 
+ 00029478  0x000061d8 fetch  0x00000002 , 0x0000470b 
+ 00029479  0x000061d9 bbit1  0x00000009 , 0x0000732a 
+ 00029480  0x000061da setarg  0x0000476a 
+ 00029481  0x000061db call  0x0000738e 
+ 00029482  0x000061dd setarg  0x00000140 
+ 00029483  0x000061de branch  0x000072cd 
+ 00029484  0x000061e1 fetch  0x00000002 , 0x0000474a 
+ 00029485  0x000061e2 rtn  0x00000034 
+ 00029486  0x000061e3 increase  0xffffffff , 0x0000003f 
+ 00029487  0x000061e4 store  0x00000002 , 0x0000474a 
+ 00029488  0x000061e5 nrtn  0x00000034 
+ 00029489  0x000061e7 jam  0x00000002 , 0x00004756 
+ 00029490  0x000061e8 call  0x00007487 
+ 00029491  0x000061eb rtn 
+ 00029492  0x000061ee jam  0x00000000 , 0x00004131 
+ 00029493  0x000061ef fetch  0x00000002 , 0x00004748 
+ 00029494  0x000061f0 store  0x00000002 , 0x0000474a 
+ 00029495  0x000061f1 jam  0x00000000 , 0x00004746 
+ 00029496  0x000061f3 call  0x00003e61 
+ 00029497  0x000061f7 setarg  0x00112233 
+ 00029498  0x000061f8 store  0x00000003 , 0x000044a2 
+ 00029499  0x000061f9 setarg  0x00445566 
+ 00029500  0x000061fa istore  0x00000003 , 0x00000005 
+ 00029501  0x000061fb setarg  0x00778899 
+ 00029502  0x000061fc istore  0x00000003 , 0x00000005 
+ 00029503  0x000061fd setarg  0x00001122 
+ 00029504  0x000061fe istore  0x00000003 , 0x00000005 
+ 00029505  0x000061ff setarg  0x00334455 
+ 00029506  0x00006200 istore  0x00000003 , 0x00000005 
+ 00029507  0x00006201 setarg  0x00000066 
+ 00029508  0x00006202 istore  0x00000001 , 0x00000005 
+ 00029509  0x00006204 call  0x00003e61 
+ 00029510  0x00006207 call  0x00003e7f 
+ 00029511  0x00006209 jam  0x00000000 , 0x0000474e 
+ 00029512  0x0000620a setarg  0x0000477f 
+ 00029513  0x0000620b call  0x0000738e 
+ 00029514  0x0000620c jam  0x00000000 , 0x0000470e 
+ 00029515  0x0000620d rtn 
+ 00029516  0x00006212 jam  0x00000000 , 0x00004212 
+ 00029517  0x00006213 jam  0x00000000 , 0x000048c7 
+ 00029518  0x00006214 jam  0x00000000 , 0x000044b2 
+ 00029519  0x00006215 jam  0x00000000 , 0x000048c6 
+ 00029520  0x00006216 jam  0x00000000 , 0x000048c0 
+ 00029521  0x00006217 call  0x0000749b 
+ 00029522  0x00006218 fetch  0x00000002 , 0x00004748 
+ 00029523  0x00006219 store  0x00000002 , 0x0000474a 
+ 00029524  0x0000621a fetch  0x00000001 , 0x00004743 
+ 00029525  0x0000621b bne  0x00000000 , 0x00007369 
+ 00029526  0x0000621c call  0x000072e5 
+ 00029527  0x0000621d jam  0x00000000 , 0x00004746 
+ 00029528  0x0000621e setarg  0x00000000 
+ 00029529  0x0000621f store  0x00000002 , 0x00000286 
+ 00029530  0x00006220 setarg  0x00000000 
+ 00029531  0x00006221 store  0x00000002 , 0x00000288 
+ 00029532  0x00006223 call  0x00007363 
+ 00029533  0x00006225 call  0x00003e63 
+ 00029534  0x00006229 rtn 
+ 00029535  0x0000622d jam  0x00000001 , 0x00004740 
+ 00029536  0x0000622e rtn 
+ 00029537  0x00006230 fetch  0x00000001 , 0x00004740 
+ 00029538  0x00006231 rtn 
+ 00029539  0x00006234 jam  0x00000000 , 0x00004740 
+ 00029540  0x00006235 rtn 
+ 00029541  0x00006238 branch  0x00003e75 
+ 00029542  0x0000623b jam  0x00000001 , 0x00004743 
+ 00029543  0x0000623d fetch  0x00000002 , 0x0000470b 
+ 00029544  0x0000623e bbit1  0x00000009 , 0x00003e6b 
+ 00029545  0x00006240 call  0x0000736d 
+ 00029546  0x00006241 call  0x00007f6b 
+ 00029547  0x00006242 jam  0x00000000 , 0x00004743 
+ 00029548  0x00006243 branch  0x00003e0a 
+ 00029549  0x00006246 setarg  0x00000000 
+ 00029550  0x00006247 store  0x00000002 , 0x00000286 
+ 00029551  0x00006248 store  0x00000002 , 0x00000288 
+ 00029552  0x00006249 branch  0x00007363 
+ 00029553  0x0000624d fetch  0x00000001 , 0x00004747 
+ 00029554  0x0000624e ncall  0x00007375 , 0x00000034 
+ 00029555  0x0000624f call  0x000074ca 
+ 00029556  0x00006250 branch  0x000073c5 
+ 00029557  0x00006255 jam  0x00000000 , 0x00004747 
+ 00029558  0x00006256 jam  0x00000003 , 0x000009bd 
+ 00029559  0x00006257 branch  0x00004bd6 
+ 00029560  0x00006259 jam  0x00000001 , 0x00004747 
+ 00029561  0x0000625a rtn 
+ 00029562  0x0000625d call  0x000074ca 
+ 00029563  0x0000625e branch  0x000073c5 
+ 00029564  0x00006261 call  0x000073af 
+ 00029565  0x00006262 fetch  0x00000002 , 0x000047b6 
+ 00029566  0x00006263 branch  0x00007380 , 0x00000034 
+ 00029567  0x00006264 branch  0x00003e75 
+ 00029568  0x00006266 call  0x00006509 
+ 00029569  0x00006267 branch  0x0000748c 
+ 00029570  0x0000626e fetch  0x00000001 , 0x0000475e 
+ 00029571  0x0000626f copy  0x0000003f , 0x00000039 
+ 00029572  0x00006270 setarg  0x0000475f 
+ 00029573  0x00006271 copy  0x0000003f , 0x00000011 
+ 00029574  0x00006273 copy  0x00000011 , 0x00000006 
+ 00029575  0x00006274 ifetch  0x00000001 , 0x00000006 
+ 00029576  0x00006275 beq  0x000000ff , 0x0000738c 
+ 00029577  0x00006276 copy  0x0000003f , 0x00000002 
+ 00029578  0x00006277 store  0x00000001 , 0x0000470e 
+ 00029579  0x00006279 call  0x00007d2a 
+ 00029580  0x0000627b loop  0x00007386 
+ 00029581  0x0000627d rtn 
+ 00029582  0x00006283 copy  0x0000003f , 0x00000006 
+ 00029583  0x00006284 force  0x00000007 , 0x00000039 
+ 00029584  0x00006287 arg  0x000047a2 , 0x00000005 
+ 00029585  0x00006288 call  0x00007ecd 
+ 00029586  0x00006289 set1  0x00000025 , 0x00000000 
+ 00029587  0x0000628a bpatch  0x000000da , 0x0000403b 
+ 00029588  0x0000628b fetch  0x00000001 , 0x000047a2 
+ 00029589  0x0000628c rtneq  0x000000ff 
+ 00029590  0x0000628d fetcht  0x00000002 , 0x000047a4 
+ 00029591  0x0000628e storet  0x00000002 , 0x00004711 
+ 00029592  0x0000628f fetcht  0x00000002 , 0x000047a6 
+ 00029593  0x00006290 storet  0x00000002 , 0x0000470f 
+ 00029594  0x00006291 fetcht  0x00000001 , 0x000047a8 
+ 00029595  0x00006292 storet  0x00000001 , 0x00004713 
+ 00029596  0x00006294 call  0x00007d2f 
+ 00029597  0x00006295 fetcht  0x00000001 , 0x000047a3 
+ 00029598  0x00006296 storet  0x00000001 , 0x0000470e 
+ 00029599  0x00006297 fetch  0x00000001 , 0x000047a2 
+ 00029600  0x00006298 beq  0x00000000 , 0x000073a3 
+ 00029601  0x00006299 beq  0x00000001 , 0x00007d38 
+ 00029602  0x0000629a beq  0x00000002 , 0x00007d3f 
+ 00029603  0x0000629c rtn 
+ 00029604  0x0000629f branch  0x00007d2f 
+ 00029605  0x000062a3 fetch  0x00000001 , 0x000047a9 
+ 00029606  0x000062a4 rtn  0x00000034 
+ 00029607  0x000062a5 copy  0x0000003f , 0x00000039 
+ 00029608  0x000062a6 setarg  0x000047aa 
+ 00029609  0x000062a7 copy  0x0000003f , 0x00000011 
+ 00029610  0x000062a9 ifetcht  0x00000001 , 0x00000011 
+ 00029611  0x000062aa call  0x000064df 
+ 00029612  0x000062ab increase  0x00000002 , 0x00000011 
+ 00029613  0x000062ac loop  0x000073aa 
+ 00029614  0x000062ae rtn 
+ 00029615  0x000062b4 arg  0x000047aa , 0x00000011 
+ 00029616  0x000062b5 force  0x00000000 , 0x00000012 
+ 00029617  0x000062b6 jam  0x00000000 , 0x000047b6 
+ 00029618  0x000062b8 ifetcht  0x00000001 , 0x00000011 
+ 00029619  0x000062b9 call  0x000064f5 
+ 00029620  0x000062ba set1  0x00000025 , 0x00000000 
+ 00029621  0x000062bb bpatch  0x000000db , 0x0000403b 
+ 00029622  0x000062bc fetch  0x00000002 , 0x000047b6 
+ 00029623  0x000062bd copy  0x00000012 , 0x00000007 
+ 00029624  0x000062be qsetflag  0x00000001 , 0x0000003f 
+ 00029625  0x000062bf store  0x00000002 , 0x000047b6 
+ 00029626  0x000062c0 increase  0x00000002 , 0x00000011 
+ 00029627  0x000062c1 increase  0x00000001 , 0x00000012 
+ 00029628  0x000062c2 fetch  0x00000001 , 0x000047a9 
+ 00029629  0x000062c3 ixor  0x00000012 , 0x0000003e 
+ 00029630  0x000062c4 nbranch  0x000073b2 , 0x00000005 
+ 00029631  0x000062c6 fetch  0x00000002 , 0x000047b6 
+ 00029632  0x000062c7 fetcht  0x00000002 , 0x000047b8 
+ 00029633  0x000062c8 ixor  0x00000002 , 0x0000003e 
+ 00029634  0x000062c9 rtn  0x00000005 
+ 00029635  0x000062ca enable  0x00000028 
+ 00029636  0x000062cb rtn 
+ 00029637  0x000062ce arg  0x0000000c , 0x00000007 
+ 00029638  0x000062cf call  0x00007ee2 
+ 00029639  0x000062d0 nrtn  0x00000034 
+ 00029640  0x000062d1 call  0x000074c7 
+ 00029641  0x000062d2 fetch  0x00000001 , 0x0000475b 
+ 00029642  0x000062d3 rtn  0x00000034 
+ 00029643  0x000062d4 disable  0x00000028 
+ 00029644  0x000062d5 call  0x0000748c 
+ 00029645  0x000062d6 set1  0x00000025 , 0x00000000 
+ 00029646  0x000062d7 bpatch  0x000000dc , 0x0000403b 
+ 00029647  0x000062d8 fetch  0x00000001 , 0x000047a9 
+ 00029648  0x000062d9 rtn  0x00000034 
+ 00029649  0x000062da call  0x000073af 
+ 00029650  0x000062db nbranch  0x00007d28 , 0x00000028 
+ 00029651  0x000062dc call  0x00007d26 
+ 00029652  0x000062dd disable  0x00000028 
+ 00029653  0x000062de fetch  0x00000002 , 0x00004748 
+ 00029654  0x000062df store  0x00000002 , 0x0000474a 
+ 00029655  0x000062e0 fetch  0x00000002 , 0x0000470b 
+ 00029656  0x000062e1 bbit0  0x00000009 , 0x000072e5 
+ 00029657  0x000062e2 call  0x000074de 
+ 00029658  0x000062e3 branch  0x000073f5 , 0x00000002 
+ 00029659  0x000062e4 fetch  0x00000002 , 0x000047b6 
+ 00029660  0x000062e5 store  0x00000002 , 0x000047c0 
+ 00029661  0x000062e6 jam  0x00000000 , 0x000047c2 
+ 00029662  0x000062e7 force  0x00000000 , 0x00000007 
+ 00029663  0x000062ea set1  0x00000025 , 0x00000000 
+ 00029664  0x000062eb bpatch  0x000000dd , 0x0000403b 
+ 00029665  0x000062ec fetch  0x00000002 , 0x000047b8 
+ 00029666  0x000062ed rshift  0x0000003f , 0x00000002 
+ 00029667  0x000062ee storet  0x00000002 , 0x000047b8 
+ 00029668  0x000062ef and  0x0000003f , 0x00000001 , 0x0000003f 
+ 00029669  0x000062f0 fetcht  0x00000002 , 0x000047c0 
+ 00029670  0x000062f1 and  0x00000002 , 0x00000001 , 0x00000011 
+ 00029671  0x000062f2 rshift  0x00000002 , 0x00000002 
+ 00029672  0x000062f3 storet  0x00000002 , 0x000047c0 
+ 00029673  0x000062f4 ixor  0x00000011 , 0x0000003e 
+ 00029674  0x000062f5 ncall  0x000073f9 , 0x00000005 
+ 00029675  0x000062f6 fetch  0x00000001 , 0x000047a9 
+ 00029676  0x000062f7 fetcht  0x00000001 , 0x000047c2 
+ 00029677  0x000062f8 increase  0x00000001 , 0x00000002 
+ 00029678  0x000062f9 storet  0x00000001 , 0x000047c2 
+ 00029679  0x000062fa copy  0x00000002 , 0x00000007 
+ 00029680  0x000062fb ixor  0x00000007 , 0x0000003e 
+ 00029681  0x000062fd nbranch  0x000073df , 0x00000005 
+ 00029682  0x000062fe fetch  0x00000002 , 0x000047b6 
+ 00029683  0x000062ff store  0x00000002 , 0x000047b8 
+ 00029684  0x00006300 rtn 
+ 00029685  0x00006302 setarg  0x00000000 
+ 00029686  0x00006303 store  0x00000002 , 0x000047b6 
+ 00029687  0x00006304 store  0x00000002 , 0x000047b8 
+ 00029688  0x00006305 rtn 
+ 00029689  0x0000630b deposit  0x00000011 
+ 00029690  0x0000630c branch  0x00007419 , 0x00000034 
+ 00029691  0x0000630d set1  0x00000025 , 0x00000000 
+ 00029692  0x0000630e bpatch  0x000000de , 0x0000403b 
+ 00029693  0x0000630f copy  0x00000007 , 0x0000003f 
+ 00029694  0x00006310 beq  0x00000000 , 0x00007423 
+ 00029695  0x00006311 beq  0x00000001 , 0x00007427 
+ 00029696  0x00006312 beq  0x00000002 , 0x0000742b 
+ 00029697  0x00006313 beq  0x00000003 , 0x0000742f 
+ 00029698  0x00006314 beq  0x00000004 , 0x00007433 
+ 00029699  0x00006315 beq  0x00000005 , 0x00007437 
+ 00029700  0x00006317 fetch  0x00000001 , 0x0000456b 
+ 00029701  0x00006318 rtnne  0x00000003 
+ 00029702  0x00006319 fetch  0x00000001 , 0x000048bb 
+ 00029703  0x0000631a nrtn  0x00000034 
+ 00029704  0x0000631b ifetch  0x00000001 , 0x00000002 
+ 00029705  0x0000631c rtn  0x00000034 
+ 00029706  0x0000631d store  0x00000001 , 0x000047ba 
+ 00029707  0x0000631e increase  0x00000001 , 0x00000002 
+ 00029708  0x0000631f storet  0x00000002 , 0x000047bb 
+ 00029709  0x00006321 fetch  0x00000002 , 0x000047bb 
+ 00029710  0x00006322 ifetcht  0x00000001 , 0x0000003f 
+ 00029711  0x00006323 copy  0x00000002 , 0x00000039 
+ 00029712  0x00006324 iadd  0x00000002 , 0x00000002 
+ 00029713  0x00006325 storet  0x00000002 , 0x000047bb 
+ 00029714  0x00006326 copy  0x0000003f , 0x00000002 
+ 00029715  0x00006327 call  0x0000749c 
+ 00029716  0x00006328 fetch  0x00000001 , 0x000047ba 
+ 00029717  0x00006329 increase  0xffffffff , 0x0000003f 
+ 00029718  0x0000632a store  0x00000001 , 0x000047ba 
+ 00029719  0x0000632b nbranch  0x0000740d , 0x00000005 
+ 00029720  0x0000632c branch  0x000074ca 
+ 00029721  0x00006330 set1  0x00000025 , 0x00000000 
+ 00029722  0x00006331 bpatch  0x000000df , 0x0000403b 
+ 00029723  0x00006332 copy  0x00000007 , 0x0000003f 
+ 00029724  0x00006333 beq  0x00000000 , 0x0000743b 
+ 00029725  0x00006334 beq  0x00000001 , 0x0000743f 
+ 00029726  0x00006335 beq  0x00000002 , 0x00007443 
+ 00029727  0x00006336 beq  0x00000003 , 0x00007447 
+ 00029728  0x00006337 beq  0x00000004 , 0x0000744b 
+ 00029729  0x00006338 beq  0x00000005 , 0x0000744f 
+ 00029730  0x00006339 branch  0x00007404 
+ 00029731  0x0000633c fetch  0x00000001 , 0x000047ab 
+ 00029732  0x0000633d call  0x00007457 
+ 00029733  0x0000633e arg  0x000047c3 , 0x00000002 
+ 00029734  0x0000633f branch  0x00007404 
+ 00029735  0x00006341 fetch  0x00000001 , 0x000047ad 
+ 00029736  0x00006342 call  0x00007457 
+ 00029737  0x00006343 arg  0x000047eb , 0x00000002 
+ 00029738  0x00006344 branch  0x00007404 
+ 00029739  0x00006346 fetch  0x00000001 , 0x000047af 
+ 00029740  0x00006347 call  0x00007457 
+ 00029741  0x00006348 arg  0x00004807 , 0x00000002 
+ 00029742  0x00006349 branch  0x00007404 
+ 00029743  0x0000634b fetch  0x00000001 , 0x000047b1 
+ 00029744  0x0000634c call  0x00007457 
+ 00029745  0x0000634d arg  0x00004823 , 0x00000002 
+ 00029746  0x0000634e branch  0x00007404 
+ 00029747  0x00006350 fetch  0x00000001 , 0x000047b3 
+ 00029748  0x00006351 call  0x00007457 
+ 00029749  0x00006352 arg  0x0000483f , 0x00000002 
+ 00029750  0x00006353 branch  0x00007404 
+ 00029751  0x00006355 fetch  0x00000001 , 0x000047b5 
+ 00029752  0x00006356 call  0x00007457 
+ 00029753  0x00006357 arg  0x0000485b , 0x00000002 
+ 00029754  0x00006358 branch  0x00007404 
+ 00029755  0x0000635b fetch  0x00000001 , 0x000047ab 
+ 00029756  0x0000635c call  0x00007453 
+ 00029757  0x0000635d arg  0x000047d7 , 0x00000002 
+ 00029758  0x0000635e branch  0x00007404 
+ 00029759  0x00006364 fetch  0x00000001 , 0x000047ad 
+ 00029760  0x00006365 call  0x00007453 
+ 00029761  0x00006366 arg  0x000047f9 , 0x00000002 
+ 00029762  0x00006367 branch  0x00007404 
+ 00029763  0x00006369 fetch  0x00000001 , 0x000047af 
+ 00029764  0x0000636a call  0x00007453 
+ 00029765  0x0000636b arg  0x00004815 , 0x00000002 
+ 00029766  0x0000636c branch  0x00007404 
+ 00029767  0x0000636e fetch  0x00000001 , 0x000047b1 
+ 00029768  0x0000636f call  0x00007453 
+ 00029769  0x00006370 arg  0x00004831 , 0x00000002 
+ 00029770  0x00006371 branch  0x00007404 
+ 00029771  0x00006373 fetch  0x00000001 , 0x000047b3 
+ 00029772  0x00006374 call  0x00007453 
+ 00029773  0x00006375 arg  0x0000484d , 0x00000002 
+ 00029774  0x00006376 branch  0x00007404 
+ 00029775  0x00006378 fetch  0x00000001 , 0x000047b5 
+ 00029776  0x00006379 call  0x00007453 
+ 00029777  0x0000637a arg  0x00004869 , 0x00000002 
+ 00029778  0x0000637b branch  0x00007404 
+ 00029779  0x0000637e compare  0x00000001 , 0x0000003f , 0x000000ff 
+ 00029780  0x0000637f rtn  0x00000001 
+ 00029781  0x00006380 force  0x00000003 , 0x0000003f 
+ 00029782  0x00006381 branch  0x00007457 
+ 00029783  0x00006386 beq  0x00000000 , 0x0000745c 
+ 00029784  0x00006387 beq  0x00000001 , 0x0000745e 
+ 00029785  0x00006388 beq  0x00000002 , 0x00007460 
+ 00029786  0x00006389 beq  0x00000003 , 0x00007462 
+ 00029787  0x0000638c branch  0x0000738e 
+ 00029788  0x00006390 setarg  0x00004786 
+ 00029789  0x00006391 branch  0x0000738e 
+ 00029790  0x00006393 setarg  0x0000478d 
+ 00029791  0x00006394 branch  0x0000738e 
+ 00029792  0x00006396 setarg  0x00004794 
+ 00029793  0x00006397 branch  0x0000738e 
+ 00029794  0x00006399 setarg  0x0000479b 
+ 00029795  0x0000639a branch  0x0000738e 
+ 00029796  0x0000639f fetch  0x00000001 , 0x0000475a 
+ 00029797  0x000063a0 rtn  0x00000034 
+ 00029798  0x000063a1 increase  0xffffffff , 0x0000003f 
+ 00029799  0x000063a2 store  0x00000001 , 0x0000475a 
+ 00029800  0x000063a3 nrtn  0x00000034 
+ 00029801  0x000063a4 fetch  0x00000001 , 0x00004756 
+ 00029802  0x000063a5 beq  0x00000001 , 0x000072c0 
+ 00029803  0x000063a6 branch  0x0000748a 
+ 00029804  0x000063a9 fetch  0x00000001 , 0x00004758 
+ 00029805  0x000063aa rtn  0x00000034 
+ 00029806  0x000063ab increase  0xffffffff , 0x0000003f 
+ 00029807  0x000063ac store  0x00000001 , 0x00004758 
+ 00029808  0x000063ad nrtn  0x00000034 
+ 00029809  0x000063ae branch  0x00003e73 
+ 00029810  0x000063b1 fetch  0x00000001 , 0x00004757 
+ 00029811  0x000063b2 store  0x00000001 , 0x00004758 
+ 00029812  0x000063b3 branch  0x00003e71 
+ 00029813  0x000063b9 fetch  0x00000001 , 0x00004756 
+ 00029814  0x000063ba beq  0x00000001 , 0x00007478 
+ 00029815  0x000063bb branch  0x00003e75 
+ 00029816  0x000063bd jam  0x00000001 , 0x0000475b 
+ 00029817  0x000063be rtn 
+ 00029818  0x000063c2 fetch  0x00000001 , 0x00004756 
+ 00029819  0x000063c3 beq  0x00000001 , 0x00007481 
+ 00029820  0x000063c4 jam  0x00000001 , 0x00004756 
+ 00029821  0x000063c6 setarg  0x00004771 
+ 00029822  0x000063c9 fetcht  0x00000001 , 0x00004759 
+ 00029823  0x000063ca storet  0x00000001 , 0x0000475a 
+ 00029824  0x000063cb branch  0x0000738e 
+ 00029825  0x000063cf jam  0x00000002 , 0x00004756 
+ 00029826  0x000063d0 jam  0x00000000 , 0x0000475b 
+ 00029827  0x000063d1 jam  0x00000000 , 0x000043ff 
+ 00029828  0x000063d2 fetch  0x00000002 , 0x0000470b 
+ 00029829  0x000063d3 bbit0  0x00000009 , 0x00007487 
+ 00029830  0x000063d4 call  0x00003e6b 
+ 00029831  0x000063d6 jam  0x00000000 , 0x000043ff 
+ 00029832  0x000063d7 setarg  0x00004778 
+ 00029833  0x000063d8 branch  0x0000747e 
+ 00029834  0x000063db call  0x00007382 
+ 00029835  0x000063dc branch  0x00003e75 
+ 00029836  0x000063e0 fetch  0x00000001 , 0x000047a9 
+ 00029837  0x000063e1 rtn  0x00000034 
+ 00029838  0x000063e2 copy  0x0000003f , 0x00000039 
+ 00029839  0x000063e3 setarg  0x000047aa 
+ 00029840  0x000063e4 copy  0x0000003f , 0x00000011 
+ 00029841  0x000063e6 ifetcht  0x00000001 , 0x00000011 
+ 00029842  0x000063e7 call  0x000064c2 
+ 00029843  0x000063e8 increase  0x00000002 , 0x00000011 
+ 00029844  0x000063e9 loop  0x00007491 
+ 00029845  0x000063eb rtn 
+ 00029846  0x000063ef jam  0x00000000 , 0x00004877 
+ 00029847  0x000063f0 setarg  0x0000487c 
+ 00029848  0x000063f1 store  0x00000002 , 0x00004878 
+ 00029849  0x000063f2 store  0x00000002 , 0x0000487a 
+ 00029850  0x000063f3 rtn 
+ 00029851  0x000063f7 branch  0x00007496 
+ 00029852  0x000063fc disable  0x00000028 
+ 00029853  0x000063fd fetch  0x00000001 , 0x00004877 
+ 00029854  0x000063fe compare  0x00000006 , 0x0000003f , 0x000000ff 
+ 00029855  0x000063ff rtn  0x00000001 
+ 00029856  0x00006401 enable  0x00000028 
+ 00029857  0x00006402 fetch  0x00000002 , 0x0000487a 
+ 00029858  0x00006403 copy  0x0000003f , 0x00000005 
+ 00029859  0x00006404 copy  0x00000002 , 0x00000006 
+ 00029860  0x00006405 call  0x00007ecd 
+ 00029861  0x00006407 fetch  0x00000001 , 0x00004877 
+ 00029862  0x00006408 increase  0x00000001 , 0x0000003f 
+ 00029863  0x00006409 store  0x00000001 , 0x00004877 
+ 00029864  0x0000640b setarg  0x0000487a 
+ 00029865  0x0000640c call  0x000074ab 
+ 00029866  0x0000640d rtn 
+ 00029867  0x00006411 copy  0x0000003f , 0x00000011 
+ 00029868  0x00006412 arg  0x000048b8 , 0x00000002 
+ 00029869  0x00006413 ifetch  0x00000002 , 0x00000011 
+ 00029870  0x00006414 increase  0x0000000a , 0x0000003f 
+ 00029871  0x00006415 isub  0x00000002 , 0x0000003e 
+ 00029872  0x00006416 nbranch  0x000074b2 , 0x00000002 
+ 00029873  0x00006417 setarg  0x0000487c 
+ 00029874  0x00006419 istore  0x00000002 , 0x00000011 
+ 00029875  0x0000641a rtn 
+ 00029876  0x0000641f disable  0x00000028 
+ 00029877  0x00006420 fetch  0x00000001 , 0x00004877 
+ 00029878  0x00006421 rtn  0x00000034 
+ 00029879  0x00006422 enable  0x00000028 
+ 00029880  0x00006423 fetch  0x00000001 , 0x00004877 
+ 00029881  0x00006424 increase  0xffffffff , 0x0000003f 
+ 00029882  0x00006425 store  0x00000001 , 0x00004877 
+ 00029883  0x00006427 fetch  0x00000002 , 0x00004878 
+ 00029884  0x00006428 store  0x00000002 , 0x000048b8 
+ 00029885  0x0000642a setarg  0x00004878 
+ 00029886  0x0000642b call  0x000074ab 
+ 00029887  0x0000642c fetch  0x00000002 , 0x000048b8 
+ 00029888  0x0000642d rtn 
+ 00029889  0x00006430 disable  0x00000028 
+ 00029890  0x00006431 fetch  0x00000001 , 0x00004877 
+ 00029891  0x00006432 rtn  0x00000034 
+ 00029892  0x00006433 enable  0x00000028 
+ 00029893  0x00006434 fetch  0x00000002 , 0x00004878 
+ 00029894  0x00006435 rtn 
+ 00029895  0x00006438 fetch  0x00000002 , 0x0000475c 
+ 00029896  0x00006439 arg  0x0000000c , 0x00000007 
+ 00029897  0x0000643a branch  0x00007ed4 
+ 00029898  0x00006445 call  0x000074c1 
+ 00029899  0x00006446 nrtn  0x00000028 
+ 00029900  0x00006447 disable  0x00000028 
+ 00029901  0x00006450 force  0x00000013 , 0x00000002 
+ 00029902  0x00006451 storet  0x00000002 , 0x000044f8 
+ 00029903  0x00006452 branch  0x000074d0 
+ 00029904  0x00006455 arg  0x00000002 , 0x00000039 
+ 00029905  0x00006456 fetcht  0x00000002 , 0x000044f8 
+ 00029906  0x00006457 arg  0x00004729 , 0x00000006 
+ 00029907  0x00006458 call  0x000074d7 
+ 00029908  0x0000645e rtn 
+ 00029909  0x00006461 jam  0x0000001d , 0x000009bd 
+ 00029910  0x00006462 branch  0x000074dc 
+ 00029911  0x00006464 call  0x00004bd0 
+ 00029912  0x00006465 nrtn  0x00000034 
+ 00029913  0x00006466 fetch  0x00000001 , 0x000048ba 
+ 00029914  0x00006467 nrtn  0x00000034 
+ 00029915  0x00006468 jam  0x0000001b , 0x000009bd 
+ 00029916  0x0000646f call  0x00004bd6 
+ 00029917  0x00006470 branch  0x0000735f 
+ 00029918  0x00006473 fetcht  0x00000004 , 0x0000472f 
+ 00029919  0x00006474 deposit  0x00000022 
+ 00029920  0x00006475 store  0x00000004 , 0x0000472f 
+ 00029921  0x00006476 isub  0x00000002 , 0x0000003f 
+ 00029922  0x00006477 nrtn  0x00000002 
+ 00029923  0x00006478 sub  0x0000003f , 0x00000014 , 0x0000003f 
+ 00029924  0x00006479 rtn 
+ 00029925  0x0000647d call  0x000074b4 
+ 00029926  0x0000647e nrtn  0x00000028 
+ 00029927  0x0000647f disable  0x00000028 
+ 00029928  0x00006480 copy  0x0000003f , 0x00000006 
+ 00029929  0x00006481 ifetcht  0x00000001 , 0x00000006 
+ 00029930  0x00006482 increase  0xfffffffd , 0x00000002 
+ 00029931  0x00006483 copy  0x00000002 , 0x00000039 
+ 00029932  0x00006485 ifetcht  0x00000002 , 0x00000006 
+ 00029933  0x00006487 add  0x00000039 , 0x00000007 , 0x0000003f 
+ 00029934  0x00006488 store  0x00000001 , 0x0000473f 
+ 00029935  0x00006489 arg  0x0000446c , 0x00000005 
+ 00029936  0x0000648a istoret  0x00000002 , 0x00000005 
+ 00029937  0x0000648b call  0x00007ecd 
+ 00029938  0x0000648c fetcht  0x00000001 , 0x0000473f 
+ 00029939  0x0000648d branch  0x00004f89 
+ 00029940  0x00006490 fetch  0x00000001 , 0x0000039a 
+ 00029941  0x00006491 beq  0x00000012 , 0x000074f8 
+ 00029942  0x00006492 beq  0x00000052 , 0x000074fb 
+ 00029943  0x00006493 rtn 
+ 00029944  0x00006495 fetch  0x00000002 , 0x0000039b 
+ 00029945  0x00006496 beq  0x00000018 , 0x000074fb 
+ 00029946  0x00006497 rtn 
+ 00029947  0x0000649a jam  0x00000000 , 0x000048ba 
+ 00029948  0x0000649b rtn 
+ 00029949  0x0000649e arg  0x000048cc , 0x00000005 
+ 00029950  0x0000649f setsect  0x00000000 , 0x00020001 
+ 00029951  0x000064a0 setsect  0x00000001 , 0x00020000 
+ 00029952  0x000064a1 setsect  0x00000002 , 0x00001022 
+ 00029953  0x000064a2 setsect  0x00000003 , 0x00000860 
+ 00029954  0x000064a3 istore  0x00000009 , 0x00000005 
+ 00029955  0x000064a4 setsect  0x00000000 , 0x00030200 
+ 00029956  0x000064a5 setsect  0x00000001 , 0x00004a00 
+ 00029957  0x000064a6 setsect  0x00000002 , 0x00003200 
+ 00029958  0x000064a7 setsect  0x00000003 , 0x00000800 
+ 00029959  0x000064a8 istore  0x00000009 , 0x00000005 
+ 00029960  0x000064a9 setsect  0x00000000 , 0x00012a05 
+ 00029961  0x000064aa setsect  0x00000001 , 0x00010000 
+ 00029962  0x000064ab setsect  0x00000002 , 0x00002000 
+ 00029963  0x000064ac setsect  0x00000003 , 0x0000a408 
+ 00029964  0x000064ad istore  0x00000009 , 0x00000005 
+ 00029965  0x000064ae setsect  0x00000000 , 0x00000002 
+ 00029966  0x000064af setsect  0x00000001 , 0x00000140 
+ 00029967  0x000064b0 setsect  0x00000002 , 0x00000020 
+ 00029968  0x000064b1 setsect  0x00000003 , 0x000008a0 
+ 00029969  0x000064b2 istore  0x00000009 , 0x00000005 
+ 00029970  0x000064b3 setsect  0x00000000 , 0x00021800 
+ 00029971  0x000064b4 setsect  0x00000001 , 0x00008001 
+ 00029972  0x000064b5 setsect  0x00000002 , 0x00028030 
+ 00029973  0x000064b6 setsect  0x00000003 , 0x00000804 
+ 00029974  0x000064b7 istore  0x00000009 , 0x00000005 
+ 00029975  0x000064b8 setsect  0x00000000 , 0x00020007 
+ 00029976  0x000064b9 setsect  0x00000001 , 0x00028000 
+ 00029977  0x000064ba setsect  0x00000002 , 0x00003132 
+ 00029978  0x000064bb setsect  0x00000003 , 0x0001a5a1 
+ 00029979  0x000064bc istore  0x00000009 , 0x00000005 
+ 00029980  0x000064bd setsect  0x00000000 , 0x00017370 
+ 00029981  0x000064be setsect  0x00000001 , 0x00035859 
+ 00029982  0x000064bf setsect  0x00000002 , 0x0000c422 
+ 00029983  0x000064c0 setsect  0x00000003 , 0x00008115 
+ 00029984  0x000064c1 istore  0x00000009 , 0x00000005 
+ 00029985  0x000064c2 setsect  0x00000000 , 0x00002020 
+ 00029986  0x000064c3 setsect  0x00000001 , 0x00000808 
+ 00029987  0x000064c4 setsect  0x00000002 , 0x00020202 
+ 00029988  0x000064c5 setsect  0x00000003 , 0x00000020 
+ 00029989  0x000064c6 istore  0x00000009 , 0x00000005 
+ 00029990  0x000064c7 setsect  0x00000000 , 0x00000302 
+ 00029991  0x000064c8 setsect  0x00000001 , 0x0000804a 
+ 00029992  0x000064c9 setsect  0x00000002 , 0x00000090 
+ 00029993  0x000064ca setsect  0x00000003 , 0x00000408 
+ 00029994  0x000064cb istore  0x00000009 , 0x00000005 
+ 00029995  0x000064cc setsect  0x00000000 , 0x0000022a 
+ 00029996  0x000064cd setsect  0x00000001 , 0x00028032 
+ 00029997  0x000064ce setsect  0x00000002 , 0x00002000 
+ 00029998  0x000064cf setsect  0x00000003 , 0x0000a00c 
+ 00029999  0x000064d0 istore  0x00000009 , 0x00000005 
+ 00030000  0x000064d1 setsect  0x00000000 , 0x00030201 
+ 00030001  0x000064d2 setsect  0x00000001 , 0x00008002 
+ 00030002  0x000064d3 setsect  0x00000002 , 0x0002a040 
+ 00030003  0x000064d4 setsect  0x00000003 , 0x00001820 
+ 00030004  0x000064d5 istore  0x00000009 , 0x00000005 
+ 00030005  0x000064d6 setsect  0x00000000 , 0x00000600 
+ 00030006  0x000064d7 setsect  0x00000001 , 0x00001900 
+ 00030007  0x000064d8 setsect  0x00000002 , 0x000012c0 
+ 00030008  0x000064d9 setsect  0x00000003 , 0x00000030 
+ 00030009  0x000064da istore  0x00000009 , 0x00000005 
+ 00030010  0x000064db setsect  0x00000000 , 0x00000002 
+ 00030011  0x000064dc setsect  0x00000001 , 0x0002808a 
+ 00030012  0x000064dd setsect  0x00000002 , 0x0000d180 
+ 00030013  0x000064de setsect  0x00000003 , 0x00000800 
+ 00030014  0x000064df istore  0x00000009 , 0x00000005 
+ 00030015  0x000064e0 setsect  0x00000000 , 0x00012803 
+ 00030016  0x000064e1 setsect  0x00000001 , 0x00038080 
+ 00030017  0x000064e2 setsect  0x00000002 , 0x00002000 
+ 00030018  0x000064e3 setsect  0x00000003 , 0x0000a940 
+ 00030019  0x000064e4 istore  0x00000009 , 0x00000005 
+ 00030020  0x000064e5 setsect  0x00000000 , 0x00020207 
+ 00030021  0x000064e6 setsect  0x00000001 , 0x00018922 
+ 00030022  0x000064e7 setsect  0x00000002 , 0x00001826 
+ 00030023  0x000064e8 setsect  0x00000003 , 0x00003c00 
+ 00030024  0x000064e9 istore  0x00000009 , 0x00000005 
+ 00030025  0x000064ea setsect  0x00000000 , 0x00000200 
+ 00030026  0x000064eb setsect  0x00000001 , 0x00008a00 
+ 00030027  0x000064ec setsect  0x00000002 , 0x00018120 
+ 00030028  0x000064ed setsect  0x00000003 , 0x00000040 
+ 00030029  0x000064ee istore  0x00000009 , 0x00000005 
+ 00030030  0x000064ef setsect  0x00000000 , 0x00000302 
+ 00030031  0x000064f0 setsect  0x00000001 , 0x0001804a 
+ 00030032  0x000064f1 setsect  0x00000002 , 0x00000110 
+ 00030033  0x000064f2 setsect  0x00000003 , 0x00013808 
+ 00030034  0x000064f3 istore  0x00000009 , 0x00000005 
+ 00030035  0x000064f4 setarg  0x0001012a 
+ 00030036  0x000064f5 istore  0x00000003 , 0x00000005 
+ 00030037  0x000064f6 setsect  0x00000000 , 0x00020012 
+ 00030038  0x000064f7 setsect  0x00000001 , 0x000200c0 
+ 00030039  0x000064f8 setsect  0x00000002 , 0x00012012 
+ 00030040  0x000064f9 setsect  0x00000003 , 0x0000004c 
+ 00030041  0x000064fa istore  0x00000009 , 0x00000005 
+ 00030042  0x000064fb setsect  0x00000000 , 0x00024d02 
+ 00030043  0x000064fc setsect  0x00000001 , 0x0000008a 
+ 00030044  0x000064fd setsect  0x00000002 , 0x00014280 
+ 00030045  0x000064fe setsect  0x00000003 , 0x00000800 
+ 00030046  0x000064ff istore  0x00000009 , 0x00000005 
+ 00030047  0x00006500 setsect  0x00000000 , 0x00022902 
+ 00030048  0x00006501 setsect  0x00000001 , 0x00000000 
+ 00030049  0x00006502 setsect  0x00000002 , 0x00000150 
+ 00030050  0x00006503 setsect  0x00000003 , 0x00002008 
+ 00030051  0x00006504 istore  0x00000009 , 0x00000005 
+ 00030052  0x00006505 setsect  0x00000000 , 0x00020229 
+ 00030053  0x00006506 setsect  0x00000001 , 0x00018040 
+ 00030054  0x00006507 setsect  0x00000002 , 0x00002001 
+ 00030055  0x00006508 setsect  0x00000003 , 0x0000a00c 
+ 00030056  0x00006509 istore  0x00000009 , 0x00000005 
+ 00030057  0x0000650a setsect  0x00000000 , 0x00031201 
+ 00030058  0x0000650b setsect  0x00000001 , 0x00008005 
+ 00030059  0x0000650c setsect  0x00000002 , 0x0002a4d0 
+ 00030060  0x0000650d setsect  0x00000003 , 0x00000008 
+ 00030061  0x0000650e istore  0x00000009 , 0x00000005 
+ 00030062  0x0000650f setsect  0x00000000 , 0x00001828 
+ 00030063  0x00006510 setsect  0x00000001 , 0x00008080 
+ 00030064  0x00006511 setsect  0x00000002 , 0x00002290 
+ 00030065  0x00006512 setsect  0x00000003 , 0x00000000 
+ 00030066  0x00006513 istore  0x00000009 , 0x00000005 
+ 00030067  0x00006514 setsect  0x00000000 , 0x00020019 
+ 00030068  0x00006515 setsect  0x00000001 , 0x00024200 
+ 00030069  0x00006516 setsect  0x00000002 , 0x00003022 
+ 00030070  0x00006517 setsect  0x00000003 , 0x00006804 
+ 00030071  0x00006518 istore  0x00000009 , 0x00000005 
+ 00030072  0x00006519 setsect  0x00000000 , 0x00030200 
+ 00030073  0x0000651a setsect  0x00000001 , 0x00004a00 
+ 00030074  0x0000651b setsect  0x00000002 , 0x0001b020 
+ 00030075  0x0000651c setsect  0x00000003 , 0x00000800 
+ 00030076  0x0000651d istore  0x00000009 , 0x00000005 
+ 00030077  0x0000651e setsect  0x00000000 , 0x00002a4b 
+ 00030078  0x0000651f setsect  0x00000001 , 0x00030151 
+ 00030079  0x00006520 setsect  0x00000002 , 0x00001090 
+ 00030080  0x00006521 setsect  0x00000003 , 0x00000684 
+ 00030081  0x00006522 istore  0x00000009 , 0x00000005 
+ 00030082  0x00006523 setsect  0x00000000 , 0x00010285 
+ 00030083  0x00006524 setsect  0x00000001 , 0x00027a42 
+ 00030084  0x00006525 setsect  0x00000002 , 0x00009ea0 
+ 00030085  0x00006526 setsect  0x00000003 , 0x00002788 
+ 00030086  0x00006527 istore  0x00000009 , 0x00000005 
+ 00030087  0x00006528 setsect  0x00000000 , 0x00011530 
+ 00030088  0x00006529 setsect  0x00000001 , 0x00030940 
+ 00030089  0x0000652a setsect  0x00000002 , 0x00010750 
+ 00030090  0x0000652b setsect  0x00000003 , 0x00000654 
+ 00030091  0x0000652c istore  0x00000009 , 0x00000005 
+ 00030092  0x0000652d setsect  0x00000000 , 0x00000081 
+ 00030093  0x0000652e setsect  0x00000001 , 0x00004170 
+ 00030094  0x0000652f setsect  0x00000002 , 0x00006090 
+ 00030095  0x00006530 setsect  0x00000003 , 0x00000684 
+ 00030096  0x00006531 istore  0x00000009 , 0x00000005 
+ 00030097  0x00006532 setsect  0x00000000 , 0x00010385 
+ 00030098  0x00006533 setsect  0x00000001 , 0x000241c1 
+ 00030099  0x00006534 setsect  0x00000002 , 0x00029e01 
+ 00030100  0x00006535 setsect  0x00000003 , 0x0000579c 
+ 00030101  0x00006536 istore  0x00000009 , 0x00000005 
+ 00030102  0x00006537 setsect  0x00000000 , 0x00012500 
+ 00030103  0x00006538 setsect  0x00000001 , 0x00005d40 
+ 00030104  0x00006539 setsect  0x00000002 , 0x00008950 
+ 00030105  0x0000653a setsect  0x00000003 , 0x00000a04 
+ 00030106  0x0000653b istore  0x00000009 , 0x00000005 
+ 00030107  0x0000653c setsect  0x00000000 , 0x00010875 
+ 00030108  0x0000653d setsect  0x00000001 , 0x00014065 
+ 00030109  0x0000653e setsect  0x00000002 , 0x00025001 
+ 00030110  0x0000653f setsect  0x00000003 , 0x000017d0 
+ 00030111  0x00006540 istore  0x00000009 , 0x00000005 
+ 00030112  0x00006541 setsect  0x00000000 , 0x00001907 
+ 00030113  0x00006542 setsect  0x00000001 , 0x00010a40 
+ 00030114  0x00006543 setsect  0x00000002 , 0x0000081f 
+ 00030115  0x00006544 setsect  0x00000003 , 0x00000300 
+ 00030116  0x00006545 istore  0x00000008 , 0x00000005 
+ 00030117  0x00006546 setsect  0x00000000 , 0x0002001c 
+ 00030118  0x00006547 setsect  0x00000001 , 0x000200c0 
+ 00030119  0x00006548 setsect  0x00000002 , 0x00002012 
+ 00030120  0x00006549 setsect  0x00000003 , 0x00000074 
+ 00030121  0x0000654a istore  0x00000009 , 0x00000005 
+ 00030122  0x0000654b setsect  0x00000000 , 0x00024a02 
+ 00030123  0x0000654c setsect  0x00000001 , 0x0000410a 
+ 00030124  0x0000654d setsect  0x00000002 , 0x00000011 
+ 00030125  0x0000654e setsect  0x00000003 , 0x00007804 
+ 00030126  0x0000654f istore  0x00000009 , 0x00000005 
+ 00030127  0x00006550 setsect  0x00000000 , 0x00030200 
+ 00030128  0x00006551 setsect  0x00000001 , 0x00004a00 
+ 00030129  0x00006552 setsect  0x00000002 , 0x0001f040 
+ 00030130  0x00006553 setsect  0x00000003 , 0x00000800 
+ 00030131  0x00006554 istore  0x00000009 , 0x00000005 
+ 00030132  0x00006555 setsect  0x00000000 , 0x00012a4c 
+ 00030133  0x00006556 setsect  0x00000001 , 0x00000000 
+ 00030134  0x00006557 setsect  0x00000002 , 0x00002002 
+ 00030135  0x00006558 setsect  0x00000003 , 0x0000a000 
+ 00030136  0x00006559 istore  0x00000009 , 0x00000005 
+ 00030137  0x0000655a setsect  0x00000000 , 0x00000f02 
+ 00030138  0x0000655b setsect  0x00000001 , 0x00000846 
+ 00030139  0x0000655c setsect  0x00000002 , 0x00003020 
+ 00030140  0x0000655d setsect  0x00000003 , 0x000004a0 
+ 00030141  0x0000655e istore  0x00000009 , 0x00000005 
+ 00030142  0x0000655f setsect  0x00000000 , 0x00002212 
+ 00030143  0x00006560 setsect  0x00000001 , 0x00024080 
+ 00030144  0x00006561 setsect  0x00000002 , 0x000012a1 
+ 00030145  0x00006562 setsect  0x00000003 , 0x00008c00 
+ 00030146  0x00006563 istore  0x00000009 , 0x00000005 
+ 00030147  0x00006564 setsect  0x00000000 , 0x00020200 
+ 00030148  0x00006565 setsect  0x00000001 , 0x00008a40 
+ 00030149  0x00006566 setsect  0x00000002 , 0x00000000 
+ 00030150  0x00006567 setsect  0x00000003 , 0x00000000 
+ 00030151  0x00006568 istore  0x00000009 , 0x00000005 
+ 00030152  0x00006569 rtn 
+ 00030153  0x0000656c jam  0x00000001 , 0x000044df 
+ 00030154  0x0000656d jam  0x00000001 , 0x000045a8 
+ 00030155  0x0000656e jam  0x00000001 , 0x0000456c 
+ 00030156  0x0000656f setarg  0x0000001b 
+ 00030157  0x00006570 store  0x00000002 , 0x0000458b 
+ 00030158  0x00006571 jam  0x00000001 , 0x00004522 
+ 00030159  0x00006572 jam  0x00000003 , 0x000048c8 
+ 00030160  0x00006573 jam  0x00000050 , 0x00004596 
+ 00030161  0x00006575 jam  0x00000017 , 0x0000454c 
+ 00030162  0x00006576 jam  0x00000017 , 0x0000454e 
+ 00030163  0x00006577 arg  0x000044dc , 0x00000005 
+ 00030164  0x00006578 setsect  0x00000000 , 0x00000302 
+ 00030165  0x00006579 setsect  0x00000001 , 0x00000040 
+ 00030166  0x0000657a setsect  0x00000002 , 0x00001021 
+ 00030167  0x0000657b setsect  0x00000003 , 0x00000000 
+ 00030168  0x0000657c istore  0x00000007 , 0x00000005 
+ 00030169  0x0000657d arg  0x0000458d , 0x00000005 
+ 00030170  0x0000657e setsect  0x00000000 , 0x00000008 
+ 00030171  0x0000657f setsect  0x00000001 , 0x00000004 
+ 00030172  0x00006580 setsect  0x00000002 , 0x0002c000 
+ 00030173  0x00006581 setsect  0x00000003 , 0x00000004 
+ 00030174  0x00006582 istore  0x00000008 , 0x00000005 
+ 00030175  0x00006583 rtn 
+ 00030176  0x00006588 fetch  0x00000001 , 0x000046e2 
+ 00030177  0x00006589 nbranch  0x000075f4 , 0x00000034 
+ 00030178  0x0000658a branch  0x00007a96 
+ 00030179  0x0000658d set1  0x00000025 , 0x00000000 
+ 00030180  0x0000658e bpatch  0x000000e0 , 0x0000403c 
+ 00030181  0x0000658f fetch  0x00000001 , 0x000046e2 
+ 00030182  0x00006590 rtn  0x00000034 
+ 00030183  0x00006591 fetch  0x00000001 , 0x00004639 
+ 00030184  0x00006592 rtnne  0x00000001 
+ 00030185  0x00006593 fetch  0x00000001 , 0x00004563 
+ 00030186  0x00006594 rtn  0x00000034 
+ 00030187  0x00006595 fetch  0x00000001 , 0x00004568 
+ 00030188  0x00006596 rtneq  0x00000003 
+ 00030189  0x00006597 fetch  0x00000002 , 0x0000470b 
+ 00030190  0x00006598 bbit1  0x00000000 , 0x000075f2 
+ 00030191  0x00006599 fetch  0x00000001 , 0x00004565 
+ 00030192  0x0000659a beq  0x00000000 , 0x00007a96 
+ 00030193  0x0000659b rtn 
+ 00030194  0x0000659d jam  0x00000000 , 0x00004565 
+ 00030195  0x0000659e rtn 
+ 00030196  0x000065a2 set1  0x00000025 , 0x00000000 
+ 00030197  0x000065a3 bpatch  0x000000e1 , 0x0000403c 
+ 00030198  0x000065a4 fetch  0x00000001 , 0x000046e2 
+ 00030199  0x000065a5 branch  0x00005737 , 0x00000034 
+ 00030200  0x000065a6 call  0x0000572f 
+ 00030201  0x000065a7 call  0x000075fb 
+ 00030202  0x000065a8 branch  0x00007684 
+ 00030203  0x000065ab setarg  0x00000000 
+ 00030204  0x000065ac store  0x00000008 , 0x000008d2 
+ 00030205  0x000065ad store  0x00000004 , 0x000008da 
+ 00030206  0x000065ae store  0x00000007 , 0x000046e6 
+ 00030207  0x000065af rtn 
+ 00030208  0x000065b2 jam  0x00000001 , 0x000008d4 
+ 00030209  0x000065b3 branch  0x00007605 
+ 00030210  0x000065b5 fetch  0x00000001 , 0x00004639 
+ 00030211  0x000065b6 beq  0x00000001 , 0x000076a2 
+ 00030212  0x000065b7 branch  0x00003b31 
+ 00030213  0x000065b9 fetch  0x00000001 , 0x00004639 
+ 00030214  0x000065ba beq  0x00000001 , 0x00007608 
+ 00030215  0x000065bb branch  0x00007684 
+ 00030216  0x000065be call  0x000076a2 
+ 00030217  0x000065bf fetch  0x00000001 , 0x000008d3 
+ 00030218  0x000065c0 nrtn  0x00000034 
+ 00030219  0x000065c1 jam  0x00000003 , 0x000008d2 
+ 00030220  0x000065c2 rtn 
+ 00030221  0x000065c5 fetch  0x00000001 , 0x000008d6 
+ 00030222  0x000065c6 bne  0x00000000 , 0x0000762b 
+ 00030223  0x000065c7 call  0x00007628 
+ 00030224  0x000065c8 arg  0x000009a2 , 0x00000005 
+ 00030225  0x000065c9 setarg  0x00000952 
+ 00030226  0x000065ca istore  0x00000002 , 0x00000005 
+ 00030227  0x000065cb setarg  0x000046ca 
+ 00030228  0x000065cc istore  0x00000002 , 0x00000005 
+ 00030229  0x000065cd setarg  0x00000902 
+ 00030230  0x000065ce istore  0x00000002 , 0x00000005 
+ 00030231  0x000065cf branch  0x0000761f 
+ 00030232  0x000065d1 arg  0x000009a2 , 0x00000005 
+ 00030233  0x000065d2 setarg  0x00000962 
+ 00030234  0x000065d3 istore  0x00000002 , 0x00000005 
+ 00030235  0x000065d4 setarg  0x00000902 
+ 00030236  0x000065d5 istore  0x00000002 , 0x00000005 
+ 00030237  0x000065d6 setarg  0x000046ca 
+ 00030238  0x000065d7 istore  0x00000002 , 0x00000005 
+ 00030239  0x000065d9 call  0x000079bd 
+ 00030240  0x000065da fetch  0x00000001 , 0x000008d3 
+ 00030241  0x000065db beq  0x00000004 , 0x00007625 
+ 00030242  0x000065dc jam  0x00000001 , 0x000008d4 
+ 00030243  0x000065dd jam  0x00000005 , 0x000008d2 
+ 00030244  0x000065de rtn 
+ 00030245  0x000065e0 jam  0x00000014 , 0x000008d3 
+ 00030246  0x000065e1 call  0x00007602 
+ 00030247  0x000065e2 branch  0x000076f3 
+ 00030248  0x000065e5 arg  0x00000942 , 0x00000005 
+ 00030249  0x000065e6 force  0x00000008 , 0x00000007 
+ 00030250  0x000065e7 branch  0x000076bb 
+ 00030251  0x000065ea jam  0x00000001 , 0x000008d4 
+ 00030252  0x000065eb rtn 
+ 00030253  0x000065ef set1  0x00000025 , 0x00000000 
+ 00030254  0x000065f0 bpatch  0x000000e2 , 0x0000403c 
+ 00030255  0x000065f1 arg  0x0000064b , 0x00000005 
+ 00030256  0x000065f2 fetch  0x00000006 , 0x00004140 
+ 00030257  0x000065f3 istore  0x00000006 , 0x00000005 
+ 00030258  0x000065f4 fetch  0x00000006 , 0x00000040 
+ 00030259  0x000065f5 istore  0x00000006 , 0x00000005 
+ 00030260  0x000065f6 fetch  0x00000003 , 0x000046e6 
+ 00030261  0x000065f7 istore  0x00000003 , 0x00000005 
+ 00030262  0x000065f9 call  0x00007a2b 
+ 00030263  0x000065fb arg  0x00000972 , 0x00000011 
+ 00030264  0x000065fc arg  0x00000982 , 0x00000012 
+ 00030265  0x000065fd force  0x00000004 , 0x00000007 
+ 00030266  0x000065fe call  0x000076c0 
+ 00030267  0x000065ff nbranch  0x00007648 , 0x00000001 
+ 00030268  0x00006601 call  0x0000763f 
+ 00030269  0x00006602 jam  0x00000041 , 0x0000007d 
+ 00030270  0x00006603 branch  0x00005903 
+ 00030271  0x00006606 fetch  0x00000001 , 0x000008d3 
+ 00030272  0x00006607 beq  0x00000009 , 0x00007645 
+ 00030273  0x00006608 jam  0x0000000a , 0x000008d2 
+ 00030274  0x00006609 jam  0x00000001 , 0x000008d4 
+ 00030275  0x0000660a jam  0x00000003 , 0x0000007c 
+ 00030276  0x0000660b rtn 
+ 00030277  0x0000660d jam  0x00000003 , 0x0000007c 
+ 00030278  0x0000660e jam  0x00000015 , 0x000008d3 
+ 00030279  0x0000660f branch  0x000076f3 
+ 00030280  0x00006613 fetch  0x00000001 , 0x000008d3 
+ 00030281  0x00006614 beq  0x00000009 , 0x0000764e 
+ 00030282  0x00006615 jam  0x00000000 , 0x000008d2 
+ 00030283  0x00006616 jam  0x00000004 , 0x0000007c 
+ 00030284  0x00006618 jam  0x00000005 , 0x0000007e 
+ 00030285  0x00006619 rtn 
+ 00030286  0x0000661b jam  0x00000004 , 0x0000007c 
+ 00030287  0x0000661c jam  0x00000000 , 0x000008d3 
+ 00030288  0x0000661d rtn 
+ 00030289  0x00006620 fetch  0x00000001 , 0x000008d7 
+ 00030290  0x00006621 beq  0x00000001 , 0x00007655 
+ 00030291  0x00006622 jam  0x0000000a , 0x000008d3 
+ 00030292  0x00006623 branch  0x000076f3 
+ 00030293  0x00006625 arg  0x0000064b , 0x00000005 
+ 00030294  0x00006626 fetch  0x00000006 , 0x00000040 
+ 00030295  0x00006627 istore  0x00000006 , 0x00000005 
+ 00030296  0x00006628 fetch  0x00000006 , 0x00004140 
+ 00030297  0x00006629 istore  0x00000006 , 0x00000005 
+ 00030298  0x0000662a fetch  0x00000003 , 0x000046e3 
+ 00030299  0x0000662b istore  0x00000003 , 0x00000005 
+ 00030300  0x0000662d call  0x00007a43 
+ 00030301  0x0000662e fetch  0x00000001 , 0x000008d3 
+ 00030302  0x0000662f beq  0x0000000a , 0x00007662 
+ 00030303  0x00006630 jam  0x0000000b , 0x000008d2 
+ 00030304  0x00006631 jam  0x00000001 , 0x000008d4 
+ 00030305  0x00006632 rtn 
+ 00030306  0x00006634 jam  0x0000000b , 0x000008d3 
+ 00030307  0x00006635 jam  0x00000001 , 0x000008d5 
+ 00030308  0x00006636 rtn 
+ 00030309  0x00006639 arg  0x000009a2 , 0x00000005 
+ 00030310  0x0000663a fetch  0x00000006 , 0x00000040 
+ 00030311  0x0000663b istore  0x00000006 , 0x00000005 
+ 00030312  0x0000663c fetch  0x00000006 , 0x00004140 
+ 00030313  0x0000663d istore  0x00000006 , 0x00000005 
+ 00030314  0x0000663e setarg  0x00000952 
+ 00030315  0x0000663f istore  0x00000002 , 0x00000005 
+ 00030316  0x00006640 setarg  0x00000962 
+ 00030317  0x00006641 istore  0x00000002 , 0x00000005 
+ 00030318  0x00006642 branch  0x00007679 
+ 00030319  0x00006644 jam  0x0000000f , 0x000008d2 
+ 00030320  0x00006645 arg  0x000009a2 , 0x00000005 
+ 00030321  0x00006646 fetch  0x00000006 , 0x00004140 
+ 00030322  0x00006647 istore  0x00000006 , 0x00000005 
+ 00030323  0x00006648 fetch  0x00000006 , 0x00000040 
+ 00030324  0x00006649 istore  0x00000006 , 0x00000005 
+ 00030325  0x0000664a setarg  0x00000962 
+ 00030326  0x0000664b istore  0x00000002 , 0x00000005 
+ 00030327  0x0000664c setarg  0x00000952 
+ 00030328  0x0000664d istore  0x00000002 , 0x00000005 
+ 00030329  0x00006650 arg  0x0000064b , 0x00000005 
+ 00030330  0x00006651 fetch  0x00000006 , 0x000009a2 
+ 00030331  0x00006652 istore  0x00000006 , 0x00000005 
+ 00030332  0x00006653 fetch  0x00000006 , 0x000009a8 
+ 00030333  0x00006654 istore  0x00000006 , 0x00000005 
+ 00030334  0x00006656 call  0x000079f5 
+ 00030335  0x00006659 jam  0x00000001 , 0x0000425d 
+ 00030336  0x0000665a arg  0x00004261 , 0x00000005 
+ 00030337  0x0000665b arg  0x00000972 , 0x00000006 
+ 00030338  0x0000665c call  0x00007e87 
+ 00030339  0x0000665d branch  0x000031ee 
+ 00030340  0x00006661 set1  0x00000025 , 0x00000000 
+ 00030341  0x00006662 bpatch  0x000000e3 , 0x0000403c 
+ 00030342  0x00006663 fetch  0x00000001 , 0x00004639 
+ 00030343  0x00006664 rtnne  0x00000000 
+ 00030344  0x00006665 fetch  0x00000001 , 0x000008d6 
+ 00030345  0x00006666 rtnne  0x00000000 
+ 00030346  0x00006667 arg  0x0000469a , 0x00000005 
+ 00030347  0x00006668 force  0x0000000b , 0x00000007 
+ 00030348  0x00006669 call  0x000076bb 
+ 00030349  0x0000666a random  0x0000003f 
+ 00030350  0x0000666b rshift  0x0000003f , 0x0000003f 
+ 00030351  0x0000666c istore  0x00000002 , 0x00000005 
+ 00030352  0x0000666e arg  0x000005e2 , 0x00000005 
+ 00030353  0x0000666f arg  0x0000469a , 0x00000006 
+ 00030354  0x00006670 call  0x00007e86 
+ 00030355  0x00006672 arg  0x0000050a , 0x00000005 
+ 00030356  0x00006673 arg  0x000007f2 , 0x00000006 
+ 00030357  0x00006674 call  0x00007e84 
+ 00030358  0x00006676 arg  0x0000053a , 0x00000005 
+ 00030359  0x00006677 call  0x00007e90 
+ 00030360  0x00006678 jam  0x00000001 , 0x0000053a 
+ 00030361  0x0000667a call  0x00007a7c 
+ 00030362  0x0000667b jam  0x00000001 , 0x000008d6 
+ 00030363  0x0000667c rtn 
+ 00030364  0x0000667f arg  0x000046b2 , 0x00000005 
+ 00030365  0x00006680 arg  0x00000552 , 0x00000006 
+ 00030366  0x00006681 call  0x00007e84 
+ 00030367  0x00006682 jam  0x00000001 , 0x00004639 
+ 00030368  0x00006683 jam  0x00000000 , 0x000008d6 
+ 00030369  0x00006684 rtn 
+ 00030370  0x00006687 set1  0x00000025 , 0x00000000 
+ 00030371  0x00006688 bpatch  0x000000e4 , 0x0000403c 
+ 00030372  0x00006689 fetch  0x00000001 , 0x000008dd 
+ 00030373  0x0000668a rtnne  0x00000000 
+ 00030374  0x0000668b fetch  0x00000001 , 0x000008d6 
+ 00030375  0x0000668c rtnne  0x00000000 
+ 00030376  0x0000668e arg  0x000005e2 , 0x00000005 
+ 00030377  0x0000668f arg  0x0000469a , 0x00000006 
+ 00030378  0x00006690 call  0x00007e86 
+ 00030379  0x00006692 arg  0x0000050a , 0x00000005 
+ 00030380  0x00006693 arg  0x000008ea , 0x00000006 
+ 00030381  0x00006694 call  0x00007e84 
+ 00030382  0x00006696 arg  0x0000053a , 0x00000005 
+ 00030383  0x00006697 call  0x00007e90 
+ 00030384  0x00006698 jam  0x00000001 , 0x0000053a 
+ 00030385  0x0000669a call  0x00007a7c 
+ 00030386  0x0000669b jam  0x00000002 , 0x000008d6 
+ 00030387  0x0000669c rtn 
+ 00030388  0x0000669f jam  0x00000001 , 0x000008d7 
+ 00030389  0x000066a0 arg  0x0000092a , 0x00000005 
+ 00030390  0x000066a1 arg  0x00000552 , 0x00000006 
+ 00030391  0x000066a2 call  0x00007e86 
+ 00030392  0x000066a3 jam  0x00000001 , 0x000008dd 
+ 00030393  0x000066a4 jam  0x00000000 , 0x000008d6 
+ 00030394  0x000066a5 rtn 
+ 00030395  0x000066a8 increase  0xffffffff , 0x00000007 
+ 00030396  0x000066a9 nrtn  0x00000002 
+ 00030397  0x000066aa random  0x0000003f 
+ 00030398  0x000066ab istore  0x00000002 , 0x00000005 
+ 00030399  0x000066ac branch  0x000076bb 
+ 00030400  0x000066ae increase  0xffffffff , 0x00000007 
+ 00030401  0x000066af nbranch  0x000076cc , 0x00000002 
+ 00030402  0x000066b0 ifetch  0x00000004 , 0x00000011 
+ 00030403  0x000066b1 copy  0x0000003f , 0x00000002 
+ 00030404  0x000066b2 ifetch  0x00000004 , 0x00000012 
+ 00030405  0x000066b3 iflip  0x00000002 , 0x0000003f 
+ 00030406  0x000066b4 nbranch  0x000076ca , 0x00000005 
+ 00030407  0x000066b5 increase  0x00000004 , 0x00000011 
+ 00030408  0x000066b6 increase  0x00000004 , 0x00000012 
+ 00030409  0x000066b7 branch  0x000076c0 
+ 00030410  0x000066b9 disable  0x00000001 
+ 00030411  0x000066ba rtn 
+ 00030412  0x000066bc enable  0x00000001 
+ 00030413  0x000066bd rtn 
+ 00030414  0x000066c5 set1  0x00000025 , 0x00000000 
+ 00030415  0x000066c6 bpatch  0x000000e5 , 0x0000403c 
+ 00030416  0x000066c7 fetch  0x00000001 , 0x000008d4 
+ 00030417  0x000066c8 rtn  0x00000034 
+ 00030418  0x000066c9 call  0x000058c5 
+ 00030419  0x000066ca nrtn  0x00000034 
+ 00030420  0x000066cb jam  0x00000000 , 0x000008d4 
+ 00030421  0x000066cc fetch  0x00000001 , 0x000008d2 
+ 00030422  0x000066cd beq  0x00000003 , 0x00005806 
+ 00030423  0x000066ce beq  0x00000005 , 0x00005823 
+ 00030424  0x000066cf beq  0x00000007 , 0x0000582e 
+ 00030425  0x000066d0 beq  0x0000000b , 0x00005843 
+ 00030426  0x000066d1 beq  0x00000002 , 0x00007600 
+ 00030427  0x000066d2 beq  0x00000004 , 0x0000760d 
+ 00030428  0x000066d3 beq  0x00000009 , 0x0000762d 
+ 00030429  0x000066d4 beq  0x0000000a , 0x00007651 
+ 00030430  0x000066d5 beq  0x0000000c , 0x0000766f 
+ 00030431  0x000066d7 rtn 
+ 00030432  0x000066da set1  0x00000025 , 0x00000000 
+ 00030433  0x000066db bpatch  0x000000e6 , 0x0000403c 
+ 00030434  0x000066dc fetch  0x00000001 , 0x000008d5 
+ 00030435  0x000066dd rtn  0x00000034 
+ 00030436  0x000066de call  0x000058c5 
+ 00030437  0x000066df nrtn  0x00000034 
+ 00030438  0x000066e0 jam  0x00000000 , 0x000008d5 
+ 00030439  0x000066e1 fetch  0x00000001 , 0x000008d3 
+ 00030440  0x000066e2 beq  0x00000012 , 0x000057e9 
+ 00030441  0x000066e3 beq  0x00000013 , 0x000057ee 
+ 00030442  0x000066e4 beq  0x00000003 , 0x000057f2 
+ 00030443  0x000066e5 beq  0x00000004 , 0x00007618 
+ 00030444  0x000066e6 beq  0x00000014 , 0x000057f6 
+ 00030445  0x000066e7 beq  0x00000007 , 0x00005804 
+ 00030446  0x000066e8 beq  0x0000000a , 0x00007651 
+ 00030447  0x000066e9 beq  0x0000000b , 0x00005842 
+ 00030448  0x000066ea beq  0x00000009 , 0x0000762d 
+ 00030449  0x000066eb beq  0x00000015 , 0x0000583c 
+ 00030450  0x000066ec rtn 
+ 00030451  0x000066ef jam  0x00000001 , 0x000008d5 
+ 00030452  0x000066f0 rtn 
+ 00030453  0x000066f3 jam  0x00000000 , 0x000008d5 
+ 00030454  0x000066f4 rtn 
+ 00030455  0x000066f6 set1  0x00000025 , 0x00000000 
+ 00030456  0x000066f7 bpatch  0x000000e7 , 0x0000403c 
+ 00030457  0x000066f8 fetch  0x00000001 , 0x000046e2 
+ 00030458  0x000066f9 rtn  0x00000034 
+ 00030459  0x000066fa fetch  0x00000001 , 0x000008d6 
+ 00030460  0x000066fb rtn  0x00000034 
+ 00030461  0x000066fc increase  0x00000080 , 0x0000003f 
+ 00030462  0x000066fd store  0x00000001 , 0x000008d6 
+ 00030463  0x000066fe rtnbit1  0x00000007 
+ 00030464  0x000066ff fetch  0x00000001 , 0x00000507 
+ 00030465  0x00006700 branch  0x00007703 , 0x00000034 
+ 00030466  0x00006701 branch  0x00007a87 
+ 00030467  0x00006704 call  0x000078ef 
+ 00030468  0x00006705 fetch  0x00000001 , 0x000008d6 
+ 00030469  0x00006706 beq  0x00000001 , 0x0000769c 
+ 00030470  0x00006707 beq  0x00000002 , 0x000076b4 
+ 00030471  0x00006708 rtn 
+ 00030472  0x0000670c and  0x0000003f , 0x00000007 , 0x00000007 
+ 00030473  0x0000670d rshift3  0x0000003f , 0x0000003f 
+ 00030474  0x0000670e iadd  0x00000006 , 0x00000006 
+ 00030475  0x0000670f ifetch  0x00000001 , 0x00000006 
+ 00030476  0x00006710 qisolate0  0x0000003f 
+ 00030477  0x00006711 rtn 
+ 00030478  0x00006715 call  0x00007e86 
+ 00030479  0x00006716 call  0x00007e86 
+ 00030480  0x00006717 branch  0x00007e86 
+ 00030481  0x0000671b ifetch  0x00000008 , 0x00000006 
+ 00030482  0x0000671c nrtn  0x00000034 
+ 00030483  0x0000671d ifetch  0x00000008 , 0x00000006 
+ 00030484  0x0000671e nrtn  0x00000034 
+ 00030485  0x0000671f ifetch  0x00000008 , 0x00000006 
+ 00030486  0x00006720 rtn 
+ 00030487  0x00006726 ifetch  0x00000004 , 0x00000011 
+ 00030488  0x00006727 iforce  0x00000002 
+ 00030489  0x00006728 ifetch  0x00000004 , 0x00000012 
+ 00030490  0x00006729 isub  0x00000002 , 0x0000003e 
+ 00030491  0x0000672a nrtn  0x00000005 
+ 00030492  0x0000672b increase  0x00000004 , 0x00000011 
+ 00030493  0x0000672c increase  0x00000004 , 0x00000012 
+ 00030494  0x0000672d loop  0x00007717 
+ 00030495  0x0000672e rtn 
+ 00030496  0x00006732 force  0x00000006 , 0x00000039 
+ 00030497  0x00006733 increase  0x00000014 , 0x00000011 
+ 00030498  0x00006734 increase  0x00000014 , 0x00000012 
+ 00030499  0x00006736 ifetch  0x00000004 , 0x00000012 
+ 00030500  0x00006737 iforce  0x00000002 
+ 00030501  0x00006738 ifetch  0x00000004 , 0x00000011 
+ 00030502  0x00006739 isub  0x00000002 , 0x0000003f 
+ 00030503  0x0000673a nrtn  0x00000002 
+ 00030504  0x0000673b nrtn  0x00000034 
+ 00030505  0x0000673c increase  0xfffffffc , 0x00000011 
+ 00030506  0x0000673d increase  0xfffffffc , 0x00000012 
+ 00030507  0x0000673e loop  0x00007723 
+ 00030508  0x0000673f rtn 
+ 00030509  0x00006742 force  0x00000006 , 0x00000039 
+ 00030510  0x00006743 force  0x00000000 , 0x00000013 
+ 00030511  0x00006745 ifetch  0x00000004 , 0x00000011 
+ 00030512  0x00006746 iforce  0x00000002 
+ 00030513  0x00006747 ifetch  0x00000004 , 0x00000012 
+ 00030514  0x00006748 iadd  0x00000002 , 0x0000003f 
+ 00030515  0x00006749 iadd  0x00000013 , 0x0000003f 
+ 00030516  0x0000674a istore  0x00000004 , 0x00000005 
+ 00030517  0x0000674b isolate1  0x00000020 , 0x0000003f 
+ 00030518  0x0000674c setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00030519  0x0000674d increase  0x00000004 , 0x00000011 
+ 00030520  0x0000674e increase  0x00000004 , 0x00000012 
+ 00030521  0x0000674f loop  0x0000772f 
+ 00030522  0x00006750 rtn 
+ 00030523  0x00006753 force  0x00000006 , 0x00000039 
+ 00030524  0x00006754 force  0x00000000 , 0x00000013 
+ 00030525  0x00006756 ifetch  0x00000004 , 0x00000012 
+ 00030526  0x00006757 iforce  0x00000002 
+ 00030527  0x00006758 ifetch  0x00000004 , 0x00000011 
+ 00030528  0x00006759 isub  0x00000002 , 0x0000003f 
+ 00030529  0x0000675a isub  0x00000013 , 0x0000003f 
+ 00030530  0x0000675b istore  0x00000004 , 0x00000005 
+ 00030531  0x0000675c isolate1  0x00000020 , 0x0000003f 
+ 00030532  0x0000675d setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00030533  0x0000675e increase  0x00000004 , 0x00000011 
+ 00030534  0x0000675f increase  0x00000004 , 0x00000012 
+ 00030535  0x00006760 loop  0x0000773d 
+ 00030536  0x00006761 rtn 
+ 00030537  0x00006764 force  0x00000006 , 0x00000039 
+ 00030538  0x00006765 increase  0x00000014 , 0x00000011 
+ 00030539  0x00006767 force  0x00000000 , 0x00000013 
+ 00030540  0x00006769 ifetch  0x00000004 , 0x00000011 
+ 00030541  0x0000676a isolate1  0x00000000 , 0x0000003f 
+ 00030542  0x0000676b setflag  0x00000001 , 0x00000001 , 0x00000013 
+ 00030543  0x0000676c rshift  0x0000003f , 0x0000003f 
+ 00030544  0x0000676d isolate1  0x00000000 , 0x00000013 
+ 00030545  0x0000676e setflag  0x00000001 , 0x0000001f , 0x0000003f 
+ 00030546  0x0000676f istore  0x00000004 , 0x00000011 
+ 00030547  0x00006770 increase  0xfffffffc , 0x00000011 
+ 00030548  0x00006771 rshift  0x00000013 , 0x00000013 
+ 00030549  0x00006772 loop  0x0000774c 
+ 00030550  0x00006773 rtn 
+ 00030551  0x00006776 force  0x00000006 , 0x00000039 
+ 00030552  0x00006777 force  0x00000000 , 0x00000013 
+ 00030553  0x00006779 ifetch  0x00000004 , 0x00000011 
+ 00030554  0x0000677a isolate1  0x0000001f , 0x0000003f 
+ 00030555  0x0000677b setflag  0x00000001 , 0x00000001 , 0x00000013 
+ 00030556  0x0000677c lshift  0x0000003f , 0x0000003f 
+ 00030557  0x0000677d isolate1  0x00000000 , 0x00000013 
+ 00030558  0x0000677e setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00030559  0x0000677f istore  0x00000004 , 0x00000011 
+ 00030560  0x00006780 increase  0x00000004 , 0x00000011 
+ 00030561  0x00006781 rshift  0x00000013 , 0x00000013 
+ 00030562  0x00006782 loop  0x00007759 
+ 00030563  0x00006783 rtn 
+ 00030564  0x00006786 call  0x00007757 
+ 00030565  0x00006788 isolate1  0x00000000 , 0x00000013 
+ 00030566  0x00006789 branch  0x0000776d , 0x00000001 
+ 00030567  0x0000678a arg  0x000007aa , 0x00000012 
+ 00030568  0x0000678b copy  0x00000011 , 0x00000013 
+ 00030569  0x0000678c increase  0xffffffe8 , 0x00000011 
+ 00030570  0x0000678d call  0x00007720 
+ 00030571  0x0000678e nrtn  0x00000002 
+ 00030572  0x0000678f copy  0x00000013 , 0x00000011 
+ 00030573  0x00006791 increase  0xffffffe8 , 0x00000011 
+ 00030574  0x00006792 arg  0x000007aa , 0x00000012 
+ 00030575  0x00006793 copy  0x00000011 , 0x00000005 
+ 00030576  0x00006794 branch  0x0000773b 
+ 00030577  0x00006798 call  0x0000772d 
+ 00030578  0x00006799 copy  0x00000005 , 0x00000011 
+ 00030579  0x0000679a branch  0x00007765 
+ 00030580  0x0000679d call  0x0000773b 
+ 00030581  0x0000679e isolate0  0x00000000 , 0x00000013 
+ 00030582  0x0000679f rtn  0x00000001 
+ 00030583  0x000067a0 arg  0x000007aa , 0x00000012 
+ 00030584  0x000067a1 add  0x00000005 , 0xffffffe8 , 0x00000011 
+ 00030585  0x000067a2 copy  0x00000011 , 0x00000005 
+ 00030586  0x000067a3 branch  0x0000772d 
+ 00030587  0x000067a7 copy  0x00000005 , 0x0000000b 
+ 00030588  0x000067a8 copy  0x00000011 , 0x00000030 
+ 00030589  0x000067a9 arg  0x0000063a , 0x00000012 
+ 00030590  0x000067aa copy  0x00000012 , 0x00000005 
+ 00030591  0x000067ab add  0x00000011 , 0x00000018 , 0x00000006 
+ 00030592  0x000067ac ifetch  0x00000008 , 0x00000006 
+ 00030593  0x000067ad istore  0x00000008 , 0x00000005 
+ 00030594  0x000067ae istore  0x00000008 , 0x00000005 
+ 00030595  0x000067af force  0x00000000 , 0x0000003f 
+ 00030596  0x000067b0 istore  0x00000008 , 0x00000005 
+ 00030597  0x000067b1 copy  0x0000000b , 0x00000005 
+ 00030598  0x000067b2 call  0x00007771 
+ 00030599  0x000067b3 arg  0x0000063a , 0x00000012 
+ 00030600  0x000067b4 copy  0x00000012 , 0x00000005 
+ 00030601  0x000067b5 force  0x00000000 , 0x0000003f 
+ 00030602  0x000067b6 istore  0x00000008 , 0x00000005 
+ 00030603  0x000067b7 add  0x00000030 , 0x00000020 , 0x00000006 
+ 00030604  0x000067b8 ifetch  0x00000008 , 0x00000006 
+ 00030605  0x000067b9 istore  0x00000008 , 0x00000005 
+ 00030606  0x000067ba istore  0x00000008 , 0x00000005 
+ 00030607  0x000067bb copy  0x0000000b , 0x00000011 
+ 00030608  0x000067bc copy  0x00000011 , 0x00000005 
+ 00030609  0x000067bd call  0x00007771 
+ 00030610  0x000067be arg  0x0000063a , 0x00000012 
+ 00030611  0x000067bf copy  0x00000012 , 0x00000005 
+ 00030612  0x000067c0 add  0x00000030 , 0x00000028 , 0x00000006 
+ 00030613  0x000067c1 ifetch  0x00000008 , 0x00000006 
+ 00030614  0x000067c2 istore  0x00000008 , 0x00000005 
+ 00030615  0x000067c3 istore  0x00000008 , 0x00000005 
+ 00030616  0x000067c4 istore  0x00000008 , 0x00000005 
+ 00030617  0x000067c5 copy  0x0000000b , 0x00000011 
+ 00030618  0x000067c6 copy  0x00000011 , 0x00000005 
+ 00030619  0x000067c7 branch  0x00007771 
+ 00030620  0x000067cb force  0x00000006 , 0x00000039 
+ 00030621  0x000067cd ifetch  0x00000004 , 0x00000006 
+ 00030622  0x000067ce iforce  0x0000002f 
+ 00030623  0x000067cf increase  0x00000001 , 0x00000038 
+ 00030624  0x000067d0 loop  0x0000779d 
+ 00030625  0x000067d1 rtn 
+ 00030626  0x000067d6 copy  0x00000005 , 0x0000000b 
+ 00030627  0x000067d7 arg  0x0000060a , 0x00000005 
+ 00030628  0x000067d8 call  0x00007e90 
+ 00030629  0x000067d9 arg  0x0000060a , 0x00000005 
+ 00030630  0x000067da copy  0x00000011 , 0x00000006 
+ 00030631  0x000067db force  0x00000000 , 0x00000038 
+ 00030632  0x000067dc call  0x0000779c 
+ 00030633  0x000067dd copy  0x00000012 , 0x00000006 
+ 00030634  0x000067de call  0x0000779c 
+ 00030635  0x000067df force  0x00000000 , 0x00000012 
+ 00030636  0x000067e1 force  0x00000000 , 0x00000002 
+ 00030637  0x000067e2 force  0x00000006 , 0x00000013 
+ 00030638  0x000067e4 ifetch  0x00000004 , 0x00000005 
+ 00030639  0x000067e5 iforce  0x00000011 
+ 00030640  0x000067e6 copy  0x00000012 , 0x00000038 
+ 00030641  0x000067e7 deposit  0x0000002f 
+ 00030642  0x000067e8 copy  0x00000013 , 0x00000038 
+ 00030643  0x000067e9 imul32  0x0000002f , 0x0000003f 
+ 00030644  0x000067ea iadd  0x00000011 , 0x0000003f 
+ 00030645  0x000067eb iadd  0x00000002 , 0x0000003f 
+ 00030646  0x000067ec istore  0x00000004 , 0x00000005 
+ 00030647  0x000067ed rshift32  0x0000003f , 0x00000002 
+ 00030648  0x000067ee increase  0x00000001 , 0x00000013 
+ 00030649  0x000067ef compare  0x0000000c , 0x00000013 , 0x000000ff 
+ 00030650  0x000067f0 nbranch  0x000077ae , 0x00000001 
+ 00030651  0x000067f1 deposit  0x00000002 
+ 00030652  0x000067f2 istore  0x00000004 , 0x00000005 
+ 00030653  0x000067f3 increase  0xffffffe8 , 0x00000005 
+ 00030654  0x000067f4 increase  0x00000001 , 0x00000012 
+ 00030655  0x000067f5 compare  0x00000006 , 0x00000012 , 0x000000ff 
+ 00030656  0x000067f6 nbranch  0x000077ac , 0x00000001 
+ 00030657  0x000067f7 arg  0x0000060a , 0x00000011 
+ 00030658  0x000067f8 copy  0x0000000b , 0x00000005 
+ 00030659  0x000067f9 branch  0x0000777b 
+ 00030660  0x000067fd copy  0x00000011 , 0x00000012 
+ 00030661  0x000067fe branch  0x000077a2 
+ 00030662  0x00006801 copy  0x00000011 , 0x00000030 
+ 00030663  0x00006803 copy  0x00000030 , 0x00000011 
+ 00030664  0x00006804 ifetch  0x00000001 , 0x00000011 
+ 00030665  0x00006805 isolate1  0x00000000 , 0x0000003f 
+ 00030666  0x00006806 rtn  0x00000001 
+ 00030667  0x00006807 call  0x00007749 
+ 00030668  0x00006808 ifetch  0x00000001 , 0x00000012 
+ 00030669  0x00006809 isolate0  0x00000000 , 0x0000003f 
+ 00030670  0x0000680a branch  0x000077d6 , 0x00000001 
+ 00030671  0x0000680b arg  0x000007aa , 0x00000011 
+ 00030672  0x0000680c copy  0x00000012 , 0x00000005 
+ 00030673  0x0000680d call  0x0000772d 
+ 00030674  0x0000680e ifetch  0x00000001 , 0x00000012 
+ 00030675  0x0000680f iadd  0x00000013 , 0x0000003f 
+ 00030676  0x00006810 istore  0x00000001 , 0x00000012 
+ 00030677  0x00006811 increase  0xffffffe8 , 0x00000012 
+ 00030678  0x00006813 add  0x00000012 , 0x00000018 , 0x00000011 
+ 00030679  0x00006814 force  0x00000007 , 0x00000039 
+ 00030680  0x00006815 call  0x0000774b 
+ 00030681  0x00006816 branch  0x000077c7 
+ 00030682  0x0000681a copy  0x00000005 , 0x0000000b 
+ 00030683  0x0000681b arg  0x0000066a , 0x00000005 
+ 00030684  0x0000681c call  0x00007e90 
+ 00030685  0x0000681d force  0x00000000 , 0x0000003f 
+ 00030686  0x0000681e store  0x00000004 , 0x00000622 
+ 00030687  0x0000681f store  0x00000004 , 0x00000682 
+ 00030688  0x00006820 jam  0x00000001 , 0x0000066a 
+ 00030689  0x00006821 arg  0x0000060a , 0x00000005 
+ 00030690  0x00006822 call  0x00007e90 
+ 00030691  0x00006823 arg  0x000007aa , 0x00000006 
+ 00030692  0x00006824 arg  0x0000063a , 0x00000005 
+ 00030693  0x00006825 call  0x00007e86 
+ 00030694  0x00006826 copy  0x00000011 , 0x00000006 
+ 00030695  0x00006827 arg  0x00000652 , 0x00000005 
+ 00030696  0x00006828 call  0x00007e86 
+ 00030697  0x0000682a arg  0x00000652 , 0x00000006 
+ 00030698  0x0000682b call  0x00007711 
+ 00030699  0x0000682c branch  0x00007812 , 0x00000034 
+ 00030700  0x0000682d arg  0x00000652 , 0x00000011 
+ 00030701  0x0000682e arg  0x0000066a , 0x00000012 
+ 00030702  0x0000682f call  0x000077c6 
+ 00030703  0x00006831 arg  0x0000063a , 0x00000011 
+ 00030704  0x00006832 arg  0x0000060a , 0x00000012 
+ 00030705  0x00006833 call  0x000077c6 
+ 00030706  0x00006834 arg  0x00000652 , 0x00000011 
+ 00030707  0x00006835 arg  0x0000063a , 0x00000012 
+ 00030708  0x00006836 call  0x00007720 
+ 00030709  0x00006837 branch  0x00007804 , 0x00000002 
+ 00030710  0x00006838 arg  0x0000063a , 0x00000011 
+ 00030711  0x00006839 arg  0x00000652 , 0x00000012 
+ 00030712  0x0000683a copy  0x00000011 , 0x00000005 
+ 00030713  0x0000683b call  0x0000773b 
+ 00030714  0x0000683c arg  0x0000066a , 0x00000011 
+ 00030715  0x0000683d arg  0x0000060a , 0x00000012 
+ 00030716  0x0000683e copy  0x00000012 , 0x00000005 
+ 00030717  0x0000683f call  0x0000772d 
+ 00030718  0x00006840 ifetch  0x00000001 , 0x00000011 
+ 00030719  0x00006841 iadd  0x00000013 , 0x00000013 
+ 00030720  0x00006842 ifetch  0x00000001 , 0x00000012 
+ 00030721  0x00006843 iadd  0x00000013 , 0x0000003f 
+ 00030722  0x00006844 istore  0x00000001 , 0x00000012 
+ 00030723  0x00006845 branch  0x000077e9 
+ 00030724  0x00006847 arg  0x00000652 , 0x00000011 
+ 00030725  0x00006848 arg  0x0000063a , 0x00000012 
+ 00030726  0x00006849 copy  0x00000011 , 0x00000005 
+ 00030727  0x0000684a call  0x0000773b 
+ 00030728  0x0000684b arg  0x0000060a , 0x00000011 
+ 00030729  0x0000684c arg  0x0000066a , 0x00000012 
+ 00030730  0x0000684d copy  0x00000012 , 0x00000005 
+ 00030731  0x0000684e call  0x0000772d 
+ 00030732  0x0000684f ifetch  0x00000001 , 0x00000011 
+ 00030733  0x00006850 iadd  0x00000013 , 0x00000013 
+ 00030734  0x00006851 ifetch  0x00000001 , 0x00000012 
+ 00030735  0x00006852 iadd  0x00000013 , 0x0000003f 
+ 00030736  0x00006853 istore  0x00000001 , 0x00000012 
+ 00030737  0x00006854 branch  0x000077e9 
+ 00030738  0x00006856 arg  0x0000066a , 0x00000005 
+ 00030739  0x00006857 call  0x00007e90 
+ 00030740  0x00006858 fetch  0x00000001 , 0x00000622 
+ 00030741  0x00006859 store  0x00000001 , 0x0000066a 
+ 00030742  0x0000685a store  0x00000001 , 0x00000672 
+ 00030743  0x0000685b arg  0x0000066a , 0x00000011 
+ 00030744  0x0000685c arg  0x0000060a , 0x00000012 
+ 00030745  0x0000685d copy  0x00000012 , 0x00000005 
+ 00030746  0x0000685e call  0x00007771 
+ 00030747  0x0000685f arg  0x000007aa , 0x00000011 
+ 00030748  0x00006860 arg  0x0000060a , 0x00000012 
+ 00030749  0x00006861 copy  0x0000000b , 0x00000005 
+ 00030750  0x00006862 branch  0x00007774 
+ 00030751  0x00006868 arg  0x000005ca , 0x00000011 
+ 00030752  0x00006869 arg  0x00000682 , 0x00000005 
+ 00030753  0x0000686a call  0x000077c4 
+ 00030754  0x0000686b arg  0x00000682 , 0x00000011 
+ 00030755  0x0000686c arg  0x0000069a , 0x00000005 
+ 00030756  0x0000686d call  0x000077c4 
+ 00030757  0x0000686e arg  0x000007c2 , 0x00000011 
+ 00030758  0x0000686f arg  0x0000069a , 0x00000012 
+ 00030759  0x00006870 arg  0x0000069a , 0x00000005 
+ 00030760  0x00006871 call  0x000077a2 
+ 00030761  0x00006872 arg  0x0000059a , 0x00000011 
+ 00030762  0x00006873 arg  0x00000682 , 0x00000005 
+ 00030763  0x00006874 call  0x000077c4 
+ 00030764  0x00006875 arg  0x00000682 , 0x00000006 
+ 00030765  0x00006876 arg  0x00000652 , 0x00000005 
+ 00030766  0x00006877 call  0x00007e86 
+ 00030767  0x00006878 arg  0x00000652 , 0x00000011 
+ 00030768  0x00006879 call  0x00007764 
+ 00030769  0x0000687a arg  0x00000682 , 0x00000011 
+ 00030770  0x0000687b arg  0x00000652 , 0x00000012 
+ 00030771  0x0000687c arg  0x00000682 , 0x00000005 
+ 00030772  0x0000687d call  0x00007771 
+ 00030773  0x0000687e arg  0x00000682 , 0x00000011 
+ 00030774  0x0000687f arg  0x0000069a , 0x00000012 
+ 00030775  0x00006880 arg  0x00000682 , 0x00000005 
+ 00030776  0x00006881 call  0x00007771 
+ 00030777  0x00006882 arg  0x0000059a , 0x00000006 
+ 00030778  0x00006883 arg  0x00000652 , 0x00000005 
+ 00030779  0x00006884 call  0x00007e86 
+ 00030780  0x00006885 arg  0x000005b2 , 0x00000011 
+ 00030781  0x00006886 arg  0x0000069a , 0x00000005 
+ 00030782  0x00006887 call  0x000077c4 
+ 00030783  0x00006888 arg  0x00000652 , 0x00000011 
+ 00030784  0x00006889 call  0x00007764 
+ 00030785  0x0000688a arg  0x00000652 , 0x00000011 
+ 00030786  0x0000688b call  0x00007764 
+ 00030787  0x0000688c arg  0x00000652 , 0x00000011 
+ 00030788  0x0000688d arg  0x0000069a , 0x00000012 
+ 00030789  0x0000688e arg  0x00000652 , 0x00000005 
+ 00030790  0x0000688f call  0x000077a2 
+ 00030791  0x00006890 arg  0x0000069a , 0x00000011 
+ 00030792  0x00006891 arg  0x0000066a , 0x00000005 
+ 00030793  0x00006892 call  0x000077c4 
+ 00030794  0x00006893 arg  0x0000066a , 0x00000011 
+ 00030795  0x00006894 call  0x00007764 
+ 00030796  0x00006895 arg  0x0000066a , 0x00000011 
+ 00030797  0x00006896 call  0x00007764 
+ 00030798  0x00006897 arg  0x0000066a , 0x00000011 
+ 00030799  0x00006898 call  0x00007764 
+ 00030800  0x00006899 arg  0x000005b2 , 0x00000006 
+ 00030801  0x0000689a arg  0x0000069a , 0x00000005 
+ 00030802  0x0000689b call  0x00007e86 
+ 00030803  0x0000689c arg  0x0000069a , 0x00000011 
+ 00030804  0x0000689d call  0x00007764 
+ 00030805  0x0000689e arg  0x0000069a , 0x00000011 
+ 00030806  0x0000689f arg  0x000005ca , 0x00000012 
+ 00030807  0x000068a0 arg  0x000005ca , 0x00000005 
+ 00030808  0x000068a1 call  0x000077a2 
+ 00030809  0x000068a2 arg  0x00000682 , 0x00000011 
+ 00030810  0x000068a3 arg  0x0000069a , 0x00000005 
+ 00030811  0x000068a4 call  0x000077c4 
+ 00030812  0x000068a5 arg  0x0000069a , 0x00000011 
+ 00030813  0x000068a6 arg  0x00000652 , 0x00000012 
+ 00030814  0x000068a7 arg  0x0000069a , 0x00000005 
+ 00030815  0x000068a8 call  0x00007774 
+ 00030816  0x000068a9 arg  0x0000069a , 0x00000011 
+ 00030817  0x000068aa arg  0x00000652 , 0x00000012 
+ 00030818  0x000068ab arg  0x0000059a , 0x00000005 
+ 00030819  0x000068ac call  0x00007774 
+ 00030820  0x000068ad arg  0x00000652 , 0x00000011 
+ 00030821  0x000068ae arg  0x0000059a , 0x00000012 
+ 00030822  0x000068af arg  0x0000069a , 0x00000005 
+ 00030823  0x000068b0 call  0x00007774 
+ 00030824  0x000068b1 arg  0x0000069a , 0x00000011 
+ 00030825  0x000068b2 arg  0x00000682 , 0x00000012 
+ 00030826  0x000068b3 arg  0x0000069a , 0x00000005 
+ 00030827  0x000068b4 call  0x000077a2 
+ 00030828  0x000068b5 arg  0x0000069a , 0x00000011 
+ 00030829  0x000068b6 arg  0x0000066a , 0x00000012 
+ 00030830  0x000068b7 arg  0x000005b2 , 0x00000005 
+ 00030831  0x000068b8 branch  0x00007774 
+ 00030832  0x000068bd arg  0x0000053a , 0x00000011 
+ 00030833  0x000068be arg  0x000006b2 , 0x00000005 
+ 00030834  0x000068bf call  0x000077c4 
+ 00030835  0x000068c0 arg  0x0000059a , 0x00000011 
+ 00030836  0x000068c1 arg  0x000006b2 , 0x00000012 
+ 00030837  0x000068c2 arg  0x0000066a , 0x00000005 
+ 00030838  0x000068c3 call  0x000077a2 
+ 00030839  0x000068c4 arg  0x0000053a , 0x00000011 
+ 00030840  0x000068c5 arg  0x000006b2 , 0x00000012 
+ 00030841  0x000068c6 arg  0x000006b2 , 0x00000005 
+ 00030842  0x000068c7 call  0x000077a2 
+ 00030843  0x000068c8 arg  0x000005b2 , 0x00000011 
+ 00030844  0x000068c9 arg  0x000006b2 , 0x00000012 
+ 00030845  0x000068ca arg  0x00000652 , 0x00000005 
+ 00030846  0x000068cb call  0x000077a2 
+ 00030847  0x000068cc arg  0x000005ca , 0x00000011 
+ 00030848  0x000068cd arg  0x000006b2 , 0x00000005 
+ 00030849  0x000068ce call  0x000077c4 
+ 00030850  0x000068cf arg  0x0000050a , 0x00000011 
+ 00030851  0x000068d0 arg  0x000006b2 , 0x00000012 
+ 00030852  0x000068d1 arg  0x00000682 , 0x00000005 
+ 00030853  0x000068d2 call  0x000077a2 
+ 00030854  0x000068d3 arg  0x000005ca , 0x00000011 
+ 00030855  0x000068d4 arg  0x000006b2 , 0x00000012 
+ 00030856  0x000068d5 arg  0x000006b2 , 0x00000005 
+ 00030857  0x000068d6 call  0x000077a2 
+ 00030858  0x000068d7 arg  0x00000522 , 0x00000011 
+ 00030859  0x000068d8 arg  0x000006b2 , 0x00000012 
+ 00030860  0x000068d9 arg  0x0000069a , 0x00000005 
+ 00030861  0x000068da call  0x000077a2 
+ 00030862  0x000068db arg  0x0000066a , 0x00000011 
+ 00030863  0x000068dc arg  0x00000682 , 0x00000012 
+ 00030864  0x000068dd arg  0x000006b2 , 0x00000005 
+ 00030865  0x000068de call  0x00007774 
+ 00030866  0x000068df arg  0x0000066a , 0x00000011 
+ 00030867  0x000068e0 arg  0x00000682 , 0x00000012 
+ 00030868  0x000068e1 arg  0x0000066a , 0x00000005 
+ 00030869  0x000068e2 call  0x00007771 
+ 00030870  0x000068e3 arg  0x00000652 , 0x00000011 
+ 00030871  0x000068e4 arg  0x0000069a , 0x00000012 
+ 00030872  0x000068e5 arg  0x00000682 , 0x00000005 
+ 00030873  0x000068e6 call  0x00007774 
+ 00030874  0x000068e7 arg  0x00000652 , 0x00000011 
+ 00030875  0x000068e8 arg  0x0000069a , 0x00000012 
+ 00030876  0x000068e9 arg  0x00000652 , 0x00000005 
+ 00030877  0x000068ea call  0x00007771 
+ 00030878  0x000068eb arg  0x00000652 , 0x00000011 
+ 00030879  0x000068ec arg  0x000006b2 , 0x00000012 
+ 00030880  0x000068ed arg  0x00000652 , 0x00000005 
+ 00030881  0x000068ee call  0x000077a2 
+ 00030882  0x000068ef arg  0x000005ca , 0x00000011 
+ 00030883  0x000068f0 arg  0x0000053a , 0x00000012 
+ 00030884  0x000068f1 arg  0x0000069a , 0x00000005 
+ 00030885  0x000068f2 call  0x000077a2 
+ 00030886  0x000068f3 arg  0x0000069a , 0x00000011 
+ 00030887  0x000068f4 arg  0x000006b2 , 0x00000012 
+ 00030888  0x000068f5 arg  0x000005ca , 0x00000005 
+ 00030889  0x000068f6 call  0x000077a2 
+ 00030890  0x000068f7 arg  0x000006b2 , 0x00000011 
+ 00030891  0x000068f8 arg  0x000006b2 , 0x00000005 
+ 00030892  0x000068f9 call  0x000077c4 
+ 00030893  0x000068fa arg  0x000006b2 , 0x00000011 
+ 00030894  0x000068fb arg  0x0000066a , 0x00000012 
+ 00030895  0x000068fc arg  0x0000069a , 0x00000005 
+ 00030896  0x000068fd call  0x000077a2 
+ 00030897  0x000068fe arg  0x000006b2 , 0x00000011 
+ 00030898  0x000068ff arg  0x00000652 , 0x00000012 
+ 00030899  0x00006900 arg  0x00000652 , 0x00000005 
+ 00030900  0x00006901 call  0x000077a2 
+ 00030901  0x00006902 arg  0x00000682 , 0x00000011 
+ 00030902  0x00006903 arg  0x0000059a , 0x00000005 
+ 00030903  0x00006904 call  0x000077c4 
+ 00030904  0x00006905 arg  0x0000059a , 0x00000011 
+ 00030905  0x00006906 arg  0x0000069a , 0x00000012 
+ 00030906  0x00006907 arg  0x0000059a , 0x00000005 
+ 00030907  0x00006908 call  0x00007774 
+ 00030908  0x00006909 arg  0x0000059a , 0x00000006 
+ 00030909  0x0000690a arg  0x000006b2 , 0x00000005 
+ 00030910  0x0000690b call  0x00007e86 
+ 00030911  0x0000690c arg  0x000006b2 , 0x00000011 
+ 00030912  0x0000690d call  0x00007764 
+ 00030913  0x0000690e arg  0x0000069a , 0x00000011 
+ 00030914  0x0000690f arg  0x000006b2 , 0x00000012 
+ 00030915  0x00006910 arg  0x0000069a , 0x00000005 
+ 00030916  0x00006911 call  0x00007774 
+ 00030917  0x00006912 arg  0x0000069a , 0x00000011 
+ 00030918  0x00006913 arg  0x00000682 , 0x00000012 
+ 00030919  0x00006914 arg  0x00000682 , 0x00000005 
+ 00030920  0x00006915 call  0x000077a2 
+ 00030921  0x00006916 arg  0x00000682 , 0x00000011 
+ 00030922  0x00006917 arg  0x00000652 , 0x00000012 
+ 00030923  0x00006918 arg  0x000005b2 , 0x00000005 
+ 00030924  0x00006919 call  0x00007774 
+ 00030925  0x0000691a arg  0x000005b2 , 0x00000011 
+ 00030926  0x0000691b arg  0x000007aa , 0x00000012 
+ 00030927  0x0000691c arg  0x000005b2 , 0x00000005 
+ 00030928  0x0000691d force  0x00000000 , 0x00000013 
+ 00030929  0x0000691e fetch  0x00000001 , 0x000005b2 
+ 00030930  0x0000691f isolate1  0x00000000 , 0x0000003f 
+ 00030931  0x00006920 call  0x0000772d , 0x00000001 
+ 00030932  0x00006921 copy  0x00000013 , 0x00000030 
+ 00030933  0x00006922 arg  0x000005b2 , 0x00000011 
+ 00030934  0x00006923 call  0x00007749 
+ 00030935  0x00006924 fetch  0x00000001 , 0x000005c9 
+ 00030936  0x00006925 isolate1  0x00000000 , 0x00000030 
+ 00030937  0x00006926 setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00030938  0x00006927 store  0x00000001 , 0x000005c9 
+ 00030939  0x00006928 rtn 
+ 00030940  0x0000692d fetch  0x00000001 , 0x00000507 
+ 00030941  0x0000692e increase  0xffffffff , 0x0000003f 
+ 00030942  0x0000692f nrtn  0x00000002 
+ 00030943  0x00006930 store  0x00000001 , 0x00000507 
+ 00030944  0x00006931 fetch  0x00000001 , 0x00000506 
+ 00030945  0x00006932 call  0x0000781f , 0x00000034 
+ 00030946  0x00006933 fetch  0x00000001 , 0x00000507 
+ 00030947  0x00006934 arg  0x000005e2 , 0x00000006 
+ 00030948  0x00006935 call  0x00007708 
+ 00030949  0x00006936 branch  0x000078dc , 0x00000001 
+ 00030950  0x00006937 fetch  0x00000001 , 0x00000506 
+ 00030951  0x00006938 nbranch  0x000078ea , 0x00000034 
+ 00030952  0x00006939 call  0x00007870 
+ 00030953  0x0000693a branch  0x000078dc 
+ 00030954  0x0000693c jam  0x00000000 , 0x00000506 
+ 00030955  0x0000693d arg  0x0000050a , 0x00000006 
+ 00030956  0x0000693e arg  0x0000059a , 0x00000005 
+ 00030957  0x0000693f call  0x0000770e 
+ 00030958  0x00006940 branch  0x000078dc 
+ 00030959  0x00006944 arg  0x000005ca , 0x00000011 
+ 00030960  0x00006945 arg  0x0000069a , 0x00000005 
+ 00030961  0x00006946 call  0x000077da 
+ 00030962  0x00006947 arg  0x0000069a , 0x00000011 
+ 00030963  0x00006948 arg  0x00000652 , 0x00000005 
+ 00030964  0x00006949 call  0x000077c4 
+ 00030965  0x0000694a arg  0x0000059a , 0x00000011 
+ 00030966  0x0000694b arg  0x00000652 , 0x00000012 
+ 00030967  0x0000694c arg  0x00000552 , 0x00000005 
+ 00030968  0x0000694d call  0x000077a2 
+ 00030969  0x0000694e arg  0x0000069a , 0x00000011 
+ 00030970  0x0000694f arg  0x00000652 , 0x00000012 
+ 00030971  0x00006950 arg  0x00000682 , 0x00000005 
+ 00030972  0x00006951 call  0x000077a2 
+ 00030973  0x00006952 arg  0x000005b2 , 0x00000011 
+ 00030974  0x00006953 arg  0x00000682 , 0x00000012 
+ 00030975  0x00006954 arg  0x0000056a , 0x00000005 
+ 00030976  0x00006955 branch  0x000077a2 
+ 00030977  0x0000695a ifetch  0x00000004 , 0x00000006 
+ 00030978  0x0000695b force  0x00000004 , 0x00000011 
+ 00030979  0x0000695c increase  0x00000003 , 0x00000005 
+ 00030980  0x0000695e istore  0x00000001 , 0x00000005 
+ 00030981  0x0000695f rshift8  0x0000003f , 0x0000003f 
+ 00030982  0x00006960 increase  0xfffffffe , 0x00000005 
+ 00030983  0x00006961 increase  0xffffffff , 0x00000011 
+ 00030984  0x00006962 nbranch  0x00007904 , 0x00000005 
+ 00030985  0x00006963 increase  0x00000005 , 0x00000005 
+ 00030986  0x00006964 loop  0x00007901 
+ 00030987  0x00006965 rtn 
+ 00030988  0x00006969 lshift2  0x00000007 , 0x0000003f 
+ 00030989  0x0000696a iadd  0x0000000b , 0x00000006 
+ 00030990  0x0000696b ifetch  0x00000004 , 0x00000006 
+ 00030991  0x0000696c rtn 
+ 00030992  0x0000696f force  0x00000010 , 0x00000030 
+ 00030993  0x00006970 arg  0x0000050a , 0x0000000b 
+ 00030994  0x00006972 add  0x00000030 , 0xfffffff9 , 0x00000007 
+ 00030995  0x00006973 call  0x0000790c 
+ 00030996  0x00006974 iforce  0x00000002 
+ 00030997  0x00006975 add  0x00000030 , 0xfffffff0 , 0x00000007 
+ 00030998  0x00006976 call  0x0000790c 
+ 00030999  0x00006977 iadd  0x00000002 , 0x00000002 
+ 00031000  0x00006978 add  0x00000030 , 0xfffffffe , 0x00000007 
+ 00031001  0x00006979 call  0x0000790c 
+ 00031002  0x0000697a shasx  0x0000003f , 0x00000001 , 0x0000003f 
+ 00031003  0x0000697b iadd  0x00000002 , 0x00000002 
+ 00031004  0x0000697c add  0x00000030 , 0xfffffff1 , 0x00000007 
+ 00031005  0x0000697d call  0x0000790c 
+ 00031006  0x0000697e shasx  0x0000003f , 0x00000000 , 0x0000003f 
+ 00031007  0x0000697f iadd  0x00000002 , 0x00000002 
+ 00031008  0x00006980 lshift2  0x00000030 , 0x0000003f 
+ 00031009  0x00006981 iadd  0x0000000b , 0x00000005 
+ 00031010  0x00006982 istoret  0x00000004 , 0x00000005 
+ 00031011  0x00006983 increase  0x00000001 , 0x00000030 
+ 00031012  0x00006984 compare  0x00000040 , 0x00000030 , 0x000000ff 
+ 00031013  0x00006985 nbranch  0x00007912 , 0x00000001 
+ 00031014  0x00006986 rtn 
+ 00031015  0x0000698a arg  0x00000822 , 0x00000006 
+ 00031016  0x0000698b force  0x00000007 , 0x00000038 
+ 00031017  0x0000698d ifetch  0x00000004 , 0x00000006 
+ 00031018  0x0000698e iforce  0x0000002f 
+ 00031019  0x0000698f increase  0xffffffff , 0x00000038 
+ 00031020  0x00006990 branch  0x00007929 , 0x00000002 
+ 00031021  0x00006991 rtn 
+ 00031022  0x00006994 set1  0x00000025 , 0x00000000 
+ 00031023  0x00006995 bpatch  0x000000e8 , 0x0000403d 
+ 00031024  0x00006996 call  0x00007910 
+ 00031025  0x00006997 arg  0x0000060a , 0x00000005 
+ 00031026  0x00006998 force  0x00000000 , 0x00000038 
+ 00031027  0x0000699a deposit  0x0000002f 
+ 00031028  0x0000699b istore  0x00000004 , 0x00000005 
+ 00031029  0x0000699c increase  0x00000001 , 0x00000038 
+ 00031030  0x0000699d compare  0x00000008 , 0x00000038 , 0x000000ff 
+ 00031031  0x0000699e nbranch  0x00007933 , 0x00000001 
+ 00031032  0x0000699f call  0x000071e2 
+ 00031033  0x000069a0 arg  0x00008700 , 0x0000000b 
+ 00031034  0x000069a1 arg  0x0000050a , 0x00000030 
+ 00031035  0x000069a2 force  0x00000040 , 0x00000039 
+ 00031036  0x000069a4 ifetcht  0x00000004 , 0x00000030 
+ 00031037  0x000069a5 ifetch  0x00000004 , 0x0000000b 
+ 00031038  0x000069a6 increase  0x00000004 , 0x0000000b 
+ 00031039  0x000069a7 increase  0x00000004 , 0x00000030 
+ 00031040  0x000069a8 iadd  0x00000002 , 0x0000003f 
+ 00031041  0x000069a9 force  0x00000007 , 0x00000038 
+ 00031042  0x000069aa iadd  0x0000002f , 0x00000002 
+ 00031043  0x000069ab force  0x00000004 , 0x00000038 
+ 00031044  0x000069ac shasx  0x0000002f , 0x00000003 , 0x0000003f 
+ 00031045  0x000069ad iadd  0x00000002 , 0x00000002 
+ 00031046  0x000069ae force  0x00000005 , 0x00000038 
+ 00031047  0x000069af deposit  0x0000002f 
+ 00031048  0x000069b0 force  0x00000006 , 0x00000038 
+ 00031049  0x000069b1 ixor  0x0000002f , 0x0000003f 
+ 00031050  0x000069b2 force  0x00000004 , 0x00000038 
+ 00031051  0x000069b3 iand  0x0000002f , 0x0000003f 
+ 00031052  0x000069b4 force  0x00000006 , 0x00000038 
+ 00031053  0x000069b5 ixor  0x0000002f , 0x0000003f 
+ 00031054  0x000069b6 iadd  0x00000002 , 0x00000002 
+ 00031055  0x000069b7 force  0x00000007 , 0x00000038 
+ 00031056  0x000069b8 copy  0x00000002 , 0x0000002f 
+ 00031057  0x000069b9 force  0x00000003 , 0x00000038 
+ 00031058  0x000069ba deposit  0x0000002f 
+ 00031059  0x000069bb iadd  0x00000002 , 0x0000002f 
+ 00031060  0x000069bc force  0x00000000 , 0x00000038 
+ 00031061  0x000069bd deposit  0x0000002f 
+ 00031062  0x000069be force  0x00000001 , 0x00000038 
+ 00031063  0x000069bf iand  0x0000002f , 0x00000002 
+ 00031064  0x000069c0 ior  0x0000002f , 0x0000003f 
+ 00031065  0x000069c1 force  0x00000002 , 0x00000038 
+ 00031066  0x000069c2 iand  0x0000002f , 0x0000003f 
+ 00031067  0x000069c3 ior  0x00000002 , 0x00000002 
+ 00031068  0x000069c4 force  0x00000000 , 0x00000038 
+ 00031069  0x000069c5 shasx  0x0000002f , 0x00000002 , 0x0000003f 
+ 00031070  0x000069c6 iadd  0x00000002 , 0x0000003f 
+ 00031071  0x000069c7 force  0x00000007 , 0x00000038 
+ 00031072  0x000069c8 iadd  0x0000002f , 0x0000002f 
+ 00031073  0x000069c9 regexrot 
+ 00031074  0x000069ca loop  0x0000793c 
+ 00031075  0x000069cb arg  0x0000060a , 0x00000006 
+ 00031076  0x000069cc force  0x00000000 , 0x00000038 
+ 00031077  0x000069ce ifetch  0x00000004 , 0x00000006 
+ 00031078  0x000069cf iadd  0x0000002f , 0x0000002f 
+ 00031079  0x000069d0 increase  0x00000001 , 0x00000038 
+ 00031080  0x000069d1 compare  0x00000008 , 0x00000038 , 0x000000ff 
+ 00031081  0x000069d2 nbranch  0x00007965 , 0x00000001 
+ 00031082  0x000069d3 branch  0x000071e6 
+ 00031083  0x000069d7 arg  0x00000962 , 0x00000005 
+ 00031084  0x000069d8 force  0x00000007 , 0x00000038 
+ 00031085  0x000069da deposit  0x0000002f 
+ 00031086  0x000069db istore  0x00000004 , 0x00000005 
+ 00031087  0x000069dc increase  0xffffffff , 0x00000038 
+ 00031088  0x000069dd branch  0x0000796d , 0x00000002 
+ 00031089  0x000069de rtn 
+ 00031090  0x000069e2 arg  0x0000050a , 0x00000005 
+ 00031091  0x000069e3 increase  0xfffffffc , 0x00000006 
+ 00031092  0x000069e4 sub  0x00000039 , 0x00000010 , 0x00000011 
+ 00031093  0x000069e6 ifetch  0x00000004 , 0x00000006 
+ 00031094  0x000069e7 ixor  0x00000002 , 0x0000003f 
+ 00031095  0x000069e8 istore  0x00000004 , 0x00000005 
+ 00031096  0x000069e9 increase  0xfffffff8 , 0x00000006 
+ 00031097  0x000069ea loop  0x00007975 
+ 00031098  0x000069eb copy  0x00000011 , 0x00000039 
+ 00031099  0x000069ec deposit  0x00000002 
+ 00031100  0x000069ee istore  0x00000004 , 0x00000005 
+ 00031101  0x000069ef loop  0x0000797c 
+ 00031102  0x000069f0 rtn 
+ 00031103  0x000069f3 call  0x00007984 
+ 00031104  0x000069f4 call  0x0000796b 
+ 00031105  0x000069f5 branch  0x000079aa 
+ 00031106  0x000069f8 call  0x00007984 
+ 00031107  0x000069f9 branch  0x000079aa 
+ 00031108  0x000069fc arg  0x00000902 , 0x00000006 
+ 00031109  0x000069fd arg  0x0000050a , 0x00000005 
+ 00031110  0x000069fe force  0x00000006 , 0x00000039 
+ 00031111  0x000069ff call  0x00007a90 
+ 00031112  0x00006a00 arg  0x000046ca , 0x00000006 
+ 00031113  0x00006a01 force  0x00000006 , 0x00000039 
+ 00031114  0x00006a02 call  0x00007a90 
+ 00031115  0x00006a03 arg  0x00000962 , 0x00000006 
+ 00031116  0x00006a04 call  0x00007a8f 
+ 00031117  0x00006a05 call  0x00007927 
+ 00031118  0x00006a06 call  0x0000792e 
+ 00031119  0x00006a07 arg  0x00000952 , 0x00000006 
+ 00031120  0x00006a08 arg  0x0000050a , 0x00000005 
+ 00031121  0x00006a09 branch  0x000079a1 
+ 00031122  0x00006a0c arg  0x000046ca , 0x00000006 
+ 00031123  0x00006a0d arg  0x0000050a , 0x00000005 
+ 00031124  0x00006a0e force  0x00000006 , 0x00000039 
+ 00031125  0x00006a0f call  0x00007a90 
+ 00031126  0x00006a10 arg  0x00000902 , 0x00000006 
+ 00031127  0x00006a11 force  0x00000006 , 0x00000039 
+ 00031128  0x00006a12 call  0x00007a90 
+ 00031129  0x00006a13 arg  0x00000952 , 0x00000006 
+ 00031130  0x00006a14 call  0x00007a8f 
+ 00031131  0x00006a15 call  0x00007927 
+ 00031132  0x00006a16 call  0x0000792e 
+ 00031133  0x00006a17 arg  0x00000962 , 0x00000006 
+ 00031134  0x00006a18 arg  0x0000050a , 0x00000005 
+ 00031135  0x00006a19 call  0x000079a1 
+ 00031136  0x00006a1a branch  0x000079aa 
+ 00031137  0x00006a1d call  0x00007a8f 
+ 00031138  0x00006a1e setarg  0x00800000 
+ 00031139  0x00006a1f lshift8  0x0000003f , 0x0000003f 
+ 00031140  0x00006a20 istore  0x00000004 , 0x00000005 
+ 00031141  0x00006a21 force  0x00000005 , 0x00000039 
+ 00031142  0x00006a22 call  0x00007e91 
+ 00031143  0x00006a23 setarg  0x00000280 
+ 00031144  0x00006a24 istore  0x00000004 , 0x00000005 
+ 00031145  0x00006a25 branch  0x0000792e 
+ 00031146  0x00006a27 fetch  0x00000004 , 0x00000962 
+ 00031147  0x00006a29 arg  0x000003e8 , 0x00000011 
+ 00031148  0x00006a2a idiv  0x00000011 
+ 00031149  0x00006a2b call  0x00007f53 
+ 00031150  0x00006a2c remainder  0x0000003f 
+ 00031151  0x00006a2d store  0x00000004 , 0x000008de 
+ 00031152  0x00006a2e quotient  0x0000003f 
+ 00031153  0x00006a2f arg  0x000003e8 , 0x00000011 
+ 00031154  0x00006a30 idiv  0x00000011 
+ 00031155  0x00006a31 call  0x00007f53 
+ 00031156  0x00006a32 remainder  0x0000003f 
+ 00031157  0x00006a33 arg  0x000003e8 , 0x00000011 
+ 00031158  0x00006a34 imul32  0x00000011 , 0x0000003f 
+ 00031159  0x00006a35 fetcht  0x00000004 , 0x000008de 
+ 00031160  0x00006a36 iadd  0x00000002 , 0x0000003f 
+ 00031161  0x00006a37 store  0x00000004 , 0x000008de 
+ 00031162  0x00006a38 rtn 
+ 00031163  0x00006a3b jam  0x00000000 , 0x000046ec 
+ 00031164  0x00006a3c branch  0x000079bf 
+ 00031165  0x00006a3f fetch  0x00000001 , 0x000046ea 
+ 00031166  0x00006a40 bne  0x00000002 , 0x000079bb 
+ 00031167  0x00006a42 set1  0x00000025 , 0x00000000 
+ 00031168  0x00006a43 bpatch  0x000000e9 , 0x0000403d 
+ 00031169  0x00006a44 setarg  0x00363636 
+ 00031170  0x00006a45 lshift8  0x0000003f , 0x00000002 
+ 00031171  0x00006a46 or_into  0x00000036 , 0x00000002 
+ 00031172  0x00006a47 fetch  0x00000002 , 0x000009a2 
+ 00031173  0x00006a48 copy  0x0000003f , 0x00000006 
+ 00031174  0x00006a49 force  0x00000004 , 0x00000039 
+ 00031175  0x00006a4a call  0x00007972 
+ 00031176  0x00006a4b call  0x00007927 
+ 00031177  0x00006a4c call  0x0000792e 
+ 00031178  0x00006a4d fetch  0x00000002 , 0x000009a4 
+ 00031179  0x00006a4e copy  0x0000003f , 0x00000006 
+ 00031180  0x00006a4f arg  0x0000050a , 0x00000005 
+ 00031181  0x00006a50 force  0x00000006 , 0x00000039 
+ 00031182  0x00006a51 call  0x00007a90 
+ 00031183  0x00006a52 fetch  0x00000002 , 0x000009a6 
+ 00031184  0x00006a53 copy  0x0000003f , 0x00000006 
+ 00031185  0x00006a54 force  0x00000006 , 0x00000039 
+ 00031186  0x00006a55 call  0x00007a90 
+ 00031187  0x00006a56 setarg  0x00800000 
+ 00031188  0x00006a57 istore  0x00000003 , 0x00000005 
+ 00031189  0x00006a59 fetch  0x00000001 , 0x000046ec 
+ 00031190  0x00006a5b istore  0x00000001 , 0x00000005 
+ 00031191  0x00006a5c force  0x00000000 , 0x0000003f 
+ 00031192  0x00006a5d istore  0x00000008 , 0x00000005 
+ 00031193  0x00006a5e setarg  0x00000388 
+ 00031194  0x00006a5f istore  0x00000004 , 0x00000005 
+ 00031195  0x00006a60 call  0x0000792e 
+ 00031196  0x00006a61 call  0x0000796b 
+ 00031197  0x00006a62 arg  0x00000962 , 0x00000006 
+ 00031198  0x00006a63 arg  0x0000062a , 0x00000005 
+ 00031199  0x00006a64 call  0x00007e85 
+ 00031200  0x00006a66 setarg  0x005c5c5c 
+ 00031201  0x00006a67 lshift8  0x0000003f , 0x00000002 
+ 00031202  0x00006a68 or_into  0x0000005c , 0x00000002 
+ 00031203  0x00006a69 fetch  0x00000002 , 0x000009a2 
+ 00031204  0x00006a6a copy  0x0000003f , 0x00000006 
+ 00031205  0x00006a6b force  0x00000004 , 0x00000039 
+ 00031206  0x00006a6c call  0x00007972 
+ 00031207  0x00006a6d call  0x00007927 
+ 00031208  0x00006a6e call  0x0000792e 
+ 00031209  0x00006a6f arg  0x0000064a , 0x00000006 
+ 00031210  0x00006a70 arg  0x0000050a , 0x00000005 
+ 00031211  0x00006a71 force  0x00000008 , 0x00000039 
+ 00031212  0x00006a72 call  0x00007a90 
+ 00031213  0x00006a73 setarg  0x00800000 
+ 00031214  0x00006a74 lshift8  0x0000003f , 0x0000003f 
+ 00031215  0x00006a75 istore  0x00000004 , 0x00000005 
+ 00031216  0x00006a76 call  0x00007e90 
+ 00031217  0x00006a77 setarg  0x00000300 
+ 00031218  0x00006a78 istore  0x00000004 , 0x00000005 
+ 00031219  0x00006a79 call  0x0000792e 
+ 00031220  0x00006a7a branch  0x0000796b 
+ 00031221  0x00006a7e setarg  0x00363636 
+ 00031222  0x00006a7f lshift8  0x0000003f , 0x00000002 
+ 00031223  0x00006a80 or_into  0x00000036 , 0x00000002 
+ 00031224  0x00006a81 arg  0x00000942 , 0x00000006 
+ 00031225  0x00006a82 force  0x00000006 , 0x00000039 
+ 00031226  0x00006a83 call  0x00007972 
+ 00031227  0x00006a84 call  0x00007927 
+ 00031228  0x00006a85 call  0x0000792e 
+ 00031229  0x00006a86 fetch  0x00000002 , 0x000009ae 
+ 00031230  0x00006a87 copy  0x0000003f , 0x00000006 
+ 00031231  0x00006a88 arg  0x0000050a , 0x00000005 
+ 00031232  0x00006a89 call  0x00007a8f 
+ 00031233  0x00006a8a fetch  0x00000002 , 0x000009b0 
+ 00031234  0x00006a8b copy  0x0000003f , 0x00000006 
+ 00031235  0x00006a8c call  0x00007a8f 
+ 00031236  0x00006a8e setarg  0x0062746c 
+ 00031237  0x00006a8f lshift8  0x0000003f , 0x0000003f 
+ 00031238  0x00006a90 or_into  0x0000006b , 0x0000003f 
+ 00031239  0x00006a91 istore  0x00000004 , 0x00000005 
+ 00031240  0x00006a92 arg  0x00000657 , 0x00000006 
+ 00031241  0x00006a93 force  0x00000003 , 0x00000039 
+ 00031242  0x00006a94 call  0x00007a90 
+ 00031243  0x00006a96 setarg  0x00800000 
+ 00031244  0x00006a97 lshift8  0x0000003f , 0x0000003f 
+ 00031245  0x00006a98 istore  0x00000004 , 0x00000005 
+ 00031246  0x00006a99 force  0x00000000 , 0x0000003f 
+ 00031247  0x00006a9a istore  0x00000008 , 0x00000005 
+ 00031248  0x00006a9b setarg  0x00000380 
+ 00031249  0x00006a9c istore  0x00000004 , 0x00000005 
+ 00031250  0x00006a9d call  0x0000792e 
+ 00031251  0x00006a9f call  0x0000796b 
+ 00031252  0x00006aa0 arg  0x00000962 , 0x00000006 
+ 00031253  0x00006aa1 arg  0x0000062a , 0x00000005 
+ 00031254  0x00006aa2 call  0x00007e85 
+ 00031255  0x00006aa4 setarg  0x005c5c5c 
+ 00031256  0x00006aa5 lshift8  0x0000003f , 0x00000002 
+ 00031257  0x00006aa6 or_into  0x0000005c , 0x00000002 
+ 00031258  0x00006aa7 arg  0x00000942 , 0x00000006 
+ 00031259  0x00006aa8 force  0x00000006 , 0x00000039 
+ 00031260  0x00006aa9 call  0x00007972 
+ 00031261  0x00006aaa call  0x00007927 
+ 00031262  0x00006aab call  0x0000792e 
+ 00031263  0x00006aac arg  0x0000064a , 0x00000006 
+ 00031264  0x00006aad arg  0x0000050a , 0x00000005 
+ 00031265  0x00006aae force  0x00000008 , 0x00000039 
+ 00031266  0x00006aaf call  0x00007a90 
+ 00031267  0x00006ab0 setarg  0x00800000 
+ 00031268  0x00006ab1 lshift8  0x0000003f , 0x0000003f 
+ 00031269  0x00006ab2 istore  0x00000004 , 0x00000005 
+ 00031270  0x00006ab3 call  0x00007e90 
+ 00031271  0x00006ab4 setarg  0x00000300 
+ 00031272  0x00006ab5 istore  0x00000004 , 0x00000005 
+ 00031273  0x00006ab6 call  0x0000792e 
+ 00031274  0x00006ab7 branch  0x0000796b 
+ 00031275  0x00006abb fetch  0x00000001 , 0x000046ea 
+ 00031276  0x00006abc bne  0x00000002 , 0x00007a3d 
+ 00031277  0x00006abe set1  0x00000025 , 0x00000000 
+ 00031278  0x00006abf bpatch  0x000000ea , 0x0000403d 
+ 00031279  0x00006ac0 setarg  0x00363636 
+ 00031280  0x00006ac1 lshift8  0x0000003f , 0x00000002 
+ 00031281  0x00006ac2 or_into  0x00000036 , 0x00000002 
+ 00031282  0x00006ac3 arg  0x00000942 , 0x00000006 
+ 00031283  0x00006ac4 force  0x00000006 , 0x00000039 
+ 00031284  0x00006ac5 call  0x00007972 
+ 00031285  0x00006ac6 call  0x00007927 
+ 00031286  0x00006ac7 call  0x0000792e 
+ 00031287  0x00006ac8 arg  0x00000962 , 0x00000006 
+ 00031288  0x00006ac9 arg  0x0000050a , 0x00000005 
+ 00031289  0x00006aca call  0x00007a8f 
+ 00031290  0x00006acb arg  0x00000952 , 0x00000006 
+ 00031291  0x00006acc call  0x00007a8f 
+ 00031292  0x00006acd branch  0x00007a52 
+ 00031293  0x00006ad0 setarg  0x00000000 
+ 00031294  0x00006ad1 store  0x00000004 , 0x00004719 
+ 00031295  0x00006ad2 branch  0x00007a2d 
+ 00031296  0x00006ad5 setarg  0x00000000 
+ 00031297  0x00006ad6 store  0x00000004 , 0x00004719 
+ 00031298  0x00006ad7 branch  0x00007a45 
+ 00031299  0x00006adb fetch  0x00000001 , 0x000046ea 
+ 00031300  0x00006adc bne  0x00000002 , 0x00007a40 
+ 00031301  0x00006ade setarg  0x00363636 
+ 00031302  0x00006adf lshift8  0x0000003f , 0x00000002 
+ 00031303  0x00006ae0 or_into  0x00000036 , 0x00000002 
+ 00031304  0x00006ae1 arg  0x00000942 , 0x00000006 
+ 00031305  0x00006ae2 force  0x00000006 , 0x00000039 
+ 00031306  0x00006ae3 call  0x00007972 
+ 00031307  0x00006ae4 call  0x00007927 
+ 00031308  0x00006ae5 call  0x0000792e 
+ 00031309  0x00006ae7 arg  0x00000952 , 0x00000006 
+ 00031310  0x00006ae8 arg  0x0000050a , 0x00000005 
+ 00031311  0x00006ae9 call  0x00007a8f 
+ 00031312  0x00006aea arg  0x00000962 , 0x00000006 
+ 00031313  0x00006aeb call  0x00007a8f 
+ 00031314  0x00006aed setarg  0x00000000 
+ 00031315  0x00006aee istore  0x00000008 , 0x00000005 
+ 00031316  0x00006aef istore  0x00000004 , 0x00000005 
+ 00031317  0x00006af0 fetch  0x00000004 , 0x00004719 
+ 00031318  0x00006af1 istore  0x00000004 , 0x00000005 
+ 00031319  0x00006af3 copy  0x00000005 , 0x00000002 
+ 00031320  0x00006af4 jam  0x00000080 , 0x0000064a 
+ 00031321  0x00006af5 copy  0x00000002 , 0x00000005 
+ 00031322  0x00006af6 arg  0x0000065a , 0x00000006 
+ 00031323  0x00006af7 call  0x00007a8f 
+ 00031324  0x00006af9 call  0x0000792e 
+ 00031325  0x00006afb arg  0x0000050a , 0x00000005 
+ 00031326  0x00006afc force  0x00000007 , 0x00000039 
+ 00031327  0x00006afd call  0x00007e91 
+ 00031328  0x00006afe istore  0x00000004 , 0x00000005 
+ 00031329  0x00006aff setarg  0x000003f8 
+ 00031330  0x00006b00 istore  0x00000004 , 0x00000005 
+ 00031331  0x00006b01 call  0x0000792e 
+ 00031332  0x00006b02 call  0x0000796b 
+ 00031333  0x00006b04 arg  0x00000962 , 0x00000006 
+ 00031334  0x00006b05 arg  0x0000062a , 0x00000005 
+ 00031335  0x00006b06 call  0x00007e85 
+ 00031336  0x00006b08 setarg  0x005c5c5c 
+ 00031337  0x00006b09 lshift8  0x0000003f , 0x00000002 
+ 00031338  0x00006b0a or_into  0x0000005c , 0x00000002 
+ 00031339  0x00006b0b arg  0x00000942 , 0x00000006 
+ 00031340  0x00006b0c force  0x00000006 , 0x00000039 
+ 00031341  0x00006b0d call  0x00007972 
+ 00031342  0x00006b0e call  0x00007927 
+ 00031343  0x00006b0f call  0x0000792e 
+ 00031344  0x00006b10 arg  0x0000064a , 0x00000006 
+ 00031345  0x00006b11 arg  0x0000050a , 0x00000005 
+ 00031346  0x00006b12 force  0x00000008 , 0x00000039 
+ 00031347  0x00006b13 call  0x00007a90 
+ 00031348  0x00006b14 setarg  0x00800000 
+ 00031349  0x00006b15 lshift8  0x0000003f , 0x0000003f 
+ 00031350  0x00006b16 istore  0x00000004 , 0x00000005 
+ 00031351  0x00006b17 call  0x00007e90 
+ 00031352  0x00006b18 setarg  0x00000300 
+ 00031353  0x00006b19 istore  0x00000004 , 0x00000005 
+ 00031354  0x00006b1a call  0x0000792e 
+ 00031355  0x00006b1b branch  0x0000796b 
+ 00031356  0x00006b23 jam  0x000000c0 , 0x00000507 
+ 00031357  0x00006b25 fetch  0x00000001 , 0x00000507 
+ 00031358  0x00006b26 rtn  0x00000034 
+ 00031359  0x00006b27 increase  0xffffffff , 0x0000003f 
+ 00031360  0x00006b28 store  0x00000001 , 0x00000507 
+ 00031361  0x00006b29 arg  0x000005e2 , 0x00000006 
+ 00031362  0x00006b2a call  0x00007708 
+ 00031363  0x00006b2b branch  0x00007a7d , 0x00000001 
+ 00031364  0x00006b2c arg  0x0000050a , 0x00000006 
+ 00031365  0x00006b2d arg  0x0000059a , 0x00000005 
+ 00031366  0x00006b2e branch  0x0000770e 
+ 00031367  0x00006b31 call  0x0000781f 
+ 00031368  0x00006b32 fetch  0x00000001 , 0x00000507 
+ 00031369  0x00006b33 increase  0xffffffff , 0x0000003f 
+ 00031370  0x00006b34 store  0x00000001 , 0x00000507 
+ 00031371  0x00006b35 arg  0x000005e2 , 0x00000006 
+ 00031372  0x00006b36 call  0x00007708 
+ 00031373  0x00006b37 rtn  0x00000001 
+ 00031374  0x00006b38 branch  0x00007870 
+ 00031375  0x00006b3b force  0x00000004 , 0x00000039 
+ 00031376  0x00006b3d increase  0xfffffffc , 0x00000006 
+ 00031377  0x00006b3f ifetch  0x00000004 , 0x00000006 
+ 00031378  0x00006b40 istore  0x00000004 , 0x00000005 
+ 00031379  0x00006b41 increase  0xfffffff8 , 0x00000006 
+ 00031380  0x00006b42 loop  0x00007a91 
+ 00031381  0x00006b43 rtn 
+ 00031382  0x00006b49 set1  0x00000025 , 0x00000000 
+ 00031383  0x00006b4a bpatch  0x000000eb , 0x0000403d 
+ 00031384  0x00006b4b fetch  0x00000001 , 0x00004563 
+ 00031385  0x00006b4c branch  0x000048de , 0x00000034 
+ 00031386  0x00006b4d call  0x000048da 
+ 00031387  0x00006b4e call  0x000075fb 
+ 00031388  0x00006b50 branch  0x00007a9d 
+ 00031389  0x00006b56 fetch  0x00000001 , 0x00004568 
+ 00031390  0x00006b57 rtnne  0x00000000 
+ 00031391  0x00006b58 fetch  0x00000001 , 0x00004565 
+ 00031392  0x00006b59 rtnne  0x00000000 
+ 00031393  0x00006b5b arg  0x0000463a , 0x00000005 
+ 00031394  0x00006b5c force  0x0000000f , 0x00000007 
+ 00031395  0x00006b5d call  0x000076bb 
+ 00031396  0x00006b5e random  0x0000003f 
+ 00031397  0x00006b5f rshift  0x0000003f , 0x0000003f 
+ 00031398  0x00006b60 istore  0x00000002 , 0x00000005 
+ 00031399  0x00006b62 arg  0x0000068a , 0x00000005 
+ 00031400  0x00006b63 arg  0x0000463a , 0x00000006 
+ 00031401  0x00006b64 call  0x00007e85 
+ 00031402  0x00006b66 arg  0x0000056a , 0x00000005 
+ 00031403  0x00006b67 arg  0x00000882 , 0x00000006 
+ 00031404  0x00006b68 call  0x00007e7b 
+ 00031405  0x00006b6a arg  0x000005aa , 0x00000005 
+ 00031406  0x00006b6b call  0x00007e9b 
+ 00031407  0x00006b6c jam  0x00000001 , 0x000005aa 
+ 00031408  0x00006b6e call  0x00007ae8 
+ 00031409  0x00006b6f jam  0x00000003 , 0x00004565 
+ 00031410  0x00006b70 rtn 
+ 00031411  0x00006b73 arg  0x0000465a , 0x00000005 
+ 00031412  0x00006b74 arg  0x000005ca , 0x00000006 
+ 00031413  0x00006b75 call  0x00007e7b 
+ 00031414  0x00006b76 jam  0x00000003 , 0x00004568 
+ 00031415  0x00006b77 jam  0x00000000 , 0x00004565 
+ 00031416  0x00006b78 rtn 
+ 00031417  0x00006b7d fetch  0x00000001 , 0x000008dd 
+ 00031418  0x00006b7e rtnne  0x00000000 
+ 00031419  0x00006b7f fetch  0x00000001 , 0x00004565 
+ 00031420  0x00006b80 rtnne  0x00000000 
+ 00031421  0x00006b82 arg  0x0000068a , 0x00000005 
+ 00031422  0x00006b83 arg  0x0000463a , 0x00000006 
+ 00031423  0x00006b84 call  0x00007e85 
+ 00031424  0x00006b86 arg  0x0000056a , 0x00000005 
+ 00031425  0x00006b87 arg  0x000008e2 , 0x00000006 
+ 00031426  0x00006b88 call  0x00007e7b 
+ 00031427  0x00006b8a arg  0x000005aa , 0x00000005 
+ 00031428  0x00006b8b call  0x00007e9b 
+ 00031429  0x00006b8c jam  0x00000001 , 0x000005aa 
+ 00031430  0x00006b8e call  0x00007ae8 
+ 00031431  0x00006b8f jam  0x00000004 , 0x00004565 
+ 00031432  0x00006b90 rtn 
+ 00031433  0x00006b95 arg  0x00000922 , 0x00000005 
+ 00031434  0x00006b96 arg  0x000005ca , 0x00000006 
+ 00031435  0x00006b97 call  0x00007e85 
+ 00031436  0x00006b98 jam  0x00000003 , 0x000008dd 
+ 00031437  0x00006b99 jam  0x00000000 , 0x00004565 
+ 00031438  0x00006b9a rtn 
+ 00031439  0x00006b9f fetch  0x00000001 , 0x00004563 
+ 00031440  0x00006ba0 rtn  0x00000034 
+ 00031441  0x00006ba1 fetch  0x00000001 , 0x00004565 
+ 00031442  0x00006ba2 rtn  0x00000034 
+ 00031443  0x00006ba3 increase  0x00000080 , 0x0000003f 
+ 00031444  0x00006ba4 store  0x00000001 , 0x00004565 
+ 00031445  0x00006ba5 rtnbit1  0x00000007 
+ 00031446  0x00006ba6 fetch  0x00000002 , 0x00000507 
+ 00031447  0x00006ba7 branch  0x00007ad9 , 0x00000034 
+ 00031448  0x00006ba8 branch  0x00007ae0 
+ 00031449  0x00006bab set1  0x00000025 , 0x00000000 
+ 00031450  0x00006bac bpatch  0x000000ec , 0x0000403d 
+ 00031451  0x00006bad call  0x00007af6 
+ 00031452  0x00006bae fetch  0x00000001 , 0x00004565 
+ 00031453  0x00006baf beq  0x00000003 , 0x00007ab3 
+ 00031454  0x00006bb0 beq  0x00000004 , 0x00007ac9 
+ 00031455  0x00006bb1 rtn 
+ 00031456  0x00006bb5 call  0x00007b08 
+ 00031457  0x00006bb6 fetch  0x00000002 , 0x00000507 
+ 00031458  0x00006bb7 increase  0xffffffff , 0x0000003f 
+ 00031459  0x00006bb8 store  0x00000002 , 0x00000507 
+ 00031460  0x00006bb9 arg  0x0000068a , 0x00000006 
+ 00031461  0x00006bba call  0x00007708 
+ 00031462  0x00006bbb rtn  0x00000001 
+ 00031463  0x00006bbc branch  0x00007b59 
+ 00031464  0x00006bbf set1  0x00000025 , 0x00000000 
+ 00031465  0x00006bc0 bpatch  0x000000ed , 0x0000403d 
+ 00031466  0x00006bc1 setarg  0x00000100 , 0x0000003f 
+ 00031467  0x00006bc2 store  0x00000002 , 0x00000507 
+ 00031468  0x00006bc4 fetch  0x00000002 , 0x00000507 
+ 00031469  0x00006bc5 rtn  0x00000034 
+ 00031470  0x00006bc6 increase  0xffffffff , 0x0000003f 
+ 00031471  0x00006bc7 store  0x00000002 , 0x00000507 
+ 00031472  0x00006bc8 arg  0x0000068a , 0x00000006 
+ 00031473  0x00006bc9 call  0x00007708 
+ 00031474  0x00006bca branch  0x00007aec , 0x00000001 
+ 00031475  0x00006bcb arg  0x0000056a , 0x00000006 
+ 00031476  0x00006bcc arg  0x0000062a , 0x00000005 
+ 00031477  0x00006bcd branch  0x00007e7a 
+ 00031478  0x00006bd1 arg  0x0000066a , 0x00000011 
+ 00031479  0x00006bd2 arg  0x0000076a , 0x00000005 
+ 00031480  0x00006bd3 call  0x00007bc5 
+ 00031481  0x00006bd4 arg  0x0000076a , 0x00000011 
+ 00031482  0x00006bd5 arg  0x0000070a , 0x00000005 
+ 00031483  0x00006bd6 call  0x00007c9c 
+ 00031484  0x00006bd7 arg  0x0000062a , 0x00000011 
+ 00031485  0x00006bd8 arg  0x0000070a , 0x00000012 
+ 00031486  0x00006bd9 arg  0x000005ca , 0x00000005 
+ 00031487  0x00006bda call  0x00007c03 
+ 00031488  0x00006bdb arg  0x0000076a , 0x00000011 
+ 00031489  0x00006bdc arg  0x0000070a , 0x00000012 
+ 00031490  0x00006bdd arg  0x0000074a , 0x00000005 
+ 00031491  0x00006bde call  0x00007c03 
+ 00031492  0x00006bdf arg  0x0000064a , 0x00000011 
+ 00031493  0x00006be0 arg  0x0000074a , 0x00000012 
+ 00031494  0x00006be1 arg  0x000005ea , 0x00000005 
+ 00031495  0x00006be2 branch  0x00007c03 
+ 00031496  0x00006be5 arg  0x0000066a , 0x00000011 
+ 00031497  0x00006be6 arg  0x0000074a , 0x00000005 
+ 00031498  0x00006be7 call  0x00007c9c 
+ 00031499  0x00006be8 arg  0x0000074a , 0x00000011 
+ 00031500  0x00006be9 arg  0x0000076a , 0x00000005 
+ 00031501  0x00006bea call  0x00007c9c 
+ 00031502  0x00006bec arg  0x00000862 , 0x00000011 
+ 00031503  0x00006bed arg  0x0000076a , 0x00000012 
+ 00031504  0x00006bee arg  0x0000076a , 0x00000005 
+ 00031505  0x00006bef call  0x00007c03 
+ 00031506  0x00006bf0 arg  0x0000062a , 0x00000011 
+ 00031507  0x00006bf1 arg  0x0000074a , 0x00000005 
+ 00031508  0x00006bf2 call  0x00007c9c 
+ 00031509  0x00006bf4 arg  0x0000074a , 0x00000006 
+ 00031510  0x00006bf5 arg  0x0000070a , 0x00000005 
+ 00031511  0x00006bf6 call  0x00007e85 
+ 00031512  0x00006bf7 arg  0x0000070a , 0x00000011 
+ 00031513  0x00006bf8 call  0x00007ca3 
+ 00031514  0x00006bf9 arg  0x0000074a , 0x00000011 
+ 00031515  0x00006bfa arg  0x0000070a , 0x00000012 
+ 00031516  0x00006bfb arg  0x0000074a , 0x00000005 
+ 00031517  0x00006bfc call  0x00007ca0 
+ 00031518  0x00006bfe arg  0x0000074a , 0x00000011 
+ 00031519  0x00006bff arg  0x0000076a , 0x00000012 
+ 00031520  0x00006c00 arg  0x0000074a , 0x00000005 
+ 00031521  0x00006c01 call  0x00007ca0 
+ 00031522  0x00006c03 arg  0x0000062a , 0x00000006 
+ 00031523  0x00006c04 arg  0x0000070a , 0x00000005 
+ 00031524  0x00006c05 call  0x00007e85 
+ 00031525  0x00006c06 arg  0x0000064a , 0x00000011 
+ 00031526  0x00006c07 arg  0x0000076a , 0x00000005 
+ 00031527  0x00006c08 call  0x00007c9c 
+ 00031528  0x00006c09 arg  0x0000070a , 0x00000011 
+ 00031529  0x00006c0a call  0x00007ca3 
+ 00031530  0x00006c0b arg  0x0000070a , 0x00000011 
+ 00031531  0x00006c0c call  0x00007ca3 
+ 00031532  0x00006c0d arg  0x0000070a , 0x00000011 
+ 00031533  0x00006c0e arg  0x0000076a , 0x00000012 
+ 00031534  0x00006c0f arg  0x0000070a , 0x00000005 
+ 00031535  0x00006c10 call  0x00007c03 
+ 00031536  0x00006c11 arg  0x0000076a , 0x00000011 
+ 00031537  0x00006c12 arg  0x0000072a , 0x00000005 
+ 00031538  0x00006c13 call  0x00007c9c 
+ 00031539  0x00006c14 arg  0x0000072a , 0x00000011 
+ 00031540  0x00006c15 call  0x00007ca3 
+ 00031541  0x00006c16 arg  0x0000072a , 0x00000011 
+ 00031542  0x00006c17 call  0x00007ca3 
+ 00031543  0x00006c18 arg  0x0000072a , 0x00000011 
+ 00031544  0x00006c19 call  0x00007ca3 
+ 00031545  0x00006c1a arg  0x0000064a , 0x00000006 
+ 00031546  0x00006c1b arg  0x0000076a , 0x00000005 
+ 00031547  0x00006c1c call  0x00007e85 
+ 00031548  0x00006c1d arg  0x0000076a , 0x00000011 
+ 00031549  0x00006c1e call  0x00007ca3 
+ 00031550  0x00006c1f arg  0x0000076a , 0x00000011 
+ 00031551  0x00006c20 arg  0x0000066a , 0x00000012 
+ 00031552  0x00006c21 arg  0x0000066a , 0x00000005 
+ 00031553  0x00006c22 call  0x00007c03 
+ 00031554  0x00006c25 arg  0x0000074a , 0x00000011 
+ 00031555  0x00006c26 arg  0x0000076a , 0x00000005 
+ 00031556  0x00006c27 call  0x00007c9c 
+ 00031557  0x00006c29 arg  0x0000076a , 0x00000011 
+ 00031558  0x00006c2a arg  0x0000070a , 0x00000012 
+ 00031559  0x00006c2b arg  0x0000076a , 0x00000005 
+ 00031560  0x00006c2c call  0x00007cb9 
+ 00031561  0x00006c2d arg  0x0000076a , 0x00000011 
+ 00031562  0x00006c2e arg  0x0000070a , 0x00000012 
+ 00031563  0x00006c2f arg  0x0000062a , 0x00000005 
+ 00031564  0x00006c30 call  0x00007cb9 
+ 00031565  0x00006c31 arg  0x0000070a , 0x00000011 
+ 00031566  0x00006c32 arg  0x0000062a , 0x00000012 
+ 00031567  0x00006c33 arg  0x0000076a , 0x00000005 
+ 00031568  0x00006c34 call  0x00007cb9 
+ 00031569  0x00006c35 arg  0x0000076a , 0x00000011 
+ 00031570  0x00006c36 arg  0x0000074a , 0x00000012 
+ 00031571  0x00006c37 arg  0x0000076a , 0x00000005 
+ 00031572  0x00006c38 call  0x00007c03 
+ 00031573  0x00006c39 arg  0x0000076a , 0x00000011 
+ 00031574  0x00006c3a arg  0x0000072a , 0x00000012 
+ 00031575  0x00006c3b arg  0x0000064a , 0x00000005 
+ 00031576  0x00006c3c branch  0x00007cb9 
+ 00031577  0x00006c40 arg  0x000005aa , 0x00000011 
+ 00031578  0x00006c41 arg  0x0000078a , 0x00000005 
+ 00031579  0x00006c42 call  0x00007c9c 
+ 00031580  0x00006c43 arg  0x0000062a , 0x00000011 
+ 00031581  0x00006c44 arg  0x0000078a , 0x00000012 
+ 00031582  0x00006c45 arg  0x0000072a , 0x00000005 
+ 00031583  0x00006c46 call  0x00007c03 
+ 00031584  0x00006c49 arg  0x000005aa , 0x00000011 
+ 00031585  0x00006c4a arg  0x0000078a , 0x00000012 
+ 00031586  0x00006c4b arg  0x0000078a , 0x00000005 
+ 00031587  0x00006c4c call  0x00007c03 
+ 00031588  0x00006c4d arg  0x0000064a , 0x00000011 
+ 00031589  0x00006c4e arg  0x0000078a , 0x00000012 
+ 00031590  0x00006c4f arg  0x0000070a , 0x00000005 
+ 00031591  0x00006c50 call  0x00007c03 
+ 00031592  0x00006c53 arg  0x0000066a , 0x00000011 
+ 00031593  0x00006c54 arg  0x0000078a , 0x00000005 
+ 00031594  0x00006c55 call  0x00007c9c 
+ 00031595  0x00006c56 arg  0x0000056a , 0x00000011 
+ 00031596  0x00006c57 arg  0x0000078a , 0x00000012 
+ 00031597  0x00006c58 arg  0x0000074a , 0x00000005 
+ 00031598  0x00006c59 call  0x00007c03 
+ 00031599  0x00006c5b arg  0x0000066a , 0x00000011 
+ 00031600  0x00006c5c arg  0x0000078a , 0x00000012 
+ 00031601  0x00006c5d arg  0x0000078a , 0x00000005 
+ 00031602  0x00006c5e call  0x00007c03 
+ 00031603  0x00006c5f arg  0x0000058a , 0x00000011 
+ 00031604  0x00006c60 arg  0x0000078a , 0x00000012 
+ 00031605  0x00006c61 arg  0x0000076a , 0x00000005 
+ 00031606  0x00006c62 call  0x00007c03 
+ 00031607  0x00006c67 arg  0x0000072a , 0x00000012 
+ 00031608  0x00006c68 arg  0x0000074a , 0x00000011 
+ 00031609  0x00006c69 arg  0x0000078a , 0x00000005 
+ 00031610  0x00006c6a call  0x00007cb9 
+ 00031611  0x00006c6b arg  0x0000072a , 0x00000011 
+ 00031612  0x00006c6c arg  0x0000074a , 0x00000012 
+ 00031613  0x00006c6d arg  0x0000072a , 0x00000005 
+ 00031614  0x00006c6e call  0x00007ca0 
+ 00031615  0x00006c71 arg  0x0000070a , 0x00000012 
+ 00031616  0x00006c72 arg  0x0000076a , 0x00000011 
+ 00031617  0x00006c73 arg  0x0000074a , 0x00000005 
+ 00031618  0x00006c74 call  0x00007cb9 
+ 00031619  0x00006c75 arg  0x0000070a , 0x00000011 
+ 00031620  0x00006c76 arg  0x0000076a , 0x00000012 
+ 00031621  0x00006c77 arg  0x0000070a , 0x00000005 
+ 00031622  0x00006c78 call  0x00007ca0 
+ 00031623  0x00006c79 arg  0x0000070a , 0x00000011 
+ 00031624  0x00006c7a arg  0x0000078a , 0x00000012 
+ 00031625  0x00006c7b arg  0x0000070a , 0x00000005 
+ 00031626  0x00006c7c call  0x00007c03 
+ 00031627  0x00006c7d arg  0x0000066a , 0x00000011 
+ 00031628  0x00006c7e arg  0x000005aa , 0x00000012 
+ 00031629  0x00006c7f arg  0x0000076a , 0x00000005 
+ 00031630  0x00006c80 call  0x00007c03 
+ 00031631  0x00006c81 arg  0x0000076a , 0x00000011 
+ 00031632  0x00006c82 arg  0x0000078a , 0x00000012 
+ 00031633  0x00006c83 arg  0x0000066a , 0x00000005 
+ 00031634  0x00006c84 call  0x00007c03 
+ 00031635  0x00006c86 arg  0x0000078a , 0x00000011 
+ 00031636  0x00006c87 arg  0x0000078a , 0x00000005 
+ 00031637  0x00006c88 call  0x00007c9c 
+ 00031638  0x00006c89 arg  0x0000078a , 0x00000011 
+ 00031639  0x00006c8a arg  0x0000072a , 0x00000012 
+ 00031640  0x00006c8b arg  0x0000076a , 0x00000005 
+ 00031641  0x00006c8c call  0x00007c03 
+ 00031642  0x00006c8d arg  0x0000078a , 0x00000011 
+ 00031643  0x00006c8e arg  0x0000070a , 0x00000012 
+ 00031644  0x00006c8f arg  0x0000070a , 0x00000005 
+ 00031645  0x00006c90 call  0x00007c03 
+ 00031646  0x00006c91 arg  0x0000074a , 0x00000011 
+ 00031647  0x00006c92 arg  0x0000062a , 0x00000005 
+ 00031648  0x00006c93 call  0x00007c9c 
+ 00031649  0x00006c94 arg  0x0000062a , 0x00000011 
+ 00031650  0x00006c95 arg  0x0000076a , 0x00000012 
+ 00031651  0x00006c96 arg  0x0000062a , 0x00000005 
+ 00031652  0x00006c97 call  0x00007cb9 
+ 00031653  0x00006c98 arg  0x0000062a , 0x00000006 
+ 00031654  0x00006c99 arg  0x0000078a , 0x00000005 
+ 00031655  0x00006c9a call  0x00007e85 
+ 00031656  0x00006c9b arg  0x0000078a , 0x00000011 
+ 00031657  0x00006c9c call  0x00007ca3 
+ 00031658  0x00006c9d arg  0x0000076a , 0x00000011 
+ 00031659  0x00006c9e arg  0x0000078a , 0x00000012 
+ 00031660  0x00006c9f arg  0x0000076a , 0x00000005 
+ 00031661  0x00006ca0 call  0x00007cb9 
+ 00031662  0x00006ca1 arg  0x0000076a , 0x00000011 
+ 00031663  0x00006ca2 arg  0x0000074a , 0x00000012 
+ 00031664  0x00006ca3 arg  0x0000074a , 0x00000005 
+ 00031665  0x00006ca4 call  0x00007c03 
+ 00031666  0x00006ca5 arg  0x0000074a , 0x00000011 
+ 00031667  0x00006ca6 arg  0x0000070a , 0x00000012 
+ 00031668  0x00006ca7 arg  0x0000064a , 0x00000005 
+ 00031669  0x00006ca8 call  0x00007cb9 
+ 00031670  0x00006ca9 arg  0x0000064a , 0x00000011 
+ 00031671  0x00006caa arg  0x00000842 , 0x00000012 
+ 00031672  0x00006cab arg  0x0000064a , 0x00000005 
+ 00031673  0x00006cac force  0x00000000 , 0x00000013 
+ 00031674  0x00006cad fetch  0x00000001 , 0x0000064a 
+ 00031675  0x00006cae isolate1  0x00000000 , 0x0000003f 
+ 00031676  0x00006caf call  0x00007c9e , 0x00000001 
+ 00031677  0x00006cb0 copy  0x00000013 , 0x00000030 
+ 00031678  0x00006cb1 arg  0x0000064a , 0x00000011 
+ 00031679  0x00006cb2 call  0x00007cce 
+ 00031680  0x00006cb3 fetch  0x00000001 , 0x00000669 
+ 00031681  0x00006cb4 isolate1  0x00000000 , 0x00000030 
+ 00031682  0x00006cb5 setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00031683  0x00006cb6 store  0x00000001 , 0x00000669 
+ 00031684  0x00006cb7 rtn 
+ 00031685  0x00006cba copy  0x00000005 , 0x0000000b 
+ 00031686  0x00006cbb arg  0x0000072a , 0x00000005 
+ 00031687  0x00006cbc call  0x00007e9b 
+ 00031688  0x00006cbd force  0x00000000 , 0x0000003f 
+ 00031689  0x00006cbf store  0x00000004 , 0x0000074a 
+ 00031690  0x00006cc0 jam  0x00000001 , 0x0000072a 
+ 00031691  0x00006cc1 arg  0x000006aa , 0x00000005 
+ 00031692  0x00006cc2 call  0x00007e9d 
+ 00031693  0x00006cc3 arg  0x00000842 , 0x00000006 
+ 00031694  0x00006cc4 arg  0x000006ea , 0x00000005 
+ 00031695  0x00006cc5 call  0x00007e85 
+ 00031696  0x00006cc6 copy  0x00000011 , 0x00000006 
+ 00031697  0x00006cc7 arg  0x0000070a , 0x00000005 
+ 00031698  0x00006cc8 call  0x00007e85 
+ 00031699  0x00006ccf arg  0x0000070a , 0x00000006 
+ 00031700  0x00006cd0 call  0x00007cd8 
+ 00031701  0x00006cd1 branch  0x00007bfc , 0x00000034 
+ 00031702  0x00006cd6 arg  0x0000070a , 0x00000011 
+ 00031703  0x00006cd7 arg  0x0000072a , 0x00000012 
+ 00031704  0x00006cd8 call  0x00007cdb 
+ 00031705  0x00006cd9 arg  0x000006ea , 0x00000011 
+ 00031706  0x00006cda arg  0x000006aa , 0x00000012 
+ 00031707  0x00006cdb call  0x00007cdb 
+ 00031708  0x00006cdd arg  0x0000070a , 0x00000011 
+ 00031709  0x00006cde arg  0x000006ea , 0x00000012 
+ 00031710  0x00006cdf call  0x00007cd4 
+ 00031711  0x00006ce0 branch  0x00007bee , 0x00000002 
+ 00031712  0x00006ce1 arg  0x000006ea , 0x00000011 
+ 00031713  0x00006ce2 arg  0x0000070a , 0x00000012 
+ 00031714  0x00006ce3 copy  0x00000011 , 0x00000005 
+ 00031715  0x00006ce4 call  0x00007ccc 
+ 00031716  0x00006ce5 arg  0x0000072a , 0x00000011 
+ 00031717  0x00006ce6 arg  0x000006aa , 0x00000012 
+ 00031718  0x00006ce7 copy  0x00000012 , 0x00000005 
+ 00031719  0x00006ce8 call  0x00007c9e 
+ 00031720  0x00006ce9 ifetch  0x00000001 , 0x00000011 
+ 00031721  0x00006cea iadd  0x00000013 , 0x00000013 
+ 00031722  0x00006ceb ifetch  0x00000001 , 0x00000012 
+ 00031723  0x00006cec iadd  0x00000013 , 0x0000003f 
+ 00031724  0x00006ced istore  0x00000001 , 0x00000012 
+ 00031725  0x00006cee branch  0x00007bd3 
+ 00031726  0x00006cf0 arg  0x0000070a , 0x00000011 
+ 00031727  0x00006cf1 arg  0x000006ea , 0x00000012 
+ 00031728  0x00006cf2 copy  0x00000011 , 0x00000005 
+ 00031729  0x00006cf3 call  0x00007ccc 
+ 00031730  0x00006cf4 arg  0x000006aa , 0x00000011 
+ 00031731  0x00006cf5 arg  0x0000072a , 0x00000012 
+ 00031732  0x00006cf6 copy  0x00000012 , 0x00000005 
+ 00031733  0x00006cf7 call  0x00007c9e 
+ 00031734  0x00006cf8 ifetch  0x00000001 , 0x00000011 
+ 00031735  0x00006cf9 iadd  0x00000013 , 0x00000013 
+ 00031736  0x00006cfa ifetch  0x00000001 , 0x00000012 
+ 00031737  0x00006cfb iadd  0x00000013 , 0x0000003f 
+ 00031738  0x00006cfc istore  0x00000001 , 0x00000012 
+ 00031739  0x00006cfd branch  0x00007bd3 
+ 00031740  0x00006d00 arg  0x000006aa , 0x00000011 
+ 00031741  0x00006d01 copy  0x0000000b , 0x00000005 
+ 00031742  0x00006d02 call  0x00007c2c 
+ 00031743  0x00006d04 arg  0x00000842 , 0x00000011 
+ 00031744  0x00006d05 copy  0x0000000b , 0x00000012 
+ 00031745  0x00006d06 copy  0x0000000b , 0x00000005 
+ 00031746  0x00006d07 branch  0x00007cb9 
+ 00031747  0x00006d0b copy  0x00000005 , 0x0000000b 
+ 00031748  0x00006d0d force  0x00000000 , 0x00000038 
+ 00031749  0x00006d0f arg  0x000006aa , 0x00000005 
+ 00031750  0x00006d10 call  0x00007e9d 
+ 00031751  0x00006d11 arg  0x000009f1 , 0x00000005 
+ 00031752  0x00006d12 call  0x00007e9d 
+ 00031753  0x00006d16 copy  0x00000011 , 0x00000006 
+ 00031754  0x00006d18 jam  0x00000000 , 0x000009f1 
+ 00031755  0x00006d19 setarg  0x00000000 
+ 00031756  0x00006d1a call  0x00007c96 
+ 00031757  0x00006d1b copy  0x00000012 , 0x00000006 
+ 00031758  0x00006d1c call  0x00007c9a 
+ 00031759  0x00006d1f force  0x00000000 , 0x00000007 
+ 00031760  0x00006d20 arg  0x000006aa , 0x00000005 
+ 00031761  0x00006d24 arg  0x000009f1 , 0x00000002 
+ 00031762  0x00006d25 copy  0x00000007 , 0x00000012 
+ 00031763  0x00006d26 lshift2  0x00000012 , 0x0000003f 
+ 00031764  0x00006d28 iadd  0x00000002 , 0x00000012 
+ 00031765  0x00006d29 force  0x00000000 , 0x00000002 
+ 00031766  0x00006d2a force  0x00000000 , 0x00000013 
+ 00031767  0x00006d30 ifetch  0x00000004 , 0x00000005 
+ 00031768  0x00006d31 iforce  0x00000011 
+ 00031769  0x00006d34 ifetch  0x00000004 , 0x00000012 
+ 00031770  0x00006d35 copy  0x00000013 , 0x00000038 
+ 00031771  0x00006d36 imul32  0x0000002f , 0x0000003f 
+ 00031772  0x00006d37 iadd  0x00000011 , 0x0000003f 
+ 00031773  0x00006d38 iadd  0x00000002 , 0x0000003f 
+ 00031774  0x00006d39 istore  0x00000004 , 0x00000005 
+ 00031775  0x00006d3a rshift32  0x0000003f , 0x00000002 
+ 00031776  0x00006d3b increase  0x00000001 , 0x00000013 
+ 00031777  0x00006d3c compare  0x00000008 , 0x00000013 , 0x000000ff 
+ 00031778  0x00006d3d nbranch  0x00007c17 , 0x00000001 
+ 00031779  0x00006d3f deposit  0x00000002 
+ 00031780  0x00006d40 istore  0x00000004 , 0x00000005 
+ 00031781  0x00006d41 increase  0xffffffe0 , 0x00000005 
+ 00031782  0x00006d44 increase  0x00000001 , 0x00000007 
+ 00031783  0x00006d45 compare  0x00000008 , 0x00000007 , 0x000000ff 
+ 00031784  0x00006d46 nbranch  0x00007c11 , 0x00000001 
+ 00031785  0x00006d47 arg  0x000006aa , 0x00000011 
+ 00031786  0x00006d48 copy  0x0000000b , 0x00000005 
+ 00031787  0x00006d49 branch  0x00007c2c 
+ 00031788  0x00006d4c set1  0x00000025 , 0x00000000 
+ 00031789  0x00006d4d bpatch  0x000000ee , 0x0000403d 
+ 00031790  0x00006d4e copy  0x00000005 , 0x0000000b 
+ 00031791  0x00006d4f copy  0x00000011 , 0x00000030 
+ 00031792  0x00006d50 arg  0x000006ea , 0x00000012 
+ 00031793  0x00006d51 copy  0x00000012 , 0x00000005 
+ 00031794  0x00006d52 call  0x00007e98 
+ 00031795  0x00006d53 istore  0x00000008 , 0x00000005 
+ 00031796  0x00006d54 add  0x00000011 , 0x0000002c , 0x00000006 
+ 00031797  0x00006d55 call  0x00007e81 
+ 00031798  0x00006d56 call  0x00007e7d 
+ 00031799  0x00006d57 copy  0x00000012 , 0x00000011 
+ 00031800  0x00006d58 call  0x00007ca3 
+ 00031801  0x00006d59 arg  0x000006ea , 0x00000012 
+ 00031802  0x00006d5a copy  0x00000030 , 0x00000011 
+ 00031803  0x00006d5b copy  0x0000000b , 0x00000005 
+ 00031804  0x00006d5c call  0x00007ca0 
+ 00031805  0x00006d5e arg  0x000006ea , 0x00000012 
+ 00031806  0x00006d5f copy  0x00000012 , 0x00000005 
+ 00031807  0x00006d60 call  0x00007e98 
+ 00031808  0x00006d61 istore  0x00000008 , 0x00000005 
+ 00031809  0x00006d62 add  0x00000030 , 0x00000030 , 0x00000006 
+ 00031810  0x00006d63 call  0x00007e87 
+ 00031811  0x00006d64 call  0x00007e98 
+ 00031812  0x00006d65 copy  0x00000012 , 0x00000011 
+ 00031813  0x00006d66 call  0x00007ca3 
+ 00031814  0x00006d6a arg  0x000006ea , 0x00000012 
+ 00031815  0x00006d6b copy  0x0000000b , 0x00000011 
+ 00031816  0x00006d6c copy  0x00000011 , 0x00000005 
+ 00031817  0x00006d6d call  0x00007ca0 
+ 00031818  0x00006d71 arg  0x000006ea , 0x00000012 
+ 00031819  0x00006d72 copy  0x00000012 , 0x00000005 
+ 00031820  0x00006d73 add  0x00000030 , 0x00000020 , 0x00000006 
+ 00031821  0x00006d74 call  0x00007e7d 
+ 00031822  0x00006d75 call  0x00007e98 
+ 00031823  0x00006d76 istore  0x00000008 , 0x00000005 
+ 00031824  0x00006d77 add  0x00000030 , 0x00000038 , 0x00000006 
+ 00031825  0x00006d78 call  0x00007e81 
+ 00031826  0x00006d79 copy  0x0000000b , 0x00000011 
+ 00031827  0x00006d7a copy  0x00000011 , 0x00000005 
+ 00031828  0x00006d7b call  0x00007ca0 
+ 00031829  0x00006d7f arg  0x000006ea , 0x00000012 
+ 00031830  0x00006d80 copy  0x00000012 , 0x00000005 
+ 00031831  0x00006d81 add  0x00000030 , 0x00000024 , 0x00000006 
+ 00031832  0x00006d82 call  0x00007e7d 
+ 00031833  0x00006d83 add  0x00000030 , 0x00000034 , 0x00000006 
+ 00031834  0x00006d84 call  0x00007e7d 
+ 00031835  0x00006d85 add  0x00000030 , 0x00000034 , 0x00000006 
+ 00031836  0x00006d86 call  0x00007e7e 
+ 00031837  0x00006d87 add  0x00000030 , 0x00000020 , 0x00000006 
+ 00031838  0x00006d88 call  0x00007e7e 
+ 00031839  0x00006d89 copy  0x0000000b , 0x00000011 
+ 00031840  0x00006d8a copy  0x00000011 , 0x00000005 
+ 00031841  0x00006d8b call  0x00007ca0 
+ 00031842  0x00006d8e arg  0x000006ea , 0x00000012 
+ 00031843  0x00006d8f copy  0x00000012 , 0x00000005 
+ 00031844  0x00006d90 add  0x00000030 , 0x0000002c , 0x00000006 
+ 00031845  0x00006d91 call  0x00007e7d 
+ 00031846  0x00006d92 call  0x00007e98 
+ 00031847  0x00006d93 istore  0x00000008 , 0x00000005 
+ 00031848  0x00006d94 add  0x00000030 , 0x00000020 , 0x00000006 
+ 00031849  0x00006d95 call  0x00007e7e 
+ 00031850  0x00006d96 add  0x00000030 , 0x00000028 , 0x00000006 
+ 00031851  0x00006d97 call  0x00007e7e 
+ 00031852  0x00006d98 copy  0x0000000b , 0x00000011 
+ 00031853  0x00006d99 copy  0x00000011 , 0x00000005 
+ 00031854  0x00006d9a call  0x00007cb9 
+ 00031855  0x00006d9d arg  0x000006ea , 0x00000012 
+ 00031856  0x00006d9e copy  0x00000012 , 0x00000005 
+ 00031857  0x00006d9f add  0x00000030 , 0x00000030 , 0x00000006 
+ 00031858  0x00006da0 call  0x00007e81 
+ 00031859  0x00006da1 call  0x00007e81 
+ 00031860  0x00006da2 force  0x00000000 , 0x0000003f 
+ 00031861  0x00006da3 istore  0x00000008 , 0x00000005 
+ 00031862  0x00006da4 add  0x00000030 , 0x00000024 , 0x00000006 
+ 00031863  0x00006da5 call  0x00007e7e 
+ 00031864  0x00006da6 add  0x00000030 , 0x0000002c , 0x00000006 
+ 00031865  0x00006da7 call  0x00007e7e 
+ 00031866  0x00006da8 copy  0x0000000b , 0x00000011 
+ 00031867  0x00006da9 copy  0x00000011 , 0x00000005 
+ 00031868  0x00006daa call  0x00007cb9 
+ 00031869  0x00006dad arg  0x000006ea , 0x00000012 
+ 00031870  0x00006dae copy  0x00000012 , 0x00000005 
+ 00031871  0x00006daf add  0x00000030 , 0x00000034 , 0x00000006 
+ 00031872  0x00006db0 call  0x00007e7d 
+ 00031873  0x00006db1 add  0x00000030 , 0x00000020 , 0x00000006 
+ 00031874  0x00006db2 call  0x00007e7d 
+ 00031875  0x00006db3 call  0x00007e98 
+ 00031876  0x00006db4 add  0x00000030 , 0x00000030 , 0x00000006 
+ 00031877  0x00006db5 call  0x00007e7e 
+ 00031878  0x00006db6 copy  0x0000000b , 0x00000011 
+ 00031879  0x00006db7 copy  0x00000011 , 0x00000005 
+ 00031880  0x00006db8 call  0x00007cb9 
+ 00031881  0x00006dbb arg  0x000006ea , 0x00000012 
+ 00031882  0x00006dbc copy  0x00000012 , 0x00000005 
+ 00031883  0x00006dbd add  0x00000030 , 0x00000038 , 0x00000006 
+ 00031884  0x00006dbe call  0x00007e81 
+ 00031885  0x00006dbf call  0x00007e98 
+ 00031886  0x00006dc0 add  0x00000030 , 0x00000024 , 0x00000006 
+ 00031887  0x00006dc1 call  0x00007e7d 
+ 00031888  0x00006dc2 call  0x00007e98 
+ 00031889  0x00006dc3 add  0x00000030 , 0x00000034 , 0x00000006 
+ 00031890  0x00006dc4 call  0x00007e7e 
+ 00031891  0x00006dc5 copy  0x0000000b , 0x00000011 
+ 00031892  0x00006dc6 copy  0x00000011 , 0x00000005 
+ 00031893  0x00006dc7 branch  0x00007cb9 
+ 00031894  0x00006dcb force  0x00000020 , 0x00000039 
+ 00031895  0x00006dcc arg  0x000009f1 , 0x00000005 
+ 00031896  0x00006dcd iadd  0x00000005 , 0x00000005 
+ 00031897  0x00006dce branch  0x00007ecd 
+ 00031898  0x00006dd1 force  0x00000008 , 0x00000039 
+ 00031899  0x00006dd2 branch  0x0000779d 
+ 00031900  0x00006dd5 copy  0x00000011 , 0x00000012 
+ 00031901  0x00006dd6 branch  0x00007c03 
+ 00031902  0x00006dd9 force  0x00000008 , 0x00000039 
+ 00031903  0x00006dda branch  0x0000772e 
+ 00031904  0x00006ddd call  0x00007c9e 
+ 00031905  0x00006dde copy  0x00000005 , 0x00000011 
+ 00031906  0x00006ddf branch  0x00007ca4 
+ 00031907  0x00006de2 call  0x00007cd1 
+ 00031908  0x00006de4 isolate1  0x00000000 , 0x00000013 
+ 00031909  0x00006de5 branch  0x00007cad , 0x00000001 
+ 00031910  0x00006de6 arg  0x00000842 , 0x00000012 
+ 00031911  0x00006de7 copy  0x00000011 , 0x00000013 
+ 00031912  0x00006de8 increase  0xffffffe0 , 0x00000011 
+ 00031913  0x00006de9 call  0x00007cd4 
+ 00031914  0x00006dea nrtn  0x00000002 
+ 00031915  0x00006deb copy  0x00000013 , 0x00000011 
+ 00031916  0x00006dec branch  0x00007cb5 
+ 00031917  0x00006def call  0x00007cb5 
+ 00031918  0x00006df1 copy  0x00000011 , 0x00000013 
+ 00031919  0x00006df2 increase  0xffffffe0 , 0x00000011 
+ 00031920  0x00006df3 arg  0x00000842 , 0x00000012 
+ 00031921  0x00006df4 call  0x00007cd4 
+ 00031922  0x00006df5 nrtn  0x00000002 
+ 00031923  0x00006df6 copy  0x00000013 , 0x00000011 
+ 00031924  0x00006df7 branch  0x00007cb5 
+ 00031925  0x00006dfb increase  0xffffffe0 , 0x00000011 
+ 00031926  0x00006dfc arg  0x00000842 , 0x00000012 
+ 00031927  0x00006dfd copy  0x00000011 , 0x00000005 
+ 00031928  0x00006dfe branch  0x00007ccc 
+ 00031929  0x00006e04 call  0x00007ccc 
+ 00031930  0x00006e06 branch  0x00007cc3 , 0x00000001 
+ 00031931  0x00006e09 add  0x00000005 , 0xffffffe0 , 0x00000011 
+ 00031932  0x00006e0a arg  0x00000842 , 0x00000012 
+ 00031933  0x00006e0b call  0x00007cd4 
+ 00031934  0x00006e0c nrtn  0x00000002 
+ 00031935  0x00006e0d arg  0x00000842 , 0x00000012 
+ 00031936  0x00006e0e add  0x00000005 , 0xffffffe0 , 0x00000011 
+ 00031937  0x00006e10 copy  0x00000011 , 0x00000005 
+ 00031938  0x00006e11 branch  0x00007ccc 
+ 00031939  0x00006e13 add  0x00000005 , 0xffffffe0 , 0x00000011 
+ 00031940  0x00006e14 arg  0x00000842 , 0x00000012 
+ 00031941  0x00006e15 copy  0x00000011 , 0x00000005 
+ 00031942  0x00006e16 call  0x00007c9e 
+ 00031943  0x00006e18 rtn  0x00000001 
+ 00031944  0x00006e19 add  0x00000005 , 0xffffffe0 , 0x00000011 
+ 00031945  0x00006e1a arg  0x00000842 , 0x00000012 
+ 00031946  0x00006e1b copy  0x00000011 , 0x00000005 
+ 00031947  0x00006e1c branch  0x00007c9e 
+ 00031948  0x00006e21 force  0x00000008 , 0x00000039 
+ 00031949  0x00006e22 branch  0x0000773c 
+ 00031950  0x00006e25 force  0x00000008 , 0x00000039 
+ 00031951  0x00006e26 increase  0x0000001c , 0x00000011 
+ 00031952  0x00006e27 branch  0x0000774b 
+ 00031953  0x00006e2a force  0x00000008 , 0x00000039 
+ 00031954  0x00006e2b force  0x00000000 , 0x00000013 
+ 00031955  0x00006e2c branch  0x00007759 
+ 00031956  0x00006e2f force  0x00000008 , 0x00000039 
+ 00031957  0x00006e30 increase  0x0000001c , 0x00000011 
+ 00031958  0x00006e31 increase  0x0000001c , 0x00000012 
+ 00031959  0x00006e32 branch  0x00007723 
+ 00031960  0x00006e36 ifetch  0x00000008 , 0x00000006 
+ 00031961  0x00006e37 nrtn  0x00000034 
+ 00031962  0x00006e38 branch  0x00007711 
+ 00031963  0x00006e3e copy  0x00000011 , 0x00000030 
+ 00031964  0x00006e40 copy  0x00000030 , 0x00000011 
+ 00031965  0x00006e41 ifetch  0x00000001 , 0x00000011 
+ 00031966  0x00006e42 isolate1  0x00000000 , 0x0000003f 
+ 00031967  0x00006e43 rtn  0x00000001 
+ 00031968  0x00006e44 call  0x00007cce 
+ 00031969  0x00006e45 ifetch  0x00000001 , 0x00000012 
+ 00031970  0x00006e46 isolate0  0x00000000 , 0x0000003f 
+ 00031971  0x00006e47 branch  0x00007ceb , 0x00000001 
+ 00031972  0x00006e48 arg  0x00000842 , 0x00000011 
+ 00031973  0x00006e49 copy  0x00000012 , 0x00000005 
+ 00031974  0x00006e4a call  0x00007c9e 
+ 00031975  0x00006e4b ifetch  0x00000001 , 0x00000012 
+ 00031976  0x00006e4c iadd  0x00000013 , 0x0000003f 
+ 00031977  0x00006e4d istore  0x00000001 , 0x00000012 
+ 00031978  0x00006e4e increase  0xffffffe0 , 0x00000012 
+ 00031979  0x00006e50 add  0x00000012 , 0x00000020 , 0x00000011 
+ 00031980  0x00006e51 force  0x00000009 , 0x00000039 
+ 00031981  0x00006e52 call  0x0000774b 
+ 00031982  0x00006e53 branch  0x00007cdc 
+ 00031983  0x00006e58 call  0x00003d3e 
+ 00031984  0x00006e59 rtn  0x0000002b 
+ 00031985  0x00006e5a call  0x00007cf6 
+ 00031986  0x00006e5b call  0x00007d72 
+ 00031987  0x00006e5c branch  0x00007d2a 
+ 00031988  0x00006e5f call  0x00007d44 
+ 00031989  0x00006e61 branch  0x00007d60 
+ 00031990  0x00006e64 set1  0x00000025 , 0x00000000 
+ 00031991  0x00006e65 bpatch  0x000000ef , 0x0000403d 
+ 00031992  0x00006e66 fetch  0x00000001 , 0x00004715 
+ 00031993  0x00006e67 rtneq  0x000000ff 
+ 00031994  0x00006e68 iforce  0x00000002 
+ 00031995  0x00006e69 call  0x000064e8 
+ 00031996  0x00006e6a fetcht  0x00000001 , 0x00004715 
+ 00031997  0x00006e6b call  0x000064fd 
+ 00031998  0x00006e6c nop  0x00000064 
+ 00031999  0x00006e6d fetcht  0x00000001 , 0x00004715 
+ 00032000  0x00006e6e call  0x000064df 
+ 00032001  0x00006e6f branch  0x00007d02 
+ 00032002  0x00006e74 set1  0x00000025 , 0x00000000 
+ 00032003  0x00006e75 bpatch  0x000000f0 , 0x0000403e 
+ 00032004  0x00006e76 fetch  0x00000001 , 0x00004715 
+ 00032005  0x00006e77 rtneq  0x000000ff 
+ 00032006  0x00006e78 copy  0x0000003f , 0x00000002 
+ 00032007  0x00006e79 call  0x000064f5 
+ 00032008  0x00006e7a nbranch  0x00007d15 , 0x00000001 
+ 00032009  0x00006e7d call  0x00007d1f 
+ 00032010  0x00006e7e fetch  0x00000002 , 0x0000470b 
+ 00032011  0x00006e7f set1  0x0000000c 
+ 00032012  0x00006e80 store  0x00000002 , 0x0000470b 
+ 00032013  0x00006e81 fetch  0x00000001 , 0x00004702 
+ 00032014  0x00006e82 rtneq  0x00000000 
+ 00032015  0x00006e83 jam  0x00000000 , 0x00004702 
+ 00032016  0x00006e85 fetch  0x00000001 , 0x00004714 
+ 00032017  0x00006e86 store  0x00000001 , 0x00004701 
+ 00032018  0x00006e87 call  0x00007d26 
+ 00032019  0x00006e88 jam  0x0000002c , 0x000009bd 
+ 00032020  0x00006e89 branch  0x00007d86 
+ 00032021  0x00006e8b fetch  0x00000002 , 0x0000470b 
+ 00032022  0x00006e8c set0  0x0000000c 
+ 00032023  0x00006e8d store  0x00000002 , 0x0000470b 
+ 00032024  0x00006e8e fetch  0x00000001 , 0x00004702 
+ 00032025  0x00006e8f rtneq  0x00000001 
+ 00032026  0x00006e90 jam  0x00000001 , 0x00004702 
+ 00032027  0x00006e92 jam  0x00000000 , 0x00004701 
+ 00032028  0x00006e93 call  0x00007d28 
+ 00032029  0x00006e94 jam  0x0000002d , 0x000009bd 
+ 00032030  0x00006e95 branch  0x00007d86 
+ 00032031  0x00006e98 fetch  0x00000001 , 0x00004701 
+ 00032032  0x00006e99 rtn  0x00000034 
+ 00032033  0x00006e9a increase  0xffffffff , 0x0000003f 
+ 00032034  0x00006e9b store  0x00000001 , 0x00004701 
+ 00032035  0x00006e9c nrtn  0x00000034 
+ 00032036  0x00006e9e jam  0x00000010 , 0x000009bd 
+ 00032037  0x00006e9f branch  0x00007d86 
+ 00032038  0x00006ea2 arg  0x00000007 , 0x00000007 
+ 00032039  0x00006ea3 branch  0x00003d06 
+ 00032040  0x00006ea6 arg  0x00000007 , 0x00000007 
+ 00032041  0x00006ea7 branch  0x00003d0a 
+ 00032042  0x00006eaa fetch  0x00000001 , 0x0000470e 
+ 00032043  0x00006eab rtneq  0x000000ff 
+ 00032044  0x00006eac iforce  0x00000002 
+ 00032045  0x00006ead call  0x000064e8 
+ 00032046  0x00006eae branch  0x00007d33 
+ 00032047  0x00006eb1 fetch  0x00000002 , 0x0000470b 
+ 00032048  0x00006eb2 set0  0x0000000d 
+ 00032049  0x00006eb3 store  0x00000002 , 0x0000470b 
+ 00032050  0x00006eb4 jam  0x00000000 , 0x00004700 
+ 00032051  0x00006eb6 fetch  0x00000002 , 0x0000470b 
+ 00032052  0x00006eb7 set0  0x0000000e 
+ 00032053  0x00006eb8 store  0x00000002 , 0x0000470b 
+ 00032054  0x00006eb9 fetcht  0x00000001 , 0x0000470e 
+ 00032055  0x00006eba branch  0x000064fd 
+ 00032056  0x00006ebd fetch  0x00000002 , 0x0000470b 
+ 00032057  0x00006ebe set1  0x0000000e 
+ 00032058  0x00006ebf store  0x00000002 , 0x0000470b 
+ 00032059  0x00006ec0 jam  0x00000000 , 0x00004700 
+ 00032060  0x00006ec1 fetcht  0x00000001 , 0x0000470e 
+ 00032061  0x00006ec2 branch  0x000064ff 
+ 00032062  0x00006ec5 jam  0x000000ff , 0x00004713 
+ 00032063  0x00006ec7 fetch  0x00000002 , 0x0000470b 
+ 00032064  0x00006ec8 set1  0x0000000d 
+ 00032065  0x00006ec9 store  0x00000002 , 0x0000470b 
+ 00032066  0x00006eca jam  0x00000001 , 0x00004700 
+ 00032067  0x00006ecb rtn 
+ 00032068  0x00006ece set1  0x00000025 , 0x00000000 
+ 00032069  0x00006ecf bpatch  0x000000f1 , 0x0000403e 
+ 00032070  0x00006ed0 fetch  0x00000001 , 0x00004713 
+ 00032071  0x00006ed1 rtn  0x00000034 
+ 00032072  0x00006ed2 fetch  0x00000001 , 0x00004700 
+ 00032073  0x00006ed3 rtneq  0x00000000 
+ 00032074  0x00006ed4 arg  0x00000009 , 0x00000007 
+ 00032075  0x00006ed5 call  0x00007ee2 
+ 00032076  0x00006ed6 nrtn  0x00000034 
+ 00032077  0x00006ed7 fetch  0x00000001 , 0x00004700 
+ 00032078  0x00006ed8 beq  0x00000002 , 0x00007d53 
+ 00032079  0x00006ed9 call  0x00007d38 
+ 00032080  0x00006eda jam  0x00000002 , 0x00004700 
+ 00032081  0x00006edb fetch  0x00000002 , 0x00004711 
+ 00032082  0x00006edc branch  0x00007d5a 
+ 00032083  0x00006ede call  0x00007d33 
+ 00032084  0x00006edf fetch  0x00000001 , 0x00004713 
+ 00032085  0x00006ee0 beq  0x000000ff , 0x00007d58 
+ 00032086  0x00006ee1 increase  0xffffffff , 0x0000003f 
+ 00032087  0x00006ee2 store  0x00000001 , 0x00004713 
+ 00032088  0x00006ee4 jam  0x00000003 , 0x00004700 
+ 00032089  0x00006ee5 fetch  0x00000002 , 0x0000470f 
+ 00032090  0x00006ee7 arg  0x00000009 , 0x00000007 
+ 00032091  0x00006ee8 branch  0x00007ed4 
+ 00032092  0x00006eeb setarg  0x00001000 
+ 00032093  0x00006eec lshift16  0x0000003f , 0x0000003f 
+ 00032094  0x00006eed iadd  0x00000012 , 0x00000012 
+ 00032095  0x00006eee rtn 
+ 00032096  0x00006ef1 set1  0x00000025 , 0x00000000 
+ 00032097  0x00006ef2 bpatch  0x000000f2 , 0x0000403e 
+ 00032098  0x00006ef3 arg  0x00000000 , 0x00000011 
+ 00032099  0x00006ef4 fetcht  0x00000004 , 0x00004703 
+ 00032100  0x00006ef5 copy  0x00000022 , 0x00000012 
+ 00032101  0x00006ef6 copy  0x00000012 , 0x0000003f 
+ 00032102  0x00006ef7 isub  0x00000002 , 0x0000003e 
+ 00032103  0x00006ef8 ncall  0x00007d5c , 0x00000002 
+ 00032104  0x00006efb copy  0x00000012 , 0x0000003f 
+ 00032105  0x00006efc increase  0x000000a0 , 0x00000002 
+ 00032106  0x00006efd increase  0x000000a0 , 0x00000002 
+ 00032107  0x00006efe isub  0x00000002 , 0x0000003e 
+ 00032108  0x00006eff nbranch  0x00007d75 , 0x00000002 
+ 00032109  0x00006f00 increase  0x00000001 , 0x00000011 
+ 00032110  0x00006f01 and  0x00000011 , 0x0000000f , 0x0000003f 
+ 00032111  0x00006f02 nbranch  0x00007d68 , 0x00000034 
+ 00032112  0x00006f03 arg  0x00000000 , 0x00000011 
+ 00032113  0x00006f04 call  0x00007d7d 
+ 00032114  0x00006f06 copy  0x00000022 , 0x0000003f 
+ 00032115  0x00006f07 store  0x00000004 , 0x00004703 
+ 00032116  0x00006f08 rtn 
+ 00032117  0x00006f0a set1  0x00000025 , 0x00000000 
+ 00032118  0x00006f0b bpatch  0x000000f3 , 0x0000403e 
+ 00032119  0x00006f0c copy  0x00000011 , 0x0000003f 
+ 00032120  0x00006f0d rtn  0x00000034 
+ 00032121  0x00006f0e increase  0xffffff60 , 0x00000002 
+ 00032122  0x00006f0f increase  0xffffff60 , 0x00000002 
+ 00032123  0x00006f10 set0  0x0000001c , 0x00000002 
+ 00032124  0x00006f11 storet  0x00000004 , 0x00004703 
+ 00032125  0x00006f13 increase  0x00000050 , 0x0000003f 
+ 00032126  0x00006f14 store  0x00000001 , 0x000009bd 
+ 00032127  0x00006f15 branch  0x00007d86 
+ 00032128  0x00006f1c jam  0x00000001 , 0x000046ee 
+ 00032129  0x00006f1e fetch  0x00000001 , 0x000046ef 
+ 00032130  0x00006f1f nbranch  0x00007d81 , 0x00000034 
+ 00032131  0x00006f20 rtn 
+ 00032132  0x00006f23 jam  0x00000000 , 0x000046ee 
+ 00032133  0x00006f24 rtn 
+ 00032134  0x00006f29 set1  0x00000025 , 0x00000000 
+ 00032135  0x00006f2a bpatch  0x000000f4 , 0x0000403e 
+ 00032136  0x00006f2b call  0x00007d80 
+ 00032137  0x00006f2c copy  0x00000011 , 0x0000003f 
+ 00032138  0x00006f2d store  0x00000004 , 0x000009b5 
+ 00032139  0x00006f2e arg  0x000046f0 , 0x00000011 
+ 00032140  0x00006f2f call  0x00007f88 
+ 00032141  0x00006f30 fetch  0x00000004 , 0x000009b5 
+ 00032142  0x00006f31 copy  0x0000003f , 0x00000011 
+ 00032143  0x00006f32 branch  0x00007d84 
+ 00032144  0x00006f35 set1  0x00000025 , 0x00000000 
+ 00032145  0x00006f36 bpatch  0x000000f5 , 0x0000403e 
+ 00032146  0x00006f37 call  0x00007d80 
+ 00032147  0x00006f38 copy  0x00000011 , 0x0000003f 
+ 00032148  0x00006f39 store  0x00000004 , 0x000009b5 
+ 00032149  0x00006f3a arg  0x000046f8 , 0x00000011 
+ 00032150  0x00006f3b call  0x00007f88 
+ 00032151  0x00006f3c fetch  0x00000004 , 0x000009b5 
+ 00032152  0x00006f3d copy  0x0000003f , 0x00000011 
+ 00032153  0x00006f3e branch  0x00007d84 
+ 00032154  0x00006f41 setarg  0x00000000 
+ 00032155  0x00006f42 store  0x00000008 , 0x000046f8 
+ 00032156  0x00006f43 store  0x00000008 , 0x000046f0 
+ 00032157  0x00006f44 rtn 
+ 00032158  0x00006f47 set1  0x00000025 , 0x00000000 
+ 00032159  0x00006f48 bpatch  0x000000f6 , 0x0000403e 
+ 00032160  0x00006f49 fetch  0x00000001 , 0x00004271 
+ 00032161  0x00006f4a nrtn  0x00000034 
+ 00032162  0x00006f4b arg  0x000046f8 , 0x00000011 
+ 00032163  0x00006f4c call  0x00007fa2 
+ 00032164  0x00006f4d rtn  0x00000034 
+ 00032165  0x00006f4e jam  0x00000000 , 0x000009b4 
+ 00032166  0x00006f4f call  0x00007daa 
+ 00032167  0x00006f50 fetch  0x00000001 , 0x000009b4 
+ 00032168  0x00006f51 branch  0x00007d9e , 0x00000034 
+ 00032169  0x00006f52 rtn 
+ 00032170  0x00006f55 set1  0x00000025 , 0x00000000 
+ 00032171  0x00006f56 bpatch  0x000000f7 , 0x0000403e 
+ 00032172  0x00006f57 call  0x00007d80 
+ 00032173  0x00006f58 arg  0x000046f8 , 0x00000011 
+ 00032174  0x00006f59 call  0x00007f95 
+ 00032175  0x00006f5a copy  0x0000003f , 0x00000002 
+ 00032176  0x00006f5b call  0x00007d84 
+ 00032177  0x00006f5c copy  0x00000002 , 0x0000003f 
+ 00032178  0x00006f5d rtn  0x00000034 
+ 00032179  0x00006f5e beq  0x00000001 , 0x00007df0 
+ 00032180  0x00006f5f beq  0x00000002 , 0x00007df5 
+ 00032181  0x00006f60 beq  0x00000003 , 0x00007dfb 
+ 00032182  0x00006f61 beq  0x00000007 , 0x00007e00 
+ 00032183  0x00006f62 beq  0x00000008 , 0x00007e01 
+ 00032184  0x00006f63 beq  0x00000009 , 0x00007e02 
+ 00032185  0x00006f64 beq  0x0000000b , 0x00007e05 
+ 00032186  0x00006f65 beq  0x0000000c , 0x00007e06 
+ 00032187  0x00006f66 beq  0x0000000d , 0x00007e07 
+ 00032188  0x00006f67 beq  0x0000000e , 0x00007e0d 
+ 00032189  0x00006f68 beq  0x0000000f , 0x00007e12 
+ 00032190  0x00006f69 beq  0x00000010 , 0x00007e18 
+ 00032191  0x00006f6a beq  0x00000015 , 0x00007d3e 
+ 00032192  0x00006f6b beq  0x00000014 , 0x00007d38 
+ 00032193  0x00006f6c beq  0x00000013 , 0x00007d2f 
+ 00032194  0x00006f6d beq  0x00000016 , 0x00007e21 
+ 00032195  0x00006f6e beq  0x00000017 , 0x00007e24 
+ 00032196  0x00006f6f beq  0x00000018 , 0x00007e26 
+ 00032197  0x00006f70 beq  0x00000019 , 0x00007e2b 
+ 00032198  0x00006f71 beq  0x0000001b , 0x00007e29 
+ 00032199  0x00006f72 beq  0x0000001c , 0x00007e3b 
+ 00032200  0x00006f73 beq  0x0000001e , 0x00007e3d 
+ 00032201  0x00006f75 store  0x00000001 , 0x000009bd 
+ 00032202  0x00006f76 set1  0x00000025 , 0x00000000 
+ 00032203  0x00006f77 bpatch  0x000000f8 , 0x0000403f 
+ 00032204  0x00006f78 call  0x000058c5 
+ 00032205  0x00006f79 nbranch  0x00007de5 , 0x00000034 
+ 00032206  0x00006f7b fetch  0x00000001 , 0x000009bd 
+ 00032207  0x00006f7c bmark0  0x00000009 , 0x00007de0 
+ 00032208  0x00006f7d beq  0x00000005 , 0x00003fae 
+ 00032209  0x00006f7e beq  0x00000006 , 0x00003fbd 
+ 00032210  0x00006f7f beq  0x0000000a , 0x00007e03 
+ 00032211  0x00006f80 beq  0x00000004 , 0x00007dfd 
+ 00032212  0x00006f81 beq  0x00000011 , 0x00007e1d 
+ 00032213  0x00006f82 beq  0x0000001d , 0x00007de7 
+ 00032214  0x00006f83 beq  0x0000001f , 0x0000642e 
+ 00032215  0x00006f84 beq  0x00000020 , 0x00006432 
+ 00032216  0x00006f85 beq  0x00000012 , 0x00007dde 
+ 00032217  0x00006f86 beq  0x00000021 , 0x00007ddb 
+ 00032218  0x00006f87 rtn 
+ 00032219  0x00006f8a call  0x00005903 
+ 00032220  0x00006f8b jam  0x00000041 , 0x0000007d 
+ 00032221  0x00006f8c branch  0x000055b4 
+ 00032222  0x00006f8f jam  0x0000002f , 0x000009bd 
+ 00032223  0x00006f90 branch  0x00004bd6 
+ 00032224  0x00006f92 store  0x00000001 , 0x000009bd 
+ 00032225  0x00006f93 call  0x00003292 
+ 00032226  0x00006f94 branch  0x00007de5 , 0x00000005 
+ 00032227  0x00006f95 call  0x0000329a 
+ 00032228  0x00006f96 nrtn  0x00000005 
+ 00032229  0x00006f98 jam  0x00000001 , 0x000009b4 
+ 00032230  0x00006f99 branch  0x00007d90 
+ 00032231  0x00006f9d jam  0x00000034 , 0x0000007c 
+ 00032232  0x00006f9e set1  0x00000003 , 0x00000000 
+ 00032233  0x00006f9f nrtn  0x00000029 
+ 00032234  0x00006fa0 jam  0x00000000 , 0x000045f4 
+ 00032235  0x00006fa1 jam  0x00000013 , 0x0000007c 
+ 00032236  0x00006fa2 fetch  0x00000001 , 0x0000016c 
+ 00032237  0x00006fa3 set0  0x00000002 , 0x0000003f 
+ 00032238  0x00006fa4 store  0x00000001 , 0x0000016c 
+ 00032239  0x00006fa5 rtn 
+ 00032240  0x00006fa8 fetch  0x00000002 , 0x0000470b 
+ 00032241  0x00006fa9 set1  0x00000006 
+ 00032242  0x00006faa store  0x00000002 , 0x0000470b 
+ 00032243  0x00006fab jam  0x00000003 , 0x00004133 
+ 00032244  0x00006fac rtn 
+ 00032245  0x00006faf jam  0x00000000 , 0x00004709 
+ 00032246  0x00006fb0 jam  0x00000000 , 0x00004133 
+ 00032247  0x00006fb1 fetch  0x00000002 , 0x0000470b 
+ 00032248  0x00006fb2 set0  0x00000006 
+ 00032249  0x00006fb3 store  0x00000002 , 0x0000470b 
+ 00032250  0x00006fb4 rtn 
+ 00032251  0x00006fb7 jam  0x00000005 , 0x00004271 
+ 00032252  0x00006fb8 rtn 
+ 00032253  0x00006fbb jam  0x00000007 , 0x0000007c 
+ 00032254  0x00006fbc jam  0x00000013 , 0x000003f0 
+ 00032255  0x00006fbd rtn 
+ 00032256  0x00006fc1 rtn 
+ 00032257  0x00006fc4 rtn 
+ 00032258  0x00006fc7 rtn 
+ 00032259  0x00006fca jam  0x00000002 , 0x000003fa 
+ 00032260  0x00006fcb branch  0x00003fa1 
+ 00032261  0x00006fce rtn 
+ 00032262  0x00006fd0 rtn 
+ 00032263  0x00006fd2 jam  0x00000001 , 0x000043ff 
+ 00032264  0x00006fd3 jam  0x00000000 , 0x00004520 
+ 00032265  0x00006fd4 fetch  0x00000002 , 0x0000470b 
+ 00032266  0x00006fd5 set1  0x0000000b , 0x0000003f 
+ 00032267  0x00006fd6 store  0x00000002 , 0x0000470b 
+ 00032268  0x00006fd7 rtn 
+ 00032269  0x00006fd9 fetch  0x00000002 , 0x0000470b 
+ 00032270  0x00006fda set0  0x0000000b , 0x0000003f 
+ 00032271  0x00006fdb store  0x00000002 , 0x0000470b 
+ 00032272  0x00006fdc jam  0x00000000 , 0x000043ff 
+ 00032273  0x00006fdd rtn 
+ 00032274  0x00006fdf jam  0x00000001 , 0x000043ff 
+ 00032275  0x00006fe0 jam  0x00000001 , 0x00004520 
+ 00032276  0x00006fe1 fetch  0x00000002 , 0x0000470b 
+ 00032277  0x00006fe2 set1  0x0000000b , 0x0000003f 
+ 00032278  0x00006fe3 store  0x00000002 , 0x0000470b 
+ 00032279  0x00006fe4 rtn 
+ 00032280  0x00006fe6 fetch  0x00000002 , 0x0000470b 
+ 00032281  0x00006fe7 set0  0x0000000b , 0x0000003f 
+ 00032282  0x00006fe8 store  0x00000002 , 0x0000470b 
+ 00032283  0x00006fe9 jam  0x00000000 , 0x000043ff 
+ 00032284  0x00006fea rtn 
+ 00032285  0x00006fec setarg  0x0000000a 
+ 00032286  0x00006fed store  0x00000002 , 0x00000390 
+ 00032287  0x00006fee jam  0x00000022 , 0x000009bd 
+ 00032288  0x00006fef branch  0x00004bd6 
+ 00032289  0x00006ff1 jam  0x00000001 , 0x000043f9 
+ 00032290  0x00006ff2 jam  0x0000001b , 0x00004271 
+ 00032291  0x00006ff5 rtn 
+ 00032292  0x00006ff7 jam  0x00000001 , 0x000043f9 
+ 00032293  0x00006ff8 rtn 
+ 00032294  0x00006ffa jam  0x00000000 , 0x000043f9 
+ 00032295  0x00006ffb jam  0x00000000 , 0x00004271 
+ 00032296  0x00006ffc rtn 
+ 00032297  0x00006ffe jam  0x0000004b , 0x000009bd 
+ 00032298  0x00006fff branch  0x00004bd6 
+ 00032299  0x00007001 set1  0x00000025 , 0x00000000 
+ 00032300  0x00007002 bpatch  0x000000f9 , 0x0000403f 
+ 00032301  0x00007003 fetch  0x00000002 , 0x0000428c 
+ 00032302  0x00007004 call  0x00007f69 
+ 00032303  0x00007005 enable  0x00000028 
+ 00032304  0x00007006 hfetch  0x00000004 , 0x00008138 
+ 00032305  0x00007007 setflag  0x00000028 , 0x0000001a , 0x0000003f 
+ 00032306  0x00007008 hstore  0x00000004 , 0x0000804c 
+ 00032307  0x00007009 call  0x00003cf4 
+ 00032308  0x0000700a fetch  0x00000001 , 0x00004715 
+ 00032309  0x0000700b beq  0x000000ff , 0x00007e38 
+ 00032310  0x0000700c copy  0x0000003f , 0x00000002 
+ 00032311  0x0000700d call  0x000064df 
+ 00032312  0x0000700f call  0x00007d33 
+ 00032313  0x00007010 call  0x00007d9a 
+ 00032314  0x00007011 branch  0x00003c04 
+ 00032315  0x00007014 jam  0x00000001 , 0x00004595 
+ 00032316  0x00007015 rtn 
+ 00032317  0x00007018 force  0x00000004 , 0x00000007 
+ 00032318  0x00007019 branch  0x00007ed3 
+ 00032319  0x0000701d fetch  0x00000001 , 0x0000470b 
+ 00032320  0x0000701e rtnbit0  0x0000000c 
+ 00032321  0x0000701f rtnbit0  0x00000007 
+ 00032322  0x00007020 branch  0x00007e3d 
+ 00032323  0x00007025 sub  0x00000039 , 0x00000000 , 0x0000003e 
+ 00032324  0x00007026 rtn  0x00000005 
+ 00032325  0x00007028 rshift  0x0000003f , 0x0000003f 
+ 00032326  0x00007029 loop  0x00007e45 
+ 00032327  0x0000702a rtn 
+ 00032328  0x0000702d deposit  0x00000005 
+ 00032329  0x0000702e store  0x00000002 , 0x000009df 
+ 00032330  0x0000702f storet  0x00000008 , 0x000009c6 
+ 00032331  0x00007030 deposit  0x0000000b 
+ 00032332  0x00007031 store  0x00000004 , 0x000009ce 
+ 00032333  0x00007032 deposit  0x00000011 
+ 00032334  0x00007033 store  0x00000004 , 0x000009d2 
+ 00032335  0x00007034 deposit  0x00000012 
+ 00032336  0x00007035 store  0x00000004 , 0x000009d6 
+ 00032337  0x00007036 deposit  0x00000013 
+ 00032338  0x00007037 store  0x00000003 , 0x000009da 
+ 00032339  0x00007038 deposit  0x00000006 
+ 00032340  0x00007039 store  0x00000002 , 0x000009dd 
+ 00032341  0x0000703a rtn 
+ 00032342  0x0000703c fetcht  0x00000008 , 0x000009c6 
+ 00032343  0x0000703d fetch  0x00000004 , 0x000009ce 
+ 00032344  0x0000703e iforce  0x0000000b 
+ 00032345  0x0000703f fetch  0x00000004 , 0x000009d2 
+ 00032346  0x00007040 iforce  0x00000011 
+ 00032347  0x00007041 fetch  0x00000004 , 0x000009d6 
+ 00032348  0x00007042 iforce  0x00000012 
+ 00032349  0x00007043 fetch  0x00000003 , 0x000009da 
+ 00032350  0x00007044 iforce  0x00000013 
+ 00032351  0x00007045 fetch  0x00000002 , 0x000009df 
+ 00032352  0x00007046 iforce  0x00000005 
+ 00032353  0x00007047 fetch  0x00000002 , 0x000009dd 
+ 00032354  0x00007048 iforce  0x00000006 
+ 00032355  0x00007049 rtn 
+ 00032356  0x0000704c fetch  0x00000002 , 0x000009df 
+ 00032357  0x0000704d copy  0x0000003f , 0x00000005 
+ 00032358  0x0000704e rtn 
+ 00032359  0x00007050 fetch  0x00000002 , 0x000009dd 
+ 00032360  0x00007051 copy  0x0000003f , 0x00000006 
+ 00032361  0x00007052 rtn 
+ 00032362  0x00007054 copy  0x00000005 , 0x0000003f 
+ 00032363  0x00007055 store  0x00000002 , 0x000009df 
+ 00032364  0x00007056 rtn 
+ 00032365  0x00007058 copy  0x00000006 , 0x0000003f 
+ 00032366  0x00007059 store  0x00000002 , 0x000009dd 
+ 00032367  0x0000705a rtn 
+ 00032368  0x0000705f copy  0x00000005 , 0x0000003f 
+ 00032369  0x00007060 store  0x00000002 , 0x000009bb 
+ 00032370  0x00007061 copy  0x00000006 , 0x0000003f 
+ 00032371  0x00007062 store  0x00000002 , 0x000009b9 
+ 00032372  0x00007063 rtn 
+ 00032373  0x00007065 fetch  0x00000002 , 0x000009bb 
+ 00032374  0x00007066 copy  0x0000003f , 0x00000005 
+ 00032375  0x00007067 fetch  0x00000002 , 0x000009b9 
+ 00032376  0x00007068 copy  0x0000003f , 0x00000006 
+ 00032377  0x00007069 rtn 
+ 00032378  0x0000706c call  0x00007e85 
+ 00032379  0x0000706e call  0x00007e85 
+ 00032380  0x0000706f branch  0x00007e85 
+ 00032381  0x00007071 call  0x00007e81 
+ 00032382  0x00007073 ifetch  0x00000004 , 0x00000006 
+ 00032383  0x00007074 istore  0x00000004 , 0x00000005 
+ 00032384  0x00007075 rtn 
+ 00032385  0x00007077 ifetch  0x00000008 , 0x00000006 
+ 00032386  0x00007078 istore  0x00000008 , 0x00000005 
+ 00032387  0x00007079 rtn 
+ 00032388  0x0000707c call  0x00007e87 
+ 00032389  0x0000707e call  0x00007e81 
+ 00032390  0x00007080 call  0x00007e81 
+ 00032391  0x00007082 call  0x00007e81 
+ 00032392  0x00007083 branch  0x00007e81 
+ 00032393  0x00007088 copy  0x00000022 , 0x0000003f 
+ 00032394  0x00007089 increase  0x00000010 , 0x0000003f 
+ 00032395  0x0000708a increase  0x00000010 , 0x0000003f 
+ 00032396  0x0000708c copy  0x00000022 , 0x00000002 
+ 00032397  0x0000708d isub  0x00000002 , 0x0000003e 
+ 00032398  0x0000708e branch  0x00007e8c , 0x00000002 
+ 00032399  0x0000708f rtn 
+ 00032400  0x00007092 force  0x00000003 , 0x00000039 
+ 00032401  0x00007094 force  0x00000000 , 0x0000003f 
+ 00032402  0x00007096 istore  0x00000008 , 0x00000005 
+ 00032403  0x00007097 loop  0x00007e92 
+ 00032404  0x00007098 rtn 
+ 00032405  0x0000709b force  0x00000000 , 0x0000003f 
+ 00032406  0x0000709c istore  0x00000008 , 0x00000005 
+ 00032407  0x0000709d rtn 
+ 00032408  0x0000709f force  0x00000000 , 0x0000003f 
+ 00032409  0x000070a0 istore  0x00000004 , 0x00000005 
+ 00032410  0x000070a1 rtn 
+ 00032411  0x000070a4 force  0x00000004 , 0x00000039 
+ 00032412  0x000070a5 branch  0x00007e91 
+ 00032413  0x000070a7 force  0x00000008 , 0x00000039 
+ 00032414  0x000070a8 branch  0x00007e91 
+ 00032415  0x000070ab deposit  0x00000039 
+ 00032416  0x000070ac rtn  0x00000034 
+ 00032417  0x000070ad setarg  0x00000000 
+ 00032418  0x000070af istore  0x00000001 , 0x00000005 
+ 00032419  0x000070b0 loop  0x00007ea2 
+ 00032420  0x000070b1 rtn 
+ 00032421  0x000070b5 arg  0x00000020 , 0x00000039 
+ 00032422  0x000070b6 arg  0x000009e1 , 0x00000005 
+ 00032423  0x000070b7 branch  0x00007e9f 
+ 00032424  0x000070ba ifetch  0x00000004 , 0x00000013 
+ 00032425  0x000070bb ifetcht  0x00000004 , 0x00000011 
+ 00032426  0x000070bc ixor  0x00000002 , 0x0000003f 
+ 00032427  0x000070bd istore  0x00000004 , 0x00000005 
+ 00032428  0x000070be increase  0x00000004 , 0x00000011 
+ 00032429  0x000070bf increase  0x00000004 , 0x00000013 
+ 00032430  0x000070c0 loop  0x00007ea8 
+ 00032431  0x000070c1 rtn 
+ 00032432  0x000070c6 set1  0x00000025 , 0x00000000 
+ 00032433  0x000070c7 bpatch  0x000000fa , 0x0000403f 
+ 00032434  0x000070c8 copy  0x00000039 , 0x0000003f 
+ 00032435  0x000070c9 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00032436  0x000070ca rtn  0x00000002 
+ 00032437  0x000070cb iadd  0x00000011 , 0x00000012 
+ 00032438  0x000070cc increase  0xffffffff , 0x00000012 
+ 00032439  0x000070cd rshift  0x00000039 , 0x00000039 
+ 00032440  0x000070cf ifetcht  0x00000001 , 0x00000011 
+ 00032441  0x000070d0 ifetch  0x00000001 , 0x00000012 
+ 00032442  0x000070d1 istore  0x00000001 , 0x00000011 
+ 00032443  0x000070d2 istoret  0x00000001 , 0x00000012 
+ 00032444  0x000070d3 increase  0xffffffff , 0x00000012 
+ 00032445  0x000070d4 increase  0x00000001 , 0x00000011 
+ 00032446  0x000070d5 loop  0x00007eb8 
+ 00032447  0x000070d6 rtn 
+ 00032448  0x000070da deposit  0x00000039 
+ 00032449  0x000070db rtn  0x00000034 
+ 00032450  0x000070dd increase  0xfffffff8 , 0x00000039 
+ 00032451  0x000070de call  0x00007e81 , 0x00000002 
+ 00032452  0x000070df rtn  0x00000005 
+ 00032453  0x000070e0 branch  0x00007ec2 , 0x00000002 
+ 00032454  0x000070e1 increase  0x00000008 , 0x00000039 
+ 00032455  0x000070e3 increase  0xfffffffc , 0x00000039 
+ 00032456  0x000070e4 call  0x00007e7e , 0x00000002 
+ 00032457  0x000070e5 rtn  0x00000005 
+ 00032458  0x000070e6 branch  0x00007ec7 , 0x00000002 
+ 00032459  0x000070e7 increase  0x00000004 , 0x00000039 
+ 00032460  0x000070e8 branch  0x00007ecd 
+ 00032461  0x000070eb deposit  0x00000039 
+ 00032462  0x000070ec rtn  0x00000034 
+ 00032463  0x000070ee ifetch  0x00000001 , 0x00000006 
+ 00032464  0x000070ef istore  0x00000001 , 0x00000005 
+ 00032465  0x000070f0 loop  0x00007ecf 
+ 00032466  0x000070f1 rtn 
+ 00032467  0x000070f4 setarg  0x00000000 
+ 00032468  0x000070f6 rshift  0x00000022 , 0x00000002 
+ 00032469  0x000070f7 storet  0x00000004 , 0x00004134 
+ 00032470  0x000070f8 arg  0x0000423d , 0x00000005 
+ 00032471  0x000070f9 iforce  0x00000002 
+ 00032472  0x000070fa lshift  0x00000007 , 0x0000003f 
+ 00032473  0x000070fb iadd  0x00000005 , 0x00000005 
+ 00032474  0x000070fc istoret  0x00000002 , 0x00000005 
+ 00032475  0x000070fd set1  0x00000025 , 0x00000000 
+ 00032476  0x000070fe bpatch  0x000000fb , 0x0000403f 
+ 00032477  0x000070ff rtn 
+ 00032478  0x00007102 arg  0x00000800 , 0x0000000b 
+ 00032479  0x00007103 lshift16  0x0000000b , 0x0000000b 
+ 00032480  0x00007104 iadd  0x0000000b , 0x0000003f 
+ 00032481  0x00007105 rtn 
+ 00032482  0x00007109 set1  0x00000025 , 0x00000000 
+ 00032483  0x0000710a bpatch  0x000000fc , 0x0000403f 
+ 00032484  0x0000710b fetcht  0x00000004 , 0x00004134 
+ 00032485  0x0000710c rshift  0x00000022 , 0x0000003f 
+ 00032486  0x0000710d store  0x00000004 , 0x00004134 
+ 00032487  0x0000710e isub  0x00000002 , 0x0000003e 
+ 00032488  0x0000710f ncall  0x00007ede , 0x00000002 
+ 00032489  0x00007110 isub  0x00000002 , 0x0000000b 
+ 00032490  0x00007111 copy  0x0000000b , 0x00000002 
+ 00032491  0x00007112 arg  0x0000423d , 0x00000006 
+ 00032492  0x00007113 copy  0x00000006 , 0x00000005 
+ 00032493  0x00007114 arg  0x00000010 , 0x00000039 
+ 00032494  0x00007116 ifetch  0x00000002 , 0x00000006 
+ 00032495  0x00007117 isub  0x00000002 , 0x0000003f 
+ 00032496  0x00007118 branch  0x00007ef2 , 0x00000002 
+ 00032497  0x00007119 force  0x00000000 , 0x0000003f 
+ 00032498  0x0000711b istore  0x00000002 , 0x00000005 
+ 00032499  0x0000711c loop  0x00007eee 
+ 00032500  0x0000711d arg  0x0000423d , 0x00000006 
+ 00032501  0x0000711e lshift  0x00000007 , 0x0000003f 
+ 00032502  0x0000711f iadd  0x00000006 , 0x00000006 
+ 00032503  0x00007120 ifetch  0x00000002 , 0x00000006 
+ 00032504  0x00007121 rtn 
+ 00032505  0x00007127 iadd  0x00000002 , 0x00000002 
+ 00032506  0x00007128 copy  0x00000002 , 0x00000039 
+ 00032507  0x00007129 setarg  0x00000ea6 
+ 00032508  0x0000712a isub  0x00000039 , 0x0000003f 
+ 00032509  0x0000712b rtn  0x00000002 
+ 00032510  0x0000712c sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00032511  0x0000712d rshift16  0x00000002 , 0x00000002 
+ 00032512  0x0000712e increase  0x00000001 , 0x00000002 
+ 00032513  0x0000712f lshift16  0x00000002 , 0x00000002 
+ 00032514  0x00007130 ior  0x00000002 , 0x00000002 
+ 00032515  0x00007131 rtn 
+ 00032516  0x00007134 call  0x00007f06 
+ 00032517  0x00007135 branch  0x00007f10 
+ 00032518  0x00007139 disable  0x00000028 
+ 00032519  0x0000713a isub  0x00000002 , 0x0000003f 
+ 00032520  0x0000713b branch  0x00007f0b , 0x00000002 
+ 00032521  0x0000713c enable  0x00000028 
+ 00032522  0x0000713d sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00032523  0x0000713f rtnbit0  0x0000000f 
+ 00032524  0x00007140 arg  0xffff0ea6 , 0x00000002 
+ 00032525  0x00007141 iadd  0x00000002 , 0x0000003f 
+ 00032526  0x00007142 set0  0x00000040 , 0x0000003f 
+ 00032527  0x00007143 rtn 
+ 00032528  0x00007146 iforce  0x00000006 
+ 00032529  0x00007147 rshift16  0x0000003f , 0x0000003f 
+ 00032530  0x00007148 arg  0x00000ea6 , 0x00000002 
+ 00032531  0x00007149 imul32  0x00000002 , 0x0000003f 
+ 00032532  0x0000714a iadd  0x00000006 , 0x0000003f 
+ 00032533  0x0000714b rtn 
+ 00032534  0x0000714f lshift8  0x0000003f , 0x0000003f 
+ 00032535  0x00007150 lshift4  0x0000003f , 0x0000003f 
+ 00032536  0x00007151 fetcht  0x00000003 , 0x0000420f 
+ 00032537  0x00007152 idiv  0x00000002 
+ 00032538  0x00007153 call  0x00007f53 
+ 00032539  0x00007154 quotient  0x00000002 
+ 00032540  0x00007155 rtn 
+ 00032541  0x00007159 arg  0x00000ea6 , 0x00000002 
+ 00032542  0x0000715a idiv  0x00000002 
+ 00032543  0x0000715b call  0x00007f53 
+ 00032544  0x0000715c quotient  0x0000003f 
+ 00032545  0x0000715d lshift16  0x0000003f , 0x0000003f 
+ 00032546  0x0000715e remainder  0x00000002 
+ 00032547  0x0000715f ior  0x00000002 , 0x00000002 
+ 00032548  0x00007160 rtn 
+ 00032549  0x00007168 arg  0x00000000 , 0x00000002 
+ 00032550  0x0000716a copy  0x00000002 , 0x00000013 
+ 00032551  0x0000716b ifetch  0x00000001 , 0x00000003 
+ 00032552  0x0000716c call  0x00007f31 
+ 00032553  0x0000716d copy  0x00000013 , 0x00000002 
+ 00032554  0x0000716e call  0x00007f62 
+ 00032555  0x0000716f arg  0x0000000a , 0x00000012 
+ 00032556  0x00007170 imul32  0x00000012 , 0x0000003f 
+ 00032557  0x00007171 iadd  0x00000002 , 0x0000003f 
+ 00032558  0x00007172 copy  0x0000003f , 0x00000002 
+ 00032559  0x00007173 loop  0x00007f26 
+ 00032560  0x00007174 rtn 
+ 00032561  0x00007179 arg  0x0000003a , 0x00000002 
+ 00032562  0x0000717a isub  0x00000002 , 0x0000003e 
+ 00032563  0x0000717b nbranch  0x00007f3a , 0x00000002 
+ 00032564  0x0000717c arg  0x00000061 , 0x00000002 
+ 00032565  0x0000717d isub  0x00000002 , 0x0000003e 
+ 00032566  0x0000717e branch  0x00007f3d , 0x00000002 
+ 00032567  0x0000717f arg  0x00000037 , 0x00000002 
+ 00032568  0x00007180 isub  0x00000002 , 0x0000003f 
+ 00032569  0x00007181 rtn 
+ 00032570  0x00007183 arg  0x00000030 , 0x00000002 
+ 00032571  0x00007184 isub  0x00000002 , 0x0000003f 
+ 00032572  0x00007185 rtn 
+ 00032573  0x00007187 arg  0x00000057 , 0x00000002 
+ 00032574  0x00007188 isub  0x00000002 , 0x0000003f 
+ 00032575  0x00007189 rtn 
+ 00032576  0x0000718c copy  0x00000002 , 0x00000030 
+ 00032577  0x0000718d setarg  0x000001ff 
+ 00032578  0x0000718e force  0x00000000 , 0x00000012 
+ 00032579  0x00007190 rshift3  0x0000003f , 0x00000011 
+ 00032580  0x00007191 rshift  0x00000011 , 0x00000011 
+ 00032581  0x00007192 ixor  0x00000011 , 0x00000011 
+ 00032582  0x00007193 isolate1  0x00000000 , 0x00000011 
+ 00032583  0x00007194 setflag  0x00000001 , 0x00000009 , 0x0000003f 
+ 00032584  0x00007195 rshift  0x00000002 , 0x00000002 
+ 00032585  0x00007196 isolate1  0x00000000 , 0x0000003f 
+ 00032586  0x00007197 setflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00032587  0x00007198 rshift  0x0000003f , 0x0000003f 
+ 00032588  0x00007199 increase  0x00000001 , 0x00000012 
+ 00032589  0x0000719a compare  0x00000000 , 0x00000012 , 0x00000007 
+ 00032590  0x0000719b nbranch  0x00007f43 , 0x00000001 
+ 00032591  0x0000719c istoret  0x00000001 , 0x00000005 
+ 00032592  0x0000719d loop  0x00007f43 
+ 00032593  0x0000719e copy  0x00000030 , 0x00000002 
+ 00032594  0x0000719f rtn 
+ 00032595  0x000071a3 rtn  0x00000035 
+ 00032596  0x000071a4 branch  0x00007f53 
+ 00032597  0x000071b0 ifetch  0x00000001 , 0x00000011 
+ 00032598  0x000071b1 ifetcht  0x00000001 , 0x00000012 
+ 00032599  0x000071b2 isub  0x00000002 , 0x0000003e 
+ 00032600  0x000071b3 nrtn  0x00000005 
+ 00032601  0x000071b4 increase  0x00000001 , 0x00000011 
+ 00032602  0x000071b5 increase  0x00000001 , 0x00000012 
+ 00032603  0x000071b6 loop  0x00007f55 
+ 00032604  0x000071b7 force  0x00000000 , 0x0000003e 
+ 00032605  0x000071b8 rtn 
+ 00032606  0x000071bc isub  0x00000002 , 0x0000003e 
+ 00032607  0x000071bd nrtn  0x00000002 
+ 00032608  0x000071be deposit  0x00000002 
+ 00032609  0x000071bf rtn 
+ 00032610  0x000071c2 iadd  0x00000002 , 0x0000003f 
+ 00032611  0x000071c3 isub  0x00000002 , 0x00000002 
+ 00032612  0x000071c4 isub  0x00000002 , 0x0000003f 
+ 00032613  0x000071c5 rtn 
+ 00032614  0x000071c8 arg  0x00000200 , 0x00000039 
+ 00032615  0x000071c9 arg  0x00004000 , 0x00000005 
+ 00032616  0x000071ca branch  0x00007e91 
+ 00032617  0x000071ff rtn  0x00000034 
+ 00032618  0x00007200 copy  0x0000003f , 0x0000003d 
+ 00032619  0x00007204 hfetch  0x00000002 , 0x0000810e 
+ 00032620  0x00007205 nbranch  0x00007f6b , 0x00000034 
+ 00032621  0x00007206 rtn 
+ 00032622  0x00007209 hfetch  0x00000002 , 0x00008058 
+ 00032623  0x0000720a copy  0x0000003f , 0x00000003 
+ 00032624  0x0000720b rtn 
+ 00032625  0x0000720f hjam  0x00000001 , 0x00008203 
+ 00032626  0x00007210 rtn 
+ 00032627  0x00007213 hstore  0x00000002 , 0x00008205 
+ 00032628  0x00007214 hfetch  0x00000001 , 0x00008203 
+ 00032629  0x00007215 set1  0x00000004 , 0x0000003f 
+ 00032630  0x00007216 hstore  0x00000001 , 0x00008203 
+ 00032631  0x00007217 rtn 
+ 00032632  0x00007219 hstore  0x00000002 , 0x00008207 
+ 00032633  0x0000721a hfetch  0x00000001 , 0x00008203 
+ 00032634  0x0000721b set1  0x00000006 , 0x0000003f 
+ 00032635  0x0000721c hstore  0x00000001 , 0x00008203 
+ 00032636  0x0000721d rtn 
+ 00032637  0x00007220 hstore  0x00000002 , 0x00008205 
+ 00032638  0x00007221 hjam  0x00000030 , 0x00008203 
+ 00032639  0x00007222 rtn 
+ 00032640  0x00007227 hfetch  0x00000001 , 0x00008043 
+ 00032641  0x00007228 set0  0x00000004 , 0x0000003f 
+ 00032642  0x00007229 hstore  0x00000001 , 0x00008043 
+ 00032643  0x0000722a rtn 
+ 00032644  0x0000722d hfetch  0x00000002 , 0x0000810e 
+ 00032645  0x0000722e arg  0x00000200 , 0x00000002 
+ 00032646  0x00007230 isub  0x00000002 , 0x0000003e 
+ 00032647  0x00007231 rtn 
+ 00032648  0x00007238 set1  0x00000025 , 0x00000000 
+ 00032649  0x00007239 bpatch  0x000000fd , 0x0000403f 
+ 00032650  0x0000723a ifetcht  0x00000008 , 0x00000011 
+ 00032651  0x0000723b and  0x00000002 , 0x000000ff , 0x0000003f 
+ 00032652  0x0000723c nbranch  0x00007f8f , 0x00000034 
+ 00032653  0x0000723d rshift8  0x00000002 , 0x0000003f 
+ 00032654  0x0000723e istore  0x00000008 , 0x00000011 
+ 00032655  0x00007240 increase  0x00000007 , 0x00000011 
+ 00032656  0x00007241 ifetch  0x00000001 , 0x00000011 
+ 00032657  0x00007242 nbranch  0x00003b31 , 0x00000034 
+ 00032658  0x00007243 fetch  0x00000001 , 0x000009bd 
+ 00032659  0x00007244 istore  0x00000001 , 0x00000011 
+ 00032660  0x00007245 rtn 
+ 00032661  0x0000724b set1  0x00000025 , 0x00000000 
+ 00032662  0x0000724c bpatch  0x000000fe , 0x0000403f 
+ 00032663  0x0000724d arg  0x00000008 , 0x00000039 
+ 00032664  0x0000724e ifetch  0x00000008 , 0x00000011 
+ 00032665  0x0000724f rtn  0x00000034 
+ 00032666  0x00007251 ifetch  0x00000001 , 0x00000011 
+ 00032667  0x00007252 nbranch  0x00007f9f , 0x00000034 
+ 00032668  0x00007253 increase  0x00000001 , 0x00000011 
+ 00032669  0x00007254 loop  0x00007f9a 
+ 00032670  0x00007255 branch  0x00003b31 
+ 00032671  0x00007257 arg  0x00000000 , 0x00000002 
+ 00032672  0x00007258 istoret  0x00000001 , 0x00000011 
+ 00032673  0x00007259 rtn 
+ 00032674  0x0000725f ifetch  0x00000008 , 0x00000011 
+ 00032675  0x00007260 rtn 
+ 00032676  0x00007266 ifetch  0x00000001 , 0x00000011 
+ 00032677  0x00007267 rtn 
+ 00032678  0x0000726b ifetch  0x00000002 , 0x00000011 
+ 00032679  0x0000726c rtn 
+ 00032680  0x00007271 arg  0x00000000 , 0x00000002 
+ 00032681  0x00007273 fetch  0x00000001 , 0x00000006 
+ 00032682  0x00007274 loop  0x00007fa9 , 0x00000034 
+ 00032683  0x00007275 increase  0x00000001 , 0x00000002 
+ 00032684  0x00007276 loop  0x00007fa9 
+ 00032685  0x00007277 copy  0x00000002 , 0x0000003f 
+ 00032686  0x00007278 rtn 
+ 00032687  0x0000727b isub  0x00000002 , 0x0000003e 
+ 00032688  0x0000727c nrtn  0x00000002 
+ 00032689  0x0000727d copy  0x00000002 , 0x0000003f 
+ 00032690  0x0000727e rtn 
Index: btms/output/bt_program23.list
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/bt_program23.list	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/bt_program23.list	(working copy)
@@ -0,0 +1,25294 @@
+              include "bt_format "
+              org 0x0000
+0x0000 000054 bmark1 mark_ext_patch ,patch_ext 
+0x0001 000055 beq patch00_0 ,p_soft_reset 
+0x0002 000056 beq patch00_3 ,p_main_loop 
+0x0003 000057 beq patch10_6 ,p_shutdown_radio 
+0x0004 000058 beq patch11_2 ,p_set_freq_tx 
+0x0005 000059 beq patch11_3 ,p_initialize_radio_cont 
+0x0006 000060 beq patch14_7 ,p_lpm_recover_clk 
+0x0007 000061 beq patch15_0 ,p_lpm_dispatch 
+0x0008 000062 beq patch15_1 ,p_lpm_dispatch_next2 
+0x0009 000063 beq patch15_4 ,p_lpm_dispatch_unconn 
+0x000a 000064 beq patch16_4 ,p_device_init 
+0x000b 000065 beq patch16_5 ,p_app_lpm_init 
+0x000c 000066 beq patch16_6 ,p_app_process_bb_event 
+0x000d 000067 beq patch16_7 ,p_app_evt_timer 
+0x000e 000068 branch loop 
+:      000070 patch_ext:
+0x000f 000071 beq patch20_5 ,p_le_slave_match 
+0x0010 000072 beq patch22_6 ,p_le_receive_skip 
+0x0011 000073 beq patch23_3 ,p_le_send_adv_ind 
+0x0012 000074 beq patch24_3 ,p_le_update_param 
+0x0013 000075 beq patch25_7 ,p_le_prepare_tx 
+0x0014 000076 beq patch26_1 ,p_le_prepare_tx_ll 
+0x0015 000077 beq patch26_2 ,p_le_prepare_smp0 
+0x0016 000078 beq patch26_3 ,p_le_prepare_att 
+0x0017 000079 beq patch27_1 ,p_le_send_packet 
+0x0018 000080 beq patch27_4 ,p_le_parse0 
+0x0019 000081 beq patch27_5 ,p_le_parse_smp 
+0x001a 000082 beq patch27_6 ,p_le_parse_att 
+0x001b 000083 beq patch27_7 ,p_le_adv 
+0x001c 000084 beq patch28_2 ,p_le_receive_window_size 
+0x001d 000085 beq patch29_5 ,p_le_lpm_set_mult 
+0x001e 000086 beq patch30_2 ,p_iicd_read_eep 
+0x001f 000087 beq patch32_5 ,p_gpio_set_before_lpm_common 
+0x0020 000088 beq patch3e_3 ,p_ui_timer_check_end 
+0x0021 000089 beq patch3e_7 ,p_check_51cmd_once 
+0x0022 000090 beq patch3f_0 ,p_check_51cmd_once_continue0 
+0x0023 000091 beq patch3f_1 ,p_check_enter_hibernate 
+0x0024 000092 branch loop 
+:      000094 p_soft_reset:
+0x0025 000095 clear_stack 
+0x0026 000096 jam 0 ,mem_patch30 
+0x0027 000097 nbranch soft_reset + 3 ,wake 
+0x0028 000098 fetch 1 ,mem_le_switch_send_data 
+0x0029 000099 nbranch p_soft_reset_start_51 ,blank 
+0x002a 000100 fetch 1 ,mem_short_lpm_enable 
+0x002b 000101 branch soft_reset + 3 ,blank 
+0x002c 000102 jam 0 ,mem_ipc_is_ready 
+0x002d 000103 bmark0 mark_24g ,soft_reset + 3 
+0x002e 000104 nbranch soft_reset + 3 ,wake 
+:      000105 p_soft_reset_start_51:
+0x002f 000106 hjam start_c51_core ,core_docd_ctrl 
+0x0030 000107 branch soft_reset + 3 
+:      000109 p_main_loop:
+0x0031 000110 call p_ipc_timer_check 
+0x0032 000111 call g24_transmit_process 
+0x0033 000112 call p_ipc_rx 
+0x0034 000113 fetch 1 ,mem_short_lpm_enable 
+0x0035 000114 nbranch p_24g_short_lpm_process_loop ,blank 
+0x0036 000115 branch main_loop + 2 
+:      000118 p_shutdown_radio:
+0x0037 000119 branch shutdown_radio0 ,is_rx 
+0x0038 000120 hjam 0xd4 ,0x955 
+0x0039 000121 nop 4 
+0x003a 000122 hjam 0xd2 ,0x955 
+0x003b 000123 nop 4 
+0x003c 000124 hjam 0xd1 ,0x955 
+0x003d 000125 nop 4 
+0x003e 000126 branch shutdown_radio_pair 
+0x003f 000128 fetch 1 ,mem_tx_power 
+0x0040 000129 beq tx_power_pair ,shutdown_radio_pair 
+0x0041 000130 branch shutdown_radio_select 
+:      000132 p_set_freq_tx:
+0x0042 000133 storet 1 ,mem_last_freq 
+0x0043 000134 add temp ,0 ,rega 
+0x0044 000135 call rf_write_freq 
+0x0045 000136 setarg param_pll_setup 
+0x0046 000137 call sleep 
+:      000138 p_txon:
+0x0047 000139 hjam 0x1 ,rfen_adc 
+0x0048 000140 hjam 0x3c ,rfen_rx 
+0x0049 000141 hjam 0xe0 ,rfen_tx 
+0x004a 000142 hjam 0x12 ,0x96d 
+0x004b 000143 nop 10 
+0x004c 000144 hjam 0x01 ,rfen_mdm 
+0x004d 000145 hjam 0x3d ,rfen_mdm 
+0x004e 000146 nop 10 
+0x004f 000147 hjam 0xb7 ,rfen_sn 
+0x0050 000148 nop 10 
+0x0051 000149 hjam 0x7f ,rfen_mdm 
+0x0052 000151 branch p_set_tx_power_pair 
+0x0053 000153 fetch 1 ,mem_tx_power 
+0x0054 000154 beq tx_power_pair ,p_set_tx_power_pair 
+0x0055 000155 bbit1 tx_power_3db ,p_rx_high_sens 
+0x0056 000156 bbit1 tx_power_5db ,p_rx_high_sens 
+:      000157 p_rx_low_sens:
+0x0057 000158 hjam 0x5b ,0x894c 
+0x0058 000159 hjam 0x96 ,0x894d 
+0x0059 000160 hjam 0x2c ,0x894e 
+0x005a 000161 hjam 0x46 ,0x894f 
+0x005b 000162 branch p_txon_select_power_level 
+:      000163 p_rx_high_sens:
+0x005c 000164 hjam 0xfb ,0x894c 
+0x005d 000165 hjam 0xef ,0x894d 
+0x005e 000166 hjam 0xec ,0x894e 
+0x005f 000167 hjam 0x5e ,0x894f 
+:      000168 p_txon_select_power_level:
+0x0060 000169 fetch 1 ,mem_tx_power 
+0x0061 000170 branch txon_power_select 
+:      000172 p_set_tx_power_pair:
+0x0062 000173 hjam 0xc5 ,0x8956 
+0x0063 000174 hjam 0xd0 ,0x8955 
+0x0064 000175 rtn 
+:      000177 p_initialize_radio_cont:
+0x0065 000178 call lpm_cal_xtal_startup 
+0x0066 000179 call switchto_dpllclk 
+0x0067 000180 hjam clksel_rc ,core_clksel 
+0x0068 000181 hfetch 1 ,rf_clkpll_int 
+0x0069 000182 set1 7 ,pdata 
+0x006a 000183 hstore 1 ,rf_clkpll_int 
+0x006b 000184 set0 7 ,pdata 
+0x006c 000185 hstore 1 ,rf_clkpll_int 
+0x006d 000186 set1 7 ,pdata 
+0x006e 000187 hstore 1 ,rf_clkpll_int 
+0x006f 000188 hjam clksel_dpll ,core_clksel 
+0x0070 000189 branch initialize_radio_cont + 4 
+:      000191 p_lpm_recover_clk:
+0x0071 000192 call lpm_recover_clk + 2 
+0x0072 000193 fetch 1 ,mem_hibernate_flag 
+0x0073 000194 rtn blank 
+0x0074 000195 jam 0 ,mem_hibernate_flag 
+0x0075 000196 copy clkn_bt ,pdata 
+0x0076 000197 store 4 ,mem_ipc_last_check_timer 
+0x0077 000198 rtn 
+:      000200 p_lpm_dispatch:
+0x0078 000201 rtnmark1 mark_24g 
+0x0079 000202 call lpo_calibration 
+0x007a 000203 fetch 3 ,mem_clks_per_lpo 
+0x007b 000204 rtn blank 
+0x007c 000205 fetch 2 ,mem_context + coffset_tsniff 
+0x007d 000206 arg 0xffff ,temp 
+0x007e 000207 isub temp ,null 
+0x007f 000208 rtn zero 
+0x0080 000209 fetch 1 ,mem_lpm_mode 
+0x0081 000210 rtn blank 
+0x0082 000211 call l2cap_malloc_is_fifo_empty 
+0x0083 000212 nrtn blank 
+0x0084 000213 call lpm_check_wake_lock 
+0x0085 000214 nrtn blank 
+0x0086 000215 call xtal_fast_wake 
+0x0087 000216 fetch 1 ,mem_ssp_enable 
+0x0088 000217 branch lpm_dispatch_next ,blank 
+0x0089 000218 fetch 1 ,mem_sp_local_key_invalid 
+0x008a 000219 rtn blank 
+0x008b 000220 branch lpm_dispatch_next 
+:      000222 p_lpm_dispatch_next2:
+0x008c 000223 fetch 1 ,mem_le_switch_send_data 
+0x008d 000224 branch p_lpm_dispatch_long_mult ,blank 
+0x008e 000225 fetch 1 ,mem_lpm_current_mult 
+0x008f 000226 nbranch p_lpm_dispatch_long_mult ,blank 
+0x0090 000227 fetch 1 ,mem_bt_read_ipc_count 
+0x0091 000228 fetcht 1 ,mem_51_read_sensor_count 
+0x0092 000229 isub temp ,null 
+0x0093 000230 nrtn zero 
+0x0094 000231 fetch 1 ,mem_ble_data_wheel 
+0x0095 000232 nrtn blank 
+0x0096 000233 setarg 0 
+0x0097 000234 store 8 ,mem_gpio_wakeup_low 
+0x0098 000235 branch lpm_dispatch_next2 
+:      000236 p_lpm_dispatch_long_mult:
+0x0099 000237 call p_check_ipc_for_lpm 
+0x009a 000238 nrtn user 
+0x009b 000239 fetch 1 ,mem_c51_lmp_lock 
+0x009c 000240 nrtn blank 
+0x009d 000241 jam 0 ,mem_bt_wakeup_from_long_mult 
+0x009e 000242 branch lpm_dispatch_next2 
+:      000244 p_lpm_dispatch_unconn:
+0x009f 000245 call p_check_ipc_for_lpm 
+0x00a0 000246 nrtn user 
+0x00a1 000247 fetch 1 ,mem_c51_lmp_lock 
+0x00a2 000248 nrtn blank 
+0x00a3 000249 branch lpm_dispatch_unconn + 2 
+:      000251 p_check_ipc_for_lpm:
+0x00a4 000252 call p_check_ipc_2bt 
+0x00a5 000253 nrtn user 
+0x00a6 000254 call p_check_ipc_2c51 
+0x00a7 000255 nrtn user 
+0x00a8 000256 jam 1 ,mem_c51_lmp_lock 
+0x00a9 000257 jam syc_task_lpm ,mem_c51_flag 
+0x00aa 000258 call p_c51_wait 
+0x00ab 000259 branch p_check_ipc_2bt 
+:      000263 p_check_ipc_2c51:
+0x00ac 000264 fetch 2 ,mem_ipc_2c51_read_index 
+0x00ad 000265 fetcht 2 ,mem_ipc_2c51_write_index 
+0x00ae 000266 branch p_check_ipc_common 
+:      000267 p_check_ipc_2bt:
+0x00af 000268 fetch 2 ,mem_ipc_2bt_read_index 
+0x00b0 000269 fetcht 2 ,mem_ipc_2bt_write_index 
+:      000270 p_check_ipc_common:
+0x00b1 000271 isub temp ,null 
+0x00b2 000272 branch enable_usr ,zero 
+0x00b3 000273 branch disable_usr 
+:      000275 p_c51_wait:
+0x00b4 000276 fetch 1 ,mem_c51_flag 
+0x00b5 000277 nop 10 
+0x00b6 000278 bne 0 ,p_c51_wait 
+0x00b7 000279 rtn 
+:      000282 p_app_lpm_init:
+0x00b8 000283 jam 39 ,mem_le_ch_mapped 
+0x00b9 000284 jam 0 ,mem_tester_emulate 
+0x00ba 000285 jam 0 ,mem_debug_config 
+0x00bb 000286 jam 0 ,mem_lch_code 
+0x00bc 000287 setarg 0 
+0x00bd 000288 store 5 ,mem_sp_state_start 
+0x00be 000289 rtn 
+:      000291 p_app_process_bb_event:
+0x00bf 000292 arg mem_ipc_fifo_bt2c51 ,rega 
+0x00c0 000293 call fifo_out 
+0x00c1 000294 rtn blank 
+0x00c2 000296 copy pdata ,regc 
+0x00c3 000297 call p_app_event_normal_process 
+0x00c4 000298 branch app_process_bb_event_priority 
+:      000299 p_app_event_normal_process:
+0x00c5 000300 rtneq bt_evt_linkkey_generate 
+0x00c6 000301 beq bt_evt_le_connected ,p_device_le_conn 
+0x00c7 000302 beq bt_evt_le_disconnected ,p_device_le_discon 
+0x00c8 000303 beq bt_evt_le_enc_info ,p_device_le_enc_info 
+0x00c9 000304 branch app_event_normal_process 
+:      000307 p_device_le_conn:
+0x00ca 000308 jam 0 ,mem_bt_read_ipc_count 
+0x00cb 000309 jam 0 ,mem_lpm_mult 
+0x00cc 000310 jam 0 ,mem_mult_time_arrive_flag 
+0x00cd 000311 jam 120 ,mem_le_slave_update_mult_timer 
+0x00ce 000312 call app_ble_stop_adv 
+0x00cf 000313 call app_bt_stop_discovery 
+0x00d0 000314 call app_lpm_mult_enable 
+0x00d1 000315 branch app_le_event_bb_connected 
+:      000317 p_device_le_discon:
+0x00d2 000318 jam 0 ,mem_ble_send_flag 
+0x00d3 000319 call queue_init 
+0x00d4 000320 jam 0 ,mem_ltk_exists 
+0x00d5 000321 jam 0 ,mem_lpm_mult 
+0x00d6 000322 jam 0 ,mem_mult_time_arrive_flag 
+0x00d7 000323 jam 0 ,mem_le_slave_update_mult_timer 
+0x00d8 000325 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x00d9 000326 fetcht 2 ,mem_le_att_report2 
+0x00da 000327 storet 2 ,mem_le_notify_handle 
+0x00db 000328 call le_clean_att_list_handle_enable 
+0x00dc 000329 branch app_le_event_bb_disconn 
+:      000331 p_device_le_enc_info:
+0x00dd 000332 call p_app_updata_le_param 
+0x00de 000333 branch check_51cmd_le_start_write 
+:      000335 p_app_evt_timer:
+0x00df 000336 storet 1 ,mem_app_evt_timer_count 
+0x00e0 000337 fetch 1 ,mem_ipc_bt_100ms_timer 
+0x00e1 000338 increase 1 ,pdata 
+0x00e2 000339 store 1 ,mem_ipc_bt_100ms_timer 
+:      000340 p_app_evt_100ms_loop:
+0x00e3 000341 fetch 1 ,mem_app_evt_timer_count 
+0x00e4 000342 rtn blank 
+0x00e5 000343 increase -1 ,pdata 
+0x00e6 000344 store 1 ,mem_app_evt_timer_count 
+0x00e7 000346 call p_le_slave_update_mult_timer 
+0x00e8 000347 call p_check_mult_parameter 
+0x00e9 000348 call p_le_reconn_enable_notify_timer 
+0x00ea 000350 call p_ble_data_wheel_lpm_timer 
+0x00eb 000352 call p_led_gpio8_blink_timer 
+0x00ec 000353 call p_led_gpio5_blink_timer 
+0x00ed 000355 branch p_app_evt_100ms_loop 
+:      000358 p_led_gpio8_blink_timer:
+0x00ee 000359 fetch 1 ,mem_led_gpio8_blink_timer 
+0x00ef 000360 rtn blank 
+0x00f0 000361 increase -1 ,pdata 
+0x00f1 000362 store 1 ,mem_led_gpio8_blink_timer 
+0x00f2 000363 nrtn blank 
+0x00f3 000364 fetch 1 ,mem_led_gpio8_blink_cnt 
+0x00f4 000365 increase 1 ,pdata 
+0x00f5 000366 and_into 1 ,pdata 
+0x00f6 000367 store 1 ,mem_led_gpio8_blink_cnt 
+0x00f7 000368 beq 0 ,p_led_gpio8_off 
+0x00f8 000369 beq 1 ,p_led_gpio8_on 
+0x00f9 000370 rtn 
+:      000371 p_led_gpio8_off:
+0x00fa 000372 arg 8 ,temp 
+0x00fb 000373 branch gpio_out_inactive 
+:      000374 p_led_gpio8_on:
+0x00fc 000375 arg 8 ,temp 
+0x00fd 000376 branch gpio_out_active 
+:      000378 p_led_gpio5_blink_timer:
+0x00fe 000379 fetch 1 ,mem_led_gpio5_blink_timer 
+0x00ff 000380 rtn blank 
+0x0100 000381 increase -1 ,pdata 
+0x0101 000382 store 1 ,mem_led_gpio5_blink_timer 
+0x0102 000383 nrtn blank 
+0x0103 000384 fetch 1 ,mem_led_gpio5_blink_cnt 
+0x0104 000385 increase 1 ,pdata 
+0x0105 000386 and_into 1 ,pdata 
+0x0106 000387 store 1 ,mem_led_gpio5_blink_cnt 
+0x0107 000388 beq 0 ,p_led_gpio5_off 
+0x0108 000389 beq 1 ,p_led_gpio5_on 
+0x0109 000390 rtn 
+:      000391 p_led_gpio5_off:
+0x010a 000392 arg 5 ,temp 
+0x010b 000393 branch gpio_out_inactive 
+:      000394 p_led_gpio5_on:
+0x010c 000395 arg 5 ,temp 
+0x010d 000396 branch gpio_out_active 
+:      000400 p_check_mult_parameter:
+0x010e 000401 fetch 1 ,mem_mult_time_arrive_flag 
+0x010f 000402 rtn blank 
+0x0110 000403 fetch 1 ,mem_lpm_mult 
+0x0111 000404 compare 0x20 ,pdata ,0xff 
+0x0112 000405 ncall p_set_mult_para ,true 
+0x0113 000406 fetch 1 ,mem_lpm_mode 
+0x0114 000407 call p_set_multmode ,blank 
+0x0115 000408 rtn 
+:      000409 p_set_multmode:
+0x0116 000410 jam 1 ,mem_lpm_mode 
+0x0117 000411 rtn 
+:      000412 p_set_mult_para:
+0x0118 000413 jam 0x20 ,mem_lpm_mult 
+0x0119 000414 rtn 
+:      000415 p_24g_enter_lpm_timer:
+0x011a 000416 fetch 1 ,mem_new_24g_enter_lpm_timer 
+0x011b 000417 rtn blank 
+0x011c 000418 jam 0 ,mem_short_data_wheel 
+0x011d 000419 increase -1 ,pdata 
+0x011e 000420 store 1 ,mem_new_24g_enter_lpm_timer 
+0x011f 000421 nrtn blank 
+0x0120 000422 rtn 
+:      000424 p_ble_data_wheel_lpm_timer:
+0x0121 000425 fetch 1 ,mem_ble_data_wheel_lpm_timer 
+0x0122 000426 rtn blank 
+0x0123 000427 increase -1 ,pdata 
+0x0124 000428 store 1 ,mem_ble_data_wheel_lpm_timer 
+0x0125 000429 nrtn blank 
+0x0126 000430 jam 0 ,mem_ble_data_wheel 
+0x0127 000431 rtn 
+:      000439 p_app_updata_le_param:
+0x0128 000440 call app_lpm_mult_enable 
+0x0129 000441 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+0x012a 000442 branch ui_ipc_send_cmd 
+:      000444 p_le_slave_update_mult_timer:
+0x012b 000445 fetch 1 ,mem_le_slave_update_mult_timer 
+0x012c 000446 rtn blank 
+0x012d 000447 increase -1 ,pdata 
+0x012e 000448 store 1 ,mem_le_slave_update_mult_timer 
+0x012f 000449 nrtn blank 
+0x0130 000450 jam 0x20 ,mem_lpm_mult 
+0x0131 000451 jam 1 ,mem_lpm_mode 
+0x0132 000452 jam 1 ,mem_mult_time_arrive_flag 
+0x0133 000453 rtn 
+:      000455 p_le_reconn_enable_notify_timer:
+0x0134 000456 fetch 1 ,mem_le_reconn_enable_notify_timer 
+0x0135 000457 rtn blank 
+0x0136 000458 increase -1 ,pdata 
+0x0137 000459 store 1 ,mem_le_reconn_enable_notify_timer 
+0x0138 000460 nrtn blank 
+0x0139 000461 branch app_ble_start_write 
+:      000465 p_le_slave_match:
+0x013a 000466 call le_got_first_packet 
+0x013b 000467 call le_acknowledge 
+0x013c 000468 call le_prepare_tx 
+0x013d 000469 call power_ctrl_start 
+0x013e 000470 branch le_slave_match + 5 
+:      000472 p_le_receive_skip:
+0x013f 000473 call save_rssi 
+0x0140 000474 copy pdata ,rega 
+0x0141 000475 call rssi_signal 
+0x0142 000476 branch le_receive_skip + 3 
+:      000478 p_le_send_adv_ind:
+0x0143 000479 fetch 4 ,mem_le_rx_winsows 
+0x0144 000480 store 4 ,mem_le_transmit_window 
+0x0145 000481 branch le_send_adv_ind + 2 
+:      000483 p_le_update_param:
+0x0146 000484 jam 1 ,mem_lpm_mode 
+0x0147 000485 fetch 2 ,mem_le_event_count 
+0x0148 000486 fetcht 2 ,mem_le_instant 
+0x0149 000487 isub temp ,pdata 
+0x014a 000488 store 2 ,mem_pdatatemp 
+0x014b 000489 fetch 1 ,mem_le_state 
+0x014c 000490 set0 lestate_update_param ,pdata 
+0x014d 000491 set0 lestate_got_first_packet ,pdata 
+0x014e 000492 store 1 ,mem_le_state 
+0x014f 000493 fetch 4 ,mem_le_anchor 
+0x0150 000494 fetcht 2 ,mem_le_tsniff 
+0x0151 000495 storet 2 ,mem_temp 
+0x0152 000496 isub temp ,rega 
+0x0153 000497 fetch 1 ,mem_le_new_param 
+0x0154 000498 store 1 ,mem_le_window_size 
+0x0155 000499 ifetcht 2 ,contr 
+0x0156 000500 ifetch 2 ,contr 
+0x0157 000501 lshift2 pdata ,pdata 
+0x0158 000502 store 2 ,mem_le_tsniff 
+0x0159 000503 lshift2 temp ,temp 
+0x015a 000504 iadd temp ,pdata 
+0x015b 000505 ifetcht 4 ,contr 
+0x015c 000506 storet 4 ,mem_le_slave_latency 
+0x015d 000507 iadd rega ,pdata 
+0x015e 000508 copy pdata ,regab 
+0x015f 000509 fetch 2 ,mem_le_tsniff 
+0x0160 000510 fetcht 2 ,mem_temp 
+0x0161 000511 isub temp ,pdata 
+0x0162 000512 fetcht 2 ,mem_pdatatemp 
+0x0163 000513 imul32 temp ,pdata 
+0x0164 000514 iadd regab ,pdata 
+0x0165 000515 store 4 ,mem_le_anchor 
+0x0166 000516 call le_receive_window_size 
+0x0167 000517 fetch 2 ,mem_le_superto 
+0x0168 000518 store 2 ,mem_le_init_superto 
+0x0169 000519 rtn 
+:      000521 p_le_prepare_tx:
+0x016a 000522 fetch 1 ,mem_le_arq 
+0x016b 000523 bbit1 wak ,p_le_prepare_tx_retansmited 
+0x016c 000524 call power_ctrl_pac_succ_incrs 
+0x016d 000525 jam 0 ,mem_le_prepare_tx_retransmited_number 
+0x016e 000526 fetch 1 ,mem_empty_count_user 
+0x016f 000527 nbranch p_le_send_empyt ,blank 
+0x0170 000528 fetch 1 ,mem_mouse_le_pairing_flag 
+0x0171 000529 beq 1 ,p_le_smp_empty 
+0x0172 000530 fetch 1 ,mem_le_rxbuf + 1 
+0x0173 000531 branch le_prepare_tx_1 ,blank 
+0x0174 000532 branch le_send_empty 
+:      000533 p_le_send_empyt:
+0x0175 000534 fetch 1 ,mem_empty_count_user 
+0x0176 000535 increase -1 ,pdata 
+0x0177 000536 store 1 ,mem_empty_count_user 
+0x0178 000537 branch le_send_empty 
+:      000538 p_le_smp_empty:
+0x0179 000539 jam 3 ,mem_empty_count_user 
+0x017a 000540 branch le_prepare_tx_1 
+:      000542 p_le_prepare_tx_retansmited:
+0x017b 000543 fetch 1 ,mem_le_prepare_tx_retransmited_number 
+0x017c 000544 increase 1 ,pdata 
+0x017d 000545 store 1 ,mem_le_prepare_tx_retransmited_number 
+0x017e 000546 branch power_ctrl_pac_succ_decrs 
+:      000548 p_le_prepare_tx_ll:
+0x017f 000549 fetch 1 ,mem_le_txpayload 
+0x0180 000550 beq ll_start_enc_rsp ,p_le_send_start_enc_rsp 
+0x0181 000551 beq ll_terminate_ind ,p_le_send_terminate_ind 
+0x0182 000552 branch le_prepare_tx_ll 
+:      000554 p_le_send_start_enc_rsp:
+0x0183 000555 fetch 1 ,mem_le_reconn_flag 
+0x0184 000556 beq 1 ,p_le_send_reconn_start_enc_rsp 
+0x0185 000557 call app_ble_start_write 
+0x0186 000563 branch le_send_start_enc_rsp 
+:      000564 p_le_send_reconn_start_enc_rsp:
+0x0187 000565 call p_app_updata_le_param 
+0x0188 000566 jam 3 ,mem_le_reconn_enable_notify_timer 
+0x0189 000567 branch le_send_start_enc_rsp_common 
+:      000569 p_le_send_terminate_ind:
+0x018a 000570 setarg 0x13 
+0x018b 000571 istore 1 ,contw 
+0x018c 000572 call le_send_terminate_ind 
+0x018d 000573 setarg 10 
+0x018e 000574 store 2 ,mem_le_superto 
+0x018f 000575 store 2 ,mem_le_init_superto 
+0x0190 000576 rtn 
+:      000578 p_le_prepare_smp0:
+0x0191 000579 fetch 1 ,mem_le_l2cap 
+0x0192 000580 beq smp_pairing_response ,p_le_send_smp_pairing_response 
+0x0193 000581 beq smp_encryption_information ,p_le_send_smp_encryption_information 
+0x0194 000582 beq smp_master_identification ,p_le_send_smp_master_identification_only 
+0x0195 000583 branch le_prepare_smp0 
+:      000584 p_le_send_smp_master_identification_only:
+0x0196 000585 jam 0 ,mem_mouse_le_pairing_flag 
+0x0197 000586 branch le_send_smp_master_identification_only 
+:      000588 p_le_send_smp_pairing_response:
+0x0198 000589 setarg param_smp_paring_response 
+0x0199 000590 store 3 ,mem_le_pres 
+0x019a 000591 setarg 0x01 
+0x019b 000592 istore 1 ,contw 
+0x019c 000593 setarg param_smp_key_dist0 
+0x019d 000594 istore 3 ,contw 
+0x019e 000595 branch le_send_smp_pairing_response_common 
+:      000597 p_le_send_smp_encryption_information:
+0x019f 000598 jam bt_evt_le_enc_info ,mem_fifo_temp 
+0x01a0 000599 call ui_ipc_send_event 
+0x01a1 000600 jam xt_smp_master_identification ,mem_fifo_temp 
+0x01a2 000601 call le_xtype_fifo_in 
+0x01a3 000602 branch le_send_smp_encryption_information_shutter 
+:      000604 p_le_prepare_att:
+0x01a4 000605 fetch 1 ,mem_le_l2cap 
+0x01a5 000606 beq attop_handle_value_notification ,p_le_send_att_handle_value_notification 
+0x01a6 000607 beq attop_handle_value_indication ,p_le_send_att_handle_value_indication 
+0x01a7 000608 branch le_prepare_att + 5 
+:      000610 p_le_send_att_handle_value_indication:
+:      000611 p_le_send_att_handle_value_notification:
+0x01a8 000612 fetcht 2 ,mem_le_att_report2 
+0x01a9 000613 storet 2 ,mem_le_l2cap + 1 
+0x01aa 000614 fetch 1 ,mem_queue_read_ptr 
+0x01ab 000615 add pdata ,1 ,temp 
+0x01ac 000616 and temp ,0x03 ,temp 
+0x01ad 000617 storet 1 ,mem_queue_read_ptr 
+0x01ae 000618 mul32 pdata ,7 ,pdata 
+0x01af 000619 arg mem_queue_buffer0 ,contr 
+0x01b0 000620 iadd contr ,contr 
+0x01b1 000621 ifetch 7 ,contr 
+0x01b2 000622 store 7 ,mem_le_l2cap + 3 
+0x01b3 000623 arg 14 ,temp 
+0x01b4 000624 branch le_send_packet 
+:      000626 p_le_send_packet:
+0x01b5 000627 storet 1 ,mem_le_txlen 
+0x01b6 000628 compare 2 ,type ,3 
+0x01b7 000629 nbranch p_le_send_non_l2cap ,true 
+0x01b8 000630 add temp ,-4 ,pdata 
+0x01b9 000631 store 2 ,mem_le_txpayload 
+:      000632 p_le_send_non_l2cap:
+0x01ba 000633 fetcht 1 ,mem_le_arq 
+0x01bb 000634 call p_le_send_check_md 
+0x01bc 000635 branch le_send_non_l2cap1 
+:      000636 p_le_send_check_md:
+0x01bd 000637 fetch 1 ,mem_mouse_le_pairing_flag 
+0x01be 000638 beq 1 ,enable_blank 
+0x01bf 000639 branch le_xtype_fifo_is_empty 
+:      000640 enable_blank:
+0x01c0 000641 setarg 0 
+0x01c1 000642 rtn 
+:      000644 p_le_parse0:
+0x01c2 000645 copy regc ,pdata 
+0x01c3 000646 beq ll_connection_update_req ,p_le_parse_connection_update_req 
+0x01c4 000647 beq ll_terminate_ind ,p_le_parse_terminate_ind 
+0x01c5 000648 beq ll_enc_req ,p_le_parse_enc_req 
+0x01c6 000649 beq ll_pause_enc_req ,p_le_parse_pause_enc_rsq 
+0x01c7 000650 branch le_parse0 + 6 
+:      000652 p_le_parse_connection_update_req:
+0x01c8 000653 jam 0 ,mem_lpm_mode 
+0x01c9 000654 jam 60 ,mem_le_slave_update_mult_timer 
+0x01ca 000655 branch le_parse_connection_update_req 
+:      000657 p_le_parse_terminate_ind:
+0x01cb 000658 call le_parse_terminate_ind 
+:      000659 le_clear_xtype_fifo:
+0x01cc 000660 setarg 0 
+0x01cd 000661 store 8 ,mem_le_xtype_fifo 
+0x01ce 000662 rtn 
+:      000664 p_le_parse_enc_req:
+0x01cf 000665 call le_parse_enc_req 
+0x01d0 000666 fetch 1 ,mem_le_pairing_state 
+0x01d1 000667 rtneq flag_le_pairing_after_auth 
+0x01d2 000668 branch load_device_list_mode_4_shutter 
+:      000670 p_le_parse_pause_enc_rsq:
+0x01d3 000671 jam xt_ll_pause_enc_rsp ,mem_fifo_temp 
+0x01d4 000672 branch le_xtype_fifo_in 
+:      000674 p_le_parse_smp:
+0x01d5 000675 ifetch 1 ,contr 
+0x01d6 000676 beq smp_pairing_request ,p_le_parse_smp_pairing_request 
+0x01d7 000677 branch le_parse_smp + 3 
+:      000678 p_le_parse_smp_pairing_request:
+0x01d8 000679 jam 1 ,mem_mouse_le_pairing_flag 
+0x01d9 000680 jam 3 ,mem_empty_count_user 
+0x01da 000681 branch le_parse_smp_pairing_request 
+:      000683 p_le_parse_att:
+0x01db 000684 ifetch 3 ,contr 
+0x01dc 000685 store 3 ,mem_le_att_opcode 
+0x01dd 000686 beq attop_write_request ,p_le_parse_att_write_request 
+0x01de 000687 branch le_parse_att + 4 
+:      000689 p_le_parse_att_write_request:
+0x01df 000690 jam 1 ,mem_lpm_mode 
+0x01e0 000691 call p_le_parse_att_write_common 
+0x01e1 000692 call le_check_long_packet_patch 
+0x01e2 000693 nrtn zero 
+:      000694 p_le_parse_att_write_request_end:
+0x01e3 000695 jam attop_write_response ,mem_fifo_temp 
+0x01e4 000696 branch le_xtype_fifo_in 
+:      000697 p_le_parse_att_write_common:
+0x01e5 000698 fetch 1 ,mem_le_rxbuf + 1 
+0x01e6 000699 increase -7 ,pdata 
+0x01e7 000700 icopy loopcnt 
+0x01e8 000701 copy loopcnt ,regb 
+0x01e9 000702 branch le_parse_att_write_common + 6 
+:      000705 p_le_adv:
+0x01ea 000706 fetch 1 ,mem_le_adv_enable 
+0x01eb 000707 rtn blank 
+0x01ec 000708 arg le_adv_interval_timer ,queue 
+0x01ed 000709 call timer_check 
+0x01ee 000710 nrtn blank 
+0x01ef 000711 disable master 
+0x01f0 000712 enable swfine 
+0x01f1 000713 call le_init_adv 
+0x01f2 000714 call le_next_adv_channel 
+0x01f3 000715 call le_send_adv_ind 
+0x01f4 000716 nbranch p_le_adv_not_match ,match 
+0x01f5 000717 fetch 1 ,mem_le_req_rcv 
+0x01f6 000718 increase 1 ,pdata 
+0x01f7 000719 store 1 ,mem_le_req_rcv 
+0x01f8 000720 fetch 1 ,mem_le_rxbuf 
+0x01f9 000721 and pdata ,0x0f ,pdata 
+0x01fa 000722 beq scan_req ,p_le_send_scan_response 
+0x01fb 000723 beq connect_req ,le_parse_connect_req 
+:      000724 p_le_adv_not_match:
+0x01fc 000725 fetch 1 ,mem_le_ch_mapped 
+0x01fd 000726 bne 39 ,le_adv_loop 
+0x01fe 000727 random pdata 
+0x01ff 000728 arg 0x1ff ,temp 
+0x0200 000729 iand temp ,pdata 
+0x0201 000730 add pdata ,250 ,pdata 
+:      000731 p_adv_delay:
+0x0202 000732 increase -1 ,pdata 
+0x0203 000733 nop 38 
+0x0204 000734 nbranch p_adv_delay ,blank 
+0x0205 000735 branch le_adv_not_match + 3 
+:      000737 p_le_send_scan_response:
+0x0206 000738 call le_send_scan_response 
+0x0207 000739 branch p_le_adv_not_match 
+:      000741 p_le_receive_window_size:
+0x0208 000742 fetch 4 ,mem_le_transmit_window 
+0x0209 000743 arg 60000 ,temp 
+0x020a 000744 iadd temp ,pdata 
+0x020b 000745 store 4 ,mem_le_transmit_window 
+0x020c 000746 branch le_receive_window_size + 16 
+:      000749 p_le_lpm_set_mult:
+0x020d 000750 disable wake 
+0x020e 000751 branch p_le_lpm_set_mult_attempt ,attempt 
+0x020f 000752 nbranch p_le_lpm_lost ,match 
+:      000753 p_le_lpm_set_mult_attempt:
+0x0210 000754 call lpm_match 
+0x0211 000755 fetch 2 ,mem_rx_window_sniff 
+0x0212 000756 store 2 ,mem_le_receive_window 
+0x0213 000757 fetch 1 ,mem_le_rxbuf 
+0x0214 000758 compare 1 ,pdata ,3 
+0x0215 000759 nbranch lpm_mult_short ,true 
+0x0216 000760 fetch 1 ,mem_le_txheader 
+0x0217 000761 compare 1 ,pdata ,3 
+0x0218 000762 nbranch lpm_mult_short ,true 
+0x0219 000763 call le_xtype_fifo_is_empty 
+0x021a 000764 nbranch lpm_mult_short ,blank 
+0x021b 000765 fetch 1 ,mem_le_prepare_tx_retransmited_number 
+0x021c 000766 sub pdata ,1 ,null 
+0x021d 000767 nbranch lpm_mult_short ,positive 
+0x021e 000768 branch le_lpm_set_mult_attempt + 11 
+:      000770 p_le_lpm_lost:
+0x021f 000771 fetcht 2 ,mem_rx_window_sniff 
+0x0220 000772 fetch 2 ,mem_le_rx_window_inc 
+0x0221 000773 iadd temp ,temp 
+0x0222 000774 rshift temp ,temp 
+0x0223 000775 fetch 2 ,mem_le_receive_window 
+0x0224 000776 iadd temp ,pdata 
+0x0225 000777 store 2 ,mem_le_receive_window 
+0x0226 000778 branch lpm_lost 
+:      000781 p_iicd_read_eep:
+0x0227 000782 bmark1 mark_eeprom_size ,iicd_read_eep_size_2k_lcadcode 
+0x0228 000783 branch iicd_read_eep + 4 
+:      000785 p_gpio_set_before_lpm_common:
+0x0229 000786 hfetch 4 ,core_gpio_pu0 
+0x022a 000787 hfetcht 4 ,core_gpio_pd0 
+0x022b 000788 ior temp ,pdata 
+0x022c 000789 invert pdata ,pdata 
+0x022d 000790 iand rega ,pdata 
+0x022e 000791 hstore 4 ,core_gpio_oe0 
+0x022f 000792 rtn 
+:      000794 p_ui_timer_check_end:
+0x0230 000795 copy rega ,pdata 
+0x0231 000796 rtn blank 
+0x0232 000797 increase -160 ,temp 
+0x0233 000798 increase -160 ,temp 
+0x0234 000799 set0 28 ,temp 
+0x0235 000800 storet 4 ,mem_ui_timer_last_btclk 
+0x0236 000801 copy pdata ,temp 
+0x0237 000802 arg mem_ipc_fifo_bt2c51 ,rega 
+0x0238 000803 call fifo_is_near_full 
+0x0239 000804 nrtn blank 
+0x023a 000805 copy temp ,pdata 
+0x023b 000806 branch ui_timer_check_send_evt 
+:      000809 p_check_51cmd_once:
+0x023c 000810 call ui_ipc_get_lock 
+0x023d 000811 arg mem_ipc_fifo_c512bt ,rega 
+0x023e 000812 call fifo_out 
+0x023f 000813 copy pdata ,temp 
+0x0240 000814 call ui_ipc_put_lock 
+0x0241 000815 copy temp ,pdata 
+0x0242 000816 rtn blank 
+0x0243 000817 beq bt_cmd_start_24g ,g24_check_51cmd_start_24g 
+0x0244 000818 beq bt_cmd_stop_24g ,g24_check_51cmd_stop_24g 
+0x0245 000819 beq bt_cmd_pair_24g ,g24_check_51cmd_pair_24g 
+0x0246 000820 beq bt_cmd_start_adv ,p_check_51cmd_adv 
+0x0247 000821 beq bt_cmd_start_adv_reconn ,p_check_51cmd_adv_reconn 
+0x0248 000822 branch check_51cmd_once + 9 
+:      000824 g24_check_51cmd_start_24g:
+0x0249 000825 fetch 1 ,mem_tx_power_temp 
+0x024a 000826 store 1 ,mem_tx_power 
+0x024b 000827 jam state_24g_pairing_success ,mem_new_24g_pairing_sm 
+0x024c 000828 branch g24_start_24g_mode 
+:      000829 g24_check_51cmd_stop_24g:
+0x024d 000830 fetch 1 ,mem_tx_power_temp 
+0x024e 000831 store 1 ,mem_tx_power 
+0x024f 000832 set0 mark_24g ,mark 
+0x0250 000833 branch le_disable 
+:      000834 g24_check_51cmd_pair_24g:
+0x0251 000835 jam tx_power_pair ,mem_tx_power 
+0x0252 000836 branch g24_start_pairing_sm1 
+:      000839 p_check_51cmd_adv:
+0x0253 000840 set0 mark_24g ,mark 
+0x0254 000841 jam 0 ,mem_lpm_mode 
+0x0255 000842 random pdata 
+0x0256 000843 store 1 ,mem_le_lap 
+0x0257 000844 jam 0 ,mem_le_reconn_flag 
+0x0258 000845 fetcht 2 ,mem_le_att_report2 
+0x0259 000846 storet 2 ,mem_le_notify_handle 
+0x025a 000847 call le_clean_att_list_handle_enable 
+0x025b 000848 arg adv_flag_bredr_not_supported | adv_flag_limited_discoverable ,regb 
+:      000849 p_le_start_adv:
+0x025c 000850 call p_le_check_adv_flag 
+0x025d 000852 copy regb ,pdata 
+0x025e 000853 istore 1 ,contr 
+0x025f 000854 branch check_51cmd_adv 
+:      000856 p_check_51cmd_adv_reconn:
+0x0260 000857 set0 mark_24g ,mark 
+0x0261 000858 jam 0 ,mem_lpm_mode 
+0x0262 000859 jam 1 ,mem_le_reconn_flag 
+0x0263 000860 fetcht 2 ,mem_le_att_report2 
+0x0264 000861 call le_att_check_notification_enable 
+0x0265 000862 copy rega ,contw 
+0x0266 000863 setarg 1 
+0x0267 000864 istore 1 ,contw 
+0x0268 000865 arg adv_flag_bredr_not_supported ,regb 
+0x0269 000866 branch p_le_start_adv 
+:      000872 p_le_check_adv_flag:
+0x026a 000873 arg mem_le_adv_data ,rega 
+:      000874 p_le_check_adv_flag_loop:
+0x026b 000875 ifetch 1 ,rega 
+0x026c 000876 rtn blank 
+0x026d 000877 iadd contr ,rega 
+0x026e 000878 ifetch 1 ,contr 
+0x026f 000879 rtneq 0x01 
+0x0270 000880 branch p_le_check_adv_flag_loop 
+:      000883 p_check_51cmd_once_continue0:
+0x0271 000884 call lmo_fifo_check 
+0x0272 000885 nbranch check_51cmd_restore ,blank 
+:      000886 p_check_51cmd_once_continue:
+0x0273 000887 fetch 1 ,mem_fifo_temp 
+0x0274 000888 bmark0 mark_context ,check_51cmd_check_idle 
+0x0275 000891 beq bt_cmd_store_reconn_info_le ,p_rtn 
+0x0276 000893 branch check_51cmd_once_continue + 2 
+:      000910 p_check_enter_hibernate:
+0x0277 000911 jam syc_task_hibernate ,mem_c51_flag 
+0x0278 000912 call p_c51_wait 
+:      000913 p_enter_hibernate_continue:
+0x0279 000915 jam 0x5a ,mem_hibernate_flag 
+0x027a 000916 call lpm_write_gpio_wakeup 
+0x027b 000917 hfetch 4 ,core_lpm_ctrl 
+0x027c 000918 set0 15 ,pdata 
+0x027d 000919 hstore 4 ,core_lpm_reg 
+0x027e 000920 call lpm_write_ctrl 
+0x027f 000921 arg param_hibernate_clks ,temp 
+0x0280 000922 branch lpm_sleep 
+:      000925 p_ipc_timer_check:
+0x0281 000926 fetcht 4 ,mem_ipc_last_check_timer 
+0x0282 000927 copy clkn_bt ,pdata 
+0x0283 000928 isub temp ,pdata 
+0x0284 000930 arg 1600 ,temp 
+0x0285 000931 idiv temp 
+0x0286 000932 call wait_div_end 
+0x0287 000933 quotient pdata 
+0x0288 000934 rtn blank 
+0x0289 000935 copy clkn_bt ,temp 
+0x028a 000936 storet 4 ,mem_ipc_last_check_timer 
+0x028b 000937 fetcht 2 ,mem_ipc_bt_timer 
+0x028c 000938 byteswap temp ,temp 
+0x028d 000939 iadd temp ,pdata 
+0x028e 000940 byteswap pdata ,pdata 
+0x028f 000941 store 2 ,mem_ipc_bt_timer 
+0x0290 000942 byteswap pdata ,pdata 
+0x0291 000943 and pdata ,0x3 ,pdata 
+0x0292 000944 rtnne 0 
+0x0293 000945 call p_read_adc_enable 
+0x0294 000946 nrtn user2 
+:      000947 p_adc_check_process:
+0x0295 000948 fetch 1 ,mem_adc_config_flag 
+:      000949 p_rtn:
+0x0296 000950 rtn 
+:      000955 p_read_adc:
+0x0297 000956 hfetch 1 ,core_uart_baud + 1 
+0x0298 000957 set1 7 ,pdata 
+0x0299 000958 hstore 1 ,core_uart_baud + 1 
+0x029a 000959 hfetch 1 ,rf_adc_ch 
+0x029b 000960 or_into 0x30 ,pdata 
+0x029c 000961 hstore 1 ,rf_adc_ch 
+0x029d 000962 hjam 0x7c ,rfen_adc 
+0x029e 000963 hjam 0xaa ,rf_adc_gc 
+0x029f 000964 nop 5000 
+0x02a0 000965 hfetcht 2 ,core_adc_sum 
+0x02a1 000966 hfetch 1 ,core_uart_baud + 1 
+0x02a2 000967 set0 7 ,pdata 
+0x02a3 000968 hstore 1 ,core_uart_baud + 1 
+0x02a4 000969 byteswap temp ,temp 
+0x02a5 000970 storet 2 ,mem_adc_current_value 
+0x02a6 000971 rtn 
+:      000973 enable_usr2:
+0x02a7 000974 enable user2 
+0x02a8 000975 rtn 
+:      000976 p_read_adc_enable:
+0x02a9 000977 disable user2 
+0x02aa 000978 call le_xtype_fifo_is_empty 
+0x02ab 000979 call enable_usr2 ,blank 
+0x02ac 000980 fetch 1 ,mem_new_24g_abort_pac 
+0x02ad 000981 ncall enable_usr2 ,blank 
+0x02ae 000982 rtn 
+:      000984 p_user_le_connect_process:
+0x02af 000985 jam 1 ,mem_ble_read_ipc_fifo_once 
+0x02b0 000986 call p_ipc_rx 
+0x02b1 000987 jam 0 ,mem_ble_read_ipc_fifo_once 
+0x02b2 000988 rtn 
+:      000990 p_ipc_rx:
+0x02b3 000991 call p_check_ipc_2bt 
+0x02b4 000992 rtn user 
+0x02b5 000993 byteswap pdata ,pdata 
+0x02b6 000994 copy pdata ,contr 
+0x02b7 000995 call p_ipc_rx_byte 
+0x02b8 000996 store 1 ,mem_ipc_rx_type 
+0x02b9 000997 beq ipc_type_cmd ,p_ipc_rx_cmd 
+0x02ba 000998 beq ipc_type_24g ,g24_ipc_rx_24g 
+0x02bb 000999 copy pdata ,temp 
+0x02bc 001000 copy contr ,rega 
+0x02bd 001001 fetch 1 ,mem_context 
+0x02be 001002 bbit0 state_inconn ,p_ipc_abondon_rx_data 
+0x02bf 001003 copy rega ,contr 
+0x02c0 001004 rtnmark0 mark_context 
+0x02c1 001005 copy temp ,pdata 
+0x02c2 001006 beq ipc_type_ble ,p_ipc_rx_ble 
+0x02c3 001007 branch assert 
+:      001009 p_ipc_rx_cmd:
+0x02c4 001010 call p_ipc_rx_byte 
+0x02c5 001011 call p_ipc_rx_byte 
+0x02c6 001012 store 1 ,mem_fifo_temp 
+0x02c7 001013 call p_ipc_next_rx 
+0x02c8 001014 branch ui_ipc_send_cmd 
+:      001016 p_ipc_next_rx:
+0x02c9 001017 call p_ipc_rx_updata_contr 
+0x02ca 001018 copy contr ,temp 
+0x02cb 001019 byteswap temp ,temp 
+0x02cc 001020 storet 2 ,mem_ipc_2bt_read_index 
+0x02cd 001021 rtn 
+:      001023 p_ipc_abondon_rx_data:
+0x02ce 001024 copy rega ,contr 
+0x02cf 001025 arg mem_tst_pktcnt_sync ,contw 
+0x02d0 001026 branch p_ipc_rx_cpy 
+:      001028 p_ipc_rx_cpy:
+0x02d1 001029 call p_ipc_rx_byte 
+0x02d2 001030 copy pdata ,loopcnt 
+:      001031 p_ipc_copy:
+0x02d3 001032 call p_ipc_cpy_loop 
+0x02d4 001033 branch p_ipc_next_rx 
+:      001035 p_ipc_cpy_loop:
+0x02d5 001036 call p_ipc_rx_byte 
+0x02d6 001037 istore 1 ,contw 
+0x02d7 001038 loop p_ipc_cpy_loop 
+0x02d8 001039 rtn 
+:      001041 p_ipc_rx_byte:
+0x02d9 001042 call p_ipc_rx_updata_contr 
+0x02da 001043 ifetch 1 ,contr 
+0x02db 001044 rtn 
+:      001046 p_ipc_rx_updata_contr:
+0x02dc 001047 setarg mem_ipc_2bt_fifo_end 
+0x02dd 001048 isub contr ,null 
+0x02de 001049 nrtn zero 
+0x02df 001050 arg mem_ipc_2bt_fifo_head ,contr 
+0x02e0 001051 rtn 
+:      001053 p_ipc_tx_evt:
+0x02e1 001054 arg 3 ,loopcnt 
+0x02e2 001055 arg mem_ipc_tx_evt_buff ,contr 
+:      001056 p_ipc_tx_cpy:
+0x02e3 001057 copy contr ,rega 
+0x02e4 001058 fetch 2 ,mem_ipc_2c51_write_index 
+0x02e5 001059 byteswap pdata ,pdata 
+0x02e6 001060 copy pdata ,contw 
+0x02e7 001061 copy rega ,contr 
+:      001062 p_ipc_tx_loop:
+0x02e8 001063 ifetch 1 ,contr 
+0x02e9 001064 istore 1 ,contw 
+0x02ea 001065 call p_ipc_tx_updata_contw 
+0x02eb 001066 loop p_ipc_tx_loop 
+0x02ec 001067 copy contw ,pdata 
+0x02ed 001068 byteswap pdata ,pdata 
+0x02ee 001069 store 2 ,mem_ipc_2c51_write_index 
+0x02ef 001070 rtn 
+:      001071 p_ipc_tx_updata_contw:
+0x02f0 001072 setarg mem_ipc_2c51_fifo_end 
+0x02f1 001073 isub contw ,null 
+0x02f2 001074 nrtn zero 
+0x02f3 001075 arg mem_ipc_2c51_fifo_head ,contw 
+0x02f4 001076 rtn 
+:      001078 g24_ipc_rx_24g:
+0x02f5 001079 rtnmark0 mark_24g_conext 
+0x02f6 001080 call p_ipc_rx_byte 
+0x02f7 001081 icopy loopcnt 
+0x02f8 001082 store 1 ,mem_new_uart_packet 
+0x02f9 001083 branch p_ipc_copy 
+:      001086 queue_init:
+0x02fa 001087 setarg 0 
+0x02fb 001088 store 3 ,mem_queue_write_prt 
+0x02fc 001089 rtn 
+:      001091 p_ipc_rx_ble_data:
+0x02fd 001092 rtnmark1 mark_24g 
+0x02fe 001093 fetch 1 ,mem_le_switch_send_data 
+0x02ff 001094 rtn blank 
+0x0300 001095 call p_check_ipc_2bt 
+0x0301 001096 rtn user 
+0x0302 001097 byteswap pdata ,pdata 
+0x0303 001098 copy pdata ,contr 
+0x0304 001099 call p_ipc_rx_byte 
+0x0305 001100 store 1 ,mem_ipc_rx_type 
+0x0306 001101 copy contr ,rega 
+0x0307 001102 bne ipc_type_ble ,p_ipc_abondon_rx_data 
+0x0308 001103 copy contr ,regb 
+0x0309 001104 call le_xtype_fifo_is_near_full 
+0x030a 001105 nrtn blank 
+0x030b 001106 branch p_ipc_rx_ble_read_fifo 
+:      001108 p_ipc_rx_ble:
+0x030c 001109 copy contr ,regb 
+0x030d 001110 fetch 1 ,mem_ble_read_ipc_fifo_once 
+0x030e 001111 rtn blank 
+0x030f 001112 call le_xtype_fifo_is_empty 
+0x0310 001113 nrtn blank 
+:      001114 p_ipc_rx_ble_read_fifo:
+0x0311 001115 fetcht 2 ,mem_le_att_report2 
+0x0312 001116 call le_att_check_notification_enable 
+0x0313 001117 rtnbit0 0 
+0x0314 001118 fetch 1 ,mem_le_switch_send_data 
+0x0315 001119 rtneq 0 
+0x0316 001120 fetch 1 ,mem_bt_read_ipc_count 
+0x0317 001121 pincrease 1 
+0x0318 001122 store 1 ,mem_bt_read_ipc_count 
+0x0319 001123 fetch 1 ,mem_queue_write_prt 
+0x031a 001124 add pdata ,1 ,temp 
+0x031b 001125 and temp ,0x03 ,temp 
+0x031c 001126 storet 1 ,mem_queue_write_prt 
+0x031d 001127 mul32 pdata ,7 ,pdata 
+0x031e 001128 arg mem_queue_buffer0 ,contw 
+0x031f 001129 iadd contw ,contw 
+0x0320 001130 copy regb ,contr 
+0x0321 001131 call p_ipc_rx_byte 
+0x0322 001132 icopy loopcnt 
+0x0323 001133 call p_ipc_copy 
+0x0324 001134 call p_ipc_rx_ble_read_fifo_first_time 
+0x0325 001135 rtn user2 
+0x0326 001136 jam attop_handle_value_notification ,mem_fifo_temp 
+0x0327 001137 branch le_xtype_fifo_in 
+:      001139 p_ipc_rx_ble_read_fifo_first_time:
+0x0328 001140 disable user2 
+0x0329 001141 fetch 1 ,mem_ble_send_flag 
+0x032a 001142 rtneq 5 
+0x032b 001143 enable user2 
+0x032c 001144 increase 1 ,pdata 
+0x032d 001145 store 1 ,mem_ble_send_flag 
+0x032e 001146 sub pdata ,1 ,null 
+0x032f 001147 nrtn positive 
+0x0330 001148 jam bt_evt_le_notify_enable ,mem_ipc_tx_evt 
+0x0331 001149 branch p_ipc_tx_evt 
+:      001157 p_ipc_init:
+0x0332 001158 setarg mem_ipc_2bt_fifo_head 
+0x0333 001159 byteswap pdata ,pdata 
+0x0334 001160 store 2 ,mem_ipc_2bt_read_index 
+0x0335 001161 store 2 ,mem_ipc_2bt_write_index 
+0x0336 001162 setarg mem_ipc_2c51_fifo_head 
+0x0337 001163 byteswap pdata ,pdata 
+0x0338 001164 store 2 ,mem_ipc_2c51_read_index 
+0x0339 001165 store 2 ,mem_ipc_2c51_write_index 
+0x033a 001166 rtn 
+:      001168 p_device_init:
+0x033b 001170 arg 8 ,temp 
+0x033c 001171 call gpio_config_output 
+0x033d 001172 arg 5 ,temp 
+0x033e 001173 call gpio_config_output 
+0x033f 001176 call le_modified_name_adv 
+0x0340 001179 jam 0 ,mem_c51_flag 
+0x0341 001180 jam 6 ,mem_connection_options 
+0x0342 001181 call app_lpm_mult_enable 
+0x0343 001184 setarg p_c51_user_event 
+0x0344 001185 store 2 ,mem_cb_bb_event_process 
+0x0345 001188 setarg p_user_le_connect_process 
+0x0346 001190 store 2 ,mem_cb_le_process 
+0x0347 001191 setarg p_device_before_hibernate 
+0x0348 001192 store 2 ,mem_cb_before_hibernate 
+0x0349 001193 ncall p_ipc_init ,wake 
+0x034a 001194 call p_device_wakeup ,wake 
+0x034b 001195 call lpm_disable_exen_output 
+0x034c 001196 fetch 1 ,mem_hibernate_flag 
+0x034d 001197 beq 0x5a ,p_device_init_init_hibwake 
+0x034e 001198 branch p_deveice_init_wake ,wake 
+0x034f 001199 fetch 1 ,mem_tx_power 
+0x0350 001200 store 1 ,mem_tx_power_temp 
+0x0351 001201 call power_ctrl_pac_succ_cnt_init 
+0x0352 001202 fetch 2 ,mem_adc_0v 
+0x0353 001203 byteswap pdata ,pdata 
+0x0354 001204 store 2 ,mem_adc_0v 
+0x0355 001205 fetch 2 ,mem_adc_3v 
+0x0356 001206 byteswap pdata ,pdata 
+0x0357 001207 store 2 ,mem_adc_3v 
+0x0358 001208 call p_init_adc_from_otp 
+0x0359 001209 call g24_set_device_addr 
+0x035a 001210 fetch 8 ,mem_temp 
+0x035b 001211 nbranch p_deveice_init_reset ,blank 
+0x035c 001212 fetch 2 ,0x4ad4 
+0x035d 001213 byteswap pdata ,pdata 
+0x035e 001214 branch p_deveice_init_reset ,blank 
+0x035f 001215 store 2 ,mem_adc_3v 
+:      001216 p_deveice_init_reset:
+0x0360 001217 jam bt_evt_reset ,mem_ipc_tx_evt 
+:      001218 p_device_init_common:
+0x0361 001219 fetch 1 ,mem_short_lpm_enable 
+0x0362 001220 nbranch p_24g_short_lpm_process ,blank 
+0x0363 001221 call p_adc_check_process 
+0x0364 001222 call p_ipc_tx_evt 
+0x0365 001223 call p_ipc_rx_ble_data 
+0x0366 001224 hjam start_c51_core ,core_docd_ctrl 
+0x0367 001225 rtn 
+:      001226 p_24g_short_lpm_process:
+0x0368 001227 call lpm_recover_clk ,wake 
+0x0369 001228 arg param_rx_setup ,timeup 
+0x036a 001229 until clkn_rt ,meet 
+0x036b 001230 copy clkn_bt ,pdata 
+0x036c 001231 store 3 ,mem_ckln_24g_short_lpm 
+:      001232 p_24g_short_lpm_process_loop:
+0x036d 001233 fetch 2 ,mem_ui_state_map 
+0x036e 001234 rtnbit1 ui_state_ble_adv 
+0x036f 001235 rtnbit1 ui_state_bt_discovery 
+0x0370 001236 call app_process_idle 
+0x0371 001237 call g24_short_lpm_transmit_process 
+0x0372 001238 branch p_24g_short_lpm_process_loop 
+:      001240 p_device_wakeup:
+0x0373 001241 copy auxcnt ,pdata 
+0x0374 001242 bmark0 mark_24g ,p_device_bt_wakeup 
+:      001243 g24_delay_long_sleep:
+0x0375 001245 branch g24_direct_long_sleep ,blank 
+:      001246 g24_delay_long_sleep2:
+0x0376 001247 jam 0xbb ,mem_new_24g_delay_long_sleep_maxcnt 
+0x0377 001248 rtn 
+:      001249 g24_direct_long_sleep:
+0x0378 001250 jam 0x00 ,mem_new_24g_delay_long_sleep_maxcnt 
+0x0379 001251 fetch 1 ,mem_new_24g_key_wheel_event 
+0x037a 001252 rtn blank 
+0x037b 001253 jam 0 ,mem_new_24g_key_wheel_event 
+0x037c 001254 branch g24_delay_long_sleep2 
+:      001256 p_device_bt_wakeup:
+0x037d 001258 branch p_device_bt_wakeup_check ,blank 
+0x037e 001259 jam 2 ,mem_bt_wakeup_from_long_mult 
+0x037f 001260 rtn 
+:      001261 p_device_bt_wakeup_check:
+0x0380 001262 fetch 1 ,mem_bt_motion_event 
+0x0381 001263 rtn blank 
+0x0382 001264 jam 0 ,mem_bt_motion_event 
+0x0383 001265 jam 1 ,mem_bt_wakeup_from_long_mult 
+0x0384 001266 rtn 
+:      001268 p_deveice_init_wake:
+0x0385 001269 jam bt_evt_wakeup ,mem_ipc_tx_evt 
+0x0386 001270 branch p_device_init_common 
+:      001271 p_device_init_init_hibwake:
+0x0387 001272 copy auxcnt ,pdata 
+0x0388 001273 branch p_enter_hibernate_continue ,blank 
+0x0389 001274 call init_lmp_work 
+0x038a 001275 call l2cap_init_work 
+0x038b 001276 setarg 0 
+0x038c 001277 store 8 ,mem_context 
+0x038d 001278 store 2 ,mem_ui_state_map 
+0x038e 001279 store 2 ,mem_ipc_bt_timer 
+0x038f 001280 store 2 ,mem_ipc_c51_timer 
+0x0390 001281 jam bt_evt_hibernate_wake ,mem_ipc_tx_evt 
+0x0391 001282 branch p_device_init_common 
+:      001284 p_init_adc_from_otp:
+0x0392 001285 call otp_enable_chgpump 
+0x0393 001286 setarg 0x7e2 
+0x0394 001287 arg mem_temp ,rega 
+0x0395 001288 arg 12 ,temp 
+0x0396 001289 call otpd_read_data 
+0x0397 001290 call otp_disable_chgpump 
+0x0398 001291 fetch 8 ,mem_temp 
+0x0399 001292 rtn blank 
+0x039a 001293 fetch 1 ,mem_adc_config_flag 
+0x039b 001294 rtn 
+:      001300 p_device_before_hibernate:
+0x039c 001301 enable user 
+0x039d 001302 hfetch 4 ,0x8138 
+0x039e 001303 setflag user ,26 ,pdata 
+0x039f 001304 hstore 4 ,core_lpm_reg 
+0x03a0 001305 call lpm_write_ctrl 
+0x03a1 001306 jam 1 ,mem_lpm_current_mult 
+:      001307 p_device_bt_lpm_before:
+0x03a2 001308 rtn 
+:      001313 p_c51_user_event:
+0x03a3 001314 copy regc ,pdata 
+0x03a4 001315 and_into bt_evt_timer_mask ,pdata 
+0x03a5 001316 rtneq bt_evt_timer_init 
+0x03a6 001317 copy regc ,pdata 
+0x03a7 001318 store 1 ,mem_ipc_tx_evt 
+0x03a8 001319 branch p_ipc_tx_evt 
+:      001322 g24_pair_init:
+0x03a9 001323 jam 0 ,mem_new_24g_pid 
+0x03aa 001324 jam g24_pair_ch ,mem_new_24g_ch 
+0x03ab 001325 fetch 4 ,mem_new_24g_paring_addr 
+:      001326 g24_update_addr_and_synccrc8:
+0x03ac 001327 store 4 ,mem_new_24g_addr 
+0x03ad 001328 branch g24_syncword_crc8 
+:      001331 g24_ch:
+0x03ae 001332 fetcht 1 ,mem_new_24g_current_ch_number 
+0x03af 001333 call g24_ch_calc 
+0x03b0 001334 increase 1 ,temp 
+0x03b1 001335 and_into 3 ,temp 
+0x03b2 001336 storet 1 ,mem_new_24g_current_ch_number 
+0x03b3 001337 rtn 
+:      001339 g24_ch_calc:
+0x03b4 001340 fetch 1 ,mem_new_24g_addr 
+0x03b5 001341 and_into 0x03 ,pdata 
+0x03b6 001342 mul32 pdata ,4 ,rega 
+0x03b7 001343 setarg mem_new_24g_ch_map1 
+0x03b8 001344 iadd rega ,pdata 
+0x03b9 001345 iadd temp ,contr 
+0x03ba 001346 ifetch 1 ,contr 
+0x03bb 001347 store 1 ,mem_new_24g_ch 
+0x03bc 001348 rtn 
+:      001350 g24_set_device_addr:
+0x03bd 001351 fetch 4 ,mem_temp 
+0x03be 001352 store 4 ,mem_new_24g_device_addr 
+0x03bf 001353 nrtn blank 
+0x03c0 001354 fetch 4 ,mem_lap 
+0x03c1 001355 store 4 ,mem_new_24g_device_addr 
+0x03c2 001356 rtn 
+:      001359 g24_transmit_rf_sta_init:
+0x03c3 001360 jam 1 ,mem_new_24g_rf_last_sta 
+0x03c4 001361 jam 0 ,mem_new_24g_sync_cnt 
+:      001362 g24_transmit_rf_ctrl_clear:
+0x03c5 001363 fetch 1 ,mem_new_24g_data_type 
+0x03c6 001364 and_into bits_data ,pdata 
+0x03c7 001365 store 1 ,mem_new_24g_data_type 
+0x03c8 001366 rtn 
+:      001368 g24_hop_ch_enable:
+0x03c9 001369 fetch 1 ,mem_new_24g_data_type 
+0x03ca 001370 set1 bit_hop ,pdata 
+0x03cb 001371 store 1 ,mem_new_24g_data_type 
+0x03cc 001373 store 1 ,mem_new_24g_txpayload 
+0x03cd 001374 rtn 
+:      001375 g24_hop_ch_disable:
+0x03ce 001376 fetch 1 ,mem_new_24g_data_type 
+0x03cf 001377 set0 bit_hop ,pdata 
+0x03d0 001378 store 1 ,mem_new_24g_data_type 
+0x03d1 001379 rtn 
+:      001381 g24_transmit_hop_pac_fail:
+0x03d2 001382 call power_ctrl_pac_succ_decrs 
+0x03d3 001383 fetch 1 ,mem_new_24g_rf_work_stage 
+0x03d4 001384 beq 1 ,g24_transmit_hop_pac_fail_wo_hop 
+0x03d5 001385 beq 2 ,g24_transmit_hop_pac_fail_hop_stage2 
+0x03d6 001386 rtn 
+:      001387 g24_transmit_hop_pac_fail_wo_hop:
+0x03d7 001388 jam 2 ,mem_new_24g_sync_cnt 
+:      001389 g24_transmit_hop_pac_fail_stage1:
+0x03d8 001390 jam 0 ,mem_new_24g_hop_pac_retry 
+0x03d9 001391 jam 0 ,mem_new_24g_rf_last_sta 
+0x03da 001392 branch g24_transmit_rf_ctrl_clear 
+:      001394 g24_transmit_hop_pac_fail_hop_stage2:
+0x03db 001395 jam 0 ,mem_new_24g_rf_hop_ch 
+0x03dc 001396 branch g24_transmit_hop_pac_fail_stage1 
+:      001398 g24_transmit_pac_fail_hop_stage3:
+0x03dd 001399 fetch 2 ,mem_new_24g_txfail_cnt 
+0x03de 001400 increase 1 ,pdata 
+0x03df 001401 store 2 ,mem_new_24g_txfail_cnt 
+0x03e0 001402 bbit1 6 ,g24_tx_attempt_fail 
+0x03e1 001403 fetch 1 ,mem_new_24g_rf_hop_ch 
+0x03e2 001404 beq 1 ,g24_rf_hop_fastly 
+0x03e3 001405 jam 1 ,mem_new_24g_rf_hop_ch 
+:      001406 g24_rf_hop_attemp_again:
+0x03e4 001407 fetch 1 ,mem_new_24g_rf_hop_ch 
+0x03e5 001408 bne 1 ,g24_transmit_rf_ctrl_clear 
+:      001409 g24_rf_hop_fastly:
+0x03e6 001410 fetch 1 ,mem_new_24g_hop_fastly_cnt 
+0x03e7 001411 increase 1 ,pdata 
+0x03e8 001412 store 1 ,mem_new_24g_hop_fastly_cnt 
+0x03e9 001413 beq 4 ,g24_rf_hop_fastly_exit 
+0x03ea 001414 call g24_ch 
+0x03eb 001415 jam 2 ,mem_new_24g_max_retry 
+0x03ec 001416 branch g24_transmit_packet 
+:      001418 g24_rf_hop_fastly_exit:
+0x03ed 001419 call power_ctrl_pac_succ_decrs 
+0x03ee 001420 jam 0 ,mem_new_24g_hop_fastly_cnt 
+0x03ef 001421 branch g24_transmit_rf_ctrl_clear 
+:      001423 g24_transmit_hop_pac_succ_wo_hop:
+0x03f0 001424 jam 2 ,mem_new_24g_sync_cnt 
+:      001425 g24_transmit_hop_pac_succ:
+0x03f1 001426 jam 1 ,mem_new_24g_rf_last_sta 
+0x03f2 001427 jam 0 ,mem_new_24g_rf_hop_ch 
+0x03f3 001428 branch g24_transmit_rf_ctrl_clear 
+:      001430 g24_transmit_succ_rf_config:
+0x03f4 001431 fetch 1 ,mem_new_24g_rf_work_stage 
+0x03f5 001432 beq 3 ,g24_transmit_hop_pac_succ 
+0x03f6 001433 fetch 1 ,mem_new_24g_data_type 
+0x03f7 001434 isolate0 bit_hop ,pdata 
+0x03f8 001435 branch g24_transmit_rf_sta_init ,true 
+0x03f9 001436 fetch 1 ,mem_new_24g_rf_work_stage 
+0x03fa 001437 beq 1 ,g24_transmit_hop_pac_succ_wo_hop 
+0x03fb 001438 beq 2 ,g24_transmit_hop_pac_succ 
+0x03fc 001439 rtn 
+:      001441 g24_rf_sta_check:
+0x03fd 001442 fetch 1 ,mem_new_24g_pairing_sm 
+0x03fe 001443 rtnne state_24g_pairing_success 
+0x03ff 001444 call g24_rf_laststa_synccnt_check 
+0x0400 001445 ncall g24_rf_sync_cnt_check ,user2 
+0x0401 001446 rtn 
+:      001448 g24_rf_laststa_synccnt_check:
+0x0402 001449 disable user2 
+0x0403 001450 fetch 1 ,mem_new_24g_rf_last_sta 
+0x0404 001451 rtnne 1 
+0x0405 001452 fetch 1 ,mem_new_24g_sync_cnt 
+0x0406 001453 rtnne 0 
+0x0407 001454 jam 1 ,mem_new_24g_rf_work_stage 
+0x0408 001455 jam 4 ,mem_new_24g_max_retry 
+0x0409 001456 branch enable_usr2 
+:      001458 g24_rf_sync_cnt_check:
+0x040a 001459 fetch 1 ,mem_new_24g_sync_cnt 
+0x040b 001460 branch g24_rf_hop_attemp ,blank 
+0x040c 001461 increase -1 ,pdata 
+0x040d 001462 store 1 ,mem_new_24g_sync_cnt 
+0x040e 001463 jam 2 ,mem_new_24g_rf_work_stage 
+0x040f 001464 call g24_ch 
+0x0410 001465 jam 4 ,mem_new_24g_max_retry 
+0x0411 001466 rtn 
+:      001468 g24_rf_hop_attemp:
+0x0412 001469 jam 3 ,mem_new_24g_rf_work_stage 
+0x0413 001470 fetch 1 ,mem_new_24g_rf_hop_ch 
+0x0414 001471 nbranch g24_rf_hop_attemp_again ,blank 
+0x0415 001472 call g24_ch 
+0x0416 001473 jam 2 ,mem_new_24g_max_retry 
+0x0417 001474 rtn 
+:      001477 g24_transmit_process:
+0x0418 001478 rtnmark0 mark_24g 
+0x0419 001479 set1 mark_24g_conext ,mark 
+0x041a 001480 fetcht 4 ,mem_new_24g_tx_btclk 
+0x041b 001481 copy clkn_bt ,pdata 
+0x041c 001482 isub temp ,null 
+0x041d 001483 ncall g24_timer_timeout ,positive 
+0x041e 001484 copy pdata ,regb 
+0x041f 001485 fetch 4 ,mem_new_24g_tx_btclk 
+0x0420 001486 fetcht 1 ,mem_new_24g_interval 
+0x0421 001487 iadd temp ,temp 
+0x0422 001488 copy regb ,pdata 
+0x0423 001489 isub temp ,null 
+0x0424 001490 nbranch g24_transmit_exit ,positive 
+0x0425 001491 set0 28 ,pdata 
+0x0426 001492 store 4 ,mem_new_24g_tx_btclk 
+0x0427 001493 call g24_interval_calibrate 
+0x0428 001494 call g24_txdata_prep 
+0x0429 001495 branch g24_no_data_to_tx ,user 
+0x042a 001496 call g24_rf_sta_check 
+:      001497 g24_transmit_start:
+0x042b 001498 call g24_transmit_packet 
+0x042c 001499 fetch 1 ,mem_new_24g_pairing_sm 
+0x042d 001500 sub pdata ,state_24g_pairing_success ,null 
+0x042e 001501 call power_ctrl_start ,zero 
+:      001502 g24_transmit_exit:
+0x042f 001503 set0 mark_24g_conext ,mark 
+0x0430 001504 rtn 
+:      001506 g24_timer_timeout:
+0x0431 001507 rtn zero 
+0x0432 001508 set1 28 ,pdata 
+0x0433 001509 rtn 
+:      001511 g24_interval_calibrate:
+0x0434 001512 fetch 1 ,mem_new_24g_pac_index 
+0x0435 001513 increase 1 ,pdata 
+0x0436 001514 store 1 ,mem_new_24g_pac_index 
+0x0437 001515 beq 4 ,g24_interval_max 
+0x0438 001516 beq 5 ,g24_interval_min 
+0x0439 001517 rtn 
+:      001518 g24_interval_max:
+0x043a 001519 fetch 1 ,mem_new_24g_interval_max 
+0x043b 001520 store 1 ,mem_new_24g_interval 
+0x043c 001521 rtn 
+:      001522 g24_interval_min:
+0x043d 001523 jam 0 ,mem_new_24g_pac_index 
+0x043e 001524 fetch 1 ,mem_new_24g_interval_min 
+0x043f 001525 store 1 ,mem_new_24g_interval 
+0x0440 001526 rtn 
+:      001529 g24_txdata_prep:
+0x0441 001530 fetch 1 ,mem_new_24g_pairing_sm 
+0x0442 001531 bne state_24g_pairing_success ,g24_pairing_sm 
+0x0443 001533 call p_ipc_rx 
+0x0444 001534 branch g24_txdata_prep_ipc_nodata ,user 
+0x0445 001535 fetch 1 ,mem_ipc_rx_type 
+0x0446 001536 bne ipc_type_24g ,enable_usr 
+:      001537 g24_txdata_prep_packeage_data:
+0x0447 001547 call g24_package_data 
+0x0448 001548 call g24_transmit_prep 
+:      001549 g24_txdata_enable_tx:
+0x0449 001550 jam ensure_on_24g ,mem_new_24g_ensure 
+0x044a 001551 rtn 
+:      001553 g24_enter_long_sleep:
+0x044b 001554 jam 0 ,mem_short_lpm_tx_cnt 
+0x044c 001555 jam 0 ,mem_short_lpm_enable 
+0x044d 001556 jam 10 ,mem_new_24g_enter_lpm_timer 
+0x044e 001557 rtn 
+:      001559 g24_txdata_prep_ipc_nodata:
+:      001562 g24_txdata_last_pac:
+0x044f 001563 fetch 1 ,mem_new_24g_ensure 
+0x0450 001564 beq ensure_on_24g ,disable_usr 
+0x0451 001565 rtn 
+:      001568 g24_short_lpm_txdata_prep:
+:      001569 g24_package_data:
+0x0452 001570 fetch 1 ,mem_new_24g_delay_long_sleep_maxcnt 
+0x0453 001571 store 1 ,mem_new_24g_delay_long_sleep_cnt 
+0x0454 001573 fetch 1 ,mem_new_uart_packet 
+0x0455 001574 copy pdata ,rega 
+0x0456 001575 arg mem_new_uart_packet + 1 ,regb 
+0x0457 001576 jam 0 ,mem_new_24g_abort_pac 
+:      001577 g24_package_data_pc_bind:
+0x0458 001578 call g24_transmit_rf_ctrl_clear 
+0x0459 001579 store 1 ,mem_new_24g_common_temp 
+0x045a 001581 add rega ,1 ,temp 
+0x045b 001582 arg mem_new_24g_common_temp + 1 ,contw 
+:      001583 g24_package_user_data:
+0x045c 001585 copy rega ,loopcnt 
+0x045d 001586 copy regb ,contr 
+0x045e 001587 call memcpy 
+0x045f 001588 arg mem_new_24g_common_temp ,rega 
+:      001589 g24_put_data_in_buff:
+0x0460 001590 rtnmark0 mark_24g_conext 
+0x0461 001591 storet 1 ,mem_new_24g_datalen 
+0x0462 001592 copy temp ,loopcnt 
+0x0463 001593 arg mem_new_24g_txbuf ,contw 
+0x0464 001594 copy rega ,contr 
+0x0465 001595 branch memcpy 
+:      001599 g24_syncword_crc8:
+0x0466 001600 arg 0 ,rega 
+0x0467 001601 arg 4 ,loopcnt 
+0x0468 001602 arg mem_new_24g_addr ,contr 
+:      001603 g24_syncword_crc8_loop:
+0x0469 001604 ifetch 1 ,contr 
+0x046a 001605 iadd rega ,rega 
+0x046b 001606 loop g24_syncword_crc8_loop 
+0x046c 001607 copy rega ,pdata 
+0x046d 001608 store 2 ,mem_new_24g_syncword 
+0x046e 001609 fetch 1 ,mem_new_24g_syncword 
+0x046f 001610 fetcht 1 ,mem_new_24g_syncword + 1 
+0x0470 001611 iadd temp ,pdata 
+0x0471 001612 store 1 ,mem_new_24g_syncword_crc8 
+0x0472 001613 rtn 
+:      001615 g24_transmit_prep:
+0x0473 001617 fetch 1 ,mem_new_24g_datalen 
+0x0474 001618 increase 2 ,pdata 
+0x0475 001619 store 1 ,mem_new_24g_txlen 
+0x0476 001621 fetch 1 ,mem_new_24g_data_type 
+0x0477 001622 store 1 ,mem_new_24g_txpayload 
+0x0478 001624 fetch 1 ,mem_new_24g_datalen 
+0x0479 001625 lshift3 pdata ,pdata 
+0x047a 001626 fetcht 1 ,mem_new_24g_pid 
+0x047b 001627 and temp ,0x03 ,temp 
+0x047c 001628 lshift temp ,temp 
+0x047d 001629 ior temp ,pdata 
+0x047e 001630 fetcht 1 ,mem_new_24g_no_ack 
+0x047f 001631 iadd temp ,pdata 
+0x0480 001632 istore 1 ,contw 
+0x0481 001634 fetch 1 ,mem_new_24g_datalen 
+0x0482 001635 iforce loopcnt 
+0x0483 001636 arg mem_new_24g_txbuf ,contr 
+0x0484 001637 branch memcpy 
+:      001639 g24_send_abort_packet:
+0x0485 001640 jam 1 ,mem_new_24g_abort_pac 
+0x0486 001641 jam 0 ,mem_new_24g_rf_hop_ch 
+0x0487 001642 call g24_transmit_rf_ctrl_clear 
+0x0488 001643 store 1 ,mem_new_24g_common_temp 
+0x0489 001644 setarg 0 
+0x048a 001645 store 7 ,mem_new_24g_common_temp + 1 
+0x048b 001646 fetch 4 ,mem_new_24g_device_addr 
+0x048c 001647 store 4 ,mem_new_24g_common_temp + 8 
+0x048d 001648 arg 12 ,temp 
+0x048e 001649 arg mem_new_24g_common_temp ,rega 
+0x048f 001650 call g24_put_data_in_buff 
+0x0490 001651 fetch 1 ,mem_new_24g_data_type 
+0x0491 001652 set1 bit_abort ,pdata 
+0x0492 001653 store 1 ,mem_new_24g_data_type 
+0x0493 001654 call g24_transmit_prep 
+0x0494 001655 call g24_txdata_enable_tx 
+0x0495 001656 branch g24_transmit_start 
+:      001658 g24_no_data_to_tx:
+0x0496 001659 rtn 
+:      001665 g24_no_data_to_tx_short_lpm_disable:
+0x0497 001666 fetch 1 ,mem_new_24g_abort_pac 
+0x0498 001667 branch g24_send_abort_packet ,blank 
+0x0499 001668 fetcht 1 ,mem_new_24g_delay_long_sleep_cnt 
+0x049a 001669 increase 1 ,temp 
+0x049b 001670 storet 1 ,mem_new_24g_delay_long_sleep_cnt 
+0x049c 001671 fetch 1 ,mem_new_24g_delay_long_sleep_maxcnt 
+0x049d 001672 isub temp ,null 
+0x049e 001673 rtn positive 
+0x049f 001674 jam 0 ,mem_new_24g_delay_long_sleep_cnt 
+:      001675 g24_lpm_long_sleep:
+0x04a0 001676 call p_check_ipc_for_lpm 
+0x04a1 001677 nrtn user 
+0x04a2 001678 fetch 1 ,mem_c51_lmp_lock 
+0x04a3 001679 nrtn blank 
+0x04a4 001680 fetch 1 ,mem_new_24g_enter_lpm_timer 
+0x04a5 001681 nrtn blank 
+0x04a6 001682 jam 0 ,mem_short_data_wheel 
+0x04a7 001683 call lpo_calibration 
+0x04a8 001684 fetch 3 ,mem_clks_per_lpo 
+0x04a9 001685 rtn blank 
+0x04aa 001686 fetch 8 ,mem_new_24g_enter_hibernate 
+0x04ab 001687 call clk2lpo 
+0x04ac 001688 storet 4 ,mem_sleep_counter 
+0x04ad 001689 branch lpm_sleep 
+:      001691 g24_lpm_short_increase:
+0x04ae 001692 fetch 1 ,mem_wakup_from_power_flag 
+0x04af 001693 isolate0 2 ,pdata 
+0x04b0 001694 branch g24_lpm_short_increase_poweron ,true 
+0x04b1 001695 fetch 1 ,mem_short_lpm_tx_cnt 
+0x04b2 001696 rtneq 5 
+0x04b3 001697 increase 1 ,pdata 
+0x04b4 001698 store 1 ,mem_short_lpm_tx_cnt 
+0x04b5 001699 rtnne 5 
+:      001700 g24_lpm_short_enable:
+0x04b6 001701 jam 1 ,mem_short_lpm_enable 
+0x04b7 001702 rtn 
+:      001704 g24_lpm_short_increase_poweron:
+0x04b8 001705 fetch 1 ,mem_short_lpm_tx_cnt 
+0x04b9 001706 rtneq 20 
+0x04ba 001707 increase 1 ,pdata 
+0x04bb 001708 store 1 ,mem_short_lpm_tx_cnt 
+0x04bc 001709 rtnne 20 
+0x04bd 001710 fetch 1 ,mem_wakup_from_power_flag 
+0x04be 001711 set1 2 ,pdata 
+0x04bf 001712 store 1 ,mem_wakup_from_power_flag 
+0x04c0 001713 branch g24_lpm_short_enable 
+:      001715 g24_lpm_short_decrease:
+0x04c1 001716 fetch 1 ,mem_short_lpm_tx_cnt 
+0x04c2 001717 rtn blank 
+0x04c3 001718 increase -1 ,pdata 
+0x04c4 001719 store 1 ,mem_short_lpm_tx_cnt 
+0x04c5 001720 nrtn blank 
+0x04c6 001721 jam 0 ,mem_short_lpm_enable 
+0x04c7 001722 rtn 
+:      001724 g24_short_lpm_transmit_process:
+0x04c8 001725 set1 mark_24g_conext ,mark 
+0x04c9 001726 call p_ipc_rx 
+0x04ca 001727 branch g24_short_lpm_transmit_process_ipc_nodata ,user 
+0x04cb 001728 fetch 1 ,mem_ipc_rx_type 
+0x04cc 001729 beq ipc_type_24g ,g24_short_lpm_txdata_data_ready 
+:      001730 g24_short_lpm_transmit_process_ipc_nodata:
+0x04cd 001731 fetch 1 ,mem_send_data_24g_short_lpm 
+0x04ce 001732 beq short_lpm_state_data ,g24_short_lpm_txdata_prep_buff_data 
+0x04cf 001733 beq short_lpm_state_nodata ,g24_no_data_to_tx 
+0x04d0 001734 beq short_lpm_state_button_wheel ,g24_short_lpm_transmit_process_button_wheel 
+0x04d1 001735 rtn 
+:      001737 g24_short_lpm_transmit_process_button_wheel:
+0x04d2 001738 jam 0 ,mem_short_lpm_tx_cnt 
+0x04d3 001739 jam 0 ,mem_short_lpm_enable 
+:      001740 g24_short_lpm_txdata_prep_buff_data:
+0x04d4 001741 call g24_lpm_short_increase 
+0x04d5 001742 jam 0 ,mem_send_data_24g_short_lpm 
+0x04d6 001743 arg 7 ,loopcnt 
+0x04d7 001744 copy loopcnt ,pdata 
+0x04d8 001745 store 1 ,mem_new_uart_packet 
+0x04d9 001746 arg mem_hid_buff ,contr 
+0x04da 001747 call memcpy 
+0x04db 001748 disable user 
+:      001749 g24_short_lpm_txdata_data_ready:
+0x04dc 001750 call g24_txdata_prep_packeage_data 
+0x04dd 001751 call g24_rf_sta_check 
+0x04de 001752 call g24_transmit_packet 
+0x04df 001753 call power_ctrl_start 
+:      001754 g24_short_lpm_sleep:
+0x04e0 001755 call lpo_calibration 
+0x04e1 001756 fetch 3 ,mem_clks_per_lpo 
+0x04e2 001757 rtn blank 
+0x04e3 001758 fetch 1 ,mem_lpm_mode 
+0x04e4 001759 rtn blank 
+0x04e5 001760 fetch 1 ,mem_short_data_wheel 
+0x04e6 001761 beq 1 ,g24_short_lpm_sleep2 
+0x04e7 001762 setarg 0 
+0x04e8 001763 store 8 ,mem_gpio_wakeup_low 
+:      001764 g24_short_lpm_sleep2:
+0x04e9 001765 call g24_short_lpm_select_param 
+0x04ea 001766 arg param_rx_setup ,timeup 
+0x04eb 001767 until clkn_rt ,meet 
+0x04ec 001768 fetcht 3 ,mem_ckln_24g_short_lpm 
+0x04ed 001769 copy clkn_bt ,pdata 
+0x04ee 001770 isub temp ,pdata 
+0x04ef 001771 and_into 0xff ,pdata 
+0x04f0 001772 arg 3750 ,temp 
+0x04f1 001773 imul32 temp ,temp 
+0x04f2 001774 fetch 4 ,mem_short_lpm_interval_param 
+0x04f3 001775 isub temp ,pdata 
+0x04f4 001776 branch lpm_dispatch_sleep ,positive 
+0x04f5 001777 fetch 1 ,mem_lpm_xtalcnt 
+0x04f6 001778 increase 1 ,pdata 
+0x04f7 001779 store 4 ,mem_sleep_counter 
+0x04f8 001780 branch lpm_dispatch_sleep + 7 
+:      001781 g24_short_lpm_select_param:
+0x04f9 001782 setarg g24_8125_interval_param 
+0x04fa 001783 store 4 ,mem_short_lpm_interval_param 
+0x04fb 001784 fetch 1 ,mem_short_lpm_interval_cnt 
+0x04fc 001785 increase 1 ,pdata 
+0x04fd 001786 bne 5 ,g24_short_lpm_select_param_cont 
+0x04fe 001787 setarg 0 
+:      001788 g24_short_lpm_select_param_cont:
+0x04ff 001789 store 1 ,mem_short_lpm_interval_cnt 
+0x0500 001790 rtnbit0 0 
+0x0501 001791 setarg g24_78125_interval_param 
+0x0502 001792 store 4 ,mem_short_lpm_interval_param 
+0x0503 001793 rtn 
+:      001796 g24_transmit_packet:
+0x0504 001797 jam 1 ,mem_led_gpio8_blink_timer 
+0x0505 001799 jam 0 ,mem_new_24g_retry 
+:      001800 g24_transmit_loop:
+0x0506 001801 arg param_rx_setup ,timeup 
+0x0507 001802 until clkn_rt ,meet 
+0x0508 001803 call g24_transmit_receive_ack 
+0x0509 001804 fetch 1 ,mem_new_24g_no_ack 
+0x050a 001805 rtneq no_ack_24g 
+0x050b 001806 nbranch g24_retransmit ,sync 
+0x050c 001807 nbranch g24_retransmit ,user3 
+0x050d 001809 jam 1 ,mem_led_gpio5_blink_timer 
+0x050e 001811 call g24_ackpayload_parse 
+0x050f 001812 call power_ctrl_pac_succ_incrs 
+:      001813 g24_transmit_next_packet:
+0x0510 001814 fetch 1 ,mem_new_24g_pid 
+0x0511 001815 increase 1 ,pdata 
+0x0512 001816 store 1 ,mem_new_24g_pid 
+0x0513 001817 fetch 1 ,mem_new_24g_pairing_sm 
+0x0514 001818 bne state_24g_pairing_success ,g24_paring_mode_start 
+0x0515 001819 call g24_transmit_succ_rf_config 
+:      001820 g24_transmit_abandon:
+0x0516 001821 setarg 0 
+0x0517 001822 store 2 ,mem_new_24g_txfail_cnt 
+0x0518 001823 store 1 ,mem_new_24g_get_ack_fail 
+0x0519 001824 store 1 ,mem_new_24g_hop_pac_retry 
+0x051a 001825 jam ensure_off_24g ,mem_new_24g_ensure 
+0x051b 001826 rtn 
+:      001827 g24_paring_mode_start:
+0x051c 001828 call power_ctrl_pac_succ_cnt_init 
+0x051d 001829 branch g24_paring_mode 
+:      001831 g24_transmit_receive_ack:
+0x051e 001832 disable user3 
+0x051f 001833 call g24_transmit 
+0x0520 001834 fetch 1 ,mem_new_24g_no_ack 
+0x0521 001835 beq no_ack_24g ,g24_transmit_no_ack 
+0x0522 001836 force 0 ,radio_ctrl 
+0x0523 001837 fetch 4 ,mem_new_24g_addr 
+0x0524 001838 iforce access 
+0x0525 001839 fetcht 1 ,mem_last_freq 
+0x0526 001840 call set_freq_rx 
+0x0527 001841 call rf_rx_enable 
+0x0528 001842 call g24_receive_rxon 
+0x0529 001843 call g24_end_of_packet ,user3 
+0x052a 001844 rtn 
+:      001845 g24_transmit_no_ack:
+0x052b 001846 call g24_end_of_packet 
+0x052c 001847 branch g24_transmit_next_packet 
+:      001849 g24_retransmit:
+0x052d 001850 fetch 1 ,mem_new_24g_get_ack_fail 
+0x052e 001851 increase 1 ,pdata 
+0x052f 001852 store 1 ,mem_new_24g_get_ack_fail 
+0x0530 001853 fetch 1 ,mem_new_24g_pairing_sm 
+0x0531 001854 bne state_24g_pairing_success ,g24_tx_paring_retry 
+0x0532 001855 fetcht 1 ,mem_new_24g_retry 
+0x0533 001856 increase 1 ,temp 
+0x0534 001857 storet 1 ,mem_new_24g_retry 
+0x0535 001858 fetch 1 ,mem_new_24g_max_retry 
+0x0536 001859 isub temp ,pdata 
+0x0537 001860 nbranch g24_transmit_loop ,blank 
+0x0538 001861 fetch 1 ,mem_new_24g_rf_work_stage 
+0x0539 001862 beq 3 ,g24_transmit_pac_fail_hop_stage3 
+0x053a 001863 fetch 1 ,mem_new_24g_hop_pac_retry 
+0x053b 001864 increase 1 ,pdata 
+0x053c 001865 store 1 ,mem_new_24g_hop_pac_retry 
+0x053d 001866 beq 2 ,g24_transmit_hop_pac_fail 
+0x053e 001867 call g24_hop_ch_enable 
+0x053f 001868 jam 1 ,mem_new_24g_max_retry 
+0x0540 001869 branch g24_transmit_packet 
+:      001871 g24_tx_paring_retry:
+0x0541 001872 fetch 1 ,mem_new_24g_get_ack_fail 
+0x0542 001873 rtnne 0xff 
+0x0543 001874 jam 0 ,mem_new_24g_get_ack_fail 
+0x0544 001875 branch g24_stop_24g_mode 
+:      001877 g24_tx_attempt_fail:
+0x0545 001878 setarg 0 
+0x0546 001879 store 2 ,mem_new_24g_txfail_cnt 
+0x0547 001880 jam 0 ,mem_lpm_mode 
+0x0548 001881 jam 0 ,mem_short_lpm_tx_cnt 
+0x0549 001882 jam 0 ,mem_short_lpm_enable 
+:      001883 g24_stop_24g_mode:
+0x054a 001884 jam bt_evt_24g_attempt_fail ,mem_ipc_tx_evt 
+0x054b 001885 branch p_ipc_tx_evt 
+:      001887 g24_ackpayload_parse:
+0x054c 001888 call g24_read_len_pid_crc 
+0x054d 001889 fetch 1 ,mem_new_24g_rxdata_length 
+0x054e 001890 rtn blank 
+0x054f 001891 iforce loopcnt 
+0x0550 001892 arg mem_new_24g_rxbuf + 2 ,contr 
+0x0551 001893 arg mem_new_24g_rxpayload ,contw 
+0x0552 001894 branch memcpy 
+:      001896 g24_read_len_pid_crc:
+0x0553 001898 fetch 1 ,mem_new_24g_rxbuf + 1 
+0x0554 001899 rshift3 pdata ,pdata 
+0x0555 001900 store 1 ,mem_new_24g_rxdata_length 
+0x0556 001902 increase 1 ,pdata 
+0x0557 001903 arg mem_new_24g_rxbuf + 1 ,contr 
+0x0558 001904 iadd contr ,contr 
+0x0559 001905 ifetch 3 ,contr 
+0x055a 001906 store 3 ,mem_new_24g_sta_crc 
+0x055b 001908 fetch 1 ,mem_new_24g_rxbuf + 1 
+0x055c 001909 rshift pdata ,pdata 
+0x055d 001910 and pdata ,0x03 ,pdata 
+0x055e 001911 store 1 ,mem_new_24g_sta_pid 
+0x055f 001912 rtn 
+:      001915 g24_prep:
+0x0560 001916 disable enable_crc 
+0x0561 001917 disable enable_white 
+0x0562 001918 setarg 0x555555 
+0x0563 001919 iforce crc24_init 
+0x0564 001920 fetch 1 ,mem_new_24g_ch 
+0x0565 001921 reverse pdata ,temp 
+0x0566 001922 set1 1 ,temp 
+0x0567 001923 rshift temp ,white_init 
+0x0568 001924 rtn 
+:      001926 g24_set_freq_tx:
+0x0569 001927 call set_sync_on 
+0x056a 001928 fetcht 1 ,mem_new_24g_ch 
+0x056b 001929 branch set_freq_tx 
+:      001931 g24_transmit:
+0x056c 001932 call le_enable 
+0x056d 001933 fetch 4 ,mem_new_24g_addr 
+0x056e 001934 iforce access 
+0x056f 001935 call g24_prep 
+0x0570 001936 call g24_set_freq_tx 
+0x0571 001937 set1 txgfsk ,radio_ctrl 
+0x0572 001938 enable encode_fec0 
+0x0573 001939 enable is_tx 
+0x0574 001940 disable is_rx 
+0x0575 001941 rshift16 access ,pdata 
+0x0576 001942 rshift8 pdata ,pdata 
+0x0577 001943 rshift4 pdata ,pdata 
+0x0578 001944 inject mod ,40 
+0x0579 001945 disable encode_fec0 
+0x057a 001946 enable encode_fec1 
+0x057b 001947 enable enable_white 
+0x057c 001948 enable enable_crc 
+0x057d 001950 fetch 1 ,mem_new_24g_syncword_crc8 
+0x057e 001951 inject mod ,8 
+0x057f 001953 fetch 1 ,mem_new_24g_txlen 
+0x0580 001954 iforce loopcnt 
+0x0581 001955 arg mem_new_24g_txpayload ,contr 
+:      001956 g24tr_loop:
+0x0582 001957 ifetch 1 ,contr 
+0x0583 001958 inject mod ,8 
+0x0584 001959 loop g24tr_loop 
+0x0585 001960 enable enable_parity 
+0x0586 001961 inject mod ,24 
+0x0587 001962 disable enable_parity 
+0x0588 001963 until null ,tx_clear 
+0x0589 001964 nop 100 
+0x058a 001965 disable encode_fec0 
+0x058b 001966 disable encode_fec1 
+0x058c 001967 rtn 
+:      001969 g24_receive_packet:
+0x058d 001970 call le_enable 
+0x058e 001971 fetch 4 ,mem_new_24g_addr 
+0x058f 001972 iforce access 
+0x0590 001973 call set_sync_on 
+0x0591 001974 fetcht 1 ,mem_new_24g_ch 
+0x0592 001975 call set_freq_rx 
+0x0593 001976 setarg param_pll_setup 
+0x0594 001977 call sleep 
+0x0595 001978 call rf_rx_enable 
+:      001979 g24_receive_rxon:
+0x0596 001980 call g24_prep 
+0x0597 001981 disable user3 
+0x0598 001982 enable decode_fec0 
+0x0599 001983 enable is_rx 
+0x059a 001984 disable is_tx 
+0x059b 001985 enable swfine 
+0x059c 001986 fetch 2 ,mem_new_24g_rx_window 
+0x059d 001987 iforce stop_watch 
+0x059e 001988 correlate null ,timeout 
+0x059f 001989 nbranch g24_sync_timeout ,sync 
+0x05a0 001990 disable decode_fec0 
+0x05a1 001991 enable decode_fec1 
+0x05a2 001992 enable enable_white 
+0x05a3 001993 enable enable_crc 
+0x05a4 001995 parse demod ,bucket ,8 
+0x05a5 001996 rshift3 pwindow ,pdata 
+0x05a6 001997 store 1 ,mem_new_24g_get_syncword_crc8 
+0x05a7 001998 call g24_syncword_crc8 
+0x05a8 001999 fetcht 1 ,mem_new_24g_get_syncword_crc8 
+0x05a9 002000 isub temp ,null 
+0x05aa 002001 nbranch g24_end_of_packet ,zero 
+0x05ab 002003 parse demod ,bucket ,8 
+0x05ac 002004 rshift3 pwindow ,pdata 
+0x05ad 002005 store 1 ,mem_new_24g_rxbuf 
+0x05ae 002006 fetch 1 ,mem_new_24g_mode 
+0x05af 002007 sub pdata ,rx_24g ,null 
+0x05b0 002008 branch g24_receive_skip ,zero 
+0x05b1 002009 fetch 1 ,mem_new_24g_rxbuf 
+0x05b2 002010 fetcht 1 ,mem_new_24g_data_type 
+0x05b3 002011 icompare bits_data ,temp 
+0x05b4 002012 nbranch g24_end_of_packet ,true 
+:      002013 g24_receive_skip:
+0x05b5 002014 parse demod ,bucket ,8 
+0x05b6 002015 rshift3 pwindow ,pdata 
+0x05b7 002016 istore 1 ,contw 
+0x05b8 002017 rshift3 pdata ,pdata 
+0x05b9 002018 and pdata ,0x1f ,loopcnt 
+0x05ba 002019 branch g24rx_nopayload ,zero 
+:      002020 g24rx_loop:
+0x05bb 002021 parse demod ,bucket ,8 
+0x05bc 002022 rshift3 pwindow ,pdata 
+0x05bd 002023 istore 1 ,contw 
+0x05be 002024 loop g24rx_loop 
+:      002025 g24rx_nopayload:
+0x05bf 002027 copy contw ,rega 
+0x05c0 002028 parse demod ,bucket ,8 
+0x05c1 002029 rshift3 pwindow ,pdata 
+0x05c2 002030 store 1 ,mem_rssi_hex_received 
+0x05c3 002031 copy rega ,contw 
+0x05c4 002033 parse demod ,bucket ,24 
+0x05c5 002034 enable swfine 
+0x05c6 002035 arg param_sifs ,stop_watch 
+0x05c7 002036 rshift32 pdata ,pdata 
+0x05c8 002037 rshift16 pdata ,pdata 
+0x05c9 002038 istore 3 ,contw 
+0x05ca 002039 disable decode_fec1 
+0x05cb 002040 branch g24_end_of_packet ,crc_failed 
+0x05cc 002041 enable user3 
+0x05cd 002042 fetch 1 ,mem_last_freq 
+0x05ce 002043 add pdata ,0 ,rega 
+0x05cf 002044 call rf_write_freq 
+0x05d0 002045 disable decode_fec0 
+0x05d1 002046 call set_sync_on 
+0x05d2 002047 fetch 1 ,mem_rssi_hex_received 
+0x05d3 002048 copy pdata ,rega 
+0x05d4 002049 branch rssi_signal 
+:      002051 g24_end_of_packet:
+0x05d5 002052 disable encode_fec1 
+0x05d6 002053 disable decode_fec1 
+0x05d7 002054 branch end_of_packet 
+:      002056 g24_sync_timeout:
+0x05d8 002057 branch g24_end_of_packet 
+:      002059 power_ctrl_pac_succ_cnt_init:
+0x05d9 002060 jam 1 ,mem_power_ctrl_level 
+0x05da 002061 jam 0 ,mem_power_ctrl_pac_succ_cnt 
+0x05db 002062 rtn 
+:      002063 power_ctrl_pac_succ_incrs:
+0x05dc 002064 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0x05dd 002065 increase 1 ,pdata 
+0x05de 002066 store 1 ,mem_power_ctrl_pac_succ_cnt 
+0x05df 002067 rtn 
+:      002068 power_ctrl_pac_succ_decrs:
+0x05e0 002069 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0x05e1 002070 sub pdata ,1 ,null 
+0x05e2 002071 ncall power_ctrl_pac_succ_cnt_reinit ,positive 
+0x05e3 002072 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0x05e4 002073 rtneq 0 
+0x05e5 002074 increase -1 ,pdata 
+0x05e6 002075 store 1 ,mem_power_ctrl_pac_succ_cnt 
+0x05e7 002076 rtn 
+:      002077 power_ctrl_pac_succ_cnt_reinit:
+0x05e8 002078 jam 2 ,mem_power_ctrl_pac_succ_cnt 
+0x05e9 002079 rtn 
+:      002081 power_ctrl_start:
+0x05ea 002082 arg mem_rssi_signal_buf ,rega 
+0x05eb 002083 call rssi_average 
+0x05ec 002084 storet 1 ,mem_rssi_avg_received 
+0x05ed 002085 isolate1 mark_24g ,mark 
+0x05ee 002086 call power_ctrl_24g_dis_max ,true 
+0x05ef 002087 ncall power_ctrl_le_dis_max ,true 
+0x05f0 002088 isub temp ,null 
+0x05f1 002089 nbranch power_ctrl_txpower_incrs ,positive 
+0x05f2 002091 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0x05f3 002092 sub pdata ,1 ,null 
+0x05f4 002093 nbranch power_ctrl_txpower_decrs_check ,positive 
+0x05f5 002094 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0x05f6 002095 beq 0 ,power_ctrl_txpower_incrs 
+0x05f7 002096 rtn 
+:      002098 power_ctrl_24g_dis_max:
+0x05f8 002099 setarg rssi_dis_max_24g 
+0x05f9 002100 rtn 
+:      002101 power_ctrl_24g_dis_min:
+0x05fa 002102 setarg rssi_dis_min_24g 
+0x05fb 002103 rtn 
+:      002104 power_ctrl_le_dis_max:
+0x05fc 002105 setarg rssi_dis_max_ble 
+0x05fd 002106 rtn 
+:      002107 power_ctrl_le_dis_min:
+0x05fe 002108 setarg rssi_dis_min_ble 
+0x05ff 002109 rtn 
+:      002111 power_ctrl_txpower_decrs_check:
+0x0600 002112 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0x0601 002113 rtnne 70 
+0x0602 002114 jam 0 ,mem_power_ctrl_pac_succ_cnt 
+:      002115 power_ctrl_txpower_decrs:
+0x0603 002116 fetcht 1 ,mem_rssi_avg_received 
+0x0604 002117 isolate1 mark_24g ,mark 
+0x0605 002118 call power_ctrl_24g_dis_min ,true 
+0x0606 002119 ncall power_ctrl_le_dis_min ,true 
+0x0607 002120 isub temp ,null 
+0x0608 002121 nrtn positive 
+0x0609 002122 fetch 1 ,mem_power_ctrl_level 
+0x060a 002123 beq 0 ,power_ctrl_decrs_level0 
+0x060b 002124 increase -1 ,pdata 
+0x060c 002125 store 1 ,mem_power_ctrl_level 
+0x060d 002126 beq 0 ,power_ctrl_decrs_level0 
+:      002127 power_ctrl_decrs_level1:
+:      002128 power_ctrl_incrs_level1:
+0x060e 002129 hjam 0xd0 ,0x8955 
+0x060f 002130 hjam 0xe0 ,0x8956 
+0x0610 002131 hjam 0x4c ,0x8957 
+0x0611 002132 hjam 0x6c ,0x8958 
+0x0612 002133 hjam 0x50 ,0x8959 
+0x0613 002134 jam 0x01 ,mem_tx_power 
+0x0614 002135 rtn 
+:      002137 power_ctrl_txpower_incrs:
+0x0615 002138 fetch 1 ,mem_power_ctrl_level 
+0x0616 002139 beq 2 ,power_ctrl_incrs_level2 
+0x0617 002140 increase 1 ,pdata 
+0x0618 002141 store 1 ,mem_power_ctrl_level 
+0x0619 002142 beq 1 ,power_ctrl_incrs_level1 
+:      002143 power_ctrl_incrs_level2:
+0x061a 002144 hjam 0xd0 ,0x8955 
+0x061b 002145 hjam 0xe0 ,0x8956 
+0x061c 002146 hjam 0x4c ,0x8957 
+0x061d 002147 hjam 0x3c ,0x8958 
+0x061e 002148 hjam 0x10 ,0x8959 
+0x061f 002149 jam 0x04 ,mem_tx_power 
+0x0620 002150 rtn 
+:      002152 power_ctrl_decrs_level0:
+0x0621 002153 hjam 0xd0 ,0x8955 
+0x0622 002154 hjam 0xc0 ,0x8956 
+0x0623 002155 hjam 0x4c ,0x8957 
+0x0624 002156 hjam 0x6c ,0x8958 
+0x0625 002157 hjam 0x50 ,0x8959 
+0x0626 002158 jam 0x10 ,mem_tx_power 
+0x0627 002159 rtn 
+:      002161 rssi_signal:
+0x0628 002162 fetcht 1 ,mem_rssi_signal_index 
+0x0629 002163 setarg mem_rssi_signal_buf 
+0x062a 002164 iadd temp ,contw 
+0x062b 002165 copy rega ,pdata 
+0x062c 002166 istore 1 ,contw 
+0x062d 002167 increase 1 ,temp 
+0x062e 002168 and_into rssi_buf_len ,temp 
+0x062f 002169 storet 1 ,mem_rssi_signal_index 
+0x0630 002170 rtn 
+:      002171 rssi_average:
+0x0631 002172 arg 0 ,temp 
+0x0632 002173 arg rssi_buf_len + 1 ,loopcnt 
+0x0633 002174 copy rega ,contr 
+:      002175 rssi_average_loop:
+0x0634 002176 ifetch 1 ,contr 
+0x0635 002177 iadd temp ,temp 
+0x0636 002178 loop rssi_average_loop 
+0x0637 002179 rshift3 temp ,pdata 
+0x0638 002180 copy pdata ,temp 
+0x0639 002181 rtnmark0 mark_24g 
+0x063a 002183 div pdata ,10 
+0x063b 002184 call wait_div_end 
+0x063c 002185 quotient pdata 
+0x063d 002186 lshift4 pdata ,pdata 
+0x063e 002187 remainder temp 
+0x063f 002188 ior temp ,temp 
+0x0640 002189 rtn 
+:      002192 g24_start_pairing_sm1:
+0x0641 002193 set1 mark_24g ,mark 
+0x0642 002194 call g24_pair_init 
+:      002195 g24_set_pairing_sm_1:
+0x0643 002196 jam state_24g_pairing_1 ,mem_new_24g_pairing_sm 
+0x0644 002197 rtn 
+:      002199 g24_pairing_sm:
+0x0645 002200 fetch 1 ,mem_new_24g_ensure 
+0x0646 002201 beq ensure_on_24g ,disable_usr 
+0x0647 002202 fetch 1 ,mem_new_24g_pairing_sm 
+0x0648 002203 beq state_24g_pairing_1 ,g24_pairing_sm_1 
+0x0649 002204 beq state_24g_pairing_2 ,g24_pairing_sm_2 
+0x064a 002205 beq state_24g_pairing_3 ,g24_pairing_sm_3 
+0x064b 002206 branch assert 
+:      002208 g24_pairing_sm_1:
+0x064c 002209 jam state_24g_pairing_1_waiting_ack ,mem_new_24g_pairing_sm 
+0x064d 002210 jam 0xaa ,mem_new_24g_common_temp 
+0x064e 002211 branch g24_pairing_sm_common 
+:      002212 g24_pairing_sm_2:
+0x064f 002213 jam state_24g_pairing_2_waiting_ack ,mem_new_24g_pairing_sm 
+0x0650 002214 jam 0x55 ,mem_new_24g_common_temp 
+0x0651 002215 branch g24_pairing_sm_common 
+:      002216 g24_pairing_sm_3:
+0x0652 002217 jam state_24g_pairing_3_waiting_ack ,mem_new_24g_pairing_sm 
+0x0653 002218 jam 0x22 ,mem_new_24g_common_temp 
+:      002219 g24_pairing_sm_common:
+0x0654 002220 fetch 1 ,mem_new_24g_data_type 
+0x0655 002221 and_into bits_data ,pdata 
+0x0656 002222 store 1 ,mem_new_24g_common_temp + 1 
+0x0657 002223 fetch 4 ,mem_new_24g_device_addr 
+0x0658 002224 store 4 ,mem_new_24g_common_temp + 2 
+:      002225 g24_put_pairing_data_in_buff:
+0x0659 002226 jam 0 ,mem_new_24g_common_temp + 6 
+0x065a 002227 arg mem_new_24g_common_temp ,rega 
+0x065b 002228 arg 7 ,temp 
+0x065c 002229 call g24_put_data_in_buff 
+0x065d 002230 call g24_transmit_prep 
+0x065e 002231 call g24_txdata_enable_tx 
+0x065f 002232 branch disable_usr 
+:      002234 g24_paring_mode:
+0x0660 002235 fetch 1 ,mem_new_24g_pairing_sm 
+0x0661 002236 rtneq state_24g_pairing_success 
+0x0662 002237 beq state_24g_pairing_1_waiting_ack ,g24_pairing_sm_1_waiting_ack 
+0x0663 002238 beq state_24g_pairing_2_waiting_ack ,g24_pairing_sm_2_waiting_ack 
+0x0664 002239 beq state_24g_pairing_3_waiting_ack ,g24_pairing_sm_3_waiting_ack 
+0x0665 002240 rtn 
+:      002242 g24_pairing_sm_1_waiting_ack:
+0x0666 002243 jam state_24g_pairing_2 ,mem_new_24g_pairing_sm 
+0x0667 002244 branch g24_transmit_abandon 
+:      002245 g24_pairing_sm_2_waiting_ack:
+0x0668 002246 jam state_24g_pairing_3 ,mem_new_24g_pairing_sm 
+0x0669 002247 branch g24_transmit_abandon 
+:      002248 g24_pairing_sm_3_waiting_ack:
+0x066a 002249 jam state_24g_pairing_success ,mem_new_24g_pairing_sm 
+0x066b 002250 jam bt_evt_24g_pairing_complete ,mem_ipc_tx_evt 
+0x066c 002251 call p_ipc_tx_evt 
+0x066d 002252 fetch 4 ,mem_new_24g_rxpayload + 2 
+0x066e 002253 call g24_update_addr_and_synccrc8 
+0x066f 002254 branch g24_transmit_abandon 
+:      002256 g24_start_24g_mode:
+0x0670 002257 set0 mark_24g ,mark 
+0x0671 002258 call g24_ch 
+0x0672 002259 fetch 4 ,mem_new_24g_addr 
+0x0673 002260 call g24_syncword_crc8 
+0x0674 002261 fetch 1 ,mem_new_24g_pairing_sm 
+0x0675 002262 rtnne state_24g_pairing_success 
+0x0676 002263 call g24_tx_attemp_data_prep 
+:      002264 g24_tx_attemp_dongle:
+0x0677 002265 setarg 0 
+0x0678 002266 store 2 ,mem_new_24g_check_dongle_times 
+:      002267 g24_tx_attemp_dongle_loop:
+0x0679 002268 nop 2000 
+0x067a 002269 fetch 1 ,mem_new_24g_check_dongle_times 
+0x067b 002270 beq 0xff ,g24_stop_24g_mode 
+0x067c 002271 call g24_transmit_receive_ack 
+0x067d 002272 nbranch g24_attemp_txdata_retry ,sync 
+0x067e 002273 nbranch g24_attemp_txdata_retry ,user3 
+:      002274 g24_tx_attemp_dongle_succ:
+0x067f 002275 jam 1 ,mem_lpm_mode 
+0x0680 002276 set1 mark_24g ,mark 
+0x0681 002277 setarg 0 
+0x0682 002278 store 2 ,mem_new_24g_check_dongle_times 
+0x0683 002279 jam bt_evt_24g_attempt_success ,mem_fifo_temp 
+0x0684 002280 call ui_ipc_send_event 
+0x0685 002281 branch check_51cmd_stop_adv 
+:      002283 g24_tx_attemp_data_prep:
+0x0686 002284 set1 mark_24g_conext ,mark 
+0x0687 002285 jam 0xff ,mem_new_24g_common_temp 
+0x0688 002286 fetch 1 ,mem_new_24g_data_type 
+0x0689 002287 store 1 ,mem_new_24g_common_temp + 1 
+0x068a 002288 fetch 4 ,mem_new_24g_device_addr 
+0x068b 002289 store 4 ,mem_new_24g_common_temp + 2 
+0x068c 002290 arg 6 ,temp 
+0x068d 002291 arg mem_new_24g_common_temp ,rega 
+0x068e 002292 call g24_put_data_in_buff 
+0x068f 002293 branch g24_transmit_prep 
+:      002295 g24_attemp_txdata_retry:
+0x0690 002296 fetch 2 ,mem_new_24g_check_dongle_times 
+0x0691 002297 increase 1 ,pdata 
+0x0692 002298 store 2 ,mem_new_24g_check_dongle_times 
+0x0693 002299 call g24_ch 
+0x0694 002300 branch g24_tx_attemp_dongle_loop 
+              org 0x3000
+:      002322 start:
+0x3000 002323 call lpmstate 
+:      002326 soft_reset:
+0x3001 002327 hjam lock_otp ,core_misc_ctrl 
+0x3002 002328 set0 mark_ext_patch ,mark 
+0x3003 002329 bpatch patch00_0 ,mem_patch00 
+0x3004 002330 hfetch 1 ,0x813b 
+0x3005 002331 store 1 ,mem_wakup_from_power_flag 
+0x3006 002332 call spi_ncs_gpio_init 
+0x3007 002333 clear_stack 
+0x3008 002334 ncall wait_uarttx ,wake 
+0x3009 002335 call initialize_radio 
+0x300a 002336 call iicd_init_12m 
+0x300b 002337 call init_param 
+0x300c 002338 call l2cap_init 
+0x300d 002339 set0 mark_ext_patch ,mark 
+0x300e 002340 bpatch patch00_1 ,mem_patch00 
+0x300f 002341 call rfcomm_init 
+0x3010 002342 call init_lmp 
+0x3011 002343 call ui_init 
+0x3012 002344 call app_init 
+0x3013 002345 ncall load_chip_option ,wake 
+0x3014 002346 set0 mark_ext_patch ,mark 
+0x3015 002347 bpatch patch00_2 ,mem_patch00 
+0x3016 002348 call app_lpm_init ,wake 
+0x3017 002349 call publickey_init 
+0x3018 002350 call lpm_recover_clk ,wake 
+:      002351 main_loop:
+0x3019 002352 set0 mark_ext_patch ,mark 
+0x301a 002353 bpatch patch00_3 ,mem_patch00 
+0x301b 002354 call sp_calc_sequence 
+0x301c 002355 call sp_calc_sequence_256 
+0x301d 002356 call publickey_calc 
+0x301e 002357 call le_dispatch 
+0x301f 002358 set0 mark_ext_patch ,mark 
+0x3020 002359 bpatch patch00_4 ,mem_patch00 
+0x3021 002360 call idle_dispatch 
+0x3022 002361 call app_process_idle 
+0x3023 002362 call inquiry_dispatch 
+0x3024 002363 call inquiry_scan_dispatch 
+0x3025 002364 call page_scan_dispatch 
+0x3026 002365 call connection_dispatch 
+0x3027 002366 call lpm_dispatch 
+0x3028 002367 branch main_loop 
+:      002369 connection_dispatch:
+0x3029 002370 call connection_incontext 
+0x302a 002371 rtnmark0 mark_context 
+0x302b 002372 set0 mark_context ,mark 
+0x302c 002373 call context_save 
+0x302d 002374 branch le_disable 
+:      002376 connection_incontext:
+0x302e 002377 set0 mark_ext_patch ,mark 
+0x302f 002378 bpatch patch00_5 ,mem_patch00 
+0x3030 002379 call context_search_insniff 
+0x3031 002380 nbranch connection_nosniff ,zero 
+0x3032 002381 call context_load 
+0x3033 002382 add rega ,coffset_mode ,contr 
+0x3034 002383 ifetch 1 ,contr 
+0x3035 002384 bbit1 mode_le ,le_conn_dispatch 
+0x3036 002385 bbit1 mode_master ,master_dispatch 
+0x3037 002386 branch slave_dispatch 
+:      002387 connection_nosniff:
+0x3038 002388 set0 mark_ext_patch ,mark 
+0x3039 002389 bpatch patch00_6 ,mem_patch00 
+0x303a 002390 call context_get_next 
+0x303b 002391 copy loopcnt ,null 
+0x303c 002392 rtn zero 
+0x303d 002393 call context_load 
+0x303e 002394 fetch 1 ,mem_state 
+0x303f 002395 bbit1 state_inpage ,master_page 
+0x3040 002396 fetch 1 ,mem_mode 
+0x3041 002397 bbit1 mode_master ,master_dispatch 
+0x3042 002398 branch slave_dispatch 
+:      002406 idle_dispatch:
+0x3043 002407 fetch 1 ,mem_hci_cmd 
+0x3044 002408 rtn blank 
+0x3045 002409 beq hci_cmd_inquiry ,idle_inquiry 
+0x3046 002410 beq hci_cmd_inquiry_cancel ,idle_inquiry_cancel 
+0x3047 002411 beq hci_cmd_remote_name_req ,idle_remote_name_req 
+0x3048 002412 beq hci_cmd_create_conn ,idle_create_conn 
+0x3049 002413 beq hci_cmd_le_create_conn ,idle_le_create_conn 
+0x304a 002414 call context_search_conn_handle 
+0x304b 002415 rtn zero 
+0x304c 002416 call context_search_plap 
+0x304d 002417 rtn zero 
+:      002418 idle_exit:
+0x304e 002419 jam 0 ,mem_hci_cmd 
+0x304f 002420 rtn 
+:      002422 idle_le_create_conn:
+0x3050 002423 jam hci_cmd_le_create_conn ,mem_cmd_le_create_conn 
+0x3051 002424 jam 0 ,mem_hci_cmd 
+0x3052 002425 rtn 
+:      002427 idle_inquiry:
+0x3053 002428 set1 mark_inquiry_on ,mark 
+0x3054 002429 set0 mark_inquiry_trainb ,mark 
+0x3055 002430 jam param_ninquiry ,mem_ninqy_index 
+0x3056 002431 jam 31 ,mem_nfreq_index_inq 
+0x3057 002432 branch idle_exit 
+:      002434 idle_inquiry_cancel:
+0x3058 002435 set0 mark_inquiry_on ,mark 
+0x3059 002436 force 0 ,stop_watch 
+0x305a 002437 branch idle_exit 
+:      002439 idle_remote_name_req:
+0x305b 002440 call context_search_plap 
+0x305c 002441 rtn zero 
+0x305d 002442 force lmp_name_req ,temp 
+0x305e 002443 jam 5 ,mem_nameres_cnt 
+0x305f 002444 branch idle_start_page 
+:      002446 idle_create_conn:
+0x3060 002447 set0 mark_ext_patch ,mark 
+0x3061 002448 bpatch patch00_7 ,mem_patch00 
+:      002449 idle_create_conn_device:
+0x3062 002450 fetch 6 ,mem_hci_plap 
+0x3063 002451 branch idle_exit ,blank 
+0x3064 002452 jam reconnect_hid ,memui_reconnect_mode 
+0x3065 002454 jam conn_sm_wait_features_res ,mem_conn_sm 
+0x3066 002455 branch idle_create_conn_cont 
+:      002457 idle_create_conn_cont:
+0x3067 002458 force lmp_version_req ,temp 
+:      002459 idle_start_page:
+0x3068 002460 set0 mark_ext_patch ,mark 
+0x3069 002461 bpatch patch01_0 ,mem_patch01 
+0x306a 002462 fetch 1 ,mem_page_mode 
+0x306b 002463 branch idle_page_mode_r0 ,blank 
+0x306c 002464 lshift3 pdata ,pdata 
+0x306d 002465 lshift4 pdata ,pdata 
+0x306e 002466 increase -1 ,pdata 
+:      002467 idle_page_mode_r0:
+0x306f 002468 store 1 ,mem_npage 
+0x3070 002469 store 1 ,mem_npage_index 
+0x3071 002470 jam 31 ,mem_nfreq_index_page 
+0x3072 002471 set0 mark_page_trainb ,mark 
+0x3073 002472 call context_new 
+0x3074 002473 nbranch idle_page_fail ,zero 
+0x3075 002474 call get_free_amaddr 
+0x3076 002475 store 1 ,mem_amaddr 
+0x3077 002476 storet 1 ,mem_lmo_opcode2 
+0x3078 002477 fetch 6 ,mem_hci_plap 
+0x3079 002478 store 6 ,mem_plap 
+0x307a 002479 set0 mark_ext_patch ,mark 
+0x307b 002480 bpatch patch01_1 ,mem_patch01 
+0x307c 002481 call timer_check 
+0x307d 002482 force 0 ,pdata 
+0x307e 002483 compare lmp_name_req ,temp ,0xff 
+0x307f 002484 nsetflag true ,state_init_seq ,pdata 
+0x3080 002485 set1 state_inpage ,pdata 
+0x3081 002486 store 1 ,mem_state 
+0x3082 002487 jam bt_evt_reconn_started ,mem_fifo_temp 
+0x3083 002488 call ui_ipc_send_event 
+0x3084 002489 force 0 ,pdata 
+0x3085 002490 setflag true ,smap_name_req ,pdata 
+0x3086 002491 store 1 ,mem_state_map 
+0x3087 002492 setarg 0 
+0x3088 002493 set1 mode_master ,pdata 
+0x3089 002494 store 1 ,mem_mode 
+0x308a 002495 enable master 
+0x308b 002496 call context_save 
+0x308c 002497 disable master 
+0x308d 002498 force page_length_timer ,queue 
+0x308e 002499 fetch 2 ,mem_page_to 
+0x308f 002500 call timer_init 
+0x3090 002501 branch idle_exit 
+:      002502 idle_page_fail:
+0x3091 002503 set0 mark_ext_patch ,mark 
+0x3092 002504 bpatch patch01_2 ,mem_patch01 
+0x3093 002505 fetch 6 ,mem_hci_plap 
+0x3094 002506 store 6 ,mem_plap 
+0x3095 002507 compare lmp_name_req ,temp ,0xff 
+0x3096 002508 branch idle_name_fail ,true 
+0x3097 002509 branch idle_exit 
+:      002510 idle_name_fail:
+0x3098 002511 arg mem_tmp_buffer ,contw 
+0x3099 002512 arg 8 ,loopcnt 
+0x309a 002513 call memset0 
+0x309b 002514 jam bt_evt_reconn_failed ,mem_fifo_temp 
+0x309c 002515 call ui_ipc_send_event 
+0x309d 002516 branch idle_exit 
+:      002523 inquiry_dispatch:
+0x309e 002524 rtnmark0 mark_inquiry_on 
+0x309f 002525 force inquiry_length_timer ,queue 
+0x30a0 002526 call timer_check 
+0x30a1 002527 nsetflag blank ,mark_inquiry_on ,mark 
+0x30a2 002528 nbranch inquiry_start ,blank 
+0x30a3 002529 rtn 
+:      002533 inquiry_start:
+0x30a4 002534 set0 mark_ext_patch ,mark 
+0x30a5 002535 bpatch patch01_3 ,mem_patch01 
+0x30a6 002536 fetcht 2 ,mem_inq_window 
+0x30a7 002537 force 4 ,queue 
+0x30a8 002538 call sniff_check_window 
+0x30a9 002539 rtn user 
+0x30aa 002540 call afh_clear 
+0x30ab 002541 force 0 ,freq_mode 
+:      002542 inquiry_restart:
+0x30ac 002543 rtn timeout 
+0x30ad 002544 set0 mark_fhs_already_good ,mark 
+0x30ae 002545 set0 mark_fhs_eir ,mark 
+:      002546 inquiry_rx_restart:
+0x30af 002547 add clkn_bt ,1 ,bt_clk 
+0x30b0 002548 isolate1 mark_inquiry_trainb ,mark 
+0x30b1 002549 setflag true ,2 ,freq_mode 
+0x30b2 002550 compare 0x00 ,bt_clk ,0x02 
+0x30b3 002551 nbranch inquiry_receive ,true 
+:      002553 inquiry_transmit:
+0x30b4 002554 set0 mark_ext_patch ,mark 
+0x30b5 002555 bpatch patch01_4 ,mem_patch01 
+0x30b6 002556 fetch 1 ,mem_inquiry_transmit 
+0x30b7 002557 increase 1 ,pdata 
+0x30b8 002558 store 1 ,mem_inquiry_transmit 
+0x30b9 002559 call fetch_giac 
+0x30ba 002560 call tx_radio_freq 
+0x30bb 002561 call fetch_diac 
+0x30bc 002562 call start_transmitter 
+0x30bd 002563 call start_tx_native 
+0x30be 002564 call send_access_word 
+0x30bf 002565 call end_of_packet 
+0x30c0 002566 call inquiry_check_train 
+0x30c1 002567 branch inquiry_restart 
+:      002569 inquiry_check_train:
+0x30c2 002570 set0 mark_ext_patch ,mark 
+0x30c3 002571 bpatch patch01_5 ,mem_patch01 
+0x30c4 002572 fetch 1 ,mem_nfreq_index_inq 
+0x30c5 002573 increase -1 ,pdata 
+0x30c6 002574 store 1 ,mem_nfreq_index_inq 
+0x30c7 002575 rtn positive 
+0x30c8 002576 jam 31 ,mem_nfreq_index_inq 
+0x30c9 002577 fetch 1 ,mem_ninqy_index 
+0x30ca 002578 increase -1 ,pdata 
+0x30cb 002579 store 1 ,mem_ninqy_index 
+0x30cc 002580 rtn positive 
+0x30cd 002581 setflip mark_inquiry_trainb ,mark 
+0x30ce 002582 jam param_ninquiry ,mem_ninqy_index 
+0x30cf 002583 rtn 
+:      002585 inquiry_receive:
+0x30d0 002586 set0 mark_ext_patch ,mark 
+0x30d1 002587 bpatch patch01_6 ,mem_patch01 
+0x30d2 002588 call fetch_giac 
+0x30d3 002589 call rx_radio_freq 
+0x30d4 002590 call fetch_diac 
+0x30d5 002591 call start_rx_native 
+0x30d6 002592 call start_receiver 
+0x30d7 002593 call wait_access_clkn_rt 
+0x30d8 002594 branch inquiry_sync ,sync 
+0x30d9 002595 call inquiry_check_train 
+0x30da 002596 branch inquiry_rx_restart 
+:      002597 inquiry_sync:
+0x30db 002598 set0 mark_ext_patch ,mark 
+0x30dc 002599 bpatch patch01_7 ,mem_patch01 
+0x30dd 002600 call save_rssi 
+0x30de 002601 call scan_mode_whiten 
+0x30df 002602 call receive_packet_whitened 
+0x30e0 002603 set0 mark_rxbuf_inuse ,mark 
+0x30e1 002604 rtnmark0 mark_fhs_already_good 
+:      002605 inquiry_receive_rtn:
+0x30e2 002606 set0 mark_ext_patch ,mark 
+0x30e3 002607 bpatch patch02_0 ,mem_patch02 
+:      002608 inquiry_receive_eir_rtn:
+0x30e4 002609 fetch 1 ,mem_inquiry_rcv 
+0x30e5 002610 increase 1 ,pdata 
+0x30e6 002611 store 1 ,mem_inquiry_rcv 
+0x30e7 002612 rtn 
+:      002620 master_page:
+0x30e8 002621 set0 mark_ext_patch ,mark 
+0x30e9 002622 bpatch patch02_1 ,mem_patch02 
+0x30ea 002623 enable master 
+0x30eb 002624 enable clknt 
+0x30ec 002625 fetch 2 ,mem_page_interval 
+0x30ed 002626 branch master_page_no_interval ,blank 
+0x30ee 002627 force page_interval_timer ,queue 
+0x30ef 002628 call timer_check 
+0x30f0 002629 nrtn blank 
+:      002630 master_page_no_interval:
+0x30f1 002631 set0 mark_ext_patch ,mark 
+0x30f2 002632 bpatch patch02_2 ,mem_patch02 
+0x30f3 002633 fetcht 2 ,mem_page_window 
+0x30f4 002634 force 40 ,queue 
+0x30f5 002635 call sniff_check_window 
+0x30f6 002636 branch page_exit ,user 
+0x30f7 002637 force page_length_timer ,queue 
+0x30f8 002638 call timer_check 
+0x30f9 002639 nbranch page_start ,blank 
+0x30fa 002640 fetch 1 ,mem_state_map 
+0x30fb 002641 bbit1 smap_name_req ,master_npage_timeout 
+0x30fc 002642 branch master_page_timeout 
+:      002643 master_npage_timeout:
+0x30fd 002644 arg mem_tmp_buffer ,contw 
+0x30fe 002645 arg 8 ,loopcnt 
+0x30ff 002646 call memset0 
+:      002647 master_page_timeout:
+0x3100 002648 set0 mark_ext_patch ,mark 
+0x3101 002649 bpatch patch02_3 ,mem_patch02 
+0x3102 002650 jam 0 ,mem_state 
+0x3103 002651 call init_lmp_work 
+0x3104 002652 jam 0 ,memui_reconnect_mode 
+0x3105 002653 jam bt_evt_reconn_page_timeout ,mem_fifo_temp 
+0x3106 002654 call ui_ipc_send_event 
+0x3107 002655 branch page_exit 
+:      002657 page_start:
+0x3108 002658 set0 mark_ext_patch ,mark 
+0x3109 002659 bpatch patch02_4 ,mem_patch02 
+0x310a 002660 force 0 ,timeup 
+0x310b 002661 until clkn_rt ,meet 
+0x310c 002662 fetch 1 ,mem_page_clk 
+0x310d 002663 increase -1 ,pdata 
+0x310e 002664 ixor clkn_bt ,pdata 
+0x310f 002665 compare 0 ,pdata ,3 
+0x3110 002666 nbranch page_start ,true 
+0x3111 002667 deposit am_addr 
+0x3112 002668 store 1 ,mem_fhs_am_addr 
+0x3113 002669 force 0 ,n_tx_slot 
+0x3114 002670 force 0 ,freq_mode 
+:      002672 page_restart:
+0x3115 002673 set0 mark_ext_patch ,mark 
+0x3116 002674 bpatch patch02_5 ,mem_patch02 
+0x3117 002675 branch page_exit ,timeout 
+0x3118 002676 call fetch_page_bt_adr 
+0x3119 002677 arg param_rf_setup ,timeup 
+0x311a 002678 until clkn_rt ,meet 
+:      002679 page_rx_restart:
+0x311b 002680 set0 mark_ext_patch ,mark 
+0x311c 002681 bpatch patch02_6 ,mem_patch02 
+0x311d 002682 fetch 4 ,mem_page_clk 
+0x311e 002683 iforce bt_clk 
+0x311f 002684 increase 1 ,pdata 
+0x3120 002685 store 4 ,mem_page_clk 
+0x3121 002686 isolate1 mark_page_trainb ,mark 
+0x3122 002687 setflag true ,2 ,freq_mode 
+0x3123 002688 compare 0x00 ,bt_clk ,0x02 
+0x3124 002689 nbranch page_receive ,true 
+0x3125 002690 fetch 1 ,mem_page_transmit 
+0x3126 002691 increase 1 ,pdata 
+0x3127 002692 store 1 ,mem_page_transmit 
+0x3128 002693 call tx_radio_freq 
+0x3129 002694 call start_transmitter 
+0x312a 002695 call start_tx_native 
+0x312b 002696 call send_access_word 
+0x312c 002697 call end_of_packet 
+0x312d 002698 call page_check_train 
+0x312e 002699 branch page_restart 
+:      002700 page_exit:
+0x312f 002701 set0 mark_ext_patch ,mark 
+0x3130 002702 bpatch patch02_7 ,mem_patch02 
+0x3131 002703 disable master 
+0x3132 002704 fetch 2 ,mem_page_interval 
+0x3133 002705 rtn blank 
+0x3134 002706 force page_interval_timer ,queue 
+0x3135 002707 branch timer_init 
+:      002709 page_check_train:
+0x3136 002710 set0 mark_ext_patch ,mark 
+0x3137 002711 bpatch patch03_0 ,mem_patch03 
+0x3138 002712 fetch 1 ,mem_nfreq_index_page 
+0x3139 002713 increase -1 ,pdata 
+0x313a 002714 store 1 ,mem_nfreq_index_page 
+0x313b 002715 rtn positive 
+0x313c 002716 jam 31 ,mem_nfreq_index_page 
+0x313d 002717 fetch 1 ,mem_npage_index 
+0x313e 002718 increase -1 ,pdata 
+0x313f 002719 store 1 ,mem_npage_index 
+0x3140 002720 rtn positive 
+0x3141 002721 setflip mark_page_trainb ,mark 
+0x3142 002722 fetch 1 ,mem_npage 
+0x3143 002723 store 1 ,mem_npage_index 
+0x3144 002724 rtn 
+:      002726 page_receive:
+0x3145 002727 set0 mark_ext_patch ,mark 
+0x3146 002728 bpatch patch03_1 ,mem_patch03 
+0x3147 002729 call rx_radio_freq 
+0x3148 002730 call start_rx_native 
+0x3149 002731 call start_receiver 
+0x314a 002732 call wait_access_clkn_rt 
+0x314b 002733 branch page_sync ,sync 
+0x314c 002734 call page_check_train 
+0x314d 002735 branch page_rx_restart 
+:      002736 page_sync:
+0x314e 002737 call end_of_packet 
+0x314f 002738 fetch 1 ,mem_page_rcv 
+0x3150 002739 increase 1 ,pdata 
+0x3151 002740 store 1 ,mem_page_rcv 
+0x3152 002741 force 0 ,stop_watch 
+0x3153 002742 fetch 4 ,mem_page_clk 
+:      002743 page_send_fhs:
+0x3154 002744 set0 mark_ext_patch ,mark 
+0x3155 002745 bpatch patch03_2 ,mem_patch03 
+0x3156 002746 call rf_setup_time_master_slot 
+0x3157 002747 call fetch_page_bt_adr 
+0x3158 002748 increase 1 ,n_tx_slot 
+:      002749 page_send_fhs_continue:
+0x3159 002750 and_into 0x1fd ,bt_clk 
+0x315a 002751 and_into 0x1fc ,freq_mode 
+0x315b 002752 call tx_radio_freq 
+0x315c 002753 call start_transmitter 
+0x315d 002754 call start_tx_native 
+0x315e 002755 call send_access_word 
+0x315f 002756 deposit clkn_bt 
+0x3160 002757 store 4 ,mem_clkn_bt 
+0x3161 002758 force 0 ,am_addr 
+0x3162 002759 force type_fhs ,type 
+0x3163 002760 call scan_mode_whiten 
+0x3164 002761 call transmit_packet_whitened 
+:      002762 page_wait_fhs_reply:
+0x3165 002763 set0 mark_ext_patch ,mark 
+0x3166 002764 bpatch patch03_3 ,mem_patch03 
+0x3167 002765 call rf_setup_time_slave_slot 
+0x3168 002766 or_into 0x02 ,bt_clk 
+0x3169 002767 and_into 0x1fc ,freq_mode 
+0x316a 002768 call rx_radio_freq 
+0x316b 002769 call start_rx_native 
+0x316c 002770 call start_receiver 
+0x316d 002771 call wait_access_clkn_rt 
+0x316e 002772 call end_of_packet ,sync 
+0x316f 002773 branch page_wait_fhs_reply_ok ,sync 
+0x3170 002774 fetch 1 ,mem_fhs_wait_counter 
+0x3171 002775 branch page_restart ,blank 
+0x3172 002776 increase -1 ,pdata 
+0x3173 002777 store 1 ,mem_fhs_wait_counter 
+0x3174 002778 branch page_send_fhs 
+:      002780 page_wait_fhs_reply_ok:
+0x3175 002781 set0 mark_ext_patch ,mark 
+0x3176 002782 bpatch patch03_4 ,mem_patch03 
+0x3177 002783 fetch 1 ,mem_page_rcv_fhs 
+0x3178 002784 increase 1 ,pdata 
+0x3179 002785 store 1 ,mem_page_rcv_fhs 
+0x317a 002786 call prepare_newconn 
+:      002787 master_newconn_loop:
+0x317b 002788 call master_newconn_once 
+0x317c 002789 branch newconn_poll_responded ,sync 
+0x317d 002790 call new_conn_timeout 
+0x317e 002791 nbranch master_newconn_loop ,blank 
+0x317f 002792 branch page_restart 
+:      002794 newconn_poll_responded:
+0x3180 002795 set0 mark_ext_patch ,mark 
+0x3181 002796 bpatch patch03_5 ,mem_patch03 
+0x3182 002797 fetch 1 ,mem_state 
+0x3183 002798 set0 state_inpage ,pdata 
+0x3184 002799 store 1 ,mem_state 
+0x3185 002800 call newconn_init 
+0x3186 002801 disable master 
+0x3187 002802 rtn 
+:      002805 master_dispatch:
+0x3188 002806 set0 mark_ext_patch ,mark 
+0x3189 002807 bpatch patch03_6 ,mem_patch03 
+0x318a 002808 enable master 
+0x318b 002809 enable clknt 
+0x318c 002810 call role_switch_master 
+0x318d 002811 rtn user 
+0x318e 002812 call check_bt_disabled 
+0x318f 002813 call rf_setup_time_master_slot 
+0x3190 002814 add clkn_bt ,1 ,bt_clk 
+0x3191 002815 call fetch_self_bt_adr 
+0x3192 002816 force 0x03 ,freq_mode 
+0x3193 002817 call scheduler_tx_l2cap_pkt 
+0x3194 002818 call prepare_tx 
+0x3195 002819 call tx_radio_freq 
+0x3196 002820 call start_transmitter 
+0x3197 002821 call start_tx_native 
+0x3198 002822 call send_access_word 
+0x3199 002823 call transmit_packet 
+:      002824 master_loop:
+0x319a 002825 set0 mark_ext_patch ,mark 
+0x319b 002826 bpatch patch03_7 ,mem_patch03 
+0x319c 002827 call parse_lmp 
+0x319d 002828 call master_conn_recv_packet 
+0x319e 002829 nbranch master_notmatch ,match 
+0x319f 002830 call supervision_flush 
+0x31a0 002831 call parse_l2cap 
+0x31a1 002832 fetch 1 ,mem_master_rcvcnt 
+0x31a2 002833 increase 1 ,pdata 
+0x31a3 002834 store 1 ,mem_master_rcvcnt 
+:      002835 master_notmatch:
+0x31a4 002836 set0 mark_ext_patch ,mark 
+0x31a5 002837 bpatch patch04_0 ,mem_patch04 
+0x31a6 002838 call scheduler_process 
+0x31a7 002839 call check_master_disconnect 
+0x31a8 002840 nrtn master 
+0x31a9 002841 call check_attempt 
+0x31aa 002842 nbranch master_attempt ,blank 
+:      002843 master_exit:
+0x31ab 002844 disable master 
+0x31ac 002845 rtn 
+:      002847 master_attempt:
+0x31ad 002848 call prepare_tx 
+0x31ae 002849 call master_conn_send_packet 
+0x31af 002850 branch master_loop 
+:      002853 check_master_disconnect:
+0x31b0 002854 branch check_master_match ,match 
+0x31b1 002855 call supervision_update 
+0x31b2 002856 branch master_disconnect ,positive 
+:      002857 check_master_match:
+0x31b3 002858 call check_disconnect_timeout 
+0x31b4 002859 nbranch master_disconnect ,user 
+0x31b5 002860 fetch 1 ,mem_state_map 
+0x31b6 002861 rtnbit0 smap_name_req 
+0x31b7 002862 rtnbit1 smap_name_res 
+0x31b8 002863 fetch 1 ,mem_op 
+0x31b9 002864 rtnbit1 op_disconn 
+0x31ba 002865 call conn_timer_expired 
+0x31bb 002866 nrtn blank 
+0x31bc 002867 fetch 1 ,mem_nameres_cnt 
+0x31bd 002868 increase -1 ,pdata 
+0x31be 002869 store 1 ,mem_nameres_cnt 
+0x31bf 002870 nrtn blank 
+0x31c0 002871 branch lmp_disconnect 
+:      002873 master_disconnect:
+0x31c1 002874 set0 mark_ext_patch ,mark 
+0x31c2 002875 bpatch patch04_1 ,mem_patch04 
+0x31c3 002876 call quit_connection 
+0x31c4 002877 disable master 
+0x31c5 002878 fetch 1 ,mem_state_map 
+0x31c6 002879 bbit1 smap_name_req ,master_name_disconnect 
+0x31c7 002880 rtn 
+:      002882 master_name_disconnect:
+0x31c8 002883 fetch 1 ,mem_state_map 
+0x31c9 002884 rtnbit1 smap_name_res 
+:      002885 master_name_error:
+0x31ca 002886 arg mem_tmp_buffer ,contw 
+0x31cb 002887 arg 8 ,loopcnt 
+0x31cc 002888 branch memset0 
+:      002890 check_disconnect_timeout:
+0x31cd 002891 set0 mark_ext_patch ,mark 
+0x31ce 002892 bpatch patch04_2 ,mem_patch04 
+0x31cf 002893 enable user 
+0x31d0 002894 fetch 1 ,mem_op 
+0x31d1 002895 rtnbit0 op_disconn 
+0x31d2 002896 call conn_timer_expired 
+0x31d3 002897 nrtn blank 
+:      002898 disable_usr:
+0x31d4 002899 disable user 
+0x31d5 002900 rtn 
+:      002902 conn_timer_expired:
+0x31d6 002903 fetch 1 ,mem_conn_timer 
+0x31d7 002904 increase -1 ,pdata 
+0x31d8 002905 store 1 ,mem_conn_timer 
+0x31d9 002906 rtn 
+:      002908 linkkey_ready:
+0x31da 002909 set0 mark_ext_patch ,mark 
+0x31db 002910 bpatch patch04_3 ,mem_patch04 
+0x31dc 002911 fetch 1 ,mem_state 
+0x31dd 002912 bbit1 state_linkkey ,linkkey_set 
+0x31de 002913 fetch 1 ,mem_pairing_auth 
+0x31df 002914 branch linkkey_set ,blank 
+0x31e0 002915 jam defalt_pairing_auth ,mem_pairing_auth 
+0x31e1 002916 jam bt_evt_linkkey_generate ,mem_fifo_temp 
+0x31e2 002917 call ui_ipc_send_event 
+0x31e3 002918 branch linkkey_set 
+:      002919 linkkey_set:
+0x31e4 002920 set0 mark_ext_patch ,mark 
+0x31e5 002921 bpatch patch04_4 ,mem_patch04 
+0x31e6 002922 call context_traverse_linkkey 
+0x31e7 002923 fetch 1 ,mem_state 
+0x31e8 002924 set1 state_linkkey ,pdata 
+0x31e9 002925 store 1 ,mem_state 
+0x31ea 002926 jam 1 ,mem_link_key_exists 
+0x31eb 002927 fetch 1 ,mem_conn_sm 
+0x31ec 002928 bne conn_sm_pairing ,linkkey_set_continue 
+:      002929 linkkey_set_continue:
+0x31ed 002930 rtn 
+:      002932 generate_linkkey_continue:
+0x31ee 002933 jam pairing_auth ,mem_pairing_auth 
+:      002934 clear_linkstate:
+0x31ef 002935 fetch 1 ,mem_state 
+0x31f0 002936 set0 state_linkkey ,pdata 
+0x31f1 002937 store 1 ,mem_state 
+0x31f2 002938 rtn 
+:      002942 role_switch_check:
+0x31f3 002943 set0 mark_ext_patch ,mark 
+0x31f4 002944 bpatch patch04_5 ,mem_patch04 
+0x31f5 002945 disable user 
+0x31f6 002946 fetch 1 ,mem_state 
+0x31f7 002947 rtnbit0 state_insniff 
+0x31f8 002948 fetch 2 ,mem_tsniff 
+0x31f9 002949 nrtn blank 
+0x31fa 002950 fetch 4 ,mem_sniff_anchor 
+0x31fb 002951 branch role_switch_clkn ,clknt 
+0x31fc 002952 isub clke_bt ,pdata 
+0x31fd 002953 branch role_switch_clke 
+:      002954 role_switch_clkn:
+0x31fe 002955 isub clkn_bt ,pdata 
+:      002956 role_switch_clke:
+0x31ff 002957 sub pdata ,4 ,null 
+0x3200 002958 nrtn positive 
+0x3201 002959 fetch 1 ,mem_state 
+0x3202 002960 set0 state_insniff ,pdata 
+0x3203 002961 store 1 ,mem_state 
+0x3204 002962 enable user 
+0x3205 002963 rtn 
+:      002966 role_switch_prepare:
+0x3206 002967 copy pdata ,temp 
+0x3207 002968 set0 mark_ext_patch ,mark 
+0x3208 002969 bpatch patch04_6 ,mem_patch04 
+0x3209 002970 store 4 ,mem_sniff_anchor 
+:      002971 role_switch_prepare0:
+0x320a 002972 jam switch_flag_accept ,mem_switch_flag 
+0x320b 002973 fetch 1 ,mem_state 
+0x320c 002974 set1 state_insniff ,pdata 
+0x320d 002975 store 1 ,mem_state 
+0x320e 002976 force 0 ,pdata 
+0x320f 002977 store 2 ,mem_tsniff 
+0x3210 002978 jam 1 ,mem_sniff_attempt 
+0x3211 002979 jam 0x0 ,mem_sniff_timeout 
+0x3212 002980 jam 0x0 ,mem_current_sniff_timeout 
+0x3213 002981 fetch 4 ,mem_sniff_anchor 
+0x3214 002982 copy clkn_bt ,temp 
+0x3215 002983 isub temp ,pdata 
+0x3216 002984 rshift2 pdata ,pdata 
+0x3217 002985 increase -8 ,pdata 
+0x3218 002986 store 1 ,mem_current_sniff_attempt 
+0x3219 002987 rtn 
+:      002990 role_switch_master:
+0x321a 002991 set0 mark_ext_patch ,mark 
+0x321b 002992 bpatch patch04_7 ,mem_patch04 
+0x321c 002993 call role_switch_check 
+0x321d 002994 nrtn user 
+0x321e 002995 disable user 
+0x321f 002996 jam param_newconnto ,mem_newconnto_counter 
+0x3220 002997 set0 mark_fhs_already_good ,mark 
+:      002998 roles_waitfhs_loop:
+0x3221 002999 call rf_setup_time_master_slot 
+0x3222 003000 call master_recv_packet 
+0x3223 003001 bmark1 mark_fhs_already_good ,roles_replyto_fhs 
+0x3224 003002 call new_conn_timeout 
+0x3225 003003 nbranch roles_waitfhs_loop ,blank 
+:      003004 role_switch_fail_master:
+0x3226 003005 set0 mark_ext_patch ,mark 
+0x3227 003006 bpatch patch05_0 ,mem_patch05 
+0x3228 003007 disable user 
+0x3229 003008 deposit clkn_bt 
+0x322a 003009 store 4 ,mem_next_btclk 
+0x322b 003010 enable clknt 
+0x322c 003011 enable master 
+0x322d 003012 jam bt_evt_switch_fail_master ,mem_fifo_temp 
+0x322e 003013 branch ui_ipc_send_event 
+:      003015 roles_replyto_fhs:
+0x322f 003016 set0 mark_ext_patch ,mark 
+0x3230 003017 bpatch patch05_1 ,mem_patch05 
+0x3231 003018 call rf_setup_time_slave_slot 
+0x3232 003019 call master_send_packet 
+0x3233 003020 disable clknt 
+0x3234 003021 disable master 
+0x3235 003022 call apply_switch_clke 
+0x3236 003023 call prepare_newconn 
+:      003024 roles_newconns_loop:
+0x3237 003025 set0 mark_ext_patch ,mark 
+0x3238 003026 bpatch patch05_2 ,mem_patch05 
+0x3239 003027 call slave_newconn_once 
+0x323a 003028 branch roles_newconns_responded ,match 
+0x323b 003029 call new_conn_timeout 
+0x323c 003030 nbranch roles_newconns_loop ,blank 
+0x323d 003031 branch role_switch_fail_master 
+:      003032 roles_newconns_responded:
+0x323e 003033 fetch 1 ,mem_mode 
+0x323f 003034 set0 mode_master ,pdata 
+0x3240 003035 store 1 ,mem_mode 
+0x3241 003036 call supervision_flush 
+0x3242 003037 call calc_clke_offset 
+0x3243 003038 enable user 
+0x3244 003039 jam bt_evt_switch_success_master ,mem_fifo_temp 
+0x3245 003040 branch ui_ipc_send_event 
+:      003045 context_load:
+0x3246 003046 set0 mark_ext_patch ,mark 
+0x3247 003047 bpatch patch05_3 ,mem_patch05 
+0x3248 003048 set1 mark_context ,mark 
+0x3249 003049 deposit rega 
+0x324a 003050 store 2 ,mem_context_ptr 
+0x324b 003051 force context_size ,loopcnt 
+0x324c 003052 arg mem_le_state ,contw 
+0x324d 003053 add rega ,coffset_mode ,contr 
+0x324e 003054 ifetch 1 ,contr 
+0x324f 003055 copy rega ,contr 
+0x3250 003056 bbit1 mode_le ,memcpy 
+0x3251 003057 arg mem_state ,contw 
+0x3252 003058 call memcpy 
+0x3253 003059 disable attempt 
+0x3254 003060 fetch 1 ,mem_amaddr 
+0x3255 003061 iforce am_addr 
+0x3256 003062 jam 1 ,mem_current_sniff_attempt 
+0x3257 003063 branch context_load_master ,master 
+0x3258 003064 jam 1 ,mem_current_sniff_attempt 
+:      003065 context_load_master:
+0x3259 003066 fetch 1 ,mem_state 
+0x325a 003067 rtnbit0 state_insniff 
+0x325b 003068 fetch 1 ,mem_sniff_attempt 
+0x325c 003069 store 1 ,mem_current_sniff_attempt 
+0x325d 003070 fetch 1 ,mem_sniff_timeout 
+0x325e 003071 store 1 ,mem_current_sniff_timeout 
+0x325f 003072 rtn 
+:      003074 context_save:
+0x3260 003075 set0 mark_ext_patch ,mark 
+0x3261 003076 bpatch patch05_4 ,mem_patch05 
+0x3262 003077 fetch 2 ,mem_context_ptr 
+0x3263 003078 iforce contw 
+0x3264 003079 force context_size ,loopcnt 
+0x3265 003080 arg mem_le_state ,contr 
+0x3266 003081 branch memcpy ,le 
+0x3267 003082 arg mem_state ,contr 
+0x3268 003083 branch memcpy 
+:      003087 context_get_next:
+0x3269 003088 fetch 1 ,mem_context_number 
+0x326a 003089 copy pdata ,loopcnt 
+0x326b 003090 fetcht 1 ,mem_current_context 
+:      003091 context_get_next_loop:
+0x326c 003092 increase 1 ,temp 
+0x326d 003093 compare context_num ,temp ,0xff 
+0x326e 003094 nbranch context_get_next_cont ,true 
+0x326f 003095 arg 0 ,temp 
+:      003096 context_get_next_cont:
+0x3270 003097 storet 1 ,mem_current_context 
+0x3271 003098 mul32 temp ,context_size ,pdata 
+0x3272 003099 arg mem_context ,rega 
+0x3273 003100 iadd rega ,rega 
+0x3274 003101 ifetch 1 ,rega 
+0x3275 003102 bbit1 state_insniff ,context_get_next_sniff 
+0x3276 003103 rtnbit1 state_inconn 
+0x3277 003104 rtnbit1 state_inpage 
+:      003105 context_get_next_sniff:
+0x3278 003106 loop context_get_next_loop 
+0x3279 003107 rtn 
+:      003109 context_new:
+0x327a 003110 set0 mark_ext_patch ,mark 
+0x327b 003111 bpatch patch05_5 ,mem_patch05 
+0x327c 003112 arg context_search_empty ,regc 
+0x327d 003113 call context_search 
+0x327e 003114 nrtn zero 
+0x327f 003115 deposit rega 
+0x3280 003116 store 2 ,mem_context_ptr 
+0x3281 003117 force 0 ,null 
+0x3282 003118 rtn 
+:      003122 context_check_all_wack:
+0x3283 003123 call check_esco_amaddr 
+0x3284 003124 branch context_check_esco_wack ,true 
+0x3285 003125 fetch 2 ,mem_context_ptr 
+0x3286 003126 add pdata ,coffset_arq ,contw 
+0x3287 003127 fetch 1 ,mem_arq 
+0x3288 003128 istore 1 ,contw 
+0x3289 003129 arg context_check_a_wack ,regc 
+0x328a 003130 branch context_search 
+:      003132 context_check_esco_wack:
+0x328b 003133 fetch 1 ,mem_arq 
+0x328c 003134 isolate1 wack ,pdata 
+0x328d 003135 branch context_esco_wack ,true 
+0x328e 003136 force 1 ,null 
+0x328f 003137 rtn 
+:      003138 context_esco_wack:
+0x3290 003139 force 0 ,null 
+0x3291 003140 rtn 
+:      003143 context_check_idle:
+0x3292 003144 arg context_check_inconn ,regc 
+0x3293 003145 branch context_search 
+:      003147 context_traverse_linkkey:
+0x3294 003148 fetcht 2 ,mem_context_ptr 
+0x3295 003149 arg context_traverse_clearkey ,regc 
+0x3296 003150 branch context_search 
+:      003154 context_search_conn_handle:
+0x3297 003155 fetcht 1 ,mem_hci_conn_handle 
+:      003156 context_search_conn_handle2:
+0x3298 003157 arg context_search_handle ,regc 
+0x3299 003158 branch context_search 
+:      003160 context_search_plap:
+0x329a 003161 set0 mark_ext_patch ,mark 
+0x329b 003162 bpatch patch05_6 ,mem_patch05 
+0x329c 003163 fetcht 6 ,mem_hci_plap 
+:      003164 context_search_plap2:
+0x329d 003165 arg context_search_lap ,regc 
+0x329e 003166 branch context_search 
+:      003168 context_search_insniff:
+0x329f 003169 arg context_search_sniff ,regc 
+0x32a0 003170 branch context_search 
+:      003172 context_search_sniff_window:
+0x32a1 003173 arg context_search_window ,regc 
+:      003174 context_search:
+0x32a2 003175 set0 mark_ext_patch ,mark 
+0x32a3 003176 bpatch patch05_7 ,mem_patch05 
+0x32a4 003177 arg mem_context ,rega 
+0x32a5 003178 fetch 1 ,mem_context_number 
+0x32a6 003179 copy pdata ,loopcnt 
+:      003180 context_search_loop:
+0x32a7 003181 ifetch 1 ,rega 
+0x32a8 003182 copy regc ,pc 
+:      003183 context_search_next:
+0x32a9 003184 increase context_size ,rega 
+0x32aa 003185 loop context_search_loop 
+0x32ab 003186 force 1 ,null 
+0x32ac 003187 rtn 
+:      003189 context_search_empty:
+0x32ad 003190 bbit1 state_inconn ,context_search_next 
+0x32ae 003191 bbit1 state_inpage ,context_search_next 
+0x32af 003192 force 0 ,null 
+0x32b0 003193 rtn 
+:      003195 context_search_lap:
+0x32b1 003196 bbit1 state_inpage ,context_search_lap_cont 
+0x32b2 003197 bbit0 state_inconn ,context_search_next 
+:      003198 context_search_lap_cont:
+0x32b3 003199 add rega ,coffset_plap ,contr 
+0x32b4 003200 ifetch 6 ,contr 
+0x32b5 003201 isub temp ,null 
+0x32b6 003202 rtn zero 
+0x32b7 003203 branch context_search_next 
+:      003205 context_search_handle:
+0x32b8 003206 bbit0 state_inconn ,context_search_next 
+0x32b9 003207 add rega ,coffset_conn_handle ,contr 
+0x32ba 003208 ifetch 1 ,contr 
+0x32bb 003209 isub temp ,null 
+0x32bc 003210 rtn zero 
+0x32bd 003211 branch context_search_next 
+:      003213 context_search_sniff:
+0x32be 003214 bbit0 state_insniff ,context_search_next 
+:      003215 context_search_sniff_loop:
+0x32bf 003216 call context_get_anchor 
+0x32c0 003217 call sign_pdata_temp 
+0x32c1 003218 isub temp ,pdata 
+0x32c2 003219 increase 1 ,pdata 
+0x32c3 003220 branch context_search_sniff_miss ,positive 
+0x32c4 003221 copy contr ,regb 
+0x32c5 003222 store 9 ,mem_temp 
+0x32c6 003223 fetch 1 ,mem_le_sc_calc 
+0x32c7 003224 nbranch context_search_sniff_sc ,blank 
+0x32c8 003225 fetch 9 ,mem_temp 
+0x32c9 003226 copy regb ,contr 
+0x32ca 003227 increase 5 ,pdata 
+0x32cb 003228 branch context_search_meet1 
+:      003229 context_search_sniff_sc:
+0x32cc 003230 fetch 9 ,mem_temp 
+0x32cd 003231 copy regb ,contr 
+0x32ce 003232 increase 20 ,pdata 
+:      003233 context_search_meet1:
+0x32cf 003234 nbranch context_search_next ,positive 
+:      003235 context_search_meet:
+0x32d0 003236 copy temp ,bt_clk 
+0x32d1 003237 call context_next_anchor 
+0x32d2 003238 force 0 ,null 
+0x32d3 003239 rtn 
+:      003242 context_search_sniff_miss:
+0x32d4 003243 iforce regb 
+0x32d5 003244 add rega ,coffset_tsniff ,contr 
+0x32d6 003245 ifetch 2 ,contr 
+0x32d7 003246 branch context_search_meet ,blank 
+0x32d8 003247 call context_next_anchor 
+0x32d9 003248 branch context_search_sniff_loop 
+:      003250 sign_pdata_temp:
+0x32da 003251 rshift16 pdata ,timeup 
+0x32db 003252 rshift8 timeup ,timeup 
+0x32dc 003253 branch sign_pdata_temp_p0 ,zero 
+0x32dd 003254 compare 0xf ,timeup ,0xf 
+0x32de 003255 nrtn true 
+0x32df 003256 rshift16 temp ,timeup 
+0x32e0 003257 rshift8 timeup ,timeup 
+0x32e1 003258 nrtn zero 
+0x32e2 003259 set1 28 ,temp 
+0x32e3 003260 rtn 
+:      003261 sign_pdata_temp_p0:
+0x32e4 003262 rshift16 temp ,timeup 
+0x32e5 003263 rshift8 timeup ,timeup 
+0x32e6 003264 compare 0xf ,timeup ,0xf 
+0x32e7 003265 nrtn true 
+0x32e8 003266 set1 28 ,pdata 
+0x32e9 003267 rtn 
+:      003269 context_check_inconn:
+0x32ea 003270 bbit0 state_inconn ,context_search_next 
+0x32eb 003271 force 0 ,null 
+0x32ec 003272 rtn 
+:      003274 context_check_a_wack:
+0x32ed 003275 bbit0 state_inconn ,context_search_next 
+0x32ee 003276 add rega ,coffset_mode ,contr 
+0x32ef 003277 ifetch 1 ,contr 
+0x32f0 003278 bbit1 mode_le ,context_search_next 
+0x32f1 003279 add rega ,coffset_arq ,contr 
+0x32f2 003280 ifetch 1 ,contr 
+0x32f3 003281 bbit0 wack ,context_search_next 
+0x32f4 003282 force 0 ,null 
+0x32f5 003283 rtn 
+:      003285 context_get_anchor:
+0x32f6 003286 add rega ,coffset_mode ,contr 
+0x32f7 003287 ifetcht 1 ,contr 
+0x32f8 003288 deposit clkn_bt 
+0x32f9 003289 isolate1 mode_master ,temp 
+0x32fa 003290 add rega ,coffset_sniff_anchor ,contr 
+0x32fb 003291 ifetcht 4 ,contr 
+0x32fc 003292 rtn true 
+0x32fd 003293 add rega ,coffset_clk_offset ,contr 
+0x32fe 003294 ifetch 6 ,contr 
+0x32ff 003295 call calc_clke2 
+0x3300 003296 deposit clke_bt 
+0x3301 003297 rtn 
+:      003299 context_next_anchor:
+0x3302 003300 add rega ,coffset_tsniff ,contr 
+0x3303 003301 add rega ,coffset_sniff_anchor ,contw 
+0x3304 003302 ifetch 2 ,contr 
+0x3305 003303 iadd temp ,timeup 
+0x3306 003304 deposit timeup 
+0x3307 003305 istore 4 ,contw 
+0x3308 003306 branch le_context_nexthop 
+:      003309 context_search_window:
+0x3309 003310 bbit0 state_insniff ,context_search_next 
+0x330a 003311 call context_get_anchor 
+0x330b 003312 iadd stop_watch ,pdata 
+0x330c 003313 iadd stop_watch ,pdata 
+0x330d 003314 iadd queue ,pdata 
+0x330e 003315 isub temp ,null 
+0x330f 003316 nbranch context_search_next ,positive 
+0x3310 003317 force 0 ,null 
+0x3311 003318 rtn 
+:      003320 context_traverse_clearkey:
+0x3312 003321 bbit0 state_inconn ,context_search_next 
+0x3313 003322 deposit temp 
+0x3314 003323 isub rega ,null 
+0x3315 003324 branch context_search_next ,null 
+0x3316 003325 add rega ,coffset_mode ,contr 
+0x3317 003326 ifetch 1 ,contr 
+0x3318 003327 bbit1 mode_le ,context_search_next 
+0x3319 003328 ifetch 1 ,rega 
+0x331a 003329 set0 state_linkkey ,pdata 
+0x331b 003330 istore 1 ,rega 
+0x331c 003331 branch context_search_next 
+:      003334 master_conn_send_packet:
+0x331d 003335 set0 mark_ext_patch ,mark 
+0x331e 003336 bpatch patch06_0 ,mem_patch06 
+0x331f 003337 call rf_setup_time_master_slot 
+:      003338 master_send_packet:
+0x3320 003339 add clkn_bt ,1 ,bt_clk 
+0x3321 003340 call fetch_self_bt_adr 
+0x3322 003341 force 0x03 ,freq_mode 
+0x3323 003342 call tx_radio_freq 
+0x3324 003343 call start_transmitter 
+0x3325 003344 call start_tx_native 
+0x3326 003345 call send_access_word 
+0x3327 003346 branch transmit_packet 
+:      003348 master_conn_recv_packet:
+0x3328 003349 set0 mark_ext_patch ,mark 
+0x3329 003350 bpatch patch06_1 ,mem_patch06 
+0x332a 003351 call rf_setup_time_slave_slot 
+:      003352 master_recv_packet:
+0x332b 003353 add clkn_bt ,1 ,bt_clk 
+0x332c 003354 call fetch_self_bt_adr 
+0x332d 003355 force 0x03 ,freq_mode 
+0x332e 003356 call rx_radio_freq 
+0x332f 003357 call init_rx_packet_flags 
+0x3330 003358 call prep_crypt 
+0x3331 003359 call start_rx_native 
+0x3332 003360 call start_receiver 
+:      003361 master_rx_conn_finish_packet:
+0x3333 003362 call wait_access_clkn_rt 
+0x3334 003363 nrtn sync 
+0x3335 003364 call save_rssi 
+0x3336 003365 branch receive_packet 
+:      003369 master_newconn_once:
+0x3337 003370 set0 mark_ext_patch ,mark 
+0x3338 003371 bpatch patch06_2 ,mem_patch06 
+0x3339 003372 fetch 1 ,mem_fhs_am_addr 
+0x333a 003373 iforce am_addr 
+0x333b 003374 force type_poll ,type 
+0x333c 003375 call master_conn_send_packet 
+0x333d 003376 branch master_conn_recv_packet 
+:      003387 inquiry_scan_dispatch:
+0x333e 003388 fetch 1 ,mem_scan_mode 
+0x333f 003389 rtnbit0 inq_scan_mode 
+0x3340 003390 force iscan_interval_timer ,queue 
+0x3341 003391 call timer_check 
+0x3342 003392 nrtn blank 
+0x3343 003393 fetcht 2 ,mem_iscan_window 
+0x3344 003394 force 4 ,queue 
+0x3345 003395 call sniff_check_window 
+0x3346 003396 rtn user 
+0x3347 003397 call inquiry_scan_start 
+0x3348 003398 force iscan_interval_timer ,queue 
+0x3349 003399 fetch 2 ,mem_iscan_interval 
+0x334a 003400 nbranch timer_init ,sync 
+0x334b 003401 random pdata 
+0x334c 003402 iand mask3ff ,pdata 
+0x334d 003403 branch timer_init 
+:      003406 inquiry_scan_start:
+0x334e 003407 set0 mark_ext_patch ,mark 
+0x334f 003408 bpatch patch06_3 ,mem_patch06 
+0x3350 003409 jam 0 ,mem_fhs_am_addr 
+0x3351 003410 disable clknt 
+0x3352 003411 disable attempt 
+0x3353 003412 call afh_clear 
+0x3354 003413 and clkn_bt ,0x1fc ,bt_clk 
+0x3355 003414 force 0x01 ,freq_mode 
+0x3356 003415 call fetch_giac 
+0x3357 003416 call rx_radio_freq 
+0x3358 003417 setflip mark_inquiry_state ,mark 
+0x3359 003418 fetch 1 ,mem_inquiryscan_waitcnt 
+0x335a 003419 increase 1 ,pdata 
+0x335b 003420 store 1 ,mem_inquiryscan_waitcnt 
+0x335c 003421 call fetch_diac 
+0x335d 003422 call start_receiver 
+0x335e 003423 call wait_access_forever 
+0x335f 003424 nrtn sync 
+0x3360 003425 set0 mark_ext_patch ,mark 
+0x3361 003426 bpatch patch06_4 ,mem_patch06 
+0x3362 003427 force 0 ,stop_watch 
+0x3363 003428 call shutdown_radio 
+0x3364 003429 fetch 1 ,mem_inquiryscan_rcvcnt 
+0x3365 003430 increase 1 ,pdata 
+0x3366 003431 store 1 ,mem_inquiryscan_rcvcnt 
+0x3367 003432 call fetch_giac 
+0x3368 003433 call rf_setup_time_slave_slot 
+0x3369 003434 or_into 0x002 ,bt_clk 
+0x336a 003435 force 0x01 ,freq_mode 
+0x336b 003436 call tx_radio_freq 
+0x336c 003437 call fetch_diac 
+0x336d 003438 call start_transmitter 
+0x336e 003439 call start_tx_external 
+0x336f 003440 deposit clkn_bt 
+0x3370 003441 store 4 ,mem_clkn_bt 
+0x3371 003442 call send_access_word 
+0x3372 003443 force type_fhs ,type 
+0x3373 003444 force 0 ,am_addr 
+0x3374 003445 call scan_mode_whiten 
+0x3375 003446 call transmit_packet_whitened 
+0x3376 003447 call send_eir 
+0x3377 003448 and_into 0x1fd ,bt_clk 
+0x3378 003449 increase 1 ,n_tx_slot 
+0x3379 003450 rtn 
+:      003452 send_eir:
+0x337a 003453 set0 mark_ext_patch ,mark 
+0x337b 003454 bpatch patch06_5 ,mem_patch06 
+0x337c 003455 fetch 1 ,mem_eir_enable 
+0x337d 003456 rtn blank 
+0x337e 003457 arg mem_eir ,contw 
+0x337f 003458 fetch 1 ,mem_local_name_length 
+0x3380 003459 copy pdata ,loopcnt 
+0x3381 003460 increase 1 ,pdata 
+0x3382 003461 istore 1 ,contw 
+0x3383 003462 copy contw ,temp 
+0x3384 003463 increase 1 ,pdata 
+0x3385 003464 store 2 ,mem_tx_len 
+0x3386 003465 copy temp ,contw 
+0x3387 003466 setarg 0x09 
+0x3388 003467 istore 1 ,contw 
+0x3389 003468 arg mem_local_name ,contr 
+0x338a 003469 call memcpy 
+0x338b 003471 arg mem_all_uuid_128bits ,regc 
+0x338c 003472 arg 4 ,loopcnt 
+0x338d 003473 call get_all_uuid 
+0x338e 003474 arg mem_all_uuid_16bits ,regc 
+0x338f 003475 arg 1 ,loopcnt 
+0x3390 003476 call get_all_uuid 
+0x3391 003478 force type_dm3 ,type 
+0x3392 003479 jam 2 ,mem_tx_lch 
+0x3393 003480 setarg mem_eir 
+0x3394 003481 store 2 ,mem_txptr 
+0x3395 003482 call rf_setup_time_slave_slot 
+0x3396 003483 call tx_radio_freq 
+0x3397 003484 call start_transmitter 
+0x3398 003485 call start_tx_external 
+0x3399 003486 call send_access_word 
+0x339a 003487 call scan_mode_whiten 
+0x339b 003488 call transmit_packet_whitened 
+0x339c 003489 rtn 
+:      003492 get_all_uuid:
+0x339d 003493 copy contw ,temp 
+0x339e 003494 copy regc ,contr 
+0x339f 003495 ifetch 1 ,contr 
+0x33a0 003496 rtn blank 
+:      003497 lshift_loop:
+0x33a1 003498 lshift pdata ,pdata 
+0x33a2 003499 loop lshift_loop 
+0x33a3 003500 copy pdata ,rega 
+0x33a4 003501 increase 2 ,pdata 
+0x33a5 003502 copy pdata ,queue 
+0x33a6 003503 fetch 2 ,mem_tx_len 
+0x33a7 003504 iadd queue ,pdata 
+0x33a8 003505 store 2 ,mem_tx_len 
+0x33a9 003506 copy temp ,contw 
+0x33aa 003507 copy rega ,pdata 
+0x33ab 003508 increase 1 ,pdata 
+0x33ac 003509 istore 1 ,contw 
+0x33ad 003510 copy regc ,contr 
+0x33ae 003511 ifetch 1 ,contr 
+0x33af 003512 ifetch 1 ,contr 
+0x33b0 003513 istore 1 ,contw 
+0x33b1 003514 copy rega ,loopcnt 
+0x33b2 003515 branch memcpy 
+:      003521 page_scan_dispatch:
+0x33b3 003522 fetch 1 ,mem_scan_mode 
+0x33b4 003523 rtnbit0 page_scan_mode 
+0x33b5 003524 force pscan_interval_timer ,queue 
+0x33b6 003525 call timer_check 
+0x33b7 003526 nrtn blank 
+0x33b8 003527 fetcht 2 ,mem_pscan_window 
+0x33b9 003528 force 40 ,queue 
+0x33ba 003529 call sniff_check_window 
+0x33bb 003530 rtn user 
+0x33bc 003531 force 0 ,am_addr 
+0x33bd 003532 jam param_pagerespto ,mem_fhs_wait_counter 
+0x33be 003533 set0 mark_fhs_already_good ,mark 
+0x33bf 003534 call page_scan_start 
+0x33c0 003535 force pscan_interval_timer ,queue 
+0x33c1 003536 fetch 2 ,mem_pscan_interval 
+0x33c2 003537 branch timer_init 
+:      003540 page_scan_start:
+0x33c3 003541 set0 mark_ext_patch ,mark 
+0x33c4 003542 bpatch patch06_6 ,mem_patch06 
+0x33c5 003543 disable clknt 
+0x33c6 003544 call afh_clear 
+0x33c7 003545 fetch 1 ,mem_pagescan_waitcnt 
+0x33c8 003546 increase 1 ,pdata 
+0x33c9 003547 store 1 ,mem_pagescan_waitcnt 
+0x33ca 003548 force 0 ,n_tx_slot 
+0x33cb 003549 call fetch_self_bt_adr 
+0x33cc 003550 add clkn_bt ,1 ,bt_clk 
+0x33cd 003551 force 0x02 ,freq_mode 
+0x33ce 003552 set0 mark_ext_patch ,mark 
+0x33cf 003553 bpatch patch06_7 ,mem_patch06 
+0x33d0 003554 call rx_radio_freq 
+0x33d1 003555 call start_receiver 
+0x33d2 003556 call wait_access_forever 
+0x33d3 003557 nrtn sync 
+0x33d4 003558 call shutdown_radio 
+0x33d5 003559 fetch 1 ,mem_pagescan_rcvcnt 
+0x33d6 003560 increase 1 ,pdata 
+0x33d7 003561 store 1 ,mem_pagescan_rcvcnt 
+0x33d8 003562 force 0 ,stop_watch 
+0x33d9 003563 call rf_setup_time_slave_slot 
+0x33da 003564 or_into 0x002 ,bt_clk 
+0x33db 003565 force 0x01 ,freq_mode 
+0x33dc 003566 call tx_radio_freq 
+0x33dd 003567 call start_transmitter 
+0x33de 003568 call start_tx_external 
+0x33df 003569 call send_access_word 
+0x33e0 003570 call end_of_packet 
+0x33e1 003571 force 0 ,am_addr 
+0x33e2 003572 arg param_rf_setup ,timeup 
+0x33e3 003573 until clke_rt ,meet 
+0x33e4 003574 or_into 0x03 ,clke_bt 
+0x33e5 003575 and_into 0x1fd ,bt_clk 
+:      003576 page_scan_wait_fhs_restart:
+0x33e6 003577 set0 mark_ext_patch ,mark 
+0x33e7 003578 bpatch patch07_0 ,mem_patch07 
+0x33e8 003579 increase 1 ,n_tx_slot 
+0x33e9 003580 call rx_radio_freq 
+0x33ea 003581 call start_receiver 
+0x33eb 003582 call wait_access_mhalfbnd 
+0x33ec 003583 nbranch page_scan_wait_fhs_again ,sync 
+0x33ed 003584 call scan_mode_whiten 
+0x33ee 003585 call receive_packet_whitened 
+0x33ef 003586 bmark1 mark_fhs_already_good ,page_scan_reply_to_fhs 
+:      003587 page_scan_wait_fhs_again:
+0x33f0 003588 set0 mark_ext_patch ,mark 
+0x33f1 003589 bpatch patch07_1 ,mem_patch07 
+0x33f2 003590 fetch 1 ,mem_fhs_wait_counter 
+0x33f3 003591 rtn blank 
+0x33f4 003592 increase -1 ,pdata 
+0x33f5 003593 store 1 ,mem_fhs_wait_counter 
+0x33f6 003594 call rf_setup_time_master_slot 
+0x33f7 003595 branch page_scan_wait_fhs_restart 
+:      003598 page_scan_reply_to_fhs:
+0x33f8 003599 set0 mark_ext_patch ,mark 
+0x33f9 003600 bpatch patch07_2 ,mem_patch07 
+0x33fa 003601 set0 1 ,clke_bt 
+0x33fb 003602 set1 0 ,clke_bt 
+0x33fc 003603 fetch 1 ,mem_pagescan_rcvfhscnt 
+0x33fd 003604 increase 1 ,pdata 
+0x33fe 003605 store 1 ,mem_pagescan_rcvfhscnt 
+0x33ff 003606 call rf_setup_time_slave_slot 
+0x3400 003607 or_into 0x02 ,bt_clk 
+0x3401 003608 call tx_radio_freq 
+0x3402 003609 call start_transmitter 
+0x3403 003610 call start_tx_external 
+0x3404 003611 call send_access_word 
+0x3405 003612 call end_of_packet 
+:      003613 slave_apply_clke_bt:
+0x3406 003614 compare 0x03 ,clke_bt ,0x03 
+0x3407 003615 branch slave_apply_clke_bt_now ,true 
+0x3408 003616 until null ,mhalfbnd 
+0x3409 003617 branch slave_apply_clke_bt 
+:      003618 slave_apply_clke_bt_now:
+0x340a 003619 fetch 4 ,mem_clke_bt 
+0x340b 003620 or_into 0x03 ,pdata 
+0x340c 003621 icopy clke_bt 
+:      003623 start_slave_connection:
+0x340d 003624 set0 mark_ext_patch ,mark 
+0x340e 003625 bpatch patch07_3 ,mem_patch07 
+0x340f 003626 fetch 6 ,extm_lap 
+0x3410 003627 store 6 ,mem_plap 
+0x3411 003628 call prepare_newconn 
+:      003629 slave_newconn_loop:
+0x3412 003630 call slave_newconn_once 
+0x3413 003631 branch sconn_successful ,match 
+0x3414 003632 call new_conn_timeout 
+0x3415 003633 nbranch slave_newconn_loop ,blank 
+0x3416 003634 rtn 
+:      003637 sconn_successful:
+0x3417 003638 set0 mark_ext_patch ,mark 
+0x3418 003639 bpatch patch07_4 ,mem_patch07 
+0x3419 003640 call newconn_init 
+0x341a 003641 call context_new 
+0x341b 003642 nrtn zero 
+0x341c 003643 jam 0 ,mem_mode 
+0x341d 003644 call calc_clke_offset 
+0x341e 003645 branch context_save 
+:      003648 slave_dispatch:
+0x341f 003649 set0 mark_ext_patch ,mark 
+0x3420 003650 bpatch patch07_5 ,mem_patch07 
+0x3421 003651 call calc_clke 
+0x3422 003652 call role_switch_slave 
+0x3423 003653 rtn user 
+:      003654 slave_loop:
+0x3424 003655 set0 mark_ext_patch ,mark 
+0x3425 003656 bpatch patch07_6 ,mem_patch07 
+0x3426 003657 call check_bt_disabled 
+0x3427 003658 call scheduler_process 
+0x3428 003659 call slave_conn_recv_packet 
+0x3429 003660 nbranch slave_notmatch ,match 
+0x342a 003661 call supervision_flush 
+0x342b 003662 call scheduler_tx_l2cap_pkt 
+0x342c 003663 call prepare_tx 
+0x342d 003664 call slave_conn_send_packet 
+0x342e 003665 call parse_l2cap 
+0x342f 003666 call parse_lmp 
+0x3430 003667 fetch 1 ,mem_slave_rcvcnt 
+0x3431 003668 increase 1 ,pdata 
+0x3432 003669 store 1 ,mem_slave_rcvcnt 
+0x3433 003670 call calc_clke_offset 
+:      003671 slave_notmatch:
+0x3434 003672 set0 mark_ext_patch ,mark 
+0x3435 003673 bpatch patch07_7 ,mem_patch07 
+0x3436 003674 call lpm_set_mult 
+0x3437 003675 call supervision_update 
+0x3438 003676 branch slave_disconnect ,positive 
+0x3439 003677 call check_disconnect_timeout 
+0x343a 003678 nbranch slave_disconnect ,user 
+0x343b 003679 call check_attempt 
+0x343c 003680 nbranch slave_loop ,blank 
+0x343d 003681 rtn 
+:      003683 slave_disconnect:
+0x343e 003684 set0 mark_ext_patch ,mark 
+0x343f 003685 bpatch patch08_0 ,mem_patch08 
+0x3440 003686 jam 0 ,mem_tester_emulate 
+0x3441 003687 jam 0 ,mem_debug_config 
+0x3442 003688 call quit_connection 
+0x3443 003689 set0 mark_testmode ,mark 
+0x3444 003690 call test_enable_white 
+0x3445 003691 fetch 1 ,mem_state 
+0x3446 003692 rtn 
+:      003695 role_switch_slave:
+0x3447 003696 set0 mark_ext_patch ,mark 
+0x3448 003697 bpatch patch08_1 ,mem_patch08 
+0x3449 003698 call role_switch_check 
+0x344a 003699 nrtn user 
+0x344b 003700 copy am_addr ,temp 
+0x344c 003701 call get_free_amaddr 
+0x344d 003702 store 1 ,mem_fhs_am_addr 
+0x344e 003703 copy temp ,am_addr 
+0x344f 003704 jam param_newconnto ,mem_newconnto_counter 
+:      003705 roles_sendfhs_loop:
+0x3450 003706 set0 mark_ext_patch ,mark 
+0x3451 003707 bpatch patch08_2 ,mem_patch08 
+0x3452 003708 call rf_setup_time_master_slot 
+0x3453 003709 force type_fhs ,type 
+0x3454 003710 call slave_send_access 
+0x3455 003711 deposit clkn_bt 
+0x3456 003712 store 4 ,mem_clkn_bt 
+0x3457 003713 call transmit_packet 
+0x3458 003714 call rf_setup_time_slave_slot 
+0x3459 003715 enable user3 
+0x345a 003716 call slave_receive_access 
+0x345b 003717 branch roles_got_fhs_reply ,sync 
+0x345c 003718 call shutdown_radio 
+0x345d 003719 call new_conn_timeout 
+0x345e 003720 nbranch roles_sendfhs_loop ,blank 
+0x345f 003721 rtnmark0 mark_accept_switch 
+0x3460 003722 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x3461 003723 set1 mark_switch_initiated ,mark 
+0x3462 003724 rtn 
+:      003725 roles_got_fhs_reply:
+0x3463 003726 enable clknt 
+0x3464 003727 call prepare_newconn 
+0x3465 003728 call afh_clear 
+:      003729 roles_newconn_loop:
+0x3466 003730 set0 mark_ext_patch ,mark 
+0x3467 003731 bpatch patch08_3 ,mem_patch08 
+0x3468 003732 call master_newconn_once 
+0x3469 003733 branch roles_newconn_responded ,sync 
+0x346a 003734 call new_conn_timeout 
+0x346b 003735 nbranch roles_newconn_loop ,blank 
+0x346c 003736 disable clknt 
+0x346d 003737 deposit clke_bt 
+0x346e 003738 store 4 ,mem_next_btclk 
+0x346f 003739 rtn 
+:      003740 roles_newconn_responded:
+0x3470 003741 enable master 
+0x3471 003742 bmark0 mark_accept_switch ,roles_newconn_nolmp 
+0x3472 003743 set0 mark_accept_switch ,mark 
+0x3473 003744 jam lmp_accepted ,mem_lmo_opcode2 
+0x3474 003745 jam lmp_host_connection_req ,mem_lmi_opcode2 
+0x3475 003746 call tid_set_reply 
+:      003747 roles_newconn_nolmp:
+0x3476 003748 deposit am_addr 
+0x3477 003749 store 1 ,mem_amaddr 
+0x3478 003750 force 0 ,pdata 
+0x3479 003751 store 6 ,mem_clk_offset 
+0x347a 003752 fetch 1 ,mem_mode 
+0x347b 003753 set1 mode_master ,pdata 
+0x347c 003754 store 1 ,mem_mode 
+0x347d 003755 call supervision_flush 
+0x347e 003756 disable master 
+0x347f 003757 enable user 
+0x3480 003758 rtn 
+:      003762 init_rx_packet_flags:
+0x3481 003763 set0 mark_ext_patch ,mark 
+0x3482 003764 bpatch patch08_4 ,mem_patch08 
+0x3483 003765 disable match 
+0x3484 003766 set0 mark_loopback ,mark 
+0x3485 003767 set0 mark_am_addr_broadcast ,mark 
+0x3486 003768 set0 mark_longpacket ,mark 
+0x3487 003769 set0 mark_old_packet ,mark 
+0x3488 003770 fetch 1 ,mem_arq 
+0x3489 003771 set0 arqnx ,pdata 
+0x348a 003772 set1 flowx ,pdata 
+0x348b 003773 store 1 ,mem_arq 
+0x348c 003774 rtn 
+:      003776 prepare_newconn:
+0x348d 003777 set0 mark_ext_patch ,mark 
+0x348e 003778 bpatch patch08_5 ,mem_patch08 
+0x348f 003779 jam param_newconnto ,mem_newconnto_counter 
+0x3490 003780 jam param_newconn_arq ,mem_arq 
+0x3491 003781 fetch 2 ,mem_rx_window_init 
+0x3492 003782 store 2 ,mem_rx_window 
+0x3493 003783 deposit clkn_bt 
+0x3494 003784 store 4 ,mem_next_btclk 
+0x3495 003785 rtn clknt 
+0x3496 003786 deposit clke_bt 
+0x3497 003787 store 4 ,mem_next_btclk 
+0x3498 003788 rtn 
+:      003790 newconn_init:
+0x3499 003791 set0 mark_ext_patch ,mark 
+0x349a 003792 bpatch patch08_6 ,mem_patch08 
+0x349b 003793 call init_lmp_reinit 
+0x349c 003794 call new_conn_handle 
+0x349d 003795 store 1 ,mem_conn_handle 
+0x349e 003796 setarg 0 
+0x349f 003797 store 2 ,mem_l2cap_rxbuff1_len 
+0x34a0 003798 setarg param_supervision_to 
+0x34a1 003799 store 2 ,mem_supervision_to 
+0x34a2 003800 fetch 1 ,mem_state 
+0x34a3 003801 set1 state_inconn ,pdata 
+0x34a4 003802 store 1 ,mem_state 
+0x34a5 003803 jam 0 ,mem_op 
+0x34a6 003804 jam 0 ,mem_state_map 
+0x34a7 003805 jam 0 ,mem_lpm_current_mult 
+0x34a8 003806 branch supervision_flush 
+:      003809 clear_linkkey:
+0x34a9 003810 set0 mark_ext_patch ,mark 
+0x34aa 003811 bpatch patch08_7 ,mem_patch08 
+0x34ab 003812 force 0 ,pdata 
+0x34ac 003813 store 8 ,mem_link_key 
+0x34ad 003814 istore 8 ,contw 
+0x34ae 003815 call clear_linkstate 
+0x34af 003816 branch context_traverse_linkkey 
+:      003818 new_conn_timeout:
+0x34b0 003819 fetch 1 ,mem_newconnto_counter 
+0x34b1 003820 increase -1 ,pdata 
+0x34b2 003821 store 1 ,mem_newconnto_counter 
+0x34b3 003822 rtn 
+:      003824 new_conn_handle:
+0x34b4 003825 fetch 1 ,mem_handle_num 
+0x34b5 003826 increase 1 ,pdata 
+0x34b6 003827 store 1 ,mem_handle_num 
+0x34b7 003828 rtn 
+:      003831 quit_connection:
+0x34b8 003832 set0 mark_ext_patch ,mark 
+0x34b9 003833 bpatch patch09_0 ,mem_patch09 
+0x34ba 003834 fetch 1 ,mem_hci_cmd 
+0x34bb 003835 beq hci_cmd_remote_name_req ,quit_connection_name 
+0x34bc 003836 fetch 1 ,mem_lmp_to_send 
+0x34bd 003837 bne lmp_name_req ,quit_connection_cont 
+:      003838 quit_connection_name:
+0x34be 003839 call cmd_check_plap 
+0x34bf 003840 nbranch quit_connection_cont ,zero 
+0x34c0 003841 call master_name_error 
+0x34c1 003842 jam 0 ,mem_hci_cmd 
+:      003843 quit_connection_cont:
+0x34c2 003844 set0 mark_ext_patch ,mark 
+0x34c3 003845 bpatch patch09_1 ,mem_patch09 
+0x34c4 003846 call app_disconn_reason_collect_bt 
+0x34c5 003847 call sniff_exit 
+0x34c6 003848 jam bt_evt_bb_disconnected ,mem_fifo_temp 
+0x34c7 003849 call ui_ipc_send_event 
+0x34c8 003850 call init_lmp_work 
+0x34c9 003851 call l2cap_init_work 
+0x34ca 003852 call sp_initialize 
+0x34cb 003853 fetch 1 ,mem_state 
+0x34cc 003854 set0 state_inconn 
+0x34cd 003855 store 1 ,mem_state 
+0x34ce 003856 jam 0 ,memui_reconnect_mode 
+0x34cf 003858 fetch 1 ,mem_state_map 
+0x34d0 003859 compare 0x0 ,pdata ,0xc0 
+0x34d1 003860 branch quit_connection_not_clear_mark ,true 
+0x34d2 003861 set0 mark_rxbuf_inuse ,mark 
+:      003862 quit_connection_not_clear_mark:
+0x34d3 003863 fetch 1 ,mem_arq 
+0x34d4 003864 bbit0 wack ,quit_connection_not_clear_tx 
+:      003865 quit_connection_not_clear_tx:
+0x34d5 003866 fetch 1 ,mem_op 
+0x34d6 003867 rtnbit0 op_txl2cap 
+0x34d7 003868 set0 mark_tx_l2cap ,mark 
+0x34d8 003869 rtn 
+:      003871 slave_newconn_once:
+0x34d9 003872 set0 mark_ext_patch ,mark 
+0x34da 003873 bpatch patch09_2 ,mem_patch09 
+0x34db 003874 fetch 1 ,extm_newconn_am_addr 
+0x34dc 003875 rtn blank 
+0x34dd 003876 icopy am_addr 
+0x34de 003877 call slave_conn_recv_packet 
+0x34df 003878 nrtn match 
+0x34e0 003879 force type_null ,type 
+0x34e1 003880 call slave_conn_send_packet 
+0x34e2 003881 deposit am_addr 
+0x34e3 003882 store 1 ,mem_amaddr 
+0x34e4 003883 force 0 ,pdata 
+0x34e5 003884 store 1 ,extm_newconn_am_addr 
+0x34e6 003885 rtn 
+:      003891 prepare_tx:
+0x34e7 003892 set0 mark_ext_patch ,mark 
+0x34e8 003893 bpatch patch09_3 ,mem_patch09 
+0x34e9 003894 fetch 1 ,mem_state 
+0x34ea 003895 bbit0 state_insco ,prepare_tx_not_sco 
+0x34eb 003896 force type_hv3 ,type 
+0x34ec 003897 bmark0 mark_esco ,prepare_tx_not_esco 
+0x34ed 003898 call check_esco_amaddr 
+0x34ee 003899 nbranch prepare_tx_not_sco ,true 
+0x34ef 003900 branch prepare_tx_not_sco ,attempt 
+0x34f0 003901 call set_wait_ack 
+0x34f1 003902 setarg 2 
+0x34f2 003903 store 2 ,mem_retransmission_cnt 
+0x34f3 003904 rtn 
+:      003905 prepare_tx_not_esco:
+0x34f4 003906 nrtn attempt 
+:      003907 prepare_tx_not_sco:
+0x34f5 003908 set0 mark_ext_patch ,mark 
+0x34f6 003909 bpatch patch09_4 ,mem_patch09 
+0x34f7 003910 call context_check_all_wack 
+0x34f8 003911 nbranch prepare_tx_no_retransmit ,zero 
+0x34f9 003912 fetch 1 ,mem_arq 
+0x34fa 003913 bbit0 wack ,prepare_tx_pollnull 
+:      003914 prepare_tx_retransmit:
+0x34fb 003915 bmark1 mark_loopback ,prepare_tx_loopback 
+0x34fc 003916 fetch 1 ,mem_debug_config 
+0x34fd 003917 bbit1 debug_tx_pattern ,prepare_tx_txpat 
+0x34fe 003918 fetch 2 ,mem_retransmission_cnt 
+0x34ff 003919 increase -1 ,pdata 
+0x3500 003920 store 2 ,mem_retransmission_cnt 
+0x3501 003921 branch prepare_tx_nomore_retransmit ,blank 
+0x3502 003922 fetch 1 ,mem_last_type 
+0x3503 003923 iforce type 
+0x3504 003924 rtn 
+:      003926 prepare_tx_nomore_retransmit:
+0x3505 003927 set0 mark_ext_patch ,mark 
+0x3506 003928 bpatch patch09_5 ,mem_patch09 
+0x3507 003929 call clear_got_tx 
+:      003930 prepare_tx_no_retransmit:
+0x3508 003931 call check_esco_amaddr 
+0x3509 003932 branch prepare_tx_pollnull ,true 
+0x350a 003933 call send_lmp 
+0x350b 003934 branch prepare_tx_sendlmp ,user 
+0x350c 003935 fetch 1 ,mem_op 
+0x350d 003936 bbit1 op_txl2cap ,prepare_tx_sendl2cap 
+0x350e 003937 bmark1 mark_loopback ,prepare_tx_loopback 
+0x350f 003938 fetch 1 ,mem_debug_config 
+0x3510 003939 bbit1 debug_tx_pattern ,prepare_tx_txpat 
+:      003940 prepare_tx_pollnull:
+0x3511 003941 force type_poll ,type 
+0x3512 003942 rtn master 
+0x3513 003943 force type_null ,type 
+0x3514 003944 rtn 
+:      003945 prepare_tx_loopback:
+0x3515 003946 set0 mark_ext_patch ,mark 
+0x3516 003947 bpatch patch09_6 ,mem_patch09 
+0x3517 003948 fetch 1 ,mem_rx_type 
+0x3518 003949 iforce type 
+0x3519 003950 rtnne 1 
+0x351a 003951 force type_null ,type 
+0x351b 003952 rtn 
+:      003953 prepare_tx_txpat:
+0x351c 003954 fetch 1 ,test_mode_packet_type 
+0x351d 003955 and pdata ,0xf ,type 
+0x351e 003956 set1 mark_loopback ,mark 
+0x351f 003957 rtn 
+:      003958 prepare_tx_sendlmp:
+0x3520 003959 force type_lmp ,type 
+0x3521 003960 branch set_wait_ack 
+:      003961 prepare_tx_sendl2cap:
+0x3522 003962 call tx_l2cap_type 
+:      003964 set_wait_ack:
+0x3523 003965 set0 mark_ext_patch ,mark 
+0x3524 003966 bpatch patch09_7 ,mem_patch09 
+0x3525 003967 fetcht 1 ,mem_arq 
+0x3526 003968 set1 wack ,temp 
+0x3527 003969 storet 1 ,mem_arq 
+0x3528 003970 deposit type 
+0x3529 003971 store 1 ,mem_last_type 
+0x352a 003972 setarg 0xffff 
+0x352b 003973 store 2 ,mem_retransmission_cnt 
+0x352c 003974 rtn 
+:      003976 tx_l2cap_type:
+0x352d 003977 set0 mark_ext_patch ,mark 
+0x352e 003978 bpatch patch0a_0 ,mem_patch0a 
+0x352f 003979 fetch 1 ,mem_state_map 
+0x3530 003980 isolate1 smap_edr ,pdata 
+0x3531 003981 fetch 2 ,mem_tx_len 
+0x3532 003982 branch tx_l2cap_type_edr ,true 
+0x3533 003983 force type_dm1 ,type 
+0x3534 003984 sub pdata ,17 ,null 
+0x3535 003985 rtn positive 
+0x3536 003986 force type_dh1 ,type 
+0x3537 003987 sub pdata ,27 ,null 
+0x3538 003988 rtn positive 
+0x3539 003989 force type_dm3 ,type 
+0x353a 003990 sub pdata ,121 ,null 
+0x353b 003991 rtn positive 
+0x353c 003992 force type_dh3 ,type 
+0x353d 003993 sub pdata ,183 ,null 
+0x353e 003994 rtn positive 
+0x353f 003995 force type_dm5 ,type 
+0x3540 003996 sub pdata ,224 ,null 
+0x3541 003997 rtn positive 
+0x3542 003998 force type_dh5 ,type 
+0x3543 003999 rtn 
+:      004000 tx_l2cap_type_edr:
+0x3544 004001 force type_dm1 ,type 
+0x3545 004002 sub pdata ,17 ,null 
+0x3546 004003 rtn positive 
+0x3547 004004 force type_dh1 ,type 
+0x3548 004005 sub pdata ,54 ,null 
+0x3549 004006 rtn positive 
+0x354a 004007 force type_dm3 ,type 
+0x354b 004008 arg 367 ,temp 
+0x354c 004009 isub temp ,null 
+0x354d 004010 nrtn positive 
+0x354e 004011 force type_dm5 ,type 
+0x354f 004012 arg 679 ,temp 
+0x3550 004013 isub temp ,null 
+0x3551 004014 nrtn positive 
+0x3552 004015 force type_dh5 ,type 
+0x3553 004016 rtn 
+:      004025 slave_receive_master_slot:
+0x3554 004026 fetch 1 ,mem_state 
+0x3555 004027 bbit0 state_insniff ,slave_receive_notsniff 
+0x3556 004028 fetch 2 ,mem_tsniff 
+0x3557 004029 branch slave_receive_notsniff ,blank 
+0x3558 004030 nbranch slave_receive_sniff ,attempt 
+:      004031 slave_receive_notsniff:
+0x3559 004032 call rf_setup_time_master_slot 
+:      004033 slave_receive_access:
+0x355a 004034 add clke_bt ,1 ,bt_clk 
+:      004035 slave_receive_sniff:
+0x355b 004036 enable swfine 
+0x355c 004037 fetch 2 ,mem_rx_window 
+0x355d 004038 rshift pdata ,pdata 
+0x355e 004039 arg param_pll_setup ,temp 
+0x355f 004040 iadd temp ,pdata 
+0x3560 004041 call ahead_window 
+0x3561 004042 call fetch_extm_bt_adr 
+0x3562 004043 force 0x03 ,freq_mode 
+0x3563 004044 call rx_radio_freq 
+0x3564 004045 call init_rx_packet_flags 
+0x3565 004046 call prep_crypt 
+0x3566 004047 set0 mark_ext_patch ,mark 
+0x3567 004048 bpatch patch0a_1 ,mem_patch0a 
+0x3568 004049 fetch 2 ,mem_rx_window 
+0x3569 004050 rshift pdata ,pdata 
+0x356a 004051 call ahead_window 
+0x356b 004052 call start_receiver 
+0x356c 004053 enable decode_fec0 
+0x356d 004054 fetch 2 ,mem_rx_window 
+0x356e 004055 arg param_clke_cal ,temp 
+0x356f 004056 iadd temp ,stop_watch 
+0x3570 004057 correlate null ,timeout 
+0x3571 004058 copy clke ,temp 
+0x3572 004059 storet 6 ,mem_sync_clke 
+0x3573 004060 disable decode_fec0 
+0x3574 004061 nrtn sync 
+0x3575 004062 arg param_clke_cal ,clke_rt 
+0x3576 004063 copy bt_clk ,clke_bt 
+0x3577 004064 branch lpm_adjust_clk ,wake 
+0x3578 004065 rtn 
+:      004068 slave_conn_recv_packet:
+0x3579 004069 set0 mark_ext_patch ,mark 
+0x357a 004070 bpatch patch0a_2 ,mem_patch0a 
+0x357b 004071 call slave_receive_master_slot 
+0x357c 004072 nbranch shutdown_radio ,sync 
+0x357d 004073 call save_rssi 
+0x357e 004074 bmark0 mark_testmode ,receive_packet 
+0x357f 004075 fetch 2 ,mem_tst_pktcnt_sync 
+0x3580 004076 increase 1 ,pdata 
+0x3581 004077 store 2 ,mem_tst_pktcnt_sync 
+:      004078 receive_packet:
+0x3582 004079 rshift bt_clk ,temp 
+0x3583 004080 or temp ,0x40 ,white_init 
+:      004081 receive_packet_whitened:
+0x3584 004082 set0 mark_ext_patch ,mark 
+0x3585 004083 bpatch patch0a_3 ,mem_patch0a 
+0x3586 004084 enable enable_white 
+0x3587 004085 enable enable_hec 
+0x3588 004086 enable decode_fec1 
+0x3589 004087 parse demod ,bucket ,3 
+0x358a 004088 rshift8 pwindow ,pdata 
+0x358b 004089 store 1 ,mem_temp_am_addr 
+0x358c 004090 parse demod ,bucket ,4 
+0x358d 004091 inject bucket ,7 
+0x358e 004092 copy pwindow ,pdata 
+0x358f 004093 store 1 ,mem_rx_type 
+0x3590 004094 parse demod ,bucket ,3 
+0x3591 004095 rshift8 pwindow ,pdata 
+0x3592 004096 store 1 ,mem_temp_arq 
+0x3593 004097 fetch 1 ,mem_rx_type 
+0x3594 004098 sub pdata ,3 ,null 
+0x3595 004099 branch receive_packet_noedr ,positive 
+0x3596 004100 beq 7 ,receive_packet_noedr 
+0x3597 004101 fetch 1 ,mem_state_map 
+0x3598 004102 isolate1 smap_edr ,pdata 
+0x3599 004103 setflag true ,psk ,radio_ctrl 
+:      004104 receive_packet_noedr:
+0x359a 004105 set0 mark_ext_patch ,mark 
+0x359b 004106 bpatch patch0a_4 ,mem_patch0a 
+0x359c 004107 parse demod ,bucket ,8 
+0x359d 004108 disable decode_fec1 
+0x359e 004109 disable enable_hec 
+0x359f 004110 branch error_header ,crc_failed 
+0x35a0 004111 bmark0 mark_testmode ,receive_packet_amchk 
+0x35a1 004112 fetch 2 ,mem_tst_pktcnt_hec 
+0x35a2 004113 increase 1 ,pdata 
+0x35a3 004114 store 2 ,mem_tst_pktcnt_hec 
+:      004115 receive_packet_amchk:
+0x35a4 004116 set0 mark_ext_patch ,mark 
+0x35a5 004117 bpatch patch0a_5 ,mem_patch0a 
+0x35a6 004118 fetch 1 ,mem_temp_am_addr 
+0x35a7 004119 compare 0 ,pdata ,0x07 
+0x35a8 004120 setflag true ,mark_am_addr_broadcast ,mark 
+0x35a9 004121 branch am_addr_ok ,true 
+0x35aa 004122 icompare 0x07 ,am_addr 
+0x35ab 004123 branch am_addr_match ,true 
+0x35ac 004124 bmark0 mark_esco ,end_of_packet 
+0x35ad 004125 fetcht 1 ,mem_saved_amaddr 
+0x35ae 004126 icompare 0x7 ,temp 
+0x35af 004127 nbranch end_of_packet ,true 
+0x35b0 004128 fetch 1 ,mem_arq 
+0x35b1 004129 set0 arqnx ,pdata 
+0x35b2 004130 set1 flowx ,pdata 
+0x35b3 004131 store 1 ,mem_arq 
+:      004132 am_addr_match:
+0x35b4 004133 enable match 
+:      004134 am_addr_ok:
+0x35b5 004135 set0 mark_ext_patch ,mark 
+0x35b6 004136 bpatch patch0a_6 ,mem_patch0a 
+0x35b7 004137 fetch 1 ,mem_rx_type 
+0x35b8 004138 icopy type 
+0x35b9 004139 bmark1 mark_am_addr_broadcast ,arqn_bypass 
+0x35ba 004140 fetcht 1 ,mem_temp_arq 
+0x35bb 004141 fetch 1 ,mem_arq 
+0x35bc 004142 set0 flow ,pdata 
+0x35bd 004143 isolate1 flow ,temp 
+0x35be 004144 setflag true ,flow ,pdata 
+0x35bf 004145 isolate1 arqn ,temp 
+0x35c0 004146 setflag true ,arqn ,pdata 
+0x35c1 004147 store 1 ,mem_arq 
+0x35c2 004148 isolate0 arqn ,temp 
+0x35c3 004149 branch arqn_bypass ,true 
+0x35c4 004150 call clear_got_tx 
+:      004151 arqn_bypass:
+0x35c5 004152 set0 mark_ext_patch ,mark 
+0x35c6 004153 bpatch patch0a_7 ,mem_patch0a 
+0x35c7 004154 arg 0 ,temp 
+0x35c8 004155 call reserve_slot 
+0x35c9 004156 and type ,0xf ,pdata 
+0x35ca 004157 beq type_poll ,process_poll 
+0x35cb 004158 beq type_null ,end_of_packet 
+0x35cc 004159 beq type_fhs ,process_fhs 
+0x35cd 004160 fetcht 1 ,mem_temp_arq 
+0x35ce 004161 fetch 1 ,mem_arq 
+0x35cf 004162 icompare 0x04 ,temp 
+0x35d0 004163 nbranch rx_type_dispatch ,true 
+0x35d1 004164 bmark0 mark_am_addr_broadcast ,failed_seqn 
+0x35d2 004165 bbit0 bcast1 ,rx_type_dispatch 
+:      004166 failed_seqn:
+0x35d3 004167 set1 mark_old_packet ,mark 
+:      004168 rx_type_dispatch:
+0x35d4 004169 set0 mark_ext_patch ,mark 
+0x35d5 004170 bpatch patch0b_0 ,mem_patch0b 
+0x35d6 004171 deposit type 
+0x35d7 004172 beq type_dm1 ,process_dm1 
+0x35d8 004173 beq type_dh1 ,process_dh1 
+0x35d9 004174 beq type_hv3 ,process_hev 
+0x35da 004175 beq type_3dh1 ,process_3dh1 
+0x35db 004176 arg 4 ,temp 
+0x35dc 004177 call reserve_slot 
+0x35dd 004178 beq type_dm3 ,process_dm3 
+0x35de 004179 beq type_dh3 ,process_dh3 
+0x35df 004180 arg 8 ,temp 
+0x35e0 004181 call reserve_slot 
+0x35e1 004182 beq type_dm5 ,process_dm5 
+0x35e2 004183 beq type_dh5 ,process_dh5 
+0x35e3 004184 rtn 
+:      004187 process_hev:
+0x35e4 004188 set0 mark_ext_patch ,mark 
+0x35e5 004189 bpatch patch0b_1 ,mem_patch0b 
+0x35e6 004190 enable decode_fec0 
+0x35e7 004191 enable enable_crc 
+0x35e8 004192 enable encrypt 
+0x35e9 004193 arg mem_sco_ibuf ,contw 
+0x35ea 004194 force 30 ,loopcnt 
+:      004195 process_hev_loop:
+0x35eb 004196 parse demod ,bucket ,8 
+0x35ec 004197 rshift3 pwindow ,pdata 
+0x35ed 004198 istore 1 ,contw 
+0x35ee 004199 loop process_hev_loop 
+0x35ef 004200 bmark0 mark_esco ,end_of_packet 
+0x35f0 004201 parse demod ,bucket ,16 
+0x35f1 004202 nsetflag crc_failed ,mark_esco_rxok ,mark 
+0x35f2 004203 branch error_payload ,crc_failed 
+0x35f3 004204 branch ack_payload 
+:      004207 process_poll:
+0x35f4 004208 branch end_of_packet 
+:      004210 process_dm3:
+:      004211 process_dm5:
+0x35f5 004212 set1 mark_longpacket ,mark 
+:      004213 process_dm1:
+0x35f6 004214 enable decode_fec2 
+0x35f7 004215 branch process_dmh 
+:      004217 process_dh3:
+:      004218 process_dh5:
+0x35f8 004219 set1 mark_longpacket ,mark 
+:      004220 process_3dh1:
+0x35f9 004221 set1 psk3m ,radio_ctrl 
+:      004222 process_dh1:
+0x35fa 004223 enable decode_fec0 
+:      004224 process_dmh:
+0x35fb 004225 set0 mark_ext_patch ,mark 
+0x35fc 004226 bpatch patch0b_2 ,mem_patch0b 
+0x35fd 004227 bmark1 mark_rxbuf_inuse ,end_of_packet 
+0x35fe 004228 isolate0 psk ,radio_ctrl 
+0x35ff 004229 branch process_dmh_noedr ,true 
+0x3600 004230 disable enable_white 
+0x3601 004231 enable decode_fec0 
+0x3602 004232 disable decode_fec2 
+0x3603 004233 add clkn_bt ,2 ,timeup 
+0x3604 004234 correlate clkn_bt ,meet 
+0x3605 004235 nbranch error_payload ,sync 
+0x3606 004236 set1 mark_longpacket ,mark 
+0x3607 004237 enable enable_white 
+:      004238 process_dmh_noedr:
+0x3608 004239 set0 mark_ext_patch ,mark 
+0x3609 004240 bpatch patch0b_3 ,mem_patch0b 
+0x360a 004241 enable encrypt 
+0x360b 004242 enable enable_crc 
+0x360c 004243 parse demod ,bucket ,3 
+0x360d 004244 rshift8 pwindow ,pdata 
+0x360e 004245 store 1 ,mem_lch_code 
+0x360f 004246 parse demod ,bucket ,5 
+0x3610 004247 bmark1 mark_longpacket ,process_dmh_long 
+0x3611 004248 rshift3 pwindow ,loopcnt 
+0x3612 004249 rshift3 loopcnt ,loopcnt 
+0x3613 004250 branch process_dmh_common 
+:      004251 process_dmh_long:
+0x3614 004252 parse demod ,bucket ,5 
+0x3615 004253 rshift pwindow ,loopcnt 
+0x3616 004254 parse demod ,bucket ,3 
+:      004255 process_dmh_common:
+0x3617 004256 set0 mark_ext_patch ,mark 
+0x3618 004257 bpatch patch0b_4 ,mem_patch0b 
+0x3619 004258 deposit loopcnt 
+0x361a 004259 store 2 ,mem_len 
+0x361b 004260 branch process_dmh_data_end ,blank 
+0x361c 004261 isub mask3ff ,null 
+0x361d 004262 branch error_payload ,positive 
+0x361e 004263 set0 mark_ext_patch ,mark 
+0x361f 004264 bpatch patch0b_5 ,mem_patch0b 
+0x3620 004265 set0 mark_fhs_eir ,mark 
+0x3621 004266 fetch 1 ,mem_lch_code 
+0x3622 004267 and_into 0x03 ,pdata 
+0x3623 004268 arg mem_rxbuf ,contw 
+0x3624 004269 beq llid_lmp ,process_lmp 
+0x3625 004270 bmark1 mark_testmode ,process_dmh_data 
+0x3626 004272 fetch 1 ,mem_lch_code 
+0x3627 004273 and_into 0x03 ,pdata 
+0x3628 004274 beq llid_l2cap_start ,process_dmh_data_l2cap_start_pkt 
+0x3629 004275 beq llid_l2cap_cont ,process_dmh_data_l2cap_continue_pkt 
+0x362a 004276 branch error_payload 
+:      004278 process_lmp:
+0x362b 004279 fetch 2 ,mem_len 
+0x362c 004280 sub pdata ,0x70 ,null 
+0x362d 004281 nbranch error_payload ,positive 
+0x362e 004282 bmark1 mark_old_packet ,ack_payload 
+0x362f 004283 branch process_dmh_data 
+:      004286 process_dmh_data_l2cap_start_pkt:
+0x3630 004287 set0 mark_ext_patch ,mark 
+0x3631 004288 bpatch patch0b_6 ,mem_patch0b 
+0x3632 004289 bmark1 mark_old_packet ,ack_payload 
+0x3633 004290 fetch 2 ,mem_len 
+0x3634 004291 arg 0x2e0 ,temp 
+0x3635 004292 isub temp ,null 
+0x3636 004293 branch error_payload ,positive 
+0x3637 004294 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x3638 004295 bbit0 l2cap_inuse_buff1 ,process_dmh_data_into_buff1 
+0x3639 004296 bbit0 l2cap_inuse_buff2 ,process_dmh_data_into_buff2 
+0x363a 004297 branch end_of_packet 
+:      004298 process_dmh_data_into_buff1:
+0x363b 004299 jam 1 ,mem_l2cap_rxbuff_new 
+0x363c 004300 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x363d 004301 bne 0 ,end_of_packet 
+0x363e 004302 arg mem_l2cap_rxbuff1 ,contw 
+0x363f 004303 branch process_dmh_data 
+:      004304 process_dmh_data_into_buff2:
+0x3640 004305 jam 2 ,mem_l2cap_rxbuff_new 
+0x3641 004306 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x3642 004307 bne 0 ,end_of_packet 
+0x3643 004308 arg mem_l2cap_rxbuff2 ,contw 
+0x3644 004309 branch process_dmh_data 
+:      004311 process_dmh_data_l2cap_continue_pkt:
+0x3645 004312 set0 mark_ext_patch ,mark 
+0x3646 004313 bpatch patch0b_7 ,mem_patch0b 
+0x3647 004314 bmark1 mark_old_packet ,ack_payload 
+0x3648 004315 fetch 2 ,mem_len 
+0x3649 004316 arg 0x2e0 ,temp 
+0x364a 004317 isub temp ,null 
+0x364b 004318 branch error_payload ,positive 
+0x364c 004319 fetch 1 ,mem_l2cap_rxbuff_new 
+0x364d 004320 beq 1 ,process_dmh_data_l2cap_continue_pkt1 
+0x364e 004321 beq 2 ,process_dmh_data_l2cap_continue_pkt2 
+0x364f 004322 branch end_of_packet 
+:      004323 process_dmh_data_l2cap_continue_pkt1:
+0x3650 004324 arg mem_l2cap_rxbuff1 ,contw 
+0x3651 004325 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x3652 004326 iadd contw ,contw 
+0x3653 004327 branch process_dmh_data 
+:      004328 process_dmh_data_l2cap_continue_pkt2:
+0x3654 004329 arg mem_l2cap_rxbuff2 ,contw 
+0x3655 004330 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x3656 004331 iadd contw ,contw 
+:      004332 process_dmh_data:
+0x3657 004333 parse demod ,bucket ,8 
+0x3658 004334 rshift3 pwindow ,pdata 
+0x3659 004335 istore 1 ,contw 
+0x365a 004336 loop process_dmh_data 
+:      004337 process_dmh_data_end:
+0x365b 004338 set0 mark_ext_patch ,mark 
+0x365c 004339 bpatch patch0c_0 ,mem_patch0c 
+0x365d 004340 parse demod ,bucket ,16 
+0x365e 004341 branch error_payload_crc ,crc_failed 
+0x365f 004342 fetch 1 ,mem_l2cap_flow_ctrl_flag 
+0x3660 004343 beq l2cap_flow_ctrl_enable ,end_of_packet 
+0x3661 004344 bmark1 mark_testmode ,process_dmh_cont 
+0x3662 004345 bmark1 mark_old_packet ,redundant_payload 
+0x3663 004346 fetch 1 ,mem_lch_code 
+0x3664 004347 compare 3 ,pdata ,3 
+0x3665 004348 branch process_dmh_cont ,true 
+0x3666 004349 fetch 2 ,mem_len 
+0x3667 004350 branch process_dmh_cont ,blank 
+0x3668 004351 set0 mark_ext_patch ,mark 
+0x3669 004352 bpatch patch0c_1 ,mem_patch0c 
+0x366a 004353 fetch 1 ,mem_l2cap_rxbuff_new 
+0x366b 004354 beq 1 ,process_l2cap_pass_crc_buff1 
+0x366c 004355 beq 2 ,process_l2cap_pass_crc_buff2 
+0x366d 004356 branch assert 
+:      004357 process_l2cap_pass_crc_buff1:
+0x366e 004358 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x366f 004359 fetcht 2 ,mem_len 
+0x3670 004360 iadd temp ,pdata 
+0x3671 004361 store 2 ,mem_l2cap_rxbuff1_len 
+0x3672 004362 beq 0 ,assert 
+0x3673 004363 fetcht 2 ,mem_l2cap_rxbuff1 
+0x3674 004364 increase 4 ,temp 
+0x3675 004365 isub temp ,null 
+0x3676 004366 call l2cap_buff1_inuse ,zero 
+0x3677 004367 branch process_dmh_cont 
+:      004368 process_l2cap_pass_crc_buff2:
+0x3678 004369 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x3679 004370 fetcht 2 ,mem_len 
+0x367a 004371 iadd temp ,pdata 
+0x367b 004372 store 2 ,mem_l2cap_rxbuff2_len 
+0x367c 004373 beq 0 ,assert 
+0x367d 004374 fetcht 2 ,mem_l2cap_rxbuff2 
+0x367e 004375 add temp ,4 ,temp 
+0x367f 004376 isub temp ,null 
+0x3680 004377 call l2cap_buff2_inuse ,zero 
+0x3681 004378 branch process_dmh_cont 
+:      004379 process_dmh_cont:
+0x3682 004380 set0 mark_ext_patch ,mark 
+0x3683 004381 bpatch patch0c_2 ,mem_patch0c 
+0x3684 004382 fetcht 1 ,mem_state_map 
+0x3685 004383 fetch 1 ,mem_lch_code 
+0x3686 004384 compare 3 ,pdata ,0x03 
+0x3687 004385 setflag true ,smap_rxlmp ,temp 
+0x3688 004386 nsetflag true ,smap_rxl2cap ,temp 
+0x3689 004387 storet 1 ,mem_state_map 
+0x368a 004388 nbranch process_dmh_cont_rxbuf_not_use ,true 
+0x368b 004389 set1 mark_rxbuf_inuse ,mark 
+:      004390 process_dmh_cont_rxbuf_not_use:
+0x368c 004391 bmark0 mark_testmode ,ack_payload 
+0x368d 004392 isolate1 smap_rxlmp ,temp 
+0x368e 004393 branch ack_payload ,true 
+0x368f 004394 fetch 2 ,mem_tst_pktcnt_crc 
+0x3690 004395 increase 1 ,pdata 
+0x3691 004396 store 2 ,mem_tst_pktcnt_crc 
+0x3692 004397 set1 mark_loopback ,mark 
+0x3693 004398 set0 smap_rxl2cap ,temp 
+0x3694 004399 set0 mark_rxbuf_inuse ,mark 
+0x3695 004400 storet 1 ,mem_state_map 
+:      004401 ack_payload:
+0x3696 004402 set0 mark_ext_patch ,mark 
+0x3697 004403 bpatch patch0c_3 ,mem_patch0c 
+0x3698 004404 fetcht 1 ,mem_temp_arq 
+0x3699 004405 fetch 1 ,mem_arq 
+0x369a 004406 set1 arqnx ,pdata 
+0x369b 004407 isolate1 seqn ,temp 
+0x369c 004408 setflag true ,seqn ,pdata 
+0x369d 004409 isolate1 mark_am_addr_broadcast ,mark 
+0x369e 004410 setflag true ,bcast1 ,pdata 
+0x369f 004411 store 1 ,mem_arq 
+0x36a0 004412 fetch 2 ,mem_len 
+0x36a1 004413 nbranch end_of_packet ,blank 
+0x36a2 004414 fetch 1 ,mem_state_map 
+0x36a3 004415 set0 smap_rxl2cap ,pdata 
+0x36a4 004416 store 1 ,mem_state_map 
+0x36a5 004417 fetch 1 ,mem_lch_code 
+0x36a6 004418 compare 0x01 ,pdata ,0x07 
+0x36a7 004420 branch end_of_packet 
+:      004422 error_header:
+0x36a8 004423 set0 mark_ext_patch ,mark 
+0x36a9 004424 bpatch patch0c_4 ,mem_patch0c 
+0x36aa 004425 disable match 
+0x36ab 004426 fetch 2 ,mem_rx_hec_err 
+0x36ac 004427 increase 1 ,pdata 
+0x36ad 004428 store 2 ,mem_rx_hec_err 
+0x36ae 004429 branch end_of_packet 
+:      004430 error_payload_crc:
+0x36af 004431 fetch 2 ,mem_rx_crc_err 
+0x36b0 004432 increase 1 ,pdata 
+0x36b1 004433 store 2 ,mem_rx_crc_err 
+0x36b2 004434 call discard_pkt 
+0x36b3 004435 bmark0 mark_testmode ,error_payload 
+0x36b4 004436 set1 mark_loopback ,mark 
+:      004437 error_payload:
+0x36b5 004438 branch end_of_packet 
+:      004440 discard_pkt:
+0x36b6 004441 set0 mark_ext_patch ,mark 
+0x36b7 004442 bpatch patch0c_5 ,mem_patch0c 
+0x36b8 004443 fetch 1 ,mem_lch_code 
+0x36b9 004444 compare 3 ,pdata ,0x03 
+0x36ba 004445 nbranch discard_pkt_l2cap ,true 
+:      004446 discard_pkt_lmp:
+0x36bb 004447 fetcht 1 ,mem_state_map 
+0x36bc 004448 set0 smap_rxlmp ,temp 
+0x36bd 004449 storet 1 ,mem_state_map 
+0x36be 004450 rtn 
+:      004451 discard_pkt_l2cap:
+0x36bf 004454 fetcht 1 ,mem_state_map 
+0x36c0 004455 set0 smap_rxl2cap ,temp 
+0x36c1 004456 storet 1 ,mem_state_map 
+0x36c2 004457 branch h4_send_acl_trigger_clear 
+:      004459 redundant_payload:
+0x36c3 004460 fetch 1 ,mem_arq 
+0x36c4 004461 set1 arqnx ,pdata 
+0x36c5 004462 store 1 ,mem_arq 
+:      004463 end_of_packet:
+0x36c6 004464 set0 mark_ext_patch ,mark 
+0x36c7 004465 bpatch patch0c_6 ,mem_patch0c 
+0x36c8 004466 disable encode_fec0 
+0x36c9 004467 disable encode_fec2 
+0x36ca 004468 disable decode_fec0 
+0x36cb 004469 disable decode_fec2 
+0x36cc 004470 disable enable_crc 
+0x36cd 004471 disable encrypt 
+0x36ce 004472 disable enable_white 
+0x36cf 004473 branch shutdown_radio ,is_rx 
+0x36d0 004474 until null ,tx_clear 
+0x36d1 004475 nop 100 
+0x36d2 004476 branch shutdown_radio 
+:      004478 process_fhs:
+0x36d3 004479 set0 mark_ext_patch ,mark 
+0x36d4 004480 bpatch patch0c_7 ,mem_patch0c 
+0x36d5 004481 enable enable_crc 
+0x36d6 004482 enable decode_fec2 
+0x36d7 004483 parse demod ,bucket ,72 
+0x36d8 004484 isolate1 58 ,pdata 
+0x36d9 004485 setflag true ,mark_fhs_eir ,mark 
+0x36da 004486 copy bt_adr ,temp 
+0x36db 004487 ialigned bt_adr 
+0x36dc 004488 ialigned fhs0 
+0x36dd 004489 pulse recalc 
+0x36de 004490 setsect 2 ,0xfffff 
+0x36df 004491 setsect 3 ,0x0ffff 
+0x36e0 004492 nop 32 
+0x36e1 004493 iverify fhs_parity 
+0x36e2 004494 deposit lap 
+0x36e3 004495 store 3 ,extm_lap 
+0x36e4 004496 deposit uap 
+0x36e5 004497 store 1 ,extm_uap 
+0x36e6 004498 copy temp ,bt_adr 
+0x36e7 004499 branch fhs_parity_ok ,true 
+0x36e8 004500 branch error_payload 
+:      004501 fhs_parity_ok:
+0x36e9 004502 set0 mark_ext_patch ,mark 
+0x36ea 004503 bpatch patch0d_0 ,mem_patch0d 
+0x36eb 004504 parse demod ,bucket ,72 
+0x36ec 004505 ialigned fhs1 
+0x36ed 004506 ialigned am_addr 
+0x36ee 004507 ialigned nap 
+0x36ef 004508 ialigned regb 
+0x36f0 004509 force 0 ,pdata 
+0x36f1 004510 parse demod ,bucket ,16 
+0x36f2 004511 branch error_payload ,crc_failed 
+0x36f3 004512 setarg 0x0ffffffc 
+0x36f4 004513 iand regb ,pdata 
+0x36f5 004514 store 4 ,mem_clke_bt 
+0x36f6 004515 deposit fhs_class 
+0x36f7 004516 store 3 ,extm_class 
+0x36f8 004517 deposit fhs_misc 
+0x36f9 004518 store 1 ,extm_fhs_misc 
+0x36fa 004519 deposit am_addr 
+0x36fb 004520 store 1 ,extm_newconn_am_addr 
+0x36fc 004521 deposit nap 
+0x36fd 004522 store 2 ,extm_nap 
+0x36fe 004523 deposit bt_clk 
+0x36ff 004524 inject rxf ,32 
+0x3700 004525 compare type_fhs ,type ,0x0f 
+0x3701 004526 setflag true ,mark_fhs_already_good ,mark 
+0x3702 004527 branch end_of_packet 
+:      004529 clear_got_tx:
+0x3703 004530 set0 mark_ext_patch ,mark 
+0x3704 004531 bpatch patch0d_1 ,mem_patch0d 
+0x3705 004532 fetch 1 ,mem_arq 
+0x3706 004533 rtnbit0 wack 
+0x3707 004534 set0 wack ,pdata 
+0x3708 004535 setflip seqnx ,pdata 
+0x3709 004536 store 1 ,mem_arq 
+0x370a 004537 fetch 1 ,mem_last_type 
+0x370b 004538 beq type_lmp ,clear_got_txlmp 
+0x370c 004539 rtneq type_hv3 
+0x370d 004540 fetch 1 ,mem_op 
+0x370e 004541 rtnbit0 op_txl2cap ,pdata 
+0x370f 004542 set0 op_txl2cap ,pdata 
+0x3710 004543 set1 op_pkt_comp ,pdata 
+0x3711 004544 store 1 ,mem_op 
+0x3712 004545 set0 mark_tx_l2cap ,mark 
+0x3713 004546 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x3714 004547 nrtn blank 
+0x3715 004548 fetch 1 ,mem_op 
+0x3716 004549 set0 op_pkt_comp ,pdata 
+0x3717 004550 store 1 ,mem_op 
+0x3718 004551 branch l2cap_malloc_free 
+:      004553 clear_got_txlmp:
+0x3719 004554 set0 mark_ext_patch ,mark 
+0x371a 004555 bpatch patch0d_2 ,mem_patch0d 
+0x371b 004556 fetch 1 ,mem_lmo_header_opcode 
+0x371c 004557 rshift pdata ,pdata 
+0x371d 004558 beq lmp_start_encryption_req ,start_encryption 
+0x371e 004559 beq lmp_stop_encryption_req ,stop_encryption 
+0x371f 004560 beq lmp_unsniff_req ,sniff_exit 
+0x3720 004561 beq lmp_escape ,clear_lmp_escape 
+0x3721 004562 rtnne lmp_accepted 
+0x3722 004563 fetch 1 ,mem_lmo_payload 
+0x3723 004564 beq lmp_sco_link_req ,sco_link_req_by_slave 
+0x3724 004565 beq lmp_start_encryption_req ,clear_send_setup_complete 
+0x3725 004566 rtn 
+:      004568 clear_lmp_escape:
+0x3726 004569 fetch 1 ,mem_lmo_payload 
+0x3727 004570 set1 7 ,pdata 
+0x3728 004571 rtn 
+:      004572 clear_send_setup_complete:
+0x3729 004573 rtn master 
+0x372a 004574 fetch 1 ,mem_state 
+0x372b 004575 rtnbit1 state_conn_comp 
+0x372c 004576 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x372d 004577 rtn 
+:      004580 sco_link_req_by_slave:
+0x372e 004581 rtn master 
+0x372f 004582 fetch 1 ,mem_mode 
+0x3730 004583 isolate1 send_sco_when_slave ,pdata 
+0x3731 004584 branch clean_mem_mode ,true 
+0x3732 004586 rtn 
+:      004587 clean_mem_mode:
+0x3733 004588 set0 send_sco_when_slave ,pdata 
+0x3734 004589 store 1 ,mem_mode 
+0x3735 004590 rtn 
+:      004592 start_encryption:
+0x3736 004593 set0 mark_ext_patch ,mark 
+0x3737 004594 bpatch patch0d_3 ,mem_patch0d 
+0x3738 004595 fetch 1 ,mem_state_map 
+0x3739 004596 set1 smap_encryption ,pdata 
+0x373a 004597 store 1 ,mem_state_map 
+0x373b 004598 hjam 1 ,core_encrypt 
+0x373c 004599 fetch 1 ,mem_state 
+0x373d 004600 isolate1 state_conn_comp ,pdata 
+0x373e 004601 rtn 
+:      004603 stop_encryption:
+0x373f 004604 set0 mark_ext_patch ,mark 
+0x3740 004605 bpatch patch0d_4 ,mem_patch0d 
+0x3741 004606 fetch 1 ,mem_state_map 
+0x3742 004607 set0 smap_encryption ,pdata 
+0x3743 004608 store 1 ,mem_state_map 
+0x3744 004609 hjam 0 ,core_encrypt 
+0x3745 004610 rtn 
+:      004613 sniff_init:
+0x3746 004614 set0 mark_ext_patch ,mark 
+0x3747 004615 bpatch patch0d_5 ,mem_patch0d 
+0x3748 004616 copy clkn_bt ,pdata 
+0x3749 004617 store 4 ,mem_lpm_delay_after_sniff 
+0x374a 004618 add clkn_bt ,3 ,rega 
+0x374b 004619 branch sniff_init_master ,master 
+0x374c 004620 add clke_bt ,3 ,rega 
+:      004621 sniff_init_master:
+0x374d 004622 fetcht 2 ,mem_tsniff 
+0x374e 004623 deposit rega 
+0x374f 004624 set0 27 ,pdata 
+0x3750 004625 idiv temp 
+0x3751 004626 fetch 2 ,mem_dsniff 
+0x3752 004627 call wait_div_end 
+0x3753 004628 remainder regc 
+0x3754 004629 isub regc ,pdata 
+0x3755 004630 branch sniff_init_nowrap ,positive 
+0x3756 004631 iadd temp ,pdata 
+:      004632 sniff_init_nowrap:
+0x3757 004633 iadd rega ,pdata 
+0x3758 004634 store 4 ,mem_sniff_anchor 
+0x3759 004635 jam switch_flag_init ,mem_switch_flag 
+0x375a 004636 fetch 1 ,mem_state 
+0x375b 004637 set1 state_insniff ,pdata 
+0x375c 004638 store 1 ,mem_state 
+0x375d 004639 fetch 1 ,mem_sniff_attempt 
+0x375e 004640 store 1 ,mem_current_sniff_attempt 
+0x375f 004641 setarg 0 
+0x3760 004642 store 3 ,mem_sniff_rcv 
+0x3761 004643 store 3 ,mem_sniff_lost 
+0x3762 004644 store 1 ,mem_sniff_unint_lost 
+0x3763 004645 jam bt_evt_enter_sniff ,mem_fifo_temp 
+0x3764 004646 call ui_ipc_send_event 
+0x3765 004647 fetch 2 ,mem_rx_window_sniff 
+0x3766 004648 store 2 ,mem_rx_window 
+0x3767 004649 nrtn master 
+0x3768 004650 add am_addr ,-1 ,queue 
+0x3769 004651 rtn 
+:      004653 sniff_exit:
+0x376a 004654 set0 mark_ext_patch ,mark 
+0x376b 004655 bpatch patch0d_6 ,mem_patch0d 
+0x376c 004656 fetch 1 ,mem_state 
+0x376d 004657 rtnbit0 state_insniff 
+0x376e 004658 set0 state_insniff ,pdata 
+0x376f 004659 store 1 ,mem_state 
+0x3770 004660 fetch 2 ,mem_rx_window_init 
+0x3771 004661 store 2 ,mem_rx_window 
+0x3772 004662 disable wake 
+0x3773 004663 jam bt_evt_exit_sniff ,mem_fifo_temp 
+0x3774 004664 branch ui_ipc_send_event 
+:      004667 check_attempt:
+0x3775 004668 set0 mark_ext_patch ,mark 
+0x3776 004669 bpatch patch0d_7 ,mem_patch0d 
+0x3777 004670 enable attempt 
+0x3778 004671 fetch 1 ,mem_state 
+0x3779 004672 bbit1 state_insniff ,check_attempt_sniff 
+0x377a 004673 rtnmark1 mark_testmode 
+0x377b 004674 fetch 1 ,mem_arq 
+0x377c 004675 rtnbit1 wack 
+0x377d 004676 fetch 1 ,mem_lmp_to_send 
+0x377e 004677 nrtn blank 
+0x377f 004678 fetch 1 ,mem_op 
+0x3780 004679 rtnbit1 op_txl2cap 
+:      004680 check_attempt_nomore:
+0x3781 004681 force 0 ,pdata 
+0x3782 004682 rtn 
+:      004684 check_attempt_sniff:
+0x3783 004685 bbit0 state_insco ,check_attempt_not_sco 
+0x3784 004686 fetch 1 ,mem_current_sniff_attempt 
+0x3785 004687 beq 2 ,check_attempt_sniff_restore_sco 
+0x3786 004688 fetch 1 ,mem_arq 
+0x3787 004689 bbit1 wack ,check_attempt_notimeout 
+0x3788 004690 bmark0 mark_esco_rxok ,check_attempt_notimeout 
+:      004691 check_attempt_sniff_restore_sco:
+0x3789 004692 nbranch check_attempt_notimeout ,master 
+0x378a 004693 fetch 1 ,mem_lmp_to_send 
+0x378b 004694 nbranch check_attempt_notimeout ,blank 
+:      004695 check_attempt_sco_master:
+0x378c 004696 fetch 1 ,mem_sco_poll 
+0x378d 004697 increase -1 ,pdata 
+0x378e 004698 store 1 ,mem_sco_poll 
+0x378f 004699 nbranch check_attempt_nomore ,blank 
+0x3790 004700 jam param_sco_poll ,mem_sco_poll 
+0x3791 004701 branch check_attempt_notimeout 
+:      004703 check_attempt_not_sco:
+0x3792 004704 fetch 1 ,mem_current_sniff_attempt 
+0x3793 004705 bne 1 ,check_attempt_notimeout 
+0x3794 004706 fetch 1 ,mem_current_sniff_timeout 
+0x3795 004707 branch check_attempt_notimeout ,blank 
+0x3796 004708 increase -1 ,pdata 
+0x3797 004709 store 1 ,mem_current_sniff_timeout 
+0x3798 004710 fetch 1 ,mem_arq 
+0x3799 004711 rtnbit1 wack 
+0x379a 004712 nrtn match 
+:      004713 check_attempt_notimeout:
+0x379b 004714 fetch 1 ,mem_current_sniff_attempt 
+0x379c 004715 increase -1 ,pdata 
+0x379d 004716 store 1 ,mem_current_sniff_attempt 
+0x379e 004717 rtn 
+:      004720 sniff_check_window:
+0x379f 004721 set0 mark_ext_patch ,mark 
+0x37a0 004722 bpatch patch0e_0 ,mem_patch0e 
+0x37a1 004723 disable swfine 
+0x37a2 004724 copy temp ,stop_watch 
+0x37a3 004725 call context_search_sniff_window 
+0x37a4 004726 disable user 
+0x37a5 004727 nrtn zero 
+0x37a6 004728 force 0 ,stop_watch 
+0x37a7 004729 enable user 
+0x37a8 004730 rtn 
+:      004733 check_esco_amaddr:
+0x37a9 004734 fetch 1 ,mem_esco_addr 
+0x37aa 004735 icompare 0xff ,am_addr 
+0x37ab 004736 rtn 
+:      004739 parse_l2cap:
+0x37ac 004740 set0 mark_ext_patch ,mark 
+0x37ad 004741 bpatch patch0e_1 ,mem_patch0e 
+0x37ae 004742 set0 mark_rxbuf_inuse ,mark 
+:      004743 parse_l2cap_cont:
+0x37af 004744 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+0x37b0 004745 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37b1 004746 rtn blank 
+0x37b2 004747 isolate1 l2cap_inuse_buff1 ,pdata 
+0x37b3 004748 arg mem_l2cap_rxbuff1 ,contr 
+0x37b4 004749 call process_rx_l2cap_pkt ,true 
+0x37b5 004750 set0 mark_ext_patch ,mark 
+0x37b6 004751 bpatch patch0e_2 ,mem_patch0e 
+0x37b7 004752 fetch 1 ,mem_l2cap_rx_done 
+0x37b8 004753 beq l2cap_rx_done ,parse_l2cap_release_buff1 
+0x37b9 004755 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+0x37ba 004756 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37bb 004757 rtnbit0 l2cap_inuse_buff2 
+0x37bc 004758 arg mem_l2cap_rxbuff2 ,contr 
+0x37bd 004759 call process_rx_l2cap_pkt 
+0x37be 004760 fetch 1 ,mem_l2cap_rx_done 
+0x37bf 004761 beq l2cap_rx_done ,parse_l2cap_release_buff2 
+0x37c0 004762 rtn 
+:      004764 parse_l2cap_release_buff1:
+0x37c1 004765 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37c2 004766 set0 l2cap_inuse_buff1 ,pdata 
+0x37c3 004767 store 1 ,mem_l2cap_rxbuff_inuse 
+0x37c4 004768 setarg 0 
+0x37c5 004769 store 2 ,mem_l2cap_rxbuff1_len 
+0x37c6 004770 rtn 
+:      004771 parse_l2cap_release_buff2:
+0x37c7 004772 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37c8 004773 set0 l2cap_inuse_buff2 ,pdata 
+0x37c9 004774 store 1 ,mem_l2cap_rxbuff_inuse 
+0x37ca 004775 setarg 0 
+0x37cb 004776 store 2 ,mem_l2cap_rxbuff2_len 
+0x37cc 004777 rtn 
+:      004779 l2cap_buff1_inuse:
+0x37cd 004780 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37ce 004781 set1 l2cap_inuse_buff1 ,pdata 
+0x37cf 004782 store 1 ,mem_l2cap_rxbuff_inuse 
+0x37d0 004783 rtn 
+:      004785 l2cap_buff2_inuse:
+0x37d1 004786 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37d2 004787 set1 l2cap_inuse_buff2 ,pdata 
+0x37d3 004788 store 1 ,mem_l2cap_rxbuff_inuse 
+0x37d4 004789 rtn 
+:      004795 slave_send_access:
+0x37d5 004796 set0 mark_ext_patch ,mark 
+0x37d6 004797 bpatch patch0e_3 ,mem_patch0e 
+0x37d7 004798 add clke_bt ,1 ,bt_clk 
+0x37d8 004799 call fetch_extm_bt_adr 
+0x37d9 004800 force 0x03 ,freq_mode 
+0x37da 004801 call tx_radio_freq 
+0x37db 004802 call start_transmitter 
+0x37dc 004803 call start_tx_external 
+0x37dd 004804 branch send_access_word 
+:      004807 slave_conn_send_packet:
+0x37de 004808 set0 mark_ext_patch ,mark 
+0x37df 004809 bpatch patch0e_4 ,mem_patch0e 
+0x37e0 004810 call rf_setup_time_slave_slot 
+0x37e1 004811 deposit clke_bt 
+0x37e2 004812 fetcht 4 ,mem_next_btclk 
+0x37e3 004813 isub temp ,pdata 
+0x37e4 004814 rtnne 1 
+0x37e5 004815 compare type_null ,type ,0x1f 
+0x37e6 004816 nbranch slave_conn_send_access ,true 
+0x37e7 004817 fetch 1 ,mem_rx_type 
+0x37e8 004818 rtn blank 
+:      004819 slave_conn_send_access:
+0x37e9 004820 call slave_send_access 
+0x37ea 004821 compare type_id ,type ,0x1f 
+0x37eb 004822 branch end_of_packet ,true 
+:      004823 transmit_packet:
+0x37ec 004824 rshift bt_clk ,temp 
+0x37ed 004825 or temp ,0x40 ,white_init 
+:      004826 transmit_packet_whitened:
+0x37ee 004827 set0 mark_ext_patch ,mark 
+0x37ef 004828 bpatch patch0e_5 ,mem_patch0e 
+0x37f0 004829 enable enable_white 
+0x37f1 004830 enable enable_hec 
+0x37f2 004831 enable encode_fec1 
+0x37f3 004832 set0 mark_longpacket ,mark 
+0x37f4 004833 deposit am_addr 
+0x37f5 004834 inject mod ,3 
+0x37f6 004835 deposit type 
+0x37f7 004836 inject mod ,4 
+0x37f8 004837 fetch 1 ,mem_arq 
+0x37f9 004838 inject bucket ,4 
+0x37fa 004839 inject mod ,3 
+0x37fb 004840 enable enable_parity 
+0x37fc 004841 inject mod ,8 
+0x37fd 004842 disable encode_fec1 
+0x37fe 004843 disable enable_parity 
+0x37ff 004844 disable enable_hec 
+0x3800 004845 set0 psk3m ,radio_ctrl 
+0x3801 004846 arg 0 ,temp 
+0x3802 004847 call reserve_slot 
+0x3803 004848 set0 mark_ext_patch ,mark 
+0x3804 004849 bpatch patch0e_6 ,mem_patch0e 
+0x3805 004850 and type ,0x1f ,pdata 
+0x3806 004851 beq type_lmp ,transmit_lmp 
+0x3807 004852 beq type_null ,end_of_packet 
+0x3808 004853 beq type_poll ,end_of_packet 
+0x3809 004854 beq type_fhs ,transmit_fhs 
+0x380a 004855 beq type_dm1 ,transmit_dm1 
+0x380b 004856 beq type_dh1 ,transmit_dh1 
+0x380c 004857 beq type_hv3 ,transmit_hev 
+0x380d 004858 beq type_3dh1 ,transmit_3dh1 
+0x380e 004859 arg 4 ,temp 
+0x380f 004860 call reserve_slot 
+0x3810 004861 beq type_dm3 ,transmit_dm3 
+0x3811 004862 beq type_dh3 ,transmit_dh3 
+0x3812 004863 arg 8 ,temp 
+0x3813 004864 call reserve_slot 
+0x3814 004865 beq type_dh5 ,transmit_dh5 
+0x3815 004866 branch transmit_dm5 
+:      004869 transmit_hev:
+0x3816 004870 set0 mark_ext_patch ,mark 
+0x3817 004871 bpatch patch0e_7 ,mem_patch0e 
+0x3818 004872 enable encode_fec0 
+0x3819 004873 enable enable_crc 
+0x381a 004874 enable encrypt 
+0x381b 004875 force 30 ,loopcnt 
+0x381c 004876 arg mem_sco_obuf ,contr 
+:      004877 transmit_ev_loop:
+0x381d 004878 ifetch 1 ,contr 
+0x381e 004879 inject mod ,8 
+0x381f 004880 loop transmit_ev_loop 
+0x3820 004881 bmark1 mark_esco ,transmit_end 
+0x3821 004882 branch end_of_packet 
+:      004884 transmit_fhs:
+0x3822 004885 set0 mark_ext_patch ,mark 
+0x3823 004886 bpatch patch0f_0 ,mem_patch0f 
+0x3824 004887 fetch 1 ,mem_fhs_am_addr 
+0x3825 004888 icopy am_addr 
+0x3826 004889 fetch 1 ,mem_fhs_misc 
+0x3827 004890 icopy fhs_misc 
+0x3828 004891 fetch 3 ,mem_class 
+0x3829 004892 icopy fhs_class 
+0x382a 004893 fetch 2 ,mem_nap 
+0x382b 004894 icopy nap 
+0x382c 004895 enable enable_crc 
+0x382d 004896 enable encode_fec2 
+0x382e 004897 copy bt_adr ,rega 
+0x382f 004898 call fetch_self_bt_adr 
+0x3830 004899 pulse recalc 
+0x3831 004900 nop 32 
+0x3832 004901 copy bt_clk ,timeup 
+0x3833 004902 fetch 4 ,mem_clkn_bt 
+0x3834 004903 icopy bt_clk 
+0x3835 004904 preload fhs0 
+0x3836 004905 set1 58 ,pdata 
+0x3837 004906 inject mod ,72 
+0x3838 004907 preload fhs1 
+0x3839 004908 inject mod ,72 
+0x383a 004909 copy timeup ,bt_clk 
+0x383b 004910 copy rega ,bt_adr 
+0x383c 004911 enable enable_parity 
+0x383d 004912 inject mod ,16 
+0x383e 004913 disable enable_parity 
+0x383f 004914 branch end_of_packet 
+:      004916 transmit_lmp:
+0x3840 004917 set0 mark_ext_patch ,mark 
+0x3841 004918 bpatch patch0f_1 ,mem_patch0f 
+0x3842 004919 enable encrypt 
+0x3843 004920 enable enable_crc 
+0x3844 004921 enable encode_fec2 
+0x3845 004922 fetch 1 ,mem_lmo_header_length 
+0x3846 004923 and pdata ,0x1f8 ,temp 
+0x3847 004924 arg mem_lmo_header_length ,contr 
+0x3848 004925 increase 8 ,temp 
+:      004926 transmit_lmp_loop:
+0x3849 004927 add temp ,-72 ,regc 
+0x384a 004928 nbranch transmit_lmp_finish ,positive 
+0x384b 004929 ifetch 9 ,contr 
+0x384c 004930 inject mod ,72 
+0x384d 004931 copy regc ,temp 
+0x384e 004932 branch transmit_lmp_loop 
+:      004933 transmit_lmp_finish:
+0x384f 004934 ifetch 9 ,contr 
+0x3850 004935 iinject mod ,temp 
+0x3851 004936 branch transmit_end 
+:      004938 transmit_dm1:
+0x3852 004939 enable encode_fec2 
+0x3853 004940 branch transmit_dmh 
+:      004941 transmit_dm3:
+:      004942 transmit_dm5:
+0x3854 004943 enable encode_fec2 
+0x3855 004944 set1 mark_longpacket ,mark 
+0x3856 004945 branch transmit_dmh 
+:      004947 transmit_3dh1:
+0x3857 004948 set1 psk3m ,radio_ctrl 
+:      004949 transmit_dh1:
+0x3858 004950 enable encode_fec0 
+0x3859 004951 branch transmit_dmh 
+:      004953 transmit_dh3:
+:      004954 transmit_dh5:
+0x385a 004955 set1 psk3m ,radio_ctrl 
+0x385b 004956 enable encode_fec0 
+0x385c 004957 set1 mark_longpacket ,mark 
+:      004959 transmit_dmh:
+0x385d 004960 set0 mark_ext_patch ,mark 
+0x385e 004961 bpatch patch0f_2 ,mem_patch0f 
+0x385f 004962 fetch 1 ,mem_state_map 
+0x3860 004963 bbit0 smap_edr ,transmit_noedr 
+0x3861 004964 sub type ,3 ,null 
+0x3862 004965 branch transmit_noedr ,positive 
+0x3863 004966 disable encrypt 
+0x3864 004967 disable encode_fec2 
+0x3865 004968 enable encode_fec0 
+0x3866 004969 disable enable_white 
+0x3867 004970 set1 psk ,radio_ctrl 
+0x3868 004971 isolate1 psk3m ,radio_ctrl 
+0x3869 004972 branch transmit_edr3m ,true 
+0x386a 004973 setarg 0xabeee 
+0x386b 004974 inject mod ,20 
+0x386c 004975 branch transmit_edr_sync_end 
+:      004976 transmit_edr3m:
+0x386d 004977 setarg 0x5faeba 
+0x386e 004978 inject mod ,24 
+0x386f 004979 setarg 0x12 
+0x3870 004980 inject mod ,6 
+:      004981 transmit_edr_sync_end:
+0x3871 004982 enable enable_white 
+0x3872 004983 set1 mark_longpacket ,mark 
+:      004984 transmit_noedr:
+0x3873 004985 enable encrypt 
+0x3874 004986 enable enable_crc 
+0x3875 004987 bmark1 mark_loopback ,transmit_loopback 
+0x3876 004988 fetch 1 ,mem_tx_lch 
+0x3877 004989 inject mod ,3 
+0x3878 004990 fetch 2 ,mem_tx_len 
+0x3879 004991 iforce loopcnt 
+0x387a 004992 bmark1 mark_longpacket ,transmit_long 
+0x387b 004993 inject mod ,5 
+0x387c 004994 branch transmit_stuff 
+:      004995 transmit_long:
+0x387d 004996 inject mod ,13 
+:      004997 transmit_stuff:
+0x387e 004998 deposit loopcnt 
+0x387f 004999 branch transmit_end ,blank 
+0x3880 005000 fetch 2 ,mem_txptr 
+0x3881 005001 iforce contr 
+:      005002 transmit_stuff_loop:
+0x3882 005003 ifetch 1 ,contr 
+0x3883 005004 inject mod ,8 
+0x3884 005005 loop transmit_stuff_loop 
+:      005008 transmit_end:
+0x3885 005009 enable enable_parity 
+0x3886 005010 inject mod ,16 
+0x3887 005011 disable enable_parity 
+0x3888 005012 call set_wait_ack 
+0x3889 005013 fetch 1 ,mem_state_map 
+0x388a 005014 bbit0 smap_edr ,end_of_packet 
+0x388b 005015 force 0 ,pdata 
+0x388c 005016 inject mod ,6 
+0x388d 005017 branch end_of_packet 
+:      005020 transmit_loopback:
+0x388e 005021 set0 mark_ext_patch ,mark 
+0x388f 005022 bpatch patch0f_3 ,mem_patch0f 
+0x3890 005023 bmark1 mark_longpacket ,transmit_loopback_long 
+:      005024 transmit_loopback_short:
+0x3891 005025 fetch 1 ,mem_lch_code 
+0x3892 005026 inject mod ,3 
+0x3893 005027 fetch 1 ,mem_len 
+0x3894 005028 iforce regc 
+0x3895 005029 inject mod ,5 
+0x3896 005030 branch transmit_loopback_cont 
+:      005031 transmit_loopback_long:
+0x3897 005032 fetch 1 ,mem_lch_code 
+0x3898 005033 inject mod ,3 
+0x3899 005034 fetch 2 ,mem_len 
+0x389a 005035 iforce regc 
+0x389b 005036 inject mod ,13 
+:      005037 transmit_loopback_cont:
+0x389c 005038 arg mem_rxbuf ,contr 
+:      005039 transmit_loopback_loop:
+0x389d 005040 copy regc ,null 
+0x389e 005041 branch transmit_loopback_end ,zero 
+0x389f 005042 ifetch 1 ,contr 
+0x38a0 005043 inject mod ,8 
+0x38a1 005044 increase -1 ,regc 
+0x38a2 005045 branch transmit_loopback_loop 
+:      005046 transmit_loopback_end:
+0x38a3 005047 fetch 2 ,mem_tst_pktcnt_dmh 
+0x38a4 005048 increase 1 ,pdata 
+0x38a5 005049 store 2 ,mem_tst_pktcnt_dmh 
+0x38a6 005050 branch transmit_end 
+:      005053 apply_switch_clke:
+0x38a7 005054 fetch 4 ,mem_clke_bt 
+0x38a8 005055 add pdata ,7 ,rega 
+0x38a9 005056 fetch 2 ,mem_slot_offset 
+0x38aa 005057 nbranch apply_switch_nozero ,blank 
+0x38ab 005058 increase -3 ,rega 
+0x38ac 005059 branch apply_switch_wait_loop 
+:      005060 apply_switch_nozero:
+0x38ad 005061 mul32 pdata ,12 ,pdata 
+0x38ae 005062 hfetcht 2 ,core_halfslot 
+0x38af 005063 increase 1 ,temp 
+:      005064 apply_switch_loop:
+0x38b0 005065 isub temp ,pdata 
+0x38b1 005066 nbranch apply_switch_bt ,positive 
+0x38b2 005067 increase -1 ,rega 
+0x38b3 005068 branch apply_switch_loop 
+:      005069 apply_switch_bt:
+0x38b4 005070 sub pdata ,0 ,pdata 
+:      005071 apply_switch_wait_loop:
+0x38b5 005072 until null ,oneslot 
+0x38b6 005073 compare 0 ,clkn_bt ,3 
+0x38b7 005074 nbranch apply_switch_wait_loop ,true 
+0x38b8 005075 iforce clke_rt 
+0x38b9 005076 copy rega ,clke_bt 
+0x38ba 005077 iforce clke_rt 
+0x38bb 005078 rtn 
+:      005081 calc_slot_offset:
+0x38bc 005082 set0 mark_ext_patch ,mark 
+0x38bd 005083 bpatch patch0f_4 ,mem_patch0f 
+0x38be 005084 until null ,halfslot 
+0x38bf 005085 deposit clke 
+0x38c0 005086 iforce contr 
+0x38c1 005087 rshift16 ,pdata ,pdata 
+0x38c2 005088 isub clkn_bt ,loopcnt 
+0x38c3 005089 and_into 3 ,loopcnt 
+0x38c4 005090 nbranch calc_bt_portion ,zero 
+0x38c5 005091 force 0 ,pdata 
+0x38c6 005092 branch calc_skip_bt 
+:      005093 calc_bt_portion:
+0x38c7 005094 arg 3750 ,temp 
+0x38c8 005095 force 0 ,pdata 
+:      005096 calc_slot_offset_loop:
+0x38c9 005097 iadd temp ,pdata 
+0x38ca 005098 loop calc_slot_offset_loop 
+:      005099 calc_skip_bt:
+0x38cb 005100 iadd contr ,pdata 
+0x38cc 005101 div pdata ,12 
+0x38cd 005102 call wait_div_end 
+0x38ce 005103 quotient pdata 
+0x38cf 005104 store 2 ,mem_slot_offset 
+0x38d0 005105 rtn 
+:      005107 calc_clke_offset:
+0x38d1 005108 set0 mark_ext_patch ,mark 
+0x38d2 005109 bpatch patch0f_5 ,mem_patch0f 
+0x38d3 005110 deposit clke 
+0x38d4 005111 copy clkn ,temp 
+0x38d5 005112 isub temp ,null 
+0x38d6 005113 nsetflag positive ,44 ,pdata 
+0x38d7 005114 isub temp ,temp 
+0x38d8 005115 setarg 3750 
+0x38d9 005116 isolate0 15 ,temp 
+0x38da 005117 branch calc_clke_pos ,true 
+0x38db 005118 setarg -61786 
+0x38dc 005119 iadd temp ,temp 
+:      005120 calc_clke_pos:
+0x38dd 005121 storet 6 ,mem_le_clk_offset 
+0x38de 005122 rtn le 
+0x38df 005123 storet 6 ,mem_clk_offset 
+0x38e0 005124 rtn 
+:      005126 calc_clke:
+0x38e1 005127 disable clknt 
+0x38e2 005128 fetch 6 ,mem_le_clk_offset 
+0x38e3 005129 branch calc_clke2 ,le 
+0x38e4 005130 fetch 6 ,mem_clk_offset 
+:      005131 calc_clke2:
+0x38e5 005132 iadd clkn ,alarm 
+0x38e6 005133 increase 10 ,alarm 
+0x38e7 005134 setarg 3750 
+0x38e8 005135 isub alarm ,pdata 
+0x38e9 005136 isolate0 15 ,pdata 
+0x38ea 005137 branch calc_clke_pos_adj ,true 
+0x38eb 005138 setarg 0xf15a 
+0x38ec 005139 iadd alarm ,alarm 
+:      005140 calc_clke_pos2:
+0x38ed 005141 copy alarm ,clke 
+0x38ee 005142 rtn 
+:      005143 calc_clke_pos_adj:
+0x38ef 005144 force 0 ,null 
+0x38f0 005145 branch calc_clke_pos2 
+:      005152 calc_radio_freq:
+0x38f1 005153 set0 mark_ext_patch ,mark 
+0x38f2 005154 bpatch patch0f_6 ,mem_patch0f 
+0x38f3 005155 call set_sync_on 
+0x38f4 005156 copy bt_clk ,pdata 
+0x38f5 005157 and_into 0x180 ,pdata 
+0x38f6 005158 compare 3 ,freq_mode ,0x07 
+0x38f7 005159 nbranch freq_not_connection ,true 
+0x38f8 005160 rshift3 pdata ,pdata 
+0x38f9 005161 iadd freq_index ,pdata 
+0x38fa 005162 branch do_hop_mod_now 
+:      005163 freq_not_connection:
+0x38fb 005164 copy freq_index ,pdata 
+:      005165 do_hop_mod_now:
+0x38fc 005166 div pdata ,79 
+0x38fd 005167 pulse recalc 
+0x38fe 005168 call wait_div_end 
+0x38ff 005169 remainder rega 
+0x3900 005170 add rega ,-40 ,temp 
+0x3901 005171 branch odd_half ,positive 
+0x3902 005172 lshift rega ,temp 
+0x3903 005173 branch freq_result 
+:      005174 odd_half:
+0x3904 005175 lshift temp ,temp 
+0x3905 005176 increase 1 ,temp 
+:      005177 freq_result:
+0x3906 005178 set0 mark_ext_patch ,mark 
+0x3907 005179 bpatch patch0f_7 ,mem_patch0f 
+0x3908 005180 fetch 1 ,mem_mode 
+0x3909 005181 bbit0 afh_change ,afh_process_con 
+:      005182 afh_process_0:
+0x390a 005183 fetch 4 ,mem_afh_instant 
+0x390b 005184 isub bt_clk ,null 
+0x390c 005185 branch afh_process_con ,positive 
+0x390d 005186 call afh_clear 
+0x390e 005187 fetch 1 ,mem_afh_new_mod 
+0x390f 005188 rtn blank 
+0x3910 005189 fetch 1 ,mem_mode 
+0x3911 005190 set1 afh_enable ,pdata 
+0x3912 005191 store 1 ,mem_mode 
+0x3913 005192 fetch 5 ,mem_afh_map_new 
+0x3914 005193 store 5 ,mem_afh_map_lo 
+0x3915 005194 ifetch 5 ,contr 
+0x3916 005195 store 5 ,mem_afh_map_hi 
+0x3917 005196 call afh_process_freq_map 
+:      005197 afh_process_con:
+0x3918 005198 fetch 1 ,mem_mode 
+0x3919 005199 rtnbit0 afh_enable 
+0x391a 005200 isolate1 1 ,bt_clk 
+0x391b 005201 branch afh_same_channel ,true 
+0x391c 005202 rshift3 temp ,rega 
+0x391d 005203 and temp ,7 ,queue 
+0x391e 005204 setarg mem_afh_map_lo 
+0x391f 005205 iadd rega ,rega 
+0x3920 005206 ifetch 1 ,rega 
+0x3921 005207 qisolate0 pdata 
+0x3922 005208 branch afh_process_1 ,true 
+0x3923 005209 deposit temp 
+0x3924 005210 branch afh_process_end 
+:      005211 afh_process_1:
+0x3925 005212 fetch 1 ,mem_afh_used 
+0x3926 005213 iforce regb 
+0x3927 005214 deposit bt_clk 
+0x3928 005215 and_into 0x180 ,pdata 
+0x3929 005216 rshift3 pdata ,pdata 
+0x392a 005217 iadd freq_index ,pdata 
+0x392b 005218 idiv regb 
+0x392c 005219 setarg mem_afh_map 
+0x392d 005220 call wait_div_end 
+0x392e 005221 remainder rega 
+0x392f 005222 iadd rega ,contr 
+0x3930 005223 ifetch 1 ,contr 
+:      005224 afh_process_end:
+0x3931 005225 store 1 ,mem_afh_index 
+0x3932 005226 iforce temp 
+0x3933 005227 rtn 
+:      005229 afh_same_channel:
+0x3934 005230 fetch 1 ,mem_afh_index 
+0x3935 005231 iforce temp 
+0x3936 005232 rtn 
+:      005234 afh_clear:
+0x3937 005235 fetch 1 ,mem_mode 
+0x3938 005236 set0 afh_enable ,pdata 
+0x3939 005237 set0 afh_change ,pdata 
+0x393a 005238 store 1 ,mem_mode 
+0x393b 005239 rtn 
+:      005245 afh_process_freq_map:
+0x393c 005246 set0 mark_ext_patch ,mark 
+0x393d 005247 bpatch patch10_0 ,mem_patch10 
+0x393e 005248 arg mem_afh_map ,contw 
+0x393f 005249 force 10 ,loopcnt 
+0x3940 005250 call memset0 
+0x3941 005251 arg mem_afh_map ,contw 
+0x3942 005252 force 0 ,regc 
+0x3943 005253 force 2 ,queue 
+:      005254 process_freq_3:
+0x3944 005255 fetch 5 ,mem_afh_map_lo 
+0x3945 005256 iforce temp 
+0x3946 005257 compare 2 ,queue ,0xff 
+0x3947 005258 branch process_freq_1 ,true 
+0x3948 005259 rshift temp ,temp 
+:      005260 process_freq_1:
+0x3949 005261 isolate0 0 ,temp 
+0x394a 005262 branch process_freq_0 ,true 
+0x394b 005263 deposit regc 
+0x394c 005264 istore 1 ,contw 
+:      005265 process_freq_0:
+0x394d 005266 rshift2 temp ,temp 
+0x394e 005267 increase 2 ,regc 
+0x394f 005268 compare 40 ,regc ,0xfe 
+0x3950 005269 nbranch process_freq_2 ,true 
+0x3951 005270 fetch 5 ,mem_afh_map_hi 
+0x3952 005271 iforce temp 
+0x3953 005272 compare 2 ,queue ,0xff 
+0x3954 005273 branch process_freq_2 ,true 
+0x3955 005274 rshift temp ,temp 
+:      005275 process_freq_2:
+0x3956 005276 sub regc ,78 ,null 
+0x3957 005277 branch process_freq_1 ,positive 
+0x3958 005278 force 1 ,regc 
+0x3959 005279 increase -1 ,queue 
+0x395a 005280 nbranch process_freq_3 ,zero 
+0x395b 005281 arg mem_afh_map ,rega 
+0x395c 005282 deposit contw 
+0x395d 005283 isub rega ,pdata 
+0x395e 005284 store 1 ,mem_afh_used 
+0x395f 005285 rtn 
+:      005287 rx_radio_freq:
+0x3960 005288 set0 mark_ext_patch ,mark 
+0x3961 005289 bpatch patch10_1 ,mem_patch10 
+0x3962 005290 call calc_radio_freq 
+0x3963 005291 fetch 1 ,mem_debug_config 
+0x3964 005292 bbit0 debug_rx_fixed_freq ,rx_radio_freq_now 
+0x3965 005293 fetcht 1 ,mem_rx_fixed_freq 
+:      005294 rx_radio_freq_now:
+0x3966 005295 branch set_freq_rx 
+:      005298 tx_radio_freq:
+0x3967 005299 set0 mark_ext_patch ,mark 
+0x3968 005300 bpatch patch10_2 ,mem_patch10 
+0x3969 005301 call calc_radio_freq 
+0x396a 005302 fetch 1 ,mem_debug_config 
+0x396b 005303 bbit0 debug_tx_fixed_freq ,tx_radio_freq_now 
+0x396c 005304 fetcht 1 ,mem_tx_fixed_freq 
+:      005305 tx_radio_freq_now:
+0x396d 005306 branch set_freq_tx 
+:      005309 fetch_giac:
+0x396e 005310 force 0 ,uap 
+0x396f 005311 fetch 3 ,mem_glap 
+0x3970 005312 iforce lap 
+0x3971 005313 rtn 
+:      005315 fetch_page_bt_adr:
+0x3972 005316 set0 mark_ext_patch ,mark 
+0x3973 005317 bpatch patch10_3 ,mem_patch10 
+0x3974 005318 fetch 1 ,mem_hci_puap 
+0x3975 005319 icopy uap 
+0x3976 005320 fetch 3 ,mem_hci_plap 
+0x3977 005321 icopy lap 
+0x3978 005322 rtn 
+:      005324 fetch_self_bt_adr:
+0x3979 005325 set0 mark_ext_patch ,mark 
+0x397a 005326 bpatch patch10_4 ,mem_patch10 
+0x397b 005327 fetch 2 ,mem_nap 
+0x397c 005328 icopy nap 
+0x397d 005329 fetch 1 ,mem_uap 
+0x397e 005330 icopy uap 
+0x397f 005331 fetch 3 ,mem_lap 
+0x3980 005332 icopy lap 
+0x3981 005333 rtn 
+:      005335 fetch_extm_bt_adr:
+0x3982 005336 set0 mark_ext_patch ,mark 
+0x3983 005337 bpatch patch10_5 ,mem_patch10 
+0x3984 005338 fetch 2 ,mem_pnap 
+0x3985 005339 icopy nap 
+0x3986 005340 fetch 1 ,mem_puap 
+0x3987 005341 icopy uap 
+0x3988 005342 fetch 3 ,mem_plap 
+0x3989 005343 icopy lap 
+0x398a 005344 rtn 
+:      005347 fetch_diac:
+0x398b 005348 bmark1 mark_all_diac ,fetch_diac_do 
+0x398c 005349 rtnmark0 mark_inquiry_state 
+0x398d 005350 rtnmark0 mark_periodical_diac 
+:      005351 fetch_diac_do:
+0x398e 005352 and_into -256 ,lap 
+0x398f 005353 pulse recalc 
+0x3990 005354 nop 32 
+0x3991 005355 rtn 
+:      005358 shutdown_radio:
+0x3992 005359 set0 mark_ext_patch ,mark 
+0x3993 005360 bpatch patch10_6 ,mem_patch10 
+0x3994 005361 branch shutdown_radio0 ,is_rx 
+0x3995 005362 hjam 0xd4 ,0x955 
+0x3996 005363 nop 4 
+0x3997 005364 hjam 0xd2 ,0x955 
+0x3998 005365 nop 4 
+0x3999 005366 hjam 0xd1 ,0x955 
+0x399a 005367 nop 4 
+0x399b 005368 fetch 1 ,mem_tx_power 
+:      005369 shutdown_radio_select:
+0x399c 005370 bbit1 tx_power_0db ,shutdown_radio_0db 
+0x399d 005371 bbit1 tx_power_3db ,shutdown_radio_3db 
+0x399e 005372 bbit1 tx_power_5db ,shutdown_radio_5db 
+0x399f 005373 bbit1 tx_power_f3db ,shutdown_radio_f3db 
+0x39a0 005374 bbit1 tx_power_f5db ,shutdown_radio_f5db 
+:      005375 shutdown_radio_5db:
+:      005376 shutdown_radio_0db:
+0x39a1 005377 hjam 0xd0 ,0x955 
+0x39a2 005378 hjam 0xe0 ,0x956 
+:      005379 shutdown_radio0:
+0x39a3 005380 force 0 ,radio_ctrl 
+0x39a4 005381 disable is_rx 
+0x39a5 005382 disable is_tx 
+0x39a6 005383 pulse packet_end 
+0x39a7 005384 hjam 0x0 ,rfen_mdm 
+0x39a8 005385 hjam 0x0 ,rfen_tx 
+0x39a9 005386 hjam 0x0 ,rfen_rx 
+0x39aa 005387 hjam 0 ,rfen_sn 
+0x39ab 005388 hjam 0x70 ,rfen_msc 
+0x39ac 005389 hjam 0x0 ,rfen_adc 
+0x39ad 005390 rtn 
+:      005392 shutdown_radio_pair:
+:      005393 shutdown_radio_f5db:
+:      005394 shutdown_radio_f3db:
+:      005395 shutdown_radio_3db:
+0x39ae 005396 hjam 0xd0 ,0x955 
+0x39af 005397 hjam 0xc0 ,0x956 
+0x39b0 005398 branch shutdown_radio0 
+:      005400 set_sync_on:
+0x39b1 005401 set0 mark_ext_patch ,mark 
+0x39b2 005402 bpatch patch10_7 ,mem_patch10 
+0x39b3 005403 hjam 0x0 ,rfen_mdm 
+0x39b4 005404 hjam 0x0 ,rfen_tx 
+0x39b5 005405 hjam 0x18 ,rfen_rx 
+0x39b6 005406 hjam 0xa7 ,rfen_sn 
+0x39b7 005407 hjam 0x7f ,rfen_msc 
+0x39b8 005408 rtn 
+:      005410 set_freq_rx:
+0x39b9 005411 set0 mark_ext_patch ,mark 
+0x39ba 005412 bpatch patch11_0 ,mem_patch11 
+0x39bb 005414 storet 1 ,mem_last_freq 
+0x39bc 005415 add temp ,rx_freq_offset ,rega 
+0x39bd 005416 hjam 0x07 ,0x96d 
+0x39be 005417 branch rf_write_freq 
+:      005418 rf_rx_enable:
+0x39bf 005419 set0 mark_ext_patch ,mark 
+0x39c0 005420 bpatch patch11_1 ,mem_patch11 
+0x39c1 005421 hjam 0xcf ,rfen_tx 
+0x39c2 005422 nop 10 
+0x39c3 005423 hjam 0xff ,rfen_rx 
+0x39c4 005424 hjam 0xaf ,rfen_sn 
+0x39c5 005425 hjam 0xff ,rfen_msc 
+0x39c6 005426 nop 10 
+0x39c7 005427 hjam 0xa0 ,rfen_mdm 
+0x39c8 005428 rtn 
+:      005431 set_freq_tx:
+0x39c9 005432 set0 mark_ext_patch ,mark 
+0x39ca 005433 bpatch patch11_2 ,mem_patch11 
+0x39cb 005434 storet 1 ,mem_last_freq 
+0x39cc 005435 add temp ,0 ,rega 
+0x39cd 005436 call rf_write_freq 
+0x39ce 005437 setarg param_pll_setup 
+0x39cf 005438 call sleep 
+:      005439 txon:
+0x39d0 005440 hjam 0x1 ,rfen_adc 
+0x39d1 005441 hjam 0x3c ,rfen_rx 
+0x39d2 005442 hjam 0xe0 ,rfen_tx 
+0x39d3 005443 hjam 0x12 ,0x96d 
+0x39d4 005444 nop 10 
+0x39d5 005445 hjam 0x01 ,rfen_mdm 
+0x39d6 005446 hjam 0x3d ,rfen_mdm 
+0x39d7 005447 nop 10 
+0x39d8 005448 hjam 0xb7 ,rfen_sn 
+0x39d9 005449 nop 10 
+0x39da 005450 hjam 0x7f ,rfen_mdm 
+0x39db 005451 fetch 1 ,mem_tx_power 
+:      005452 txon_power_select:
+0x39dc 005453 bbit1 tx_power_0db ,set_tx_power_0db 
+0x39dd 005454 bbit1 tx_power_3db ,set_tx_power_3db 
+0x39de 005455 bbit1 tx_power_5db ,set_tx_power_5db 
+0x39df 005456 bbit1 tx_power_f3db ,set_tx_power_f3db 
+0x39e0 005457 bbit1 tx_power_f5db ,set_tx_power_f5db 
+:      005458 set_tx_power_0db:
+0x39e1 005459 hjam 0xf0 ,0x956 
+0x39e2 005460 call txon_common 
+0x39e3 005461 hjam 0xd8 ,0x955 
+0x39e4 005462 rtn 
+:      005464 set_tx_power_3db:
+0x39e5 005465 hjam 0xdf ,0x956 
+0x39e6 005466 call txon_common 
+0x39e7 005467 hjam 0xdf ,0x955 
+0x39e8 005468 rtn 
+:      005470 set_tx_power_5db:
+0x39e9 005471 hjam 0xff ,0x956 
+0x39ea 005472 call txon_common 
+0x39eb 005473 hjam 0xdf ,0x955 
+0x39ec 005474 rtn 
+:      005475 set_tx_power_f3db:
+0x39ed 005476 hjam 0xce ,0x956 
+0x39ee 005477 call txon_common 
+0x39ef 005478 hjam 0xd8 ,0x955 
+0x39f0 005479 rtn 
+:      005481 set_tx_power_f5db:
+0x39f1 005482 hjam 0xcb ,0x956 
+0x39f2 005483 call txon_common 
+0x39f3 005484 hjam 0xd8 ,0x955 
+0x39f4 005485 rtn 
+:      005487 txon_common:
+0x39f5 005488 nop 4 
+0x39f6 005489 hjam 0xd1 ,0x955 
+0x39f7 005490 nop 4 
+0x39f8 005491 hjam 0xd2 ,0x955 
+0x39f9 005492 nop 4 
+0x39fa 005493 hjam 0xd4 ,0x955 
+0x39fb 005494 rtn 
+:      005497 initialize_radio:
+0x39fc 005498 hjam clksel_rc ,core_clksel 
+0x39fd 005499 call init_rf_param 
+:      005500 initialize_radio_wait:
+0x39fe 005501 fetch 2 ,mem_rf_init_ptr 
+0x39ff 005502 bbit0 14 ,initialize_radio_wait 
+0x3a00 005503 iforce contr 
+0x3a01 005504 arg 0x8900 ,temp 
+:      005505 initialize_radio_loop:
+0x3a02 005506 ifetch 1 ,contr 
+0x3a03 005507 beq 0xff ,initialize_radio_cont 
+0x3a04 005508 ior temp ,contw 
+0x3a05 005509 ifetch 1 ,contr 
+0x3a06 005510 istore 1 ,contw 
+0x3a07 005511 branch initialize_radio_loop 
+:      005512 initialize_radio_cont:
+0x3a08 005513 set0 mark_ext_patch ,mark 
+0x3a09 005514 bpatch patch11_3 ,mem_patch11 
+0x3a0a 005515 call lpm_cal_xtal_startup 
+0x3a0b 005516 call switchto_dpllclk 
+0x3a0c 005518 setarg param_dpll_start_delay 
+0x3a0d 005519 iadd clkn_bt ,pdata 
+0x3a0e 005520 store 4 ,mem_dpll_clkn 
+0x3a0f 005521 set1 reset ,radio_ctrl 
+0x3a10 005522 force 0 ,radio_ctrl 
+0x3a11 005523 ncall do_rccal ,wake 
+0x3a12 005524 branch set_rccal 
+:      005527 rf_write_freq:
+0x3a13 005528 set0 mark_ext_patch ,mark 
+0x3a14 005529 bpatch patch11_4 ,mem_patch11 
+0x3a15 005530 setarg 2400 
+0x3a16 005531 iadd rega ,temp 
+0x3a17 005532 fetch 1 ,mem_fcomp_mul 
+0x3a18 005533 hjam 0x04 ,rf_pll_rstn 
+0x3a19 005534 imul32 temp ,pdata 
+0x3a1a 005535 fetcht 1 ,mem_fcomp_div 
+0x3a1b 005536 idiv temp 
+0x3a1c 005537 call wait_div_end 
+0x3a1d 005538 quotient rega 
+0x3a1e 005539 remainder pdata 
+0x3a1f 005540 lshift16 pdata ,pdata 
+0x3a20 005541 lshift4 pdata ,pdata 
+0x3a21 005542 idiv temp 
+0x3a22 005543 call wait_div_end 
+0x3a23 005544 quotient pdata 
+0x3a24 005545 lshift8 pdata ,pdata 
+0x3a25 005546 lshift pdata ,pdata 
+0x3a26 005547 ior rega ,pdata 
+0x3a27 005548 hstore 4 ,rf_pll_intg 
+0x3a28 005549 hjam 0x44 ,rf_pll_rstn 
+0x3a29 005550 hjam 0xc4 ,rf_pll_rstn 
+0x3a2a 005551 rtn 
+:      005554 do_rccal:
+0x3a2b 005555 set0 mark_ext_patch ,mark 
+0x3a2c 005556 bpatch patch11_5 ,mem_patch11 
+0x3a2d 005557 hjam 0x02 ,rfen_adc 
+0x3a2e 005558 setarg 250000 
+0x3a2f 005559 call sleep 
+0x3a30 005560 hjam 0x7f ,rfen_rx 
+0x3a31 005561 nop 130 
+0x3a32 005562 hjam 0x30 ,rf_rccal_ctrl 
+0x3a33 005563 hjam 0xd0 ,rfen_tx 
+0x3a34 005564 hjam 0x70 ,rf_rccal_ctrl 
+0x3a35 005565 hjam 0xf0 ,rf_rccal_ctrl 
+0x3a36 005566 force 50 ,loopcnt 
+:      005567 do_rccal_loop:
+0x3a37 005568 hfetch 1 ,rf_rccal_result 
+0x3a38 005569 bbit1 5 ,do_rccal_end 
+0x3a39 005570 loop do_rccal_loop 
+:      005571 do_rccal_end:
+0x3a3a 005572 store 1 ,mem_rf_rccal 
+0x3a3b 005573 hjam 0 ,rfen_tx 
+0x3a3c 005574 hjam 0 ,rfen_rx 
+0x3a3d 005575 hjam 0x00 ,rfen_adc 
+0x3a3e 005576 rtn 
+:      005578 set_rccal:
+0x3a3f 005579 set0 mark_ext_patch ,mark 
+0x3a40 005580 bpatch patch11_6 ,mem_patch11 
+0x3a41 005581 fetch 1 ,mem_rf_rccal 
+0x3a42 005582 set1 5 ,pdata 
+0x3a43 005583 hstore 1 ,rf_rccal_ctrl 
+0x3a44 005584 hfetcht 1 ,rf_bpf_ctrim 
+0x3a45 005585 and_into 7 ,temp 
+0x3a46 005586 lshift3 pdata ,pdata 
+0x3a47 005587 ior temp ,pdata 
+0x3a48 005588 hstore 1 ,rf_bpf_ctrim 
+0x3a49 005589 hfetch 1 ,rf_bpf_ib 
+0x3a4a 005590 set0 bpf_rccal ,pdata 
+0x3a4b 005591 hstore 1 ,rf_bpf_ib 
+0x3a4c 005592 hfetch 1 ,rf_adc_rccal 
+0x3a4d 005593 set0 adc_rccal ,pdata 
+0x3a4e 005594 hstore 1 ,rf_adc_rccal 
+0x3a4f 005595 rtn 
+:      005597 save_rssi:
+0x3a50 005598 set0 mark_ext_patch ,mark 
+0x3a51 005599 bpatch patch11_7 ,mem_patch11 
+0x3a52 005600 hfetch 2 ,rf_afc_d2a 
+0x3a53 005601 rshift4 pdata ,pdata 
+0x3a54 005602 rshift3 pdata ,pdata 
+0x3a55 005603 sub pdata ,0 ,pdata 
+0x3a56 005604 and_into 0xff ,pdata 
+0x3a57 005605 div pdata ,10 
+0x3a58 005606 call wait_div_end 
+0x3a59 005607 quotient pdata 
+0x3a5a 005608 lshift4 pdata ,pdata 
+0x3a5b 005609 remainder temp 
+0x3a5c 005610 ior temp ,pdata 
+0x3a5d 005611 store 1 ,mem_rssi 
+0x3a5e 005612 rtn 
+:      005615 switchto_dpllclk:
+0x3a5f 005616 hjam clksel_rc ,core_clksel 
+0x3a60 005617 hfetch 1 ,rf_clkpll_frac + 2 
+0x3a61 005618 set0 4 ,pdata 
+0x3a62 005619 set0 5 ,pdata 
+0x3a63 005620 hstore 1 ,rf_clkpll_frac + 2 
+0x3a64 005621 hjam 0x00 ,rfen_ck 
+0x3a65 005622 hjam 0x00 ,rfen_msc 
+0x3a66 005623 hjam 0x70 ,rfen_msc 
+0x3a67 005624 hjam 0xff ,rfen_ck 
+0x3a68 005625 hfetch 1 ,rf_clkpll_frac + 2 
+0x3a69 005626 set1 4 ,pdata 
+0x3a6a 005627 set1 5 ,pdata 
+0x3a6b 005628 hstore 1 ,rf_clkpll_frac + 2 
+0x3a6c 005629 call init_lpm_ctrl 
+0x3a6d 005630 hfetch 1 ,rf_clkpll_int 
+0x3a6e 005631 set1 7 ,pdata 
+0x3a6f 005632 hstore 1 ,rf_clkpll_int 
+0x3a70 005633 set0 7 ,pdata 
+0x3a71 005634 hstore 1 ,rf_clkpll_int 
+0x3a72 005635 set1 7 ,pdata 
+0x3a73 005636 hstore 1 ,rf_clkpll_int 
+0x3a74 005638 hjam clksel_xtal ,core_clksel 
+0x3a75 005639 hfetch 1 ,rf_clkpll_frac + 2 
+0x3a76 005640 and_into 0xcf ,pdata 
+0x3a77 005641 hstore 1 ,rf_clkpll_frac + 2 
+0x3a78 005642 or_into 0x30 ,pdata 
+0x3a79 005643 hstore 1 ,rf_clkpll_frac + 2 
+0x3a7a 005644 rtn 
+:      005647 xtal_fast_wake:
+0x3a7b 005648 setarg 0xf0f 
+0x3a7c 005649 branch lpm_write_config 
+:      005651 init_lpm_ctrl:
+0x3a7d 005652 setarg 0x80f 
+0x3a7e 005653 branch lpm_write_config 
+:      005657 start_receiver:
+0x3a7f 005658 set0 mark_ext_patch ,mark 
+0x3a80 005659 bpatch patch12_0 ,mem_patch12 
+0x3a81 005660 call rf_rx_enable 
+0x3a82 005661 disable is_tx 
+0x3a83 005662 enable is_rx 
+0x3a84 005663 pulse init_encrypt 
+0x3a85 005664 rtn 
+:      005666 prep_crypt:
+0x3a86 005667 set0 mark_ext_patch ,mark 
+0x3a87 005668 bpatch patch12_1 ,mem_patch12 
+0x3a88 005669 fetch 1 ,mem_state_map 
+0x3a89 005670 isolate1 smap_encryption ,pdata 
+0x3a8a 005671 setflag true ,0 ,pdata 
+0x3a8b 005672 hstore 1 ,core_encrypt 
+0x3a8c 005673 arg mem_kc ,contr 
+0x3a8d 005674 ifetch 9 ,contr 
+0x3a8e 005675 iforce kc_ls 
+0x3a8f 005676 ifetch 7 ,contr 
+0x3a90 005677 iforce kc_ms 
+0x3a91 005678 fetch 1 ,mem_key_size 
+0x3a92 005679 add pdata ,-1 ,g1l 
+0x3a93 005680 pulse kc_p_activate 
+0x3a94 005681 rtn 
+:      005683 wait_access_end:
+0x3a95 005684 deposit clke 
+0x3a96 005685 store 6 ,mem_sync_clke 
+0x3a97 005686 disable decode_fec0 
+0x3a98 005687 nbranch shutdown_radio ,sync 
+0x3a99 005688 arg param_clke_cal ,clke_rt 
+0x3a9a 005689 increase 1 ,clke_bt 
+0x3a9b 005690 and_into 0x1fc ,clke_bt 
+0x3a9c 005691 rtn 
+:      005695 wait_access_mhalfbnd:
+0x3a9d 005696 enable decode_fec0 
+:      005697 wait_access_mhalfbnd_correlate:
+0x3a9e 005698 correlate null ,mhalfbnd 
+0x3a9f 005699 branch wait_access_end ,sync 
+0x3aa0 005700 compare 0x02 ,clke_bt ,0x02 
+0x3aa1 005701 nbranch wait_access_mhalfbnd_correlate ,true 
+0x3aa2 005702 branch wait_access_end 
+:      005704 wait_access_clkn_rt:
+0x3aa3 005705 set0 mark_ext_patch ,mark 
+0x3aa4 005706 bpatch patch12_2 ,mem_patch12 
+0x3aa5 005707 arg param_conn_access ,timeup 
+0x3aa6 005708 enable decode_fec0 
+0x3aa7 005709 correlate clkn_rt ,meet 
+0x3aa8 005710 disable decode_fec0 
+0x3aa9 005711 nbranch shutdown_radio ,sync 
+0x3aaa 005712 rtn 
+:      005714 wait_access_forever:
+0x3aab 005715 set0 mark_ext_patch ,mark 
+0x3aac 005716 bpatch patch12_3 ,mem_patch12 
+0x3aad 005717 enable decode_fec0 
+0x3aae 005718 correlate null ,timeout 
+0x3aaf 005719 disable decode_fec0 
+0x3ab0 005720 nbranch shutdown_radio ,sync 
+0x3ab1 005721 arg param_clke_cal ,clke_rt 
+0x3ab2 005722 and_into 0x1fc ,clke_bt 
+0x3ab3 005723 rtn 
+:      005726 reserve_slot:
+0x3ab4 005727 set0 mark_ext_patch ,mark 
+0x3ab5 005728 bpatch patch12_4 ,mem_patch12 
+0x3ab6 005729 iforce rega 
+0x3ab7 005730 deposit bt_clk 
+0x3ab8 005731 iadd temp ,timeup 
+0x3ab9 005732 copy timeup ,pdata 
+0x3aba 005733 store 4 ,mem_next_btclk 
+0x3abb 005734 deposit rega 
+0x3abc 005735 rtn 
+:      005738 ahead_window:
+0x3abd 005739 copy pdata ,temp 
+0x3abe 005740 set0 mark_ext_patch ,mark 
+0x3abf 005741 bpatch patch12_5 ,mem_patch12 
+0x3ac0 005742 copy temp ,pdata 
+0x3ac1 005743 call clk2bt 
+0x3ac2 005744 lshift16 bt_clk ,pdata 
+0x3ac3 005745 set1 44 ,pdata 
+0x3ac4 005746 call clk_diff 
+0x3ac5 005747 set0 44 ,pdata 
+0x3ac6 005748 call get_clk 
+0x3ac7 005749 call clk_diff 
+0x3ac8 005750 rtn user 
+0x3ac9 005751 call clk2rt 
+0x3aca 005752 iforce stop_watch 
+0x3acb 005753 until null ,timeout 
+0x3acc 005754 rtn 
+:      005757 setup_clk:
+0x3acd 005758 set0 mark_ext_patch ,mark 
+0x3ace 005759 bpatch patch12_6 ,mem_patch12 
+0x3acf 005760 branch setup_clkn ,clknt 
+0x3ad0 005761 until clke_rt ,meet 
+:      005762 skip_setup_clke:
+0x3ad1 005763 copy clke_bt ,temp 
+0x3ad2 005764 branch setup_clknbt 
+:      005765 setup_clkn:
+0x3ad3 005766 branch skip_setup_clkn ,attempt 
+0x3ad4 005767 until clkn_rt ,meet 
+:      005768 skip_setup_clkn:
+0x3ad5 005769 copy clkn_bt ,temp 
+:      005770 setup_clknbt:
+0x3ad6 005771 branch setup_clk11 ,user 
+0x3ad7 005772 compare 1 ,temp ,3 
+0x3ad8 005773 nbranch setup_clk ,true 
+:      005774 setup_complete:
+0x3ad9 005775 set0 mark_ext_patch ,mark 
+0x3ada 005776 bpatch patch12_7 ,mem_patch12 
+0x3adb 005777 fetch 1 ,mem_state 
+0x3adc 005778 rtnbit0 state_inconn 
+0x3add 005779 fetch 4 ,mem_next_btclk 
+0x3ade 005780 isub temp ,pdata 
+0x3adf 005781 nrtn positive 
+0x3ae0 005782 sub pdata ,0xff ,null 
+0x3ae1 005783 branch setup_clk ,positive 
+0x3ae2 005784 rtn 
+:      005785 setup_clk11:
+0x3ae3 005786 compare 3 ,temp ,3 
+0x3ae4 005787 nbranch setup_clk ,true 
+0x3ae5 005788 branch setup_complete 
+:      005790 rf_setup_time:
+0x3ae6 005791 set0 mark_ext_patch ,mark 
+0x3ae7 005792 bpatch patch13_0 ,mem_patch13 
+0x3ae8 005793 arg param_rf_setup ,timeup 
+0x3ae9 005794 branch setup_clk 
+:      005796 rf_setup_time_slave_slot:
+0x3aea 005797 disable user 
+0x3aeb 005798 branch rf_setup_time 
+:      005800 rf_setup_time_master_slot:
+0x3aec 005801 enable user 
+0x3aed 005802 branch rf_setup_time 
+:      005804 start_transmitter:
+0x3aee 005805 set0 mark_ext_patch ,mark 
+0x3aef 005806 bpatch patch13_1 ,mem_patch13 
+0x3af0 005807 call prep_crypt 
+0x3af1 005808 disable is_rx 
+0x3af2 005809 enable is_tx 
+0x3af3 005810 rtn 
+:      005814 start_tx_native:
+0x3af4 005815 set0 mark_ext_patch ,mark 
+0x3af5 005816 bpatch patch13_2 ,mem_patch13 
+0x3af6 005817 arg param_tx_setup ,timeup 
+0x3af7 005818 until clkn_rt ,meet 
+0x3af8 005819 pulse init_encrypt 
+0x3af9 005820 rtn 
+:      005822 start_rx_native:
+0x3afa 005823 set0 mark_ext_patch ,mark 
+0x3afb 005824 bpatch patch13_3 ,mem_patch13 
+0x3afc 005825 arg param_rx_setup ,timeup 
+0x3afd 005826 until clkn_rt ,meet 
+0x3afe 005827 rtn 
+:      005830 start_tx_external:
+0x3aff 005831 set0 mark_ext_patch ,mark 
+0x3b00 005832 bpatch patch13_4 ,mem_patch13 
+0x3b01 005833 arg param_tx_setup ,timeup 
+0x3b02 005834 until clke_rt ,meet 
+0x3b03 005835 pulse init_encrypt 
+0x3b04 005836 rtn 
+:      005838 send_access_word:
+0x3b05 005839 set0 mark_ext_patch ,mark 
+0x3b06 005840 bpatch patch13_5 ,mem_patch13 
+0x3b07 005841 preload access 
+0x3b08 005842 enable encode_fec0 
+0x3b09 005843 set1 txgfsk ,radio_ctrl 
+0x3b0a 005844 inject mod ,72 
+0x3b0b 005845 disable encode_fec0 
+0x3b0c 005846 rtn 
+:      005849 scan_mode_whiten:
+0x3b0d 005850 copy xin ,temp 
+0x3b0e 005851 or_into 0x60 ,temp 
+0x3b0f 005852 copy temp ,white_init 
+0x3b10 005853 rtn 
+:      005858 get_free_amaddr:
+0x3b11 005859 set0 mark_ext_patch ,mark 
+0x3b12 005860 bpatch patch13_6 ,mem_patch13 
+0x3b13 005861 fetch 1 ,mem_current_amaddr 
+0x3b14 005862 increase 1 ,pdata 
+0x3b15 005863 bne param_esco_addr ,get_free_amaddr_cont 
+0x3b16 005864 force 1 ,pdata 
+:      005865 get_free_amaddr_cont:
+0x3b17 005866 store 1 ,mem_current_amaddr 
+0x3b18 005867 iforce am_addr 
+0x3b19 005868 rtn 
+:      005870 get_clk:
+0x3b1a 005871 copy clkn ,temp 
+0x3b1b 005872 rtn master 
+0x3b1c 005873 copy clke ,temp 
+0x3b1d 005874 rtn 
+:      005876 get_clkbt:
+0x3b1e 005877 deposit clkn_bt 
+0x3b1f 005878 rtn master 
+0x3b20 005879 deposit clke_bt 
+0x3b21 005880 rtn 
+:      005883 supervision_update:
+0x3b22 005884 set0 mark_ext_patch ,mark 
+0x3b23 005885 bpatch patch13_7 ,mem_patch13 
+0x3b24 005886 fetcht 4 ,mem_supervision_timer 
+0x3b25 005887 call get_clkbt 
+0x3b26 005888 isub temp ,timeup 
+0x3b27 005889 deposit timeup 
+0x3b28 005890 fetcht 2 ,mem_supervision_to 
+0x3b29 005891 lshift temp ,temp 
+0x3b2a 005892 isub temp ,pdata 
+0x3b2b 005893 rtn 
+:      005895 supervision_flush:
+0x3b2c 005896 set0 mark_ext_patch ,mark 
+0x3b2d 005897 bpatch patch14_0 ,mem_patch14 
+0x3b2e 005898 call get_clkbt 
+0x3b2f 005899 store 4 ,mem_supervision_timer 
+0x3b30 005900 rtn 
+:      005902 assert:
+0x3b31 005903 set0 mark_ext_patch ,mark 
+0x3b32 005904 bpatch patch14_1 ,mem_patch14 
+0x3b33 005905 rtn 
+:      005907 loop:
+0x3b34 005908 branch loop 
+:      005910 sleep:
+0x3b35 005911 rtn blank 
+0x3b36 005913 rshift pdata ,pdata 
+0x3b37 005914 increase -3 ,pdata 
+:      005915 sleep_loop:
+0x3b38 005916 increase -1 ,pdata 
+0x3b39 005917 nbranch sleep_loop ,zero 
+0x3b3a 005918 force 0 ,pdata 
+0x3b3b 005919 rtn 
+:      005923 init_param:
+0x3b3c 005925 arg 0x10 ,loopcnt 
+0x3b3d 005926 arg 0 ,contw 
+0x3b3e 005927 call memset0 
+0x3b3f 005928 arg mem_le_state ,contw 
+0x3b40 005929 arg 10 ,loopcnt 
+0x3b41 005930 call memset0 
+0x3b42 005931 jam 0 ,mem_sp_calc 
+0x3b43 005932 jam 0 ,mem_fifo_temp 
+0x3b44 005933 jam 0 ,mem_le_testtype 
+0x3b45 005934 jam 0 ,mem_debug_config 
+0x3b46 005935 jam 0 ,mem_lmp_conn_state 
+0x3b47 005936 set0 mark_ext_patch ,mark 
+0x3b48 005937 bpatch patch14_2 ,mem_patch14 
+0x3b49 005938 jam 0 ,mem_connection_options 
+0x3b4a 005939 jam 0 ,mem_tester_emulate 
+0x3b4b 005940 jam 0 ,mem_tester_cnt 
+0x3b4c 005941 setarg param_glap 
+0x3b4d 005942 store 3 ,mem_glap 
+0x3b4e 005943 setarg param_acl_pktlen 
+0x3b4f 005944 store 2 ,mem_acl_pktlen 
+0x3b50 005945 jam param_sco_pktlen ,mem_sco_pktlen 
+0x3b51 005946 jam param_acl_pktcnt ,mem_acl_pktcnt 
+0x3b52 005947 jam param_sco_pktcnt ,mem_sco_pktcnt 
+0x3b53 005948 setarg param_hci_version 
+0x3b54 005949 store 3 ,mem_hci_version 
+0x3b55 005954 jam 0x60 ,mem_fhs_misc 
+0x3b56 005955 jam param_max_slot ,mem_max_slot 
+0x3b57 005956 jam 0x02 ,mem_fw_ver 
+0x3b58 005957 fetch 1 ,mem_ssp_enable 
+0x3b59 005958 ncall init_memp ,blank 
+0x3b5a 005959 fetch 1 ,mem_le_secure_connect_enable 
+0x3b5b 005960 ncall init_memp_256 ,blank 
+0x3b5c 005961 set0 mark_ext_patch ,mark 
+0x3b5d 005962 bpatch patch14_3 ,mem_patch14 
+0x3b5e 005963 rtn wake 
+0x3b5f 005964 setarg 0 
+0x3b60 005965 store 2 ,mem_tx_len 
+0x3b61 005966 rshift clkn_bt ,pdata 
+0x3b62 005967 store 4 ,mem_last_clkn 
+0x3b63 005968 rtn 
+:      005970 init_rf_param:
+0x3b64 005971 hjam 0x1f ,0x909 
+0x3b65 005972 hjam 0x45 ,0x912 
+0x3b66 005973 hjam 0x00 ,0x953 
+0x3b67 005974 hjam 0x88 ,0x96f 
+0x3b68 005975 hjam 0x30 ,0x973 
+0x3b69 005976 hjam 0xc9 ,0x956 
+0x3b6a 005978 hjam 0xff ,0x907 
+0x3b6b 005979 hjam 0x01 ,0x908 
+0x3b6c 005980 hjam 0xf8 ,0x90a 
+0x3b6d 005981 hjam 0xff ,0x90b 
+0x3b6e 005982 hjam 0xfb ,0x91a 
+0x3b6f 005983 hjam 0xfb ,0x91b 
+0x3b70 005984 hjam 0xfb ,0x91c 
+0x3b71 005985 hjam 0xf6 ,0x91d 
+0x3b72 005986 hjam 0xf2 ,0x91e 
+0x3b73 005987 hjam 0xee ,0x91f 
+0x3b74 005988 hjam 0xea ,0x920 
+0x3b75 005989 hjam 0xe6 ,0x921 
+0x3b76 005990 hjam 0xe2 ,0x922 
+0x3b77 005991 hjam 0xde ,0x923 
+0x3b78 005992 hjam 0xda ,0x924 
+0x3b79 005993 hjam 0xd6 ,0x925 
+0x3b7a 005994 hjam 0xd2 ,0x926 
+0x3b7b 005995 hjam 0xce ,0x927 
+0x3b7c 005996 hjam 0xca ,0x928 
+0x3b7d 005997 hjam 0xc6 ,0x929 
+0x3b7e 005998 hjam 0xc2 ,0x92a 
+0x3b7f 005999 hjam 0xbd ,0x92b 
+0x3b80 006000 hjam 0xb9 ,0x92c 
+0x3b81 006001 hjam 0xb5 ,0x92d 
+0x3b82 006002 hjam 0xb1 ,0x92e 
+0x3b83 006003 hjam 0xad ,0x92f 
+0x3b84 006004 hjam 0xa9 ,0x930 
+0x3b85 006005 hjam 0x80 ,0x931 
+0x3b86 006006 hjam 0x80 ,0x932 
+0x3b87 006007 hjam 0x80 ,0x933 
+0x3b88 006008 hjam 0xc0 ,0x934 
+0x3b89 006009 hjam 0xc1 ,0x935 
+0x3b8a 006010 hjam 0xc2 ,0x936 
+0x3b8b 006011 hjam 0xc3 ,0x937 
+0x3b8c 006012 hjam 0xc4 ,0x938 
+0x3b8d 006013 hjam 0xc5 ,0x939 
+0x3b8e 006014 hjam 0xc6 ,0x93a 
+0x3b8f 006015 hjam 0xc7 ,0x93b 
+0x3b90 006016 hjam 0x06 ,0x93c 
+0x3b91 006017 hjam 0x07 ,0x93d 
+0x3b92 006018 hjam 0x46 ,0x93e 
+0x3b93 006019 hjam 0x85 ,0x93f 
+0x3b94 006020 hjam 0x86 ,0x940 
+0x3b95 006021 hjam 0x87 ,0x941 
+0x3b96 006022 hjam 0xc6 ,0x942 
+0x3b97 006023 hjam 0xc7 ,0x943 
+0x3b98 006024 hjam 0xd6 ,0x944 
+0x3b99 006025 hjam 0xd7 ,0x945 
+0x3b9a 006026 hjam 0xe6 ,0x946 
+0x3b9b 006027 hjam 0xf5 ,0x947 
+0x3b9c 006028 hjam 0x00 ,0x948 
+0x3b9d 006029 hjam 0xf8 ,0x949 
+0x3b9e 006030 hjam 0x7f ,0x94a 
+0x3b9f 006031 hjam 0xfb ,0x94c 
+0x3ba0 006032 hjam 0xef ,0x94d 
+0x3ba1 006033 hjam 0xec ,0x94e 
+0x3ba2 006034 hjam 0x5e ,0x94f 
+0x3ba3 006035 hjam 0x4c ,0x957 
+0x3ba4 006036 hjam 0x6c ,0x958 
+0x3ba5 006037 hjam 0x50 ,0x959 
+0x3ba6 006038 hjam 0xe4 ,0x968 
+0x3ba7 006039 hjam 0x00 ,0x969 
+0x3ba8 006040 hjam 0x00 ,0x96a 
+0x3ba9 006041 hjam 0x30 ,0x96b 
+0x3baa 006042 rtn 
+:      006051 lpmstate:
+0x3bab 006052 setarg 0xee21 
+0x3bac 006053 hstore 2 ,core_clkoff 
+0x3bad 006054 hfetch 1 ,core_lpm_ldocnt 
+0x3bae 006055 bbit0 gpio_latch ,loadcode 
+0x3baf 006056 enable wake 
+0x3bb0 006057 bbit0 cold_wake ,lpmwake 
+0x3bb1 006058 disable wake 
+0x3bb2 006059 deposit auxcnt 
+0x3bb3 006060 nbranch lpmwake ,blank 
+0x3bb4 006061 arg param_hibernate_clks ,temp 
+0x3bb5 006062 branch lpm_enter_sleep 
+:      006063 lpmwake:
+0x3bb6 006064 hfetch 3 ,core_lpm_xtalcnt 
+0x3bb7 006065 hstore 3 ,core_lpm_reg 
+0x3bb8 006066 ifetch 1 ,contr 
+0x3bb9 006067 or_into isogate_mask ,pdata 
+0x3bba 006068 istore 1 ,contw 
+0x3bbb 006069 call lpm_write_ctrl2 
+0x3bbc 006070 hfetch 1 ,core_lpm_isogate 
+0x3bbd 006071 set1 enable_retmem ,pdata 
+0x3bbe 006072 hstore 1 ,core_lpm_isogate 
+0x3bbf 006073 call lpm_write_ctrl2 
+0x3bc0 006074 call lpm_load_context ,wake 
+0x3bc1 006075 hfetch 1 ,core_lpm_reg + 2 
+0x3bc2 006076 set0 gpio_latch ,pdata 
+0x3bc3 006077 hstore 1 ,core_lpm_reg + 2 
+0x3bc4 006078 call lpm_write_ctrl2 
+0x3bc5 006079 rtn wake 
+0x3bc6 006080 branch loadcode 
+:      006082 lpm_load_context:
+0x3bc7 006083 fetch 1 ,mem_saved_spidctrl 
+0x3bc8 006084 hstore 1 ,core_spid_ctrl 
+0x3bc9 006085 fetch 3 ,mem_saved_gsel 
+0x3bca 006086 hstore 3 ,core_gpio_sel 
+0x3bcb 006087 fetch 4 ,mem_saved_gpio + 4 
+0x3bcc 006088 hstore 4 ,core_gpio_out0 
+0x3bcd 006089 fetch 4 ,mem_saved_gpio 
+0x3bce 006090 hstore 4 ,core_gpio_oe0 
+0x3bcf 006091 fetch 8 ,mem_saved_gpio + 8 
+0x3bd0 006092 hstore 8 ,core_gpio_pu0 
+0x3bd1 006093 fetch 8 ,mem_saved_mark 
+0x3bd2 006094 iforce mark 
+0x3bd3 006095 hfetch 8 ,core_gpio_wakeup_low 
+0x3bd4 006096 store 8 ,mem_gpio_wakeup_low 
+0x3bd5 006097 call load_ucode 
+0x3bd6 006098 rtn 
+:      006100 lpm_save_context:
+0x3bd7 006101 deposit mark 
+0x3bd8 006102 store 8 ,mem_saved_mark 
+0x3bd9 006103 hfetch 8 ,core_gpio_oe0 
+0x3bda 006104 store 8 ,mem_saved_gpio 
+0x3bdb 006105 ifetch 8 ,contr 
+0x3bdc 006106 istore 8 ,contw 
+0x3bdd 006107 hfetch 3 ,core_gpio_sel 
+0x3bde 006108 store 3 ,mem_saved_gsel 
+0x3bdf 006109 hfetch 1 ,core_spid_ctrl 
+0x3be0 006110 store 1 ,mem_saved_spidctrl 
+0x3be1 006111 branch lpm_write_gpio_wakeup 
+:      006113 lpo_calibration:
+0x3be2 006114 hfetch 1 ,core_bist_ctrl 
+0x3be3 006115 nbranch lpo_cal_inited ,blank 
+0x3be4 006116 fetch 3 ,mem_clks_per_lpo 
+0x3be5 006117 nrtn blank 
+0x3be6 006118 hjam 0xc0 ,core_bist_ctrl 
+0x3be7 006119 hjam ccnt_start ,core_misc_ctrl 
+:      006120 lpo_cal_inited:
+0x3be8 006121 hfetch 1 ,core_perf_status 
+0x3be9 006122 rtnbit0 1 
+0x3bea 006123 hfetch 3 ,core_clk_counter 
+0x3beb 006124 store 3 ,mem_clks_per_lpo 
+0x3bec 006125 rtn 
+:      006129 lpm_adjust_clk:
+0x3bed 006130 set0 mark_ext_patch ,mark 
+0x3bee 006131 bpatch patch14_4 ,mem_patch14 
+0x3bef 006132 deposit clke 
+0x3bf0 006133 call clk_diff_rt 
+0x3bf1 006134 fetcht 4 ,mem_sleep_counter_all 
+0x3bf2 006135 sub temp ,0xff ,null 
+0x3bf3 006136 rtn positive 
+0x3bf4 006137 lshift8 pdata ,pdata 
+0x3bf5 006138 lshift4 pdata ,pdata 
+0x3bf6 006139 idiv temp 
+0x3bf7 006140 call wait_div_end 
+0x3bf8 006141 quotient pdata 
+0x3bf9 006142 arg param_lpm_adjmax ,temp 
+0x3bfa 006143 call ceiling 
+0x3bfb 006144 store 1 ,mem_lpm_adjust 
+0x3bfc 006145 nbranch lpm_adjust_positive ,user 
+0x3bfd 006146 sub pdata ,0 ,pdata 
+:      006147 lpm_adjust_positive:
+0x3bfe 006148 fetcht 3 ,mem_clks_per_lpo 
+0x3bff 006149 iadd temp ,pdata 
+0x3c00 006150 store 3 ,mem_clks_per_lpo 
+:      006151 lpm_clear_counter:
+0x3c01 006152 setarg 0 
+0x3c02 006153 store 4 ,mem_sleep_counter_all 
+0x3c03 006154 rtn 
+:      006157 lpm_hibernate:
+0x3c04 006158 set0 mark_ext_patch ,mark 
+0x3c05 006159 bpatch patch14_5 ,mem_patch14 
+0x3c06 006160 call lpm_write_gpio_wakeup 
+0x3c07 006161 hfetch 4 ,core_lpm_ctrl 
+0x3c08 006162 set0 15 ,pdata 
+0x3c09 006163 hstore 4 ,core_lpm_reg 
+0x3c0a 006164 call lpm_write_ctrl 
+:      006165 lpm_hibernate_normal:
+0x3c0b 006166 arg param_hibernate_clks ,temp 
+0x3c0c 006167 fetch 1 ,mem_lpm_hibernate_switch 
+0x3c0d 006168 store 1 ,mem_lpm_xtalcnt + 4 
+0x3c0e 006169 fetch 1 ,mem_lpm_xtalcnt + 2 
+0x3c0f 006170 set1 cold_wake ,pdata 
+0x3c10 006171 store 1 ,mem_lpm_xtalcnt + 2 
+:      006174 lpm_sleep:
+0x3c11 006175 set0 mark_ext_patch ,mark 
+0x3c12 006176 bpatch patch14_6 ,mem_patch14 
+0x3c13 006177 call xtal_fast_wake 
+0x3c14 006178 fetch 4 ,mem_sleep_counter_all 
+0x3c15 006179 iadd temp ,pdata 
+0x3c16 006180 store 4 ,mem_sleep_counter_all 
+0x3c17 006181 call lpm_save_context 
+0x3c18 006182 fetch 5 ,mem_lpm_xtalcnt 
+0x3c19 006183 hstore 4 ,core_lpm_reg 
+0x3c1a 006184 rshift32 pdata ,rega 
+0x3c1b 006185 until null ,lpo_edge 
+0x3c1c 006186 deposit clkn 
+0x3c1d 006187 store 6 ,mem_sleep_clkn 
+0x3c1e 006188 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+0x3c1f 006189 until null ,lpo_edge 
+0x3c20 006190 until null ,lpo_edge 
+0x3c21 006191 deposit rega 
+0x3c22 006192 hstore 1 ,core_lpm_isogate 
+0x3c23 006193 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+:      006194 lpm_enter_sleep:
+0x3c24 006195 until null ,lpo_edge 
+0x3c25 006196 until null ,lpo_edge 
+0x3c26 006197 hstoret 4 ,core_lpm_reg 
+0x3c27 006198 hjam lpmreg_sel_counter ,core_lpm_wr 
+0x3c28 006199 until null ,never 
+:      006204 lpm_recover_clk:
+0x3c29 006205 set0 mark_ext_patch ,mark 
+0x3c2a 006206 bpatch patch14_7 ,mem_patch14 
+0x3c2b 006207 setarg 0 
+0x3c2c 006208 copy auxcnt ,null 
+0x3c2d 006209 branch lpm_recover_timeout ,zero 
+0x3c2e 006210 hfetch 1 ,core_lpm_xtalcnt 
+0x3c2f 006211 hfetcht 1 ,core_lpm_buckcnt 
+0x3c30 006212 isub temp ,null 
+0x3c31 006213 branch lpm_recover_xtal ,positive 
+0x3c32 006214 deposit temp 
+:      006215 lpm_recover_xtal:
+0x3c33 006216 isub auxcnt ,pdata 
+0x3c34 006217 increase 1 ,pdata 
+:      006218 lpm_recover_timeout:
+0x3c35 006219 increase 8 ,pdata 
+0x3c36 006220 until null ,lpo_edge 
+0x3c37 006221 iadd lpo_time ,pdata 
+0x3c38 006222 fetcht 4 ,mem_sleep_counter 
+0x3c39 006223 iadd temp ,pdata 
+0x3c3a 006224 fetcht 3 ,mem_clks_per_lpo 
+0x3c3b 006225 imul32 temp ,pdata 
+0x3c3c 006226 rshift8 pdata ,pdata 
+0x3c3d 006227 rshift4 pdata ,pdata 
+0x3c3e 006228 increase param_lpm_fix ,pdata 
+0x3c3f 006229 arg 3750 ,temp 
+0x3c40 006230 idiv temp 
+0x3c41 006231 call wait_div_end 
+0x3c42 006232 quotient pdata 
+0x3c43 006233 lshift16 pdata ,pdata 
+0x3c44 006234 remainder temp 
+0x3c45 006235 ior temp ,pdata 
+0x3c46 006236 fetcht 6 ,mem_sleep_clkn 
+0x3c47 006237 call clk_add 
+0x3c48 006238 copy temp ,clkn 
+0x3c49 006239 fetch 6 ,mem_context + coffset_clk_offset 
+0x3c4a 006240 call calc_clke2 
+0x3c4b 006241 deposit clke 
+0x3c4c 006242 store 6 ,mem_pdatatemp 
+0x3c4d 006243 deposit auxcnt 
+0x3c4e 006244 istore 1 ,contw 
+0x3c4f 006245 hfetch 1 ,core_gpio_in1 
+0x3c50 006246 or_into 0xf0 ,pdata 
+0x3c51 006247 istore 1 ,contw 
+0x3c52 006248 rtn 
+:      006250 lpm_dispatch:
+0x3c53 006251 set0 mark_ext_patch ,mark 
+0x3c54 006252 bpatch patch15_0 ,mem_patch15 
+0x3c55 006253 call lpo_calibration 
+0x3c56 006254 fetch 3 ,mem_clks_per_lpo 
+0x3c57 006255 rtn blank 
+0x3c58 006256 fetch 1 ,mem_lpm_mode 
+0x3c59 006257 rtn blank 
+0x3c5a 006258 fetch 1 ,mem_ssp_enable 
+0x3c5b 006259 branch lpm_dispatch_next ,blank 
+0x3c5c 006260 fetch 1 ,mem_sp_local_key_invalid 
+0x3c5d 006261 rtn blank 
+:      006262 lpm_dispatch_next:
+0x3c5e 006263 fetch 1 ,mem_le_sc_calc 
+0x3c5f 006264 nrtn blank 
+0x3c60 006265 call lpm_check_wake_lock 
+0x3c61 006266 nrtn blank 
+0x3c62 006267 fetch 1 ,mem_context 
+0x3c63 006268 compare 3 ,pdata ,0x7 
+0x3c64 006269 nbranch lpm_dispatch_unconn ,true 
+0x3c65 006270 fetch 2 ,mem_context + coffset_tsniff 
+0x3c66 006271 rtn blank 
+0x3c67 006272 rtn wake 
+0x3c68 006273 set0 mark_ext_patch ,mark 
+0x3c69 006274 bpatch patch15_1 ,mem_patch15 
+:      006275 lpm_dispatch_next2:
+0x3c6a 006276 fetcht 1 ,mem_lpm_current_mult 
+0x3c6b 006277 fetch 2 ,mem_context + coffset_tsniff 
+0x3c6c 006278 imul32 temp ,pdata 
+0x3c6d 006279 rshift4 temp ,temp 
+0x3c6e 006280 rshift2 temp ,temp 
+0x3c6f 006281 isub temp ,pdata 
+0x3c70 006282 fetcht 4 ,mem_context + coffset_sniff_anchor 
+0x3c71 006283 iadd temp ,pdata 
+0x3c72 006284 fetcht 1 ,mem_lpm_overhead 
+0x3c73 006285 isub temp ,pdata 
+0x3c74 006286 lshift16 pdata ,alarm 
+0x3c75 006287 set0 mark_ext_patch ,mark 
+0x3c76 006288 bpatch patch15_2 ,mem_patch15 
+0x3c77 006289 fetch 2 ,mem_context + coffset_rx_window 
+0x3c78 006290 rshift pdata ,pdata 
+0x3c79 006291 call clk2bt 
+0x3c7a 006292 deposit alarm 
+0x3c7b 006293 call clk_diff 
+0x3c7c 006294 copy clke ,temp 
+0x3c7d 006295 call clk_diff_rt 
+0x3c7e 006296 rtn user 
+:      006297 lpm_dispatch_sleep:
+0x3c7f 006298 call clk2lpo 
+:      006299 lpm_dispatch_lpo:
+0x3c80 006300 set0 mark_ext_patch ,mark 
+0x3c81 006301 bpatch patch15_3 ,mem_patch15 
+0x3c82 006302 fetch 1 ,mem_lpm_xtalcnt 
+0x3c83 006303 isub temp ,null 
+0x3c84 006304 branch lpm_clear_counter ,positive 
+0x3c85 006305 storet 4 ,mem_sleep_counter 
+0x3c86 006306 call app_will_enter_lpm 
+0x3c87 006307 call l2cap_lpm_save_txbuf 
+0x3c88 006308 fetcht 4 ,mem_sleep_counter 
+0x3c89 006309 branch lpm_sleep 
+:      006311 lpm_dispatch_unconn:
+0x3c8a 006312 set0 mark_ext_patch ,mark 
+0x3c8b 006313 bpatch patch15_4 ,mem_patch15 
+0x3c8c 006314 fetch 1 ,mem_context 
+0x3c8d 006315 rtnbit1 state_inconn 
+0x3c8e 006316 rtnbit1 state_inpage 
+0x3c8f 006317 fetch 1 ,mem_ssp_enable 
+0x3c90 006318 branch lpm_unconn_nossp ,blank 
+0x3c91 006319 fetch 1 ,mem_sp_local_key_invalid 
+0x3c92 006320 rtn blank 
+:      006321 lpm_unconn_nossp:
+0x3c93 006322 set0 mark_ext_patch ,mark 
+0x3c94 006323 bpatch patch15_5 ,mem_patch15 
+0x3c95 006324 fetch 1 ,mem_le_adv_enable 
+0x3c96 006325 nbranch lpm_unconn_cont ,blank 
+0x3c97 006326 fetch 1 ,mem_scan_mode 
+0x3c98 006327 rtn blank 
+:      006328 lpm_unconn_cont:
+0x3c99 006329 fetch 2 ,mem_lpm_interval 
+0x3c9a 006330 rtn blank 
+:      006331 lpm_sleep_btclk:
+0x3c9b 006332 fetcht 1 ,mem_lpm_overhead 
+0x3c9c 006333 isub temp ,pdata 
+0x3c9d 006334 arg 7500 ,temp 
+0x3c9e 006335 imul32 temp ,pdata 
+0x3c9f 006336 branch lpm_dispatch_sleep 
+:      006338 lpm_set_mult:
+0x3ca0 006339 set0 mark_ext_patch ,mark 
+0x3ca1 006340 bpatch patch15_6 ,mem_patch15 
+0x3ca2 006341 disable wake 
+0x3ca3 006342 fetch 1 ,mem_state 
+0x3ca4 006343 rtnbit0 state_insniff 
+0x3ca5 006344 nbranch lpm_not_match ,match 
+0x3ca6 006345 call lpm_match 
+0x3ca7 006346 fetch 2 ,mem_rx_window_sniff 
+0x3ca8 006347 store 2 ,mem_rx_window 
+0x3ca9 006348 fetch 1 ,mem_arq 
+0x3caa 006349 bbit1 wack ,lpm_mult_short 
+0x3cab 006350 bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+0x3cac 006351 call l2cap_malloc_is_fifo_empty 
+0x3cad 006352 nbranch lpm_mult_short ,blank 
+0x3cae 006353 fetch 2 ,mem_cb_bt_set_mult 
+0x3caf 006354 call callback_func 
+:      006355 lpm_mult_wait_timeout:
+0x3cb0 006356 jam 0 ,mem_lpm_current_mult 
+0x3cb1 006357 bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+0x3cb2 006358 fetch 1 ,mem_lpm_mult_cnt 
+0x3cb3 006359 branch lpm_mult_long ,blank 
+0x3cb4 006360 increase -1 ,pdata 
+0x3cb5 006361 store 1 ,mem_lpm_mult_cnt 
+0x3cb6 006362 rtn 
+:      006364 lpm_match:
+0x3cb7 006365 jam 0 ,mem_sniff_unint_lost 
+0x3cb8 006366 fetch 3 ,mem_sniff_rcv 
+0x3cb9 006367 increase 1 ,pdata 
+0x3cba 006368 store 3 ,mem_sniff_rcv 
+0x3cbb 006369 rtn 
+:      006371 lpm_not_match:
+0x3cbc 006372 set0 mark_ext_patch ,mark 
+0x3cbd 006373 bpatch patch15_7 ,mem_patch15 
+0x3cbe 006374 fetcht 2 ,mem_rx_window_sniff 
+0x3cbf 006375 rshift temp ,temp 
+0x3cc0 006376 fetch 2 ,mem_rx_window 
+0x3cc1 006377 iadd temp ,pdata 
+0x3cc2 006378 store 2 ,mem_rx_window 
+:      006379 lpm_lost:
+0x3cc3 006380 jam 0 ,mem_lpm_current_mult 
+0x3cc4 006381 fetch 3 ,mem_sniff_lost 
+0x3cc5 006382 increase 1 ,pdata 
+0x3cc6 006383 store 3 ,mem_sniff_lost 
+0x3cc7 006384 fetch 1 ,mem_sniff_unint_lost 
+0x3cc8 006385 increase 1 ,pdata 
+0x3cc9 006386 store 1 ,mem_sniff_unint_lost 
+0x3cca 006387 rtn 
+:      006389 lpm_mult_short:
+0x3ccb 006390 jam 0 ,mem_lpm_current_mult 
+0x3ccc 006391 fetch 1 ,mem_lpm_mult_timeout 
+0x3ccd 006392 store 1 ,mem_lpm_mult_cnt 
+0x3cce 006393 rtn 
+:      006395 lpm_mult_long:
+0x3ccf 006396 fetcht 1 ,mem_lpm_mult 
+0x3cd0 006397 storet 1 ,mem_lpm_current_mult 
+0x3cd1 006398 rtn 
+:      006400 lpm_cal_xtal_startup:
+0x3cd2 006401 set0 mark_ext_patch ,mark 
+0x3cd3 006402 bpatch patch16_0 ,mem_patch16 
+0x3cd4 006403 fetch 1 ,mem_lpm_xtalcnt 
+0x3cd5 006404 nrtn blank 
+0x3cd6 006405 hjam clksel_rc ,core_clksel 
+0x3cd7 006406 setarg 0xf0c 
+0x3cd8 006407 call lpm_write_config 
+0x3cd9 006408 setarg 200000 
+0x3cda 006409 call sleep 
+0x3cdb 006410 until null ,lpo_edge 
+0x3cdc 006411 copy lpo_time ,alarm 
+0x3cdd 006412 call xtal_fast_wake 
+0x3cde 006413 hjam clksel_xtal ,core_clksel 
+0x3cdf 006414 nop 10 
+0x3ce0 006415 until null ,lpo_edge 
+0x3ce1 006416 deposit lpo_time 
+0x3ce2 006417 isub alarm ,pdata 
+0x3ce3 006418 increase 0x30 ,pdata 
+0x3ce4 006419 arg 0xff ,temp 
+0x3ce5 006420 call ceiling 
+0x3ce6 006421 store 1 ,mem_lpm_xtalcnt 
+0x3ce7 006422 nop 30000 
+0x3ce8 006423 nop 30000 
+0x3ce9 006424 nop 30000 
+0x3cea 006425 rtn 
+:      006430 lpm_write_config:
+0x3ceb 006431 arg 0xfff ,contw 
+0x3cec 006432 iand contw ,contw 
+0x3ced 006433 fetch 1 ,mem_lpm_config 
+0x3cee 006434 and_into 0xf0 ,pdata 
+0x3cef 006435 lshift8 pdata ,pdata 
+0x3cf0 006436 ior contw ,pdata 
+0x3cf1 006437 hstore 2 ,core_lpm_reg 
+0x3cf2 006438 ifetch 2 ,contr 
+0x3cf3 006439 istore 2 ,contw 
+:      006441 lpm_write_ctrl:
+0x3cf4 006442 setarg lpmreg_sel_ctrl 
+0x3cf5 006443 branch lpm_write 
+:      006445 lpm_write_ctrl2:
+0x3cf6 006446 setarg lpmreg_sel_ctrl2 
+:      006447 lpm_write:
+0x3cf7 006448 until null ,lpo_edge 
+0x3cf8 006449 hstore 1 ,core_lpm_wr 
+0x3cf9 006450 until null ,lpo_edge 
+0x3cfa 006451 until null ,lpo_edge 
+0x3cfb 006452 rtn 
+:      006455 lpm_write_gpio_wakeup:
+0x3cfc 006456 set0 mark_ext_patch ,mark 
+0x3cfd 006457 bpatch patch16_1 ,mem_patch16 
+0x3cfe 006458 fetch 4 ,mem_gpio_wakeup_low 
+0x3cff 006459 hstore 4 ,core_lpm_reg 
+0x3d00 006460 setarg lpmreg_sel_gpiolow 
+0x3d01 006461 call lpm_write 
+0x3d02 006462 fetch 4 ,mem_gpio_wakeup_high 
+0x3d03 006463 hstore 4 ,core_lpm_reg 
+0x3d04 006464 setarg lpmreg_sel_gpiohigh 
+0x3d05 006465 branch lpm_write 
+:      006467 lpm_get_wake_lock:
+0x3d06 006468 fetch 2 ,mem_lpm_wake_lock 
+0x3d07 006469 qset1 pdata 
+0x3d08 006470 store 2 ,mem_lpm_wake_lock 
+0x3d09 006471 rtn 
+:      006473 lpm_put_wake_lock:
+0x3d0a 006474 fetch 2 ,mem_lpm_wake_lock 
+0x3d0b 006475 qset0 pdata 
+0x3d0c 006476 store 2 ,mem_lpm_wake_lock 
+0x3d0d 006477 rtn 
+:      006481 lpm_check_wake_lock:
+0x3d0e 006482 set0 mark_ext_patch ,mark 
+0x3d0f 006483 bpatch patch16_2 ,mem_patch16 
+0x3d10 006484 call app_check_wake_lock 
+0x3d11 006485 fetch 2 ,mem_lpm_wake_lock 
+0x3d12 006486 copy pdata ,rega 
+0x3d13 006487 fetch 1 ,mem_state_map 
+0x3d14 006488 isolate1 smap_rxlmp ,pdata 
+0x3d15 006489 setflag true ,wake_lock_lmp_rx ,rega 
+0x3d16 006490 fetch 1 ,mem_lmo_opcode1 
+0x3d17 006491 fetcht 1 ,mem_lmo_opcode2 
+0x3d18 006492 iadd temp ,pdata 
+0x3d19 006493 fetcht 1 ,mem_lmp_to_send 
+0x3d1a 006494 iadd temp ,pdata 
+0x3d1b 006495 nsetflag blank ,wake_lock_lmp_tx ,rega 
+0x3d1c 006496 set0 mark_ext_patch ,mark 
+0x3d1d 006497 bpatch patch16_3 ,mem_patch16 
+0x3d1e 006498 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x3d1f 006499 fetcht 2 ,mem_l2cap_rxbuff2_len 
+0x3d20 006500 iadd temp ,pdata 
+0x3d21 006501 nsetflag blank ,wake_lock_l2cap_rx ,rega 
+0x3d22 006502 fetch 5 ,mem_ipc_fifo_bt2c51 
+0x3d23 006503 nsetflag blank ,wake_lock_ipc_bt2c51 ,rega 
+0x3d24 006504 fetch 5 ,mem_ipc_fifo_c512bt 
+0x3d25 006505 nsetflag blank ,wake_lock_ipc_c512bt ,rega 
+0x3d26 006506 fetch 1 ,mem_hci_cmd 
+0x3d27 006507 nsetflag blank ,wake_lock_cmd ,rega 
+0x3d28 006508 fetch 1 ,mem_device_option 
+0x3d29 006509 compare dvc_op_module ,pdata ,0xff 
+0x3d2a 006510 call lpm_uart_wake_lock ,true 
+0x3d2b 006511 branch lpm_check_wake_lock_nothci 
+:      006513 lpm_uart_wake_lock:
+0x3d2c 006514 hfetch 2 ,core_uart_rxitems 
+0x3d2d 006515 nsetflag blank ,wake_lock_uart_rx ,rega 
+0x3d2e 006516 hfetch 2 ,core_uart_txitems 
+0x3d2f 006517 nsetflag blank ,wake_lock_uart_tx ,rega 
+0x3d30 006518 rtn 
+:      006520 lpm_check_wake_lock_nothci:
+0x3d31 006521 setarg -8 
+0x3d32 006522 iand rega ,rega 
+:      006523 lpm_check_wake_lock_end:
+0x3d33 006524 copy rega ,pdata 
+0x3d34 006525 store 2 ,mem_lpm_wake_lock 
+0x3d35 006526 rtn blank 
+0x3d36 006527 rtn match 
+0x3d37 006528 enable wake 
+0x3d38 006529 rtn 
+:      006531 lpm_shut_down:
+0x3d39 006532 hfetch 4 ,core_lpm_ctrl 
+0x3d3a 006533 set0 27 ,pdata 
+0x3d3b 006534 hstore 4 ,core_lpm_reg 
+0x3d3c 006535 call lpm_write_ctrl 
+0x3d3d 006536 branch assert 
+:      006538 lpm_disable_exen_output:
+0x3d3e 006539 hfetch 4 ,core_lpm_xtalcnt 
+0x3d3f 006540 set0 20 ,pdata 
+0x3d40 006541 hstore 4 ,core_lpm_reg 
+0x3d41 006542 branch lpm_write_ctrl2 
+:      006544 check_bt_disabled:
+0x3d42 006545 fetch 2 ,mem_chip_functions 
+0x3d43 006546 bbit1 bt_disabled ,assert 
+0x3d44 006547 rtn 
+:      006548 check_ble_disabled:
+0x3d45 006549 fetch 2 ,mem_chip_functions 
+0x3d46 006550 bbit1 ble_disabled ,assert 
+0x3d47 006551 rtn 
+:      006552 check_module_disabled:
+0x3d48 006553 fetch 2 ,mem_chip_functions 
+0x3d49 006554 bbit1 module_disable ,assert 
+0x3d4a 006555 rtn 
+:      006560 app_init:
+0x3d4b 006561 set0 mark_ext_patch ,mark 
+0x3d4c 006562 bpatch patch16_4 ,mem_patch16 
+0x3d4d 006563 fetch 1 ,mem_device_option 
+0x3d4e 006564 branch app_init ,blank 
+0x3d4f 006568 beq dvc_op_kb ,kb_init 
+0x3d50 006569 beq dvc_op_shutter ,shutter_init 
+0x3d51 006570 beq dvc_op_module ,module_init 
+0x3d52 006572 bbit1 dvc_op_mouse ,mouse_init 
+0x3d53 006573 bbit1 dvc_op_keyboard ,kb_init 
+0x3d54 006574 rtn 
+:      006576 app_lpm_init:
+0x3d55 006577 set0 mark_ext_patch ,mark 
+0x3d56 006578 bpatch patch16_5 ,mem_patch16 
+0x3d57 006579 jam 0 ,mem_tester_emulate 
+0x3d58 006580 jam 0 ,mem_debug_config 
+0x3d59 006581 jam 0 ,mem_lch_code 
+0x3d5a 006582 setarg 0 
+0x3d5b 006583 store 5 ,mem_sp_state_start 
+0x3d5c 006584 fetch 1 ,mem_device_option 
+0x3d5d 006585 branch app_lpm_init ,blank 
+0x3d5e 006586 beq dvc_op_module ,module_lpm_init 
+:      006587 app_lpm_init0:
+0x3d5f 006588 rtn 
+:      006591 app_process_idle:
+0x3d60 006592 call ui_dispatch 
+0x3d61 006593 call check_51cmd 
+0x3d62 006594 call app_process_bb_event 
+0x3d63 006595 fetch 2 ,mem_cb_idle_process 
+0x3d64 006596 branch callback_func 
+:      006598 app_process_bt:
+0x3d65 006599 fetch 2 ,mem_cb_bt_process 
+0x3d66 006600 branch callback_func 
+:      006602 app_process_ble:
+0x3d67 006603 fetch 2 ,mem_cb_le_process 
+0x3d68 006604 branch callback_func 
+:      006606 app_process_bb_event:
+0x3d69 006607 set0 mark_ext_patch ,mark 
+0x3d6a 006608 bpatch patch16_6 ,mem_patch16 
+0x3d6b 006610 arg mem_ipc_fifo_bt2c51 ,rega 
+0x3d6c 006611 call fifo_out 
+0x3d6d 006612 rtn blank 
+0x3d6e 006614 copy pdata ,regc 
+0x3d6f 006615 call app_event_normal_process 
+0x3d70 006616 branch app_process_bb_event_priority 
+:      006618 app_discard_event:
+0x3d71 006619 arg 0 ,regc 
+0x3d72 006620 rtn 
+:      006625 app_event_normal_process:
+0x3d73 006626 beq bt_evt_bb_connected ,app_evt_bt_conn 
+0x3d74 006627 beq bt_evt_button_long_pressed ,app_evt_button_long_pressed 
+0x3d75 006628 beq bt_evt_setup_complete ,app_evt_setup_complete 
+0x3d76 006629 beq bt_evt_hid_handshake ,app_evt_hid_handshake 
+0x3d77 006630 beq bt_evt_hid_connected ,app_bb_event_hid_connected 
+0x3d78 006631 beq bt_evt_reconn_failed ,app_bb_event_reconn_failed 
+0x3d79 006632 beq bt_evt_bb_disconnected ,app_bb_event_bb_disconn 
+0x3d7a 006633 beq bt_evt_reconn_page_timeout ,app_bb_event_reconn_failed 
+0x3d7b 006634 beq bt_evt_le_connected ,app_le_event_bb_connected 
+0x3d7c 006635 beq bt_evt_le_disconnected ,app_le_event_bb_disconn 
+0x3d7d 006636 beq bt_evt_reconn_started ,app_event_reconn_start 
+0x3d7e 006637 beq bt_evt_enter_sniff ,app_event_enter_sniff 
+0x3d7f 006638 beq bt_evt_exit_sniff ,app_event_exit_sniff 
+0x3d80 006640 beq bt_evt_ml2cap_conn_refused ,app_event_ml2cap_conn_refused 
+0x3d81 006641 beq bt_evt_linkkey_generate ,app_event_linkkey_generate 
+0x3d82 006642 beq bt_evt_switch_fail_master ,app_event_switch_fail_master 
+0x3d83 006643 beq bt_evt_switch_success_master ,app_event_switch_success 
+0x3d84 006645 and pdata ,0x0f ,temp 
+0x3d85 006646 and_into bt_evt_timer_mask ,pdata 
+0x3d86 006647 beq bt_evt_timer_init ,app_evt_timer 
+0x3d87 006648 rtn 
+:      006650 app_evt_bt_conn:
+0x3d88 006651 fetch 2 ,mem_ui_state_map 
+0x3d89 006652 set1 ui_state_bt_connected ,pdata 
+0x3d8a 006653 store 2 ,mem_ui_state_map 
+0x3d8b 006654 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3d8c 006655 set0 app_disc_by_button ,pdata 
+0x3d8d 006656 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3d8e 006657 rtn 
+:      006659 app_event_switch_success:
+0x3d8f 006660 jam 0 ,mem_switch_fail_master_count 
+0x3d90 006661 rtn 
+:      006663 app_event_switch_fail_master:
+0x3d91 006664 fetch 1 ,mem_switch_fail_master_count 
+0x3d92 006665 increase 1 ,pdata 
+0x3d93 006666 store 1 ,mem_switch_fail_master_count 
+0x3d94 006667 sub pdata ,1 ,null 
+0x3d95 006668 branch app_bt_role_switch ,positive 
+0x3d96 006669 jam 0 ,mem_switch_fail_master_count 
+0x3d97 006670 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3d98 006671 set1 app_disc_switch_fail ,pdata 
+0x3d99 006672 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3d9a 006673 branch app_bt_disconnect 
+:      006675 app_process_bb_event_priority:
+0x3d9b 006676 fetch 2 ,mem_cb_bb_event_process 
+0x3d9c 006677 branch callback_func 
+:      006679 app_check_wake_lock:
+0x3d9d 006680 fetch 2 ,mem_cb_check_wakelock 
+0x3d9e 006681 branch callback_func 
+:      006683 app_will_enter_lpm:
+0x3d9f 006684 fetch 2 ,mem_cb_before_lpm 
+0x3da0 006685 branch callback_func 
+:      006687 app_event_linkkey_generate:
+0x3da1 006688 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3da2 006689 set1 app_disc_after_pairing ,pdata 
+0x3da3 006690 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3da4 006691 branch app_bt_store_reconn_info 
+:      006693 app_event_reconn_start:
+0x3da5 006694 fetch 2 ,mem_ui_state_map 
+0x3da6 006695 set1 ui_state_bt_reconnect ,pdata 
+0x3da7 006696 store 2 ,mem_ui_state_map 
+0x3da8 006697 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3da9 006698 set1 app_disc_after_reconn ,pdata 
+0x3daa 006699 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dab 006700 rtn 
+:      006702 app_evt_setup_complete:
+0x3dac 006703 fetch 2 ,mem_ui_state_map 
+0x3dad 006704 set1 ui_state_bt_setup_complete ,pdata 
+0x3dae 006705 store 2 ,mem_ui_state_map 
+0x3daf 006706 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3db0 006707 set1 app_disc_after_setup_done ,pdata 
+0x3db1 006708 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3db2 006709 rtn 
+:      006711 app_evt_hid_handshake:
+0x3db3 006712 fetch 2 ,mem_ui_state_map 
+0x3db4 006713 set1 ui_state_bt_hid_handshake ,pdata 
+0x3db5 006714 store 2 ,mem_ui_state_map 
+0x3db6 006715 rtn 
+:      006717 app_event_enter_sniff:
+0x3db7 006718 fetch 2 ,mem_ui_state_map 
+0x3db8 006719 set1 ui_state_bt_sniff ,pdata 
+0x3db9 006720 store 2 ,mem_ui_state_map 
+0x3dba 006721 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dbb 006722 set1 app_disc_after_sniff ,pdata 
+0x3dbc 006723 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dbd 006724 rtn 
+:      006726 app_event_exit_sniff:
+0x3dbe 006727 fetch 2 ,mem_ui_state_map 
+0x3dbf 006728 set0 ui_state_bt_sniff ,pdata 
+0x3dc0 006729 store 2 ,mem_ui_state_map 
+0x3dc1 006730 rtn 
+:      006732 app_le_event_bb_connected:
+0x3dc2 006733 fetch 2 ,mem_ui_state_map 
+0x3dc3 006734 set1 ui_state_ble_connected ,pdata 
+0x3dc4 006735 store 2 ,mem_ui_state_map 
+0x3dc5 006736 rtn 
+:      006738 app_le_event_bb_disconn:
+0x3dc6 006739 fetch 2 ,mem_ui_state_map 
+0x3dc7 006740 set0 ui_state_ble_connected ,pdata 
+0x3dc8 006741 store 2 ,mem_ui_state_map 
+0x3dc9 006742 jam 0 ,mem_le_switch_send_data 
+0x3dca 006743 branch app_lpm_mult_disable 
+:      006745 app_bb_event_hid_connected:
+0x3dcb 006746 fetch 2 ,mem_ui_state_map 
+0x3dcc 006747 set1 ui_state_bt_hid_conn ,pdata 
+0x3dcd 006748 store 2 ,mem_ui_state_map 
+0x3dce 006749 rtn 
+:      006751 app_evt_button_long_pressed:
+0x3dcf 006752 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dd0 006753 set1 app_disc_by_button ,pdata 
+0x3dd1 006754 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dd2 006755 rtn 
+:      006757 app_event_ml2cap_conn_refused:
+0x3dd3 006758 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dd4 006759 set1 app_disc_l2cap_refused ,pdata 
+0x3dd5 006760 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dd6 006761 branch app_bt_disconnect 
+:      006764 app_evt_timer:
+0x3dd7 006765 set0 mark_ext_patch ,mark 
+0x3dd8 006766 bpatch patch16_7 ,mem_patch16 
+0x3dd9 006767 storet 1 ,mem_app_evt_timer_count 
+:      006768 app_evt_100ms_loop:
+0x3dda 006769 fetch 1 ,mem_app_evt_timer_count 
+0x3ddb 006770 rtn blank 
+0x3ddc 006771 increase -1 ,pdata 
+0x3ddd 006772 store 1 ,mem_app_evt_timer_count 
+0x3dde 006773 call ui_button_polling 
+0x3ddf 006774 call app_lpm_wake_auto_lock_timer 
+0x3de0 006775 call app_unsniff_delay_timer 
+0x3de1 006776 call app_discovery_timer 
+0x3de2 006777 fetch 2 ,mem_cb_event_timer 
+0x3de3 006778 call callback_func 
+0x3de4 006779 branch app_evt_100ms_loop 
+:      006781 app_unsniff_delay_timer:
+0x3de5 006782 fetch 1 ,mem_unsniff2sniff_timer_count 
+0x3de6 006783 rtn blank 
+0x3de7 006784 increase -1 ,pdata 
+0x3de8 006785 store 1 ,mem_unsniff2sniff_timer_count 
+0x3de9 006786 nrtn blank 
+0x3dea 006787 call context_check_idle 
+0x3deb 006788 branch app_bt_enter_sniff ,zero 
+0x3dec 006789 rtn 
+:      006790 app_discovery_timer:
+0x3ded 006791 fetch 2 ,mem_discovery_timeout_timer_count 
+0x3dee 006792 rtn blank 
+0x3def 006793 increase -1 ,pdata 
+0x3df0 006794 store 2 ,mem_discovery_timeout_timer_count 
+0x3df1 006795 nrtn blank 
+0x3df2 006796 call app_bt_stop_discovery 
+0x3df3 006797 call app_led_off 
+0x3df4 006798 fetch 2 ,mem_cb_discovry_timeout 
+0x3df5 006799 branch callback_func 
+:      006801 app_bb_event_reconn_failed:
+0x3df6 006802 call app_disconn_reason_flag_clear 
+:      006803 app_clear_reconnect_flag:
+0x3df7 006804 fetch 2 ,mem_ui_state_map 
+0x3df8 006805 set0 ui_state_bt_reconnect ,pdata 
+0x3df9 006806 store 2 ,mem_ui_state_map 
+0x3dfa 006807 rtn 
+:      006809 app_bb_event_bb_disconn:
+0x3dfb 006810 jam 0 ,mem_unsniff2sniff_timer_count 
+0x3dfc 006811 fetch 2 ,mem_ui_state_map 
+0x3dfd 006812 bbit1 ui_state_bt_reconnect ,app_bb_event_bb_reconn_disconn 
+0x3dfe 006813 isolate0 ui_state_bt_setup_complete ,pdata 
+0x3dff 006814 call app_discard_event ,true 
+:      006815 app_bb_event_bb_reconn_disconn:
+0x3e00 006816 set0 mark_ext_patch ,mark 
+0x3e01 006817 bpatch patch17_0 ,mem_patch17 
+0x3e02 006818 fetch 2 ,mem_ui_state_map 
+0x3e03 006819 set0 ui_state_bt_connected ,pdata 
+0x3e04 006820 set0 ui_state_bt_setup_complete ,pdata 
+0x3e05 006821 set0 ui_state_bt_hid_conn ,pdata 
+0x3e06 006822 set0 ui_state_bt_hid_handshake ,pdata 
+0x3e07 006823 set0 ui_state_bt_reconnect ,pdata 
+0x3e08 006824 store 2 ,mem_ui_state_map 
+0x3e09 006825 branch app_lpm_mult_disable 
+:      006827 app_bb_hibernate:
+0x3e0a 006828 call app_disconn_reason_clear 
+0x3e0b 006829 branch app_enter_hibernate 
+:      006832 app_disconn_reason_clear:
+0x3e0c 006833 setarg 0 
+0x3e0d 006834 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3e0e 006835 rtn 
+:      006836 app_disconn_reason_flag_clear:
+0x3e0f 006837 setarg 0 
+0x3e10 006838 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e11 006839 rtn 
+:      006842 app_disconn_reason_collect_bt:
+0x3e12 006843 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e13 006844 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3e14 006845 setarg 0 
+0x3e15 006846 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e16 006847 rtn 
+:      006849 app_disconn_reason_collect_ble:
+0x3e17 006850 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e18 006851 set1 app_disc_ble ,pdata 
+0x3e19 006852 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3e1a 006853 setarg 0 
+0x3e1b 006854 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e1c 006855 rtn 
+:      006863 app_check_sniff:
+0x3e1d 006864 fetch 1 ,mem_ui_state_map 
+0x3e1e 006865 isolate1 ui_state_bt_sniff ,pdata 
+0x3e1f 006866 rtn 
+:      006874 app_initflag_store:
+0x3e20 006875 setarg eeprom_init_flag 
+:      006876 app_flag_store:
+0x3e21 006877 store 2 ,mem_timeup 
+0x3e22 006878 set0 mark_ext_patch ,mark 
+0x3e23 006879 bpatch patch17_1 ,mem_patch17 
+0x3e24 006880 arg 2 ,temp 
+0x3e25 006881 arg mem_timeup ,rega 
+0x3e26 006882 arg eeprom_module_init_flag ,regb 
+0x3e27 006883 branch iicd_write_eep_data 
+:      006886 app_initflag_check:
+0x3e28 006887 set0 mark_ext_patch ,mark 
+0x3e29 006888 bpatch patch17_2 ,mem_patch17 
+0x3e2a 006889 arg 2 ,temp 
+0x3e2b 006890 arg mem_pdatatemp ,rega 
+0x3e2c 006891 arg eeprom_module_init_flag ,regb 
+0x3e2d 006892 call iicd_read_eep_data 
+0x3e2e 006893 fetch 2 ,mem_pdatatemp 
+0x3e2f 006894 arg eeprom_init_flag ,temp 
+0x3e30 006895 isub temp ,null 
+0x3e31 006896 rtn 
+:      006899 app_start_auto_sniff:
+0x3e32 006900 fetch 1 ,mem_unsniff2sniff_timer 
+0x3e33 006901 store 1 ,mem_unsniff2sniff_timer_count 
+0x3e34 006902 rtn 
+:      006904 app_get_lpm_wake_lock:
+0x3e35 006905 arg wake_lock_app ,queue 
+0x3e36 006906 branch lpm_get_wake_lock 
+:      006908 app_put_lpm_wake_lock:
+0x3e37 006909 arg wake_lock_app ,queue 
+0x3e38 006910 branch lpm_put_wake_lock 
+:      006912 app_lpm_wake_auto_lock:
+0x3e39 006913 jam lpm_wake_up_delay_timer ,mem_wake_up_delay_timer 
+0x3e3a 006914 branch app_get_lpm_wake_lock 
+:      006915 app_lpm_wake_auto_lock_timer:
+0x3e3b 006916 fetch 1 ,mem_wake_up_delay_timer 
+0x3e3c 006917 rtn blank 
+0x3e3d 006918 increase -1 ,pdata 
+0x3e3e 006919 store 1 ,mem_wake_up_delay_timer 
+0x3e3f 006920 nrtn blank 
+0x3e40 006921 branch app_put_lpm_wake_lock 
+:      006923 app_l2cap_flow_control_enable:
+0x3e41 006924 jam l2cap_flow_ctrl_enable ,mem_l2cap_flow_ctrl_flag 
+0x3e42 006925 rtn 
+:      006927 app_l2cap_flow_control_disable:
+0x3e43 006928 jam l2cap_flow_ctrl_disable ,mem_l2cap_flow_ctrl_flag 
+0x3e44 006929 rtn 
+:      006931 app_bt_set_pincode:
+0x3e45 006932 jam bt_cmd_set_pin_code ,mem_fifo_temp 
+0x3e46 006933 branch ui_ipc_send_cmd 
+:      006935 app_bt_role_switch:
+0x3e47 006936 jam bt_cmd_role_switch ,mem_fifo_temp 
+0x3e48 006937 branch ui_ipc_send_cmd 
+:      006939 app_bt_start_reconnect:
+0x3e49 006940 set0 mark_ext_patch ,mark 
+0x3e4a 006941 bpatch patch17_3 ,mem_patch17 
+0x3e4b 006942 fetch 1 ,mem_app_connection_options 
+0x3e4c 006943 store 1 ,mem_connection_options 
+0x3e4d 006944 jam app_flag_reconnect ,mem_reconnect_flag 
+0x3e4e 006945 jam bt_cmd_reconnect ,mem_fifo_temp 
+0x3e4f 006946 branch ui_ipc_send_cmd 
+:      006948 app_bt_reconnect_cancel:
+0x3e50 006949 jam bt_cmd_bb_reconn_cancel ,mem_fifo_temp 
+0x3e51 006950 branch ui_ipc_send_cmd 
+:      006952 app_bt_disconnect:
+0x3e52 006953 jam bt_cmd_disconnect ,mem_fifo_temp 
+0x3e53 006954 branch ui_ipc_send_cmd 
+:      006956 app_bt_start_discovery_short:
+0x3e54 006957 fetch 2 ,mem_discovery_timeout 
+0x3e55 006958 store 2 ,mem_discovery_timeout_timer_count 
+:      006959 app_bt_start_discovery_led_blink:
+0x3e56 006960 call app_led_start_blink 
+:      006961 app_bt_start_discovery:
+0x3e57 006962 jam bt_cmd_start_discovery ,mem_fifo_temp 
+0x3e58 006963 branch ui_ipc_send_cmd 
+:      006965 app_bt_stop_discovery:
+0x3e59 006966 setarg 0 
+0x3e5a 006967 store 2 ,mem_discovery_timeout_timer_count 
+0x3e5b 006968 jam bt_cmd_stop_discovery ,mem_fifo_temp 
+0x3e5c 006969 branch ui_ipc_send_cmd 
+:      006971 app_ble_start_direct_adv:
+0x3e5d 006972 jam bt_cmd_start_direct_adv ,mem_fifo_temp 
+0x3e5e 006973 branch ui_ipc_send_cmd 
+:      006975 app_ble_stop_direct_adv:
+0x3e5f 006976 jam bt_cmd_stop_direct_adv ,mem_fifo_temp 
+0x3e60 006977 branch ui_ipc_send_cmd 
+:      006979 app_ble_stop_adv:
+0x3e61 006980 jam bt_cmd_stop_adv ,mem_fifo_temp 
+0x3e62 006981 branch ui_ipc_send_cmd 
+:      006983 app_ble_start_adv:
+0x3e63 006984 jam bt_cmd_start_adv ,mem_fifo_temp 
+0x3e64 006985 branch ui_ipc_send_cmd 
+:      006987 app_ble_start_scan:
+0x3e65 006988 jam bt_cmd_le_start_scan ,mem_fifo_temp 
+0x3e66 006989 branch ui_ipc_send_cmd 
+:      006991 app_ble_stop_scan:
+0x3e67 006992 jam bt_cmd_le_stop_scan ,mem_fifo_temp 
+0x3e68 006993 branch ui_ipc_send_cmd 
+:      006995 app_ble_start_conn:
+0x3e69 006996 jam bt_cmd_le_start_conn ,mem_fifo_temp 
+0x3e6a 006997 branch ui_ipc_send_cmd 
+:      006999 app_ble_disconnect:
+0x3e6b 007000 jam bt_cmd_le_disconnect ,mem_fifo_temp 
+0x3e6c 007001 branch ui_ipc_send_cmd 
+:      007003 app_ble_start_write:
+0x3e6d 007004 jam bt_cmd_le_start_write ,mem_fifo_temp 
+0x3e6e 007005 branch ui_ipc_send_cmd 
+:      007007 app_led_start_blink:
+0x3e6f 007008 jam bt_cmd_led_blink ,mem_fifo_temp 
+0x3e70 007009 branch ui_ipc_send_cmd 
+:      007011 app_led_on:
+0x3e71 007012 jam bt_cmd_led_on ,mem_fifo_temp 
+0x3e72 007013 branch ui_ipc_send_cmd 
+:      007015 app_led_stop_blink:
+:      007016 app_led_off:
+0x3e73 007017 jam bt_cmd_led_off ,mem_fifo_temp 
+0x3e74 007018 branch ui_ipc_send_cmd 
+:      007020 app_enter_hibernate:
+0x3e75 007021 jam bt_cmd_enter_hibernate ,mem_fifo_temp 
+0x3e76 007022 branch ui_ipc_send_cmd 
+:      007024 app_bt_sniff_exit:
+0x3e77 007025 jam bt_cmd_exit_sniff ,mem_fifo_temp 
+0x3e78 007026 branch ui_ipc_send_cmd 
+:      007028 app_bt_enter_sniff:
+0x3e79 007029 jam bt_cmd_enter_sniff ,mem_fifo_temp 
+0x3e7a 007030 branch ui_ipc_send_cmd 
+:      007032 app_ble_store_reconn_info:
+0x3e7b 007033 jam bt_cmd_store_reconn_info_le ,mem_fifo_temp 
+0x3e7c 007034 branch ui_ipc_send_cmd 
+:      007036 app_bt_store_reconn_info:
+0x3e7d 007037 jam bt_cmd_store_reconn_info_bt ,mem_fifo_temp 
+0x3e7e 007038 branch ui_ipc_send_cmd 
+:      007040 app_lpm_mult_enable:
+0x3e7f 007041 set1 mark_lpm_mult_enable ,mark 
+0x3e80 007042 rtn 
+:      007044 app_lpm_mult_disable:
+0x3e81 007045 set0 mark_lpm_mult_enable ,mark 
+0x3e82 007046 rtn 
+:      007051 hci_rx_h4:
+0x3e83 007052 set0 mark_ext_patch ,mark 
+0x3e84 007053 bpatch patch17_4 ,mem_patch17 
+0x3e85 007054 fetch 1 ,mem_hci_cmd 
+0x3e86 007055 nrtn blank 
+:      007056 hci_rx_h4_1:
+0x3e87 007057 call hci_h4_parse_packet 
+0x3e88 007058 ncall h4_rx_discard_packet ,user 
+0x3e89 007059 rtn 
+:      007061 hci_h4_parse_packet:
+0x3e8a 007062 set0 mark_ext_patch ,mark 
+0x3e8b 007063 bpatch patch17_5 ,mem_patch17 
+0x3e8c 007064 copy contru ,rega 
+0x3e8d 007065 arg 4 ,temp 
+0x3e8e 007066 ifetch 1 ,contru 
+0x3e8f 007067 beq hci_h4_type_cmd ,hci_h4_parse_packet_wait_len 
+0x3e90 007068 increase 1 ,temp 
+0x3e91 007069 beq hci_h4_type_acl ,hci_h4_parse_packet_wait_len 
+0x3e92 007070 copy contru ,pdata 
+0x3e93 007071 hstore 2 ,core_uart_rrptr 
+0x3e94 007072 rtn 
+:      007073 hci_h4_parse_packet_wait_len:
+0x3e95 007074 hfetch 2 ,core_uart_rxitems 
+0x3e96 007075 isub temp ,null 
+0x3e97 007076 nbranch hci_h4_parse_packet_wait_len ,positive 
+0x3e98 007078 disable user 
+0x3e99 007079 copy rega ,contru 
+0x3e9a 007080 call h4_get_rx_payload_len 
+0x3e9b 007081 iadd temp ,temp 
+:      007082 hci_h4_parse_packet_wait:
+0x3e9c 007083 hfetch 2 ,core_uart_rxitems 
+0x3e9d 007084 isub temp ,null 
+0x3e9e 007085 nbranch hci_h4_parse_packet_wait ,positive 
+0x3e9f 007086 copy rega ,contru 
+0x3ea0 007087 ifetch 1 ,contru 
+0x3ea1 007088 beq hci_h4_type_cmd ,process_hci_cmd 
+0x3ea2 007089 branch assert 
+:      007091 h4_rx_discard_packet:
+0x3ea3 007092 set0 mark_ext_patch ,mark 
+0x3ea4 007093 bpatch patch17_6 ,mem_patch17 
+0x3ea5 007094 hfetch 2 ,core_uart_rrptr 
+0x3ea6 007095 iforce contru 
+0x3ea7 007096 call h4_get_rx_payload_len 
+0x3ea8 007097 iadd contru ,contru 
+0x3ea9 007098 deposit contru 
+0x3eaa 007099 hstore 2 ,core_uart_rrptr 
+0x3eab 007100 rtn 
+:      007105 h4_get_rx_payload_len:
+0x3eac 007106 ifetch 1 ,contru 
+0x3ead 007107 increase 2 ,contru 
+0x3eae 007108 beq hci_h4_type_acl ,h4_get_rx_payload_len_acl 
+0x3eaf 007109 ifetch 1 ,contru 
+0x3eb0 007110 rtn 
+:      007111 h4_get_rx_payload_len_acl:
+0x3eb1 007112 ifetch 2 ,contru 
+0x3eb2 007113 rtn 
+:      007115 h4_get_tx_ptr:
+0x3eb3 007116 hfetch 2 ,core_uart_twptr 
+0x3eb4 007117 increase -5 ,contwu 
+0x3eb5 007118 iadd contwu ,contwu 
+0x3eb6 007119 rtn 
+:      007121 h4_send_packet_event:
+0x3eb7 007122 arg hci_h4_type_event ,temp 
+0x3eb8 007123 branch h4_send_packet 
+:      007124 h4_send_packet_acl:
+0x3eb9 007125 arg hci_h4_type_acl ,temp 
+:      007126 h4_send_packet:
+0x3eba 007127 set0 mark_ext_patch ,mark 
+0x3ebb 007128 bpatch patch17_7 ,mem_patch17 
+0x3ebc 007129 increase 1 ,loopcnt 
+0x3ebd 007130 hfetch 2 ,core_uart_twptr 
+0x3ebe 007131 copy pdata ,contwu 
+0x3ebf 007132 copy loopcnt ,pdata 
+0x3ec0 007133 istoret 1 ,contwu 
+0x3ec1 007134 increase -1 ,pdata 
+0x3ec2 007135 iadd contwu ,contwu 
+0x3ec3 007136 copy contwu ,pdata 
+0x3ec4 007137 store 2 ,mem_hci_acl_tx_trigger_wptr 
+0x3ec5 007138 copy temp ,pdata 
+0x3ec6 007139 rtneq hci_h4_type_acl 
+0x3ec7 007140 fetch 2 ,mem_hci_acl_tx_trigger_wptr 
+0x3ec8 007141 hstore 2 ,core_uart_twptr 
+0x3ec9 007142 branch h4_send_acl_trigger_clear 
+:      007145 h4_send_acl_trigger_clear:
+0x3eca 007146 setarg 0 
+0x3ecb 007147 store 2 ,mem_hci_acl_tx_trigger_wptr 
+0x3ecc 007148 rtn 
+:      007155 hci_init:
+0x3ecd 007156 set0 mark_ext_patch ,mark 
+0x3ece 007157 bpatch patch18_0 ,mem_patch18 
+0x3ecf 007158 rtn wake 
+0x3ed0 007159 setarg hci_idle_dispatch 
+0x3ed1 007160 store 2 ,mem_cb_idle_process 
+0x3ed2 007162 setarg uart_baud_115200 
+0x3ed3 007163 store uart_baud_len ,mem_baud 
+:      007164 hci_lpm_init:
+0x3ed4 007165 set0 mark_ext_patch ,mark 
+0x3ed5 007166 bpatch patch18_1 ,mem_patch18 
+0x3ed6 007167 setarg mem_h5rx_buf 
+0x3ed7 007168 hstore 2 ,core_uart_rsaddr 
+0x3ed8 007169 setarg mem_h5rx_buf_end 
+0x3ed9 007170 hstore 2 ,core_uart_readdr 
+0x3eda 007171 setarg mem_h5tx_buf 
+0x3edb 007172 hstore 2 ,core_uart_tsaddr 
+0x3edc 007173 call hci_sel_init 
+:      007174 hci_reinit:
+0x3edd 007175 hjam 0x0 ,core_uart_ctrl 
+0x3ede 007176 setarg mem_h5tx_buf 
+0x3edf 007177 hstore 2 ,core_uart_twptr 
+0x3ee0 007178 hstore 2 ,core_uart_trptrp 
+0x3ee1 007179 setarg mem_h5rx_buf 
+0x3ee2 007180 hstore 2 ,core_uart_rrptr 
+0x3ee3 007181 store 2 ,mem_h5rx_rptr 
+:      007182 hci_init_common:
+0x3ee4 007183 set0 mark_ext_patch ,mark 
+0x3ee5 007184 bpatch patch18_2 ,mem_patch18 
+0x3ee6 007185 hfetch 2 ,core_clkoff 
+0x3ee7 007186 set0 clock_off_uart ,pdata 
+0x3ee8 007187 hstore 2 ,core_clkoff 
+0x3ee9 007188 call uart_set_baud_by_mem 
+0x3eea 007189 hjam uartclk_dpll ,core_uart_clksel 
+0x3eeb 007190 hjam uart_ctrl_h4 ,core_uart_ctrl 
+0x3eec 007191 rtn 
+:      007193 hci_sel_init:
+0x3eed 007194 setarg mem_h5tx_buf_end 
+0x3eee 007195 hstore 2 ,core_uart_teaddr 
+0x3eef 007196 hfetch 1 ,core_gpio_sel1 
+0x3ef0 007197 or_into 0x07 ,pdata 
+0x3ef1 007198 hstore 1 ,core_gpio_sel1 
+0x3ef2 007199 jam 0xff ,mem_ucode_id_local 
+0x3ef3 007200 rtn 
+:      007203 hci_rx_packet:
+0x3ef4 007204 set0 mark_ext_patch ,mark 
+0x3ef5 007205 bpatch patch18_3 ,mem_patch18 
+0x3ef6 007206 hfetch 1 ,core_uart_status 
+0x3ef7 007207 iforce regb 
+0x3ef8 007208 bbit0 uart_status_rx_fifo_empty ,hci_rx_packet_cont 
+0x3ef9 007209 hfetch 2 ,core_uart_rxitems 
+0x3efa 007210 iforce regc 
+0x3efb 007211 arg 0x44f ,temp 
+0x3efc 007212 isub temp ,null 
+0x3efd 007213 nrtn zero 
+:      007214 hci_rx_packet_cont:
+0x3efe 007215 hfetch 2 ,core_uart_rrptr 
+0x3eff 007216 iforce contru 
+0x3f00 007217 branch hci_rx_h4 
+:      007219 uart_send_byte:
+0x3f01 007220 hfetcht 1 ,core_uart_status 
+0x3f02 007221 isolate1 6 ,temp 
+0x3f03 007222 branch uart_send_byte ,true 
+0x3f04 007223 hstore 1 ,core_uart_txd 
+0x3f05 007224 rtn 
+:      007226 process_hci_cmd:
+0x3f06 007227 set0 mark_ext_patch ,mark 
+0x3f07 007228 bpatch patch18_4 ,mem_patch18 
+0x3f08 007229 fetch 1 ,mem_hci_cmd 
+0x3f09 007230 branch process_hci_cmd_cont ,blank 
+0x3f0a 007231 enable user 
+0x3f0b 007232 rtn 
+:      007233 process_hci_cmd_cont:
+0x3f0c 007234 ifetch 2 ,contru 
+0x3f0d 007235 iforce alarm 
+0x3f0e 007236 iforce queue 
+0x3f0f 007237 ifetch 1 ,contru 
+0x3f10 007238 iforce temp 
+0x3f11 007239 rshift2 alarm ,pdata 
+0x3f12 007240 rshift8 pdata ,pdata 
+0x3f13 007241 beq hci_ogf_vendor_specific ,phci_grp_vendor_specific 
+0x3f14 007242 rtn 
+:      007245 phci_grp_vendor_specific:
+0x3f15 007246 set0 mark_ext_patch ,mark 
+0x3f16 007247 bpatch patch18_5 ,mem_patch18 
+0x3f17 007248 deposit queue 
+0x3f18 007249 beq hci_vendor_cmd_reset ,hci_normal_reply 
+0x3f19 007250 beq hci_vendor_cmd_chipid ,phci_grp_vendor_chipid 
+0x3f1a 007251 beq hci_vendor_cmd_baud ,phci_grp_vendor_baud 
+0x3f1b 007252 beq hci_vendor_cmd_patch ,phci_grp_vendor_patch 
+0x3f1c 007253 beq hci_vendor_cmd_patch_done ,phci_grp_vendor_done 
+0x3f1d 007254 beq hci_vendor_cmd_echo ,hci_normal_reply 
+0x3f1e 007255 beq hci_vendor_cmd_bdaddr ,phci_grp_vendor_bdaddr 
+0x3f1f 007256 beq hci_vendor_cmd_enter_lpm ,phci_grp_vendor_enter_lpm 
+0x3f20 007258 beq hci_vendor_cmd_mem ,phci_grp_vendor_mem 
+0x3f21 007259 beq hci_vendor_cmd_eep ,phci_grp_vendor_eep 
+0x3f22 007260 branch hci_normal_reply 
+:      007262 phci_grp_vendor_enter_lpm:
+0x3f23 007263 call hci_normal_reply 
+0x3f24 007264 call wait_uarttx 
+0x3f25 007265 call gpio_pu_uart_tx 
+:      007266 hci_enter_lpm:
+0x3f26 007267 call app_put_lpm_wake_lock 
+0x3f27 007268 call app_l2cap_flow_control_enable 
+0x3f28 007269 branch gpio_rx_config_input_with_pu 
+:      007271 hci_exit_lpm:
+0x3f29 007272 jam hci_rx_ready ,mem_hci_lt_rx_state 
+0x3f2a 007273 call app_get_lpm_wake_lock 
+0x3f2b 007274 call hci_lpm_init 
+0x3f2c 007275 branch app_l2cap_flow_control_disable 
+:      007277 phci_grp_vendor_chipid:
+0x3f2d 007278 call hci_get_cmd_complete_ptr 
+0x3f2e 007279 hfetch 2 ,core_chipid 
+0x3f2f 007280 istore 2 ,contwu 
+0x3f30 007281 force 6 ,loopcnt 
+0x3f31 007282 branch hci_command_complete 
+:      007284 phci_grp_vendor_baud:
+0x3f32 007285 ifetch 2 ,contru 
+0x3f33 007286 store 2 ,mem_baud 
+0x3f34 007287 hstore 2 ,core_uart_baud 
+0x3f35 007288 rtn 
+:      007290 phci_grp_vendor_patch:
+0x3f36 007292 ifetch 1 ,contru 
+0x3f37 007293 copy pdata ,temp 
+0x3f38 007294 hstore 1 ,core_ucode_low 
+0x3f39 007295 ifetch 1 ,contru 
+0x3f3a 007296 iadd temp ,temp 
+0x3f3b 007297 set1 7 ,pdata 
+0x3f3c 007298 hstore 1 ,core_ucode_ctrl 
+0x3f3d 007299 ifetch 1 ,contru 
+0x3f3e 007300 iadd temp ,temp 
+0x3f3f 007301 copy pdata ,loopcnt 
+:      007302 phci_grp_vendor_patch_loop:
+0x3f40 007303 ifetch 1 ,contru 
+0x3f41 007304 hstore 1 ,core_ucode_data 
+0x3f42 007305 iadd temp ,temp 
+0x3f43 007306 loop phci_grp_vendor_patch_loop 
+0x3f44 007307 and temp ,0xff ,temp 
+0x3f45 007308 ifetch 1 ,contru 
+0x3f46 007309 isub temp ,null 
+0x3f47 007310 nbranch phci_grp_vendor_patch_bad ,zero 
+0x3f48 007311 branch hci_normal_reply 
+:      007313 phci_grp_vendor_done:
+0x3f49 007314 arg 0x20 ,loopcnt 
+0x3f4a 007315 arg mem_patch00 ,contw 
+0x3f4b 007316 arg 0 ,temp 
+:      007317 phci_grp_vendor_done_loop:
+0x3f4c 007318 ifetch 1 ,contru 
+0x3f4d 007319 istore 1 ,contw 
+0x3f4e 007320 iadd temp ,temp 
+0x3f4f 007321 loop phci_grp_vendor_done_loop 
+0x3f50 007322 and temp ,0xff ,temp 
+0x3f51 007323 ifetch 1 ,contru 
+0x3f52 007324 isub temp ,null 
+0x3f53 007325 nbranch phci_grp_vendor_patch_bad ,zero 
+0x3f54 007326 hjam 0 ,core_ucode_ctrl 
+0x3f55 007327 call hci_normal_reply 
+0x3f56 007328 call h4_rx_discard_packet 
+0x3f57 007329 branch soft_reset 
+:      007331 phci_grp_vendor_patch_bad:
+0x3f58 007332 hjam 0 ,core_ucode_ctrl 
+0x3f59 007333 branch start 
+:      007335 phci_grp_vendor_bdaddr:
+0x3f5a 007336 ifetch 6 ,contru 
+0x3f5b 007337 store 6 ,mem_lap 
+0x3f5c 007338 branch hci_normal_reply 
+:      007341 phci_grp_vendor_mem:
+0x3f5d 007342 ifetch 1 ,contru 
+0x3f5e 007343 store 1 ,mem_hci_curr_len 
+0x3f5f 007344 copy pdata ,loopcnt 
+0x3f60 007345 ifetch 2 ,contru 
+0x3f61 007346 store 2 ,mem_hci_curr_target 
+0x3f62 007347 copy pdata ,contw 
+0x3f63 007348 call uart_copy_rx_bytes 
+0x3f64 007349 branch hci_normal_reply 
+:      007352 phci_grp_vendor_eep:
+0x3f65 007353 ifetch 1 ,contru 
+0x3f66 007354 store 1 ,mem_hci_curr_len 
+0x3f67 007355 copy pdata ,loopcnt 
+0x3f68 007356 ifetch 2 ,contru 
+0x3f69 007357 store 2 ,mem_hci_curr_target 
+0x3f6a 007358 arg mem_l2cap_rxbuff1 ,contw 
+0x3f6b 007359 call uart_copy_rx_bytes 
+0x3f6c 007360 fetcht 1 ,mem_hci_curr_len 
+0x3f6d 007361 arg mem_l2cap_rxbuff1 ,rega 
+0x3f6e 007362 fetch 2 ,mem_hci_curr_target 
+0x3f6f 007363 branch iicd_write_ota_data 
+:      007368 hci_normal_reply:
+0x3f70 007369 set0 mark_ext_patch ,mark 
+0x3f71 007370 bpatch patch18_6 ,mem_patch18 
+0x3f72 007371 force 4 ,loopcnt 
+:      007372 hci_command_complete:
+0x3f73 007373 call hci_get_payload_ptr 
+0x3f74 007374 force 0x1 ,pdata 
+0x3f75 007375 istore 1 ,contwu 
+0x3f76 007376 deposit alarm 
+0x3f77 007377 istore 3 ,contwu 
+0x3f78 007378 force hci_event_command_complete ,queue 
+:      007379 hci_send_event:
+0x3f79 007380 set0 mark_ext_patch ,mark 
+0x3f7a 007381 bpatch patch18_7 ,mem_patch18 
+0x3f7b 007382 call hci_get_packet_ptr 
+0x3f7c 007383 deposit queue 
+0x3f7d 007384 istore 1 ,contwu 
+0x3f7e 007385 deposit loopcnt 
+0x3f7f 007386 istore 1 ,contwu 
+:      007387 hci_send_event_raw:
+0x3f80 007388 force 5 ,queue 
+0x3f81 007389 increase 2 ,loopcnt 
+:      007390 hci_send_packet:
+0x3f82 007391 branch h4_send_packet_event 
+:      007393 hci_send_commu_ready_event:
+0x3f83 007394 force hci_event_vendor_specific ,queue 
+0x3f84 007395 call hci_get_payload_ptr 
+0x3f85 007396 setarg hci_vendor_event_commu_ready 
+0x3f86 007397 istore 1 ,contwu 
+0x3f87 007398 force 1 ,loopcnt 
+0x3f88 007399 branch hci_send_event 
+:      007401 hci_get_cmd_complete_ptr:
+0x3f89 007402 force 12 ,contwu 
+0x3f8a 007403 branch hci_get_tx_ptr 
+:      007405 hci_get_payload_ptr:
+0x3f8b 007406 force 8 ,contwu 
+0x3f8c 007407 branch hci_get_tx_ptr 
+:      007409 hci_get_packet_ptr:
+0x3f8d 007410 force 6 ,contwu 
+:      007411 hci_get_tx_ptr:
+0x3f8e 007412 branch h4_get_tx_ptr 
+:      007416 calc_tx_crc16:
+0x3f8f 007417 pulse crc16 
+0x3f90 007418 enable enable_crc 
+:      007419 crcloop:
+0x3f91 007420 ifetch 1 ,contwu 
+0x3f92 007421 inject bucket ,8 
+0x3f93 007422 loop crcloop 
+0x3f94 007423 enable enable_parity 
+0x3f95 007424 inject bucket ,16 
+0x3f96 007425 disable enable_parity 
+0x3f97 007426 disable enable_crc 
+0x3f98 007427 disable crc16 
+0x3f99 007428 byteswap pdata ,pdata 
+0x3f9a 007429 rtn 
+:      007433 cmd_exit:
+0x3f9b 007434 jam 0 ,mem_hci_cmd 
+0x3f9c 007435 rtn 
+:      007436 cmd_check_plap:
+0x3f9d 007437 fetch 6 ,mem_hci_plap 
+0x3f9e 007438 fetcht 6 ,mem_plap 
+0x3f9f 007439 isub temp ,null 
+0x3fa0 007440 rtn 
+:      007445 cmd_pair:
+0x3fa1 007446 fetch 1 ,mem_op 
+0x3fa2 007447 bbit1 op_inrand_req ,cmd_pair_passive 
+0x3fa3 007448 call tid_initiate 
+0x3fa4 007449 jam lmp_in_rand ,mem_lmo_opcode2 
+0x3fa5 007450 branch cmd_exit 
+:      007451 cmd_pair_passive:
+0x3fa6 007452 set0 op_inrand_req ,pdata 
+0x3fa7 007453 store 1 ,mem_op 
+0x3fa8 007454 call lmp_accept_inrand 
+0x3fa9 007455 setarg 0 
+0x3faa 007456 setflag master ,smap_lmptid ,pdata 
+0x3fab 007457 store 1 ,mem_lmo_tid2 
+0x3fac 007458 branch cmd_exit 
+0x3fad 007459 rtn 
+:      007460 cmd_in_sniff:
+0x3fae 007461 jam lmp_sniff_req ,mem_lmo_opcode2 
+0x3faf 007462 arg mem_sniff_payload ,contw 
+0x3fb0 007463 setarg 0 
+0x3fb1 007464 isolate1 27 ,clke_bt 
+0x3fb2 007465 setflag true ,1 ,pdata 
+0x3fb3 007466 istore 1 ,contw 
+0x3fb4 007467 setarg 0 
+0x3fb5 007468 istore 2 ,contw 
+0x3fb6 007469 fetch 2 ,mem_sniff_param_interval 
+0x3fb7 007470 istore 2 ,contw 
+0x3fb8 007471 fetch 1 ,mem_sniff_param_attempt 
+0x3fb9 007472 istore 2 ,contw 
+0x3fba 007473 fetch 1 ,mem_sniff_param_timeout 
+0x3fbb 007474 istore 2 ,contw 
+0x3fbc 007475 branch cmd_exit 
+:      007477 cmd_exit_sniff:
+0x3fbd 007478 jam lmp_unsniff_req ,mem_lmo_opcode2 
+0x3fbe 007479 branch cmd_exit 
+:      007481 hci_idle_dispatch:
+0x3fbf 007482 call gpio_check_uart_state 
+0x3fc0 007483 rtn true 
+0x3fc1 007484 arg uart_wakeup_rx ,temp 
+0x3fc2 007485 call gpio_get_bit 
+0x3fc3 007486 nbranch uart_wake_up ,true 
+0x3fc4 007487 jam hci_rx_wake ,mem_hci_lt_rx_state 
+0x3fc5 007488 rtn 
+:      007489 uart_wake_up:
+0x3fc6 007490 fetch 1 ,mem_hci_lt_rx_state 
+0x3fc7 007491 rtnne hci_rx_wake 
+0x3fc8 007492 call hci_exit_lpm 
+0x3fc9 007493 branch hci_send_commu_ready_event 
+:      007507 hid_rx_process:
+0x3fca 007508 set0 mark_ext_patch ,mark 
+0x3fcb 007509 bpatch patch19_0 ,mem_patch19 
+0x3fcc 007510 fetch 2 ,mem_l2cap_payload_ptr 
+0x3fcd 007511 copy pdata ,contr 
+0x3fce 007512 ifetch 1 ,contr 
+0x3fcf 007513 and pdata ,0x0f ,temp 
+0x3fd0 007514 rshift4 pdata ,pdata 
+0x3fd1 007515 beq hid_type_set_idle ,hid_rx_process_handshake 
+0x3fd2 007516 beq hid_type_set_protocol ,hid_rx_process_handshake 
+0x3fd3 007517 beq hid_type_data ,hid_rx_process_data 
+0x3fd4 007518 beq hid_type_set_report ,hid_rx_process_set_report 
+0x3fd5 007519 beq hid_type_control ,hid_rx_process_hid_control 
+0x3fd6 007520 rtn 
+:      007522 hid_rx_process_hid_control:
+0x3fd7 007523 copy temp ,pdata 
+0x3fd8 007524 beq hid_control_p_virtualcableunplug ,hid_rx_process_virtual_cable_unplug 
+0x3fd9 007525 beq hid_control_p_suspend ,hid_rx_process_suspend 
+0x3fda 007526 rtn 
+:      007528 hid_rx_process_virtual_cable_unplug:
+0x3fdb 007529 jam bt_evt_virtual_cable_unplug ,mem_fifo_temp 
+0x3fdc 007530 call ui_ipc_send_event 
+0x3fdd 007531 fetch 1 ,mem_device_option 
+0x3fde 007532 rtnne dvc_op_mouse ,pdata 
+0x3fdf 007533 copy temp ,pdata 
+0x3fe0 007534 beq hid_control_p_virtualcableunplug ,eeprom_erase_reconn_info 
+0x3fe1 007535 rtn 
+:      007536 hid_rx_process_suspend:
+0x3fe2 007537 rtn 
+:      007539 hid_rx_process_set_report:
+0x3fe3 007540 call hid_rx_process_data 
+0x3fe4 007541 arg 0x01 ,rega 
+0x3fe5 007542 call hid_malloc_tx_buff 
+0x3fe6 007543 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x3fe7 007544 istore 2 ,contw 
+0x3fe8 007545 setarg 0x00 
+0x3fe9 007546 istore 1 ,contw 
+0x3fea 007547 rtn 
+:      007549 hid_rx_process_handshake:
+0x3feb 007550 arg 1 ,rega 
+0x3fec 007551 call hid_malloc_tx_buff 
+0x3fed 007552 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x3fee 007553 istore 2 ,contw 
+0x3fef 007554 setarg 0 
+0x3ff0 007555 istore 1 ,contw 
+0x3ff1 007556 jam 1 ,mem_ui_data_txbuff_length 
+0x3ff2 007557 fetch 1 ,mem_hid_control_state 
+0x3ff3 007558 set1 l2cap_channel_hid_handshake_done 
+0x3ff4 007559 store 1 ,mem_hid_control_state 
+:      007560 hid_handshake_event:
+0x3ff5 007561 jam bt_evt_hid_handshake ,mem_fifo_temp 
+0x3ff6 007562 branch ui_ipc_send_event 
+:      007564 hid_rx_process_data:
+0x3ff7 007565 ifetch 1 ,contr 
+0x3ff8 007566 beq hid_report_id_kb ,hid_rx_process_data_hid_kb 
+0x3ff9 007567 rtn 
+:      007569 hid_rx_process_data_hid_kb:
+0x3ffa 007570 copy contr ,rega 
+0x3ffb 007571 fetch 1 ,mem_device_option 
+0x3ffc 007572 rtnne dvc_op_kb ,pdata 
+0x3ffd 007573 copy rega ,contr 
+0x3ffe 007574 ifetch 1 ,contr 
+0x3fff 007575 store 1 ,mem_kb_caps_led_status 
+0x4000 007576 store 1 ,mem_hid_rx_data 
+0x4001 007577 fetch 1 ,mem_kb_led_on_timer 
+0x4002 007578 nrtn blank 
+0x4003 007579 jam 2 ,mem_led_cap_delay_timer 
+0x4004 007580 rtn 
+:      007582 hid_malloc_tx_buff:
+0x4005 007583 call l2cap_malloc 
+0x4006 007584 copy rega ,temp 
+0x4007 007585 storet 1 ,mem_ui_data_txbuff_length 
+0x4008 007586 copy pdata ,contw 
+0x4009 007587 copy rega ,pdata 
+0x400a 007588 istore 2 ,contw 
+0x400b 007589 rtn 
+:      007592 kb_init:
+0x400c 007593 call kb_clear_keys 
+0x400d 007594 rtn wake 
+0x400e 007596 call kb_init_common 
+0x400f 007597 call kb_led_int 
+0x4010 007598 setarg kb_process_idle 
+0x4011 007599 store 2 ,mem_cb_idle_process 
+0x4012 007600 setarg kb_send_process 
+0x4013 007601 store 2 ,mem_cb_bt_process 
+0x4014 007602 setarg kb_process_bb_event 
+0x4015 007603 store 2 ,mem_cb_bb_event_process 
+0x4016 007604 setarg kb_process_lpm_before 
+0x4017 007605 store 2 ,mem_cb_before_lpm 
+0x4018 007606 setarg kb_discovery_timeout_sleep 
+0x4019 007607 store 2 ,mem_cb_discovry_timeout 
+0x401a 007608 setarg kb_before_hibernate 
+0x401b 007609 store 2 ,mem_cb_before_hibernate 
+0x401c 007610 jam 0 ,mem_sp_flag 
+0x401d 007611 jam 0 ,mem_master_sp_flag 
+0x401e 007612 call kb_init_environment 
+0x401f 007613 fetch 2 ,mem_ui_state_map 
+0x4020 007614 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
+:      007615 kb_check_reconn_target:
+0x4021 007616 fetch 1 ,mem_xrecord_mode 
+0x4022 007617 beq rec_3_mode ,kb_3_check_reconn_target 
+0x4023 007618 branch kb_start_discovery 
+:      007619 kb_3_check_reconn_target:
+0x4024 007620 fetch 6 ,mem_hci_plap 
+0x4025 007621 branch app_bt_start_discovery_short ,blank 
+0x4026 007622 branch app_bt_start_reconnect 
+:      007624 kb_init_environment:
+0x4027 007625 call app_initflag_check 
+0x4028 007626 branch kb_load_eeprom_param ,zero 
+0x4029 007627 setarg kb_map2_status_win 
+0x402a 007628 store 1 ,mem_kb_current_status 
+0x402b 007629 call store_current_status 
+0x402c 007630 fetch 6 ,mem_master_addr 
+0x402d 007631 store 6 ,mem_plap 
+0x402e 007632 store 6 ,mem_hci_plap 
+0x402f 007633 call eeprom_store_bd_reconn_info 
+0x4030 007634 jam rec_3_mode ,mem_xrecord_mode 
+0x4031 007635 branch app_initflag_store 
+:      007637 kb_load_eeprom_param:
+0x4032 007638 call read_current_status 
+0x4033 007639 branch eeprom_load_reconn_info 
+:      007642 kb_init_common:
+0x4034 007643 set0 mark_ext_patch ,mark 
+0x4035 007644 bpatch patch19_1 ,mem_patch19 
+0x4036 007645 hjam 0 ,core_gpio_oe0 
+0x4037 007646 hjam 0xff ,core_gpio_pu0 
+0x4038 007647 hjam 0xff ,core_gpio_oe1 
+0x4039 007648 hjam 0xff ,core_gpio_oe2 
+0x403a 007649 hfetch 1 ,core_gpio_oe3 
+0x403b 007650 or_into 0x07 ,pdata 
+0x403c 007651 hstore 1 ,core_gpio_oe3 
+0x403d 007652 hjam 0x00 ,core_gpio_sel 
+0x403e 007653 hjam 0x00 ,core_gpio_sel1 
+0x403f 007654 hjam 0x00 ,core_kscn_rowmask 
+0x4040 007655 setarg kb_kscan_col_1 
+0x4041 007656 lshift3 pdata ,pdata 
+0x4042 007657 add pdata ,kb_kscan_row_1 ,pdata 
+0x4043 007658 hstore 1 ,core_kscn_rctc 
+0x4044 007659 hjam 0xff ,core_gpio_key0 
+0x4045 007660 hjam 0xFf ,core_gpio_key1 
+0x4046 007661 hfetch 1 ,core_gpio_key2 
+0x4047 007662 or_into 0x01 ,pdata 
+0x4048 007663 hstore 1 ,core_gpio_key2 
+0x4049 007665 hfetch 1 ,core_config 
+0x404a 007666 set1 2 ,pdata 
+0x404b 007667 hstore 1 ,core_config 
+0x404c 007668 hjam 0x0c ,core_kscn_ksctrl 
+0x404d 007669 hjam 0x30 ,core_kscn_scancycle_timer_h 
+0x404e 007670 hfetch 1 ,core_clkoff + 1 
+0x404f 007671 set0 1 ,pdata 
+0x4050 007672 hstore 1 ,core_clkoff + 1 
+0x4051 007673 hfetch 1 ,core_kscn_ksctrl 
+0x4052 007674 set1 0 ,pdata 
+0x4053 007675 hstore 1 ,core_kscn_ksctrl 
+0x4054 007676 rtn 
+:      007677 kb_led_int:
+0x4055 007678 call kb_led_cap_init 
+0x4056 007679 call kb_led_num_init 
+0x4057 007680 branch kb_led_scl_init 
+:      007681 kb_led_cap_init:
+0x4058 007682 fetch 1 ,mem_led_cap_gpio 
+0x4059 007683 rtneq 0xff 
+0x405a 007684 fetcht 1 ,mem_led_cap_gpio 
+0x405b 007685 branch gpio_config_output 
+:      007686 kb_led_num_init:
+0x405c 007687 fetch 1 ,mem_led_num_gpio 
+0x405d 007688 rtneq 0xff 
+0x405e 007689 fetcht 1 ,mem_led_num_gpio 
+0x405f 007690 branch gpio_config_output 
+:      007691 kb_led_scl_init:
+0x4060 007692 fetch 1 ,mem_led_scl_gpio 
+0x4061 007693 rtneq 0xff 
+0x4062 007694 fetcht 1 ,mem_led_scl_gpio 
+0x4063 007695 branch gpio_config_output 
+:      007697 kb_led_cap_delay_timer:
+0x4064 007698 fetch 1 ,mem_led_cap_delay_timer 
+0x4065 007699 rtn blank 
+0x4066 007700 increase -1 ,pdata 
+0x4067 007701 store 1 ,mem_led_cap_delay_timer 
+0x4068 007702 nrtn blank 
+:      007703 kb_led_capslock:
+0x4069 007704 set0 mark_ext_patch ,mark 
+0x406a 007705 bpatch patch19_2 ,mem_patch19 
+0x406b 007706 fetch 1 ,mem_hid_rx_data 
+0x406c 007707 copy pdata ,rega 
+0x406d 007708 fetcht 1 ,mem_led_num_gpio 
+0x406e 007709 isolate1 kb_num_lock_selected ,rega 
+0x406f 007710 call gpio_out_flag 
+0x4070 007711 fetcht 1 ,mem_led_cap_gpio 
+0x4071 007712 isolate1 kb_caps_lock_selected ,rega 
+0x4072 007713 call gpio_out_flag 
+0x4073 007714 fetcht 1 ,mem_led_scl_gpio 
+0x4074 007715 isolate1 kb_scroll_lock_selected ,rega 
+0x4075 007716 call gpio_out_flag 
+0x4076 007717 branch kb_auto_disable_mult 
+:      007718 kb_enble_mult_timer:
+0x4077 007719 fetch 1 ,mem_auto_enable_mult_timer 
+0x4078 007720 rtn blank 
+0x4079 007721 increase -1 ,pdata 
+0x407a 007722 store 1 ,mem_auto_enable_mult_timer 
+0x407b 007723 nrtn blank 
+0x407c 007724 branch app_lpm_mult_enable 
+:      007725 kb_auto_disable_mult:
+0x407d 007726 fetch 1 ,mem_auto_enable_mult_timer_init 
+0x407e 007727 store 1 ,mem_auto_enable_mult_timer 
+0x407f 007728 branch app_lpm_mult_disable 
+:      007730 kb_led_cap_status:
+0x4080 007731 jam 1 ,mem_led_cap_flag 
+0x4081 007732 branch bt_send_kb_data_by_report0 + 8 
+:      007735 kb_send_process:
+0x4082 007736 call l2cap_malloc_is_fifo_nearly_full 
+0x4083 007737 nrtn blank 
+0x4084 007738 fetch 6 ,mem_master_addr 
+0x4085 007739 fetcht 6 ,mem_plap 
+0x4086 007740 isub temp ,null 
+0x4087 007741 branch kb_debug_send_keydata ,zero 
+0x4088 007742 fetch 1 ,mem_pincode_state 
+0x4089 007743 beq pincode_state_wait_pincode ,kb_pincode 
+0x408a 007744 fetch 1 ,mem_hid_interrupt_state 
+0x408b 007745 rtnne l2cap_channel_setup_complete 
+0x408c 007746 fetcht 8 ,mem_table_last_repory_data0 
+0x408d 007747 fetch 8 ,mem_map2_out_report0 
+0x408e 007748 store 8 ,mem_table_last_repory_data0 
+0x408f 007749 isub temp ,null 
+0x4090 007750 ncall bt_send_kb_data_by_report0 ,zero 
+0x4091 007752 fetcht 8 ,mem_table_last_repory_data1 
+0x4092 007753 fetch 8 ,mem_map2_out_report1 
+0x4093 007754 store 8 ,mem_table_last_repory_data1 
+0x4094 007755 isub temp ,null 
+0x4095 007756 ncall bt_send_kb_data_by_report1 ,zero 
+0x4096 007757 rtn 
+:      007759 kb_debug_send_keydata:
+0x4097 007760 fetch 1 ,mem_kb_down 
+0x4098 007761 beq 0x7f ,fn_test 
+0x4099 007762 fetcht 8 ,mem_table_last_repory_data0 
+0x409a 007763 fetch 8 ,mem_map2_out_report0 
+0x409b 007764 store 8 ,mem_table_last_repory_data0 
+0x409c 007765 isub temp ,null 
+0x409d 007766 rtn zero 
+0x409e 007767 arg mem_map2_out_report0 ,contr 
+0x409f 007768 arg mem_table_temp ,rega 
+0x40a0 007769 call fill_kb_send_data 
+0x40a1 007770 arg 10 ,rega 
+0x40a2 007771 call hid_malloc_tx_buff 
+0x40a3 007772 setarg l2cap_hid_interrupt_channel 
+0x40a4 007773 istore 2 ,contw 
+0x40a5 007774 setarg 0x01a1 
+0x40a6 007775 istore 2 ,contw 
+0x40a7 007776 fetch 8 ,mem_table_temp 
+0x40a8 007777 istore 8 ,contw 
+0x40a9 007778 rtn 
+:      007779 fn_test:
+0x40aa 007780 store 8 ,mem_map2_out_report0 
+0x40ab 007781 branch kb_debug_send_keydata + 2 
+:      007784 bt_send_kb_data_by_report0:
+0x40ac 007785 call l2cap_malloc_is_fifo_nearly_full 
+0x40ad 007786 nrtn blank 
+0x40ae 007787 fetch 1 ,mem_kb_temp_flag 
+0x40af 007788 rtnbit1 key_search_m_key_flag 
+0x40b0 007789 call init_kb_no_data_timer 
+0x40b1 007790 fetch 1 ,mem_map2_out_report0 
+0x40b2 007791 beq caps_lock_data ,kb_led_cap_status 
+0x40b3 007792 jam 0 ,mem_led_cap_flag 
+0x40b4 007793 arg mem_map2_out_report0 ,contr 
+0x40b5 007794 arg mem_table_temp ,rega 
+0x40b6 007795 call fill_kb_send_data 
+0x40b7 007796 call bt_send_kb_data_by_report0_ptr 
+0x40b8 007797 fetch 8 ,mem_table_temp 
+0x40b9 007798 istore 8 ,contw 
+0x40ba 007799 rtn 
+:      007801 fill_kb_send_data:
+0x40bb 007802 arg 0 ,temp 
+0x40bc 007803 add rega ,2 ,contw 
+0x40bd 007804 arg kb_map2_report_length ,loopcnt 
+:      007805 store_key:
+0x40be 007806 ifetch 1 ,contr 
+0x40bf 007807 bbit0 7 ,not_key_status 
+0x40c0 007808 and pdata ,7 ,queue 
+0x40c1 007809 qset1 temp 
+0x40c2 007810 branch store_key_next 
+:      007811 not_key_status:
+0x40c3 007812 istore 1 ,contw 
+:      007813 store_key_next:
+0x40c4 007814 loop store_key 
+0x40c5 007815 istoret 2 ,rega 
+0x40c6 007816 rtn 
+:      007818 bt_send_kb_data_by_report1:
+0x40c7 007819 call l2cap_malloc_is_fifo_nearly_full 
+0x40c8 007820 nrtn blank 
+0x40c9 007821 call init_kb_no_data_timer 
+0x40ca 007822 fetch 1 ,mem_map2_out_report1 
+0x40cb 007823 beq sfk_android_map ,android_search_m_key 
+0x40cc 007824 beq sfk_ios_screenshot ,ios_screenshot 
+0x40cd 007825 setarg 0 
+0x40ce 007826 store 8 ,mem_table_temp 
+0x40cf 007827 call fill_kb_send_report1_data 
+0x40d0 007829 fetch 1 ,mem_kb_temp_flag 
+0x40d1 007830 bbit1 key_search_m_key_flag ,android_search_m_key_releas 
+0x40d2 007831 call bt_send_kb_data_by_report1_ptr 
+0x40d3 007832 fetch 4 ,mem_table_temp 
+0x40d4 007833 istore 4 ,contw 
+0x40d5 007834 rtn 
+:      007836 fill_kb_send_report1_data:
+0x40d6 007837 fetch 1 ,mem_map2_out_report1 
+0x40d7 007838 rtn blank 
+0x40d8 007839 enable true 
+0x40d9 007840 fetch 1 ,mem_map2_out_report1 
+0x40da 007841 copy pdata ,queue 
+0x40db 007842 fetch 8 ,mem_table_temp 
+0x40dc 007843 qsetflag true ,pdata 
+0x40dd 007844 store 8 ,mem_table_temp 
+0x40de 007845 disable true 
+0x40df 007846 rtn 
+:      007848 init_kb_no_data_timer:
+0x40e0 007849 fetch 2 ,mem_kb_no_data_timeout 
+0x40e1 007850 store 2 ,mem_kb_no_data_timer 
+0x40e2 007851 rtn 
+:      007852 kb_check_no_data_timer:
+0x40e3 007853 fetch 2 ,mem_kb_no_data_timer 
+0x40e4 007854 rtn blank 
+0x40e5 007855 fetch 2 ,mem_kb_no_data_timer 
+0x40e6 007856 increase -1 ,pdata 
+0x40e7 007857 store 2 ,mem_kb_no_data_timer 
+0x40e8 007858 nrtn blank 
+0x40e9 007859 branch kb_disconnect 
+:      007860 kb_disconnect:
+0x40ea 007861 setarg 0 
+0x40eb 007862 store 2 ,mem_kb_no_data_timer 
+0x40ec 007863 fetch 2 ,mem_ui_state_map 
+0x40ed 007864 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+0x40ee 007865 fetch 2 ,mem_ui_state_map 
+0x40ef 007866 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x40f0 007867 rtn 
+:      007869 bt_send_kb_data_by_report0_ptr:
+0x40f1 007870 arg 10 ,rega 
+0x40f2 007871 call hid_malloc_tx_buff 
+0x40f3 007872 fetch 2 ,mem_hid_int_remote_cid 
+0x40f4 007873 istore 2 ,contw 
+0x40f5 007874 setarg 0x01a1 
+0x40f6 007875 istore 2 ,contw 
+0x40f7 007876 rtn 
+:      007877 bt_send_kb_data_by_report1_ptr:
+0x40f8 007878 arg 6 ,rega 
+0x40f9 007879 call hid_malloc_tx_buff 
+0x40fa 007880 fetch 2 ,mem_hid_int_remote_cid 
+0x40fb 007881 istore 2 ,contw 
+0x40fc 007882 setarg 0x02a1 
+0x40fd 007883 istore 2 ,contw 
+0x40fe 007884 rtn 
+:      007886 android_search_m_key_releas:
+0x40ff 007887 call bt_send_kb_data_by_report0_ptr 
+0x4100 007888 setarg 0 
+0x4101 007889 istore 8 ,contw 
+0x4102 007890 call bt_send_kb_data_by_report1_ptr 
+0x4103 007891 setarg 0 
+0x4104 007892 istore 4 ,contw 
+0x4105 007893 fetch 1 ,mem_kb_temp_flag 
+0x4106 007894 set0 key_search_m_key_flag ,pdata 
+0x4107 007895 store 1 ,mem_kb_temp_flag 
+0x4108 007896 rtn 
+:      007897 ios_screenshot:
+0x4109 007898 call bt_send_kb_data_by_report1_ptr 
+0x410a 007899 setarg 0x2002 
+0x410b 007900 istore 4 ,contw 
+0x410c 007901 rtn 
+:      007903 android_search_m_key:
+0x410d 007904 call bt_send_kb_data_by_report1_ptr 
+0x410e 007905 setarg 0x40 
+0x410f 007906 istore 4 ,contw 
+0x4110 007907 call bt_send_kb_data_by_report0_ptr 
+0x4111 007908 setarg 0 
+0x4112 007909 istore 2 ,contw 
+0x4113 007910 setarg 0x10 
+0x4114 007911 istore 7 ,contw 
+0x4115 007912 fetch 1 ,mem_kb_temp_flag 
+0x4116 007913 set1 key_search_m_key_flag ,pdata 
+0x4117 007914 store 1 ,mem_kb_temp_flag 
+0x4118 007915 rtn 
+:      007918 kb_pincode:
+0x4119 007919 set0 mark_ext_patch ,mark 
+0x411a 007920 bpatch patch19_3 ,mem_patch19 
+0x411b 007921 fetch 1 ,mem_kb_temp_flag 
+0x411c 007922 rtnbit0 key_event_flag 
+0x411d 007923 set0 key_event_flag ,pdata 
+0x411e 007924 store 1 ,mem_kb_temp_flag 
+0x411f 007925 fetcht 1 ,mem_pin_length 
+0x4120 007926 setarg mem_pin 
+0x4121 007927 iadd temp ,contw 
+0x4122 007928 fetch 1 ,mem_kb_down 
+0x4123 007929 branch kb_pincode_rtn ,blank 
+0x4124 007930 beq kb_kcode_bksp ,kb_pincode_bksp 
+0x4125 007931 bne kb_kcode_enter ,kb_pincode_data 
+0x4126 007932 storet 1 ,mem_pin_length 
+0x4127 007933 branch app_bt_set_pincode 
+:      007935 kb_pincode_rtn:
+0x4128 007936 storet 1 ,mem_pin_length 
+0x4129 007937 rtn 
+:      007938 kb_pincode_bksp:
+0x412a 007939 fetch 1 ,mem_pin_length 
+0x412b 007940 rtn blank 
+0x412c 007941 increase -1 ,pdata 
+0x412d 007942 store 1 ,mem_pin_length 
+0x412e 007943 arg mem_pin ,contw 
+0x412f 007944 iadd contw ,contw 
+0x4130 007945 setarg 0 
+0x4131 007946 istore 1 ,contw 
+0x4132 007947 enable user2 
+0x4133 007948 branch kb_send_pin 
+:      007949 kb_pincode_data:
+0x4134 007950 sub pdata ,kb_kcode_1_m1 ,null 
+0x4135 007951 rtn positive 
+0x4136 007952 arg 0x30 ,temp 
+0x4137 007953 sub pdata ,kb_kcode_0 ,null 
+0x4138 007954 nrtn positive 
+0x4139 007955 branch kb_pincode_0 ,zero 
+0x413a 007956 arg kb_kcode_1_m1 ,temp 
+0x413b 007957 isub temp ,temp 
+0x413c 007958 or_into 0x30 ,temp 
+:      007959 kb_pincode_0:
+0x413d 007960 istoret 1 ,contw 
+0x413e 007961 fetch 1 ,mem_pin_length 
+0x413f 007962 increase 1 ,pdata 
+0x4140 007963 store 1 ,mem_pin_length 
+0x4141 007964 disable user2 
+0x4142 007965 branch kb_send_pin 
+:      007967 kb_send_pin:
+0x4143 007968 fetch 2 ,mem_hid_int_remote_cid 
+0x4144 007969 rtn blank 
+0x4145 007970 arg 3 ,rega 
+0x4146 007971 call hid_malloc_tx_buff 
+0x4147 007972 fetch 2 ,mem_hid_int_remote_cid 
+0x4148 007973 istore 2 ,contw 
+0x4149 007974 setarg 0xffa1 
+0x414a 007975 istore 2 ,contw 
+0x414b 007976 setarg 0 
+0x414c 007977 setflag user2 ,0 ,pdata 
+0x414d 007978 istore 1 ,contw 
+0x414e 007979 rtn 
+:      007983 kb_kscan_check_if_empty:
+0x414f 007984 disable user 
+0x4150 007985 disable user2 
+0x4151 007986 hfetch 1 ,core_kscn_kstat 
+0x4152 007987 rtnbit1 kb_kscan_stat_empty 
+:      007989 kb_kscan_check_ghost:
+0x4153 007990 hfetch 1 ,core_kscn_event_num 
+0x4154 007991 bbit1 kb_kscan_key_event_stat ,kb_kscan_process_event 
+0x4155 007992 hfetch 1 ,core_kscn_kstat 
+0x4156 007993 bbit0 kb_kscan_stat_ghost ,kb_kscan_process_event 
+0x4157 007994 hfetch 1 ,core_kscn_event 
+0x4158 007995 branch kb_kscan_check_if_empty 
+:      007997 kb_kscan_process_event:
+0x4159 007998 enable user 
+0x415a 007999 enable user2 
+0x415b 008000 hfetch 1 ,core_kscn_event_num 
+0x415c 008001 isolate0 kb_kscan_key_event_stat ,pdata 
+0x415d 008002 hfetch 1 ,core_kscn_event 
+0x415e 008003 arg mem_kb_map ,contr 
+0x415f 008004 iadd contr ,contr 
+0x4160 008005 ifetch 1 ,contr 
+0x4161 008006 bbit1 7 ,kb_kscan_read_statekey 
+0x4162 008007 nbranch kb_kscan_release_a_key_data ,true 
+0x4163 008008 disable user2 
+0x4164 008009 iforce temp 
+0x4165 008010 fetch 1 ,mem_kb_keys 
+0x4166 008011 sub pdata ,4 ,null 
+0x4167 008012 nrtn positive 
+0x4168 008013 copy pdata ,rega 
+0x4169 008014 arg 3 ,loopcnt 
+0x416a 008015 arg mem_kb_report_data ,contr 
+:      008016 kb_kscan_check_report_data:
+0x416b 008017 ifetch 1 ,contr 
+0x416c 008018 isub temp ,null 
+0x416d 008019 branch kb_kscan_check_if_empty ,zero 
+0x416e 008020 loop kb_kscan_check_report_data 
+:      008021 kb_kscan_store_a_key_data:
+0x416f 008022 copy rega ,pdata 
+0x4170 008023 arg mem_kb_report_data ,contw 
+0x4171 008024 iadd contw ,contw 
+0x4172 008025 istoret 1 ,contw 
+0x4173 008026 increase 1 ,pdata 
+0x4174 008027 store 1 ,mem_kb_keys 
+0x4175 008028 hfetch 1 ,core_kscn_event_num 
+0x4176 008029 rshift3 pdata ,pdata 
+0x4177 008030 nbranch kb_kscan_check_nextevent ,blank 
+0x4178 008031 branch kb_kscan_prepare_send 
+:      008033 kb_kscan_check_nextevent:
+0x4179 008034 increase -1 ,pdata 
+0x417a 008035 branch kb_kscan_prepare_send ,zero 
+0x417b 008036 hfetch 1 ,core_kscn_event_num 
+0x417c 008037 and_into 0x01 ,pdata 
+0x417d 008038 beq kb_kscan_key_press ,kb_kscan_check_if_empty 
+0x417e 008039 beq kb_kscan_key_release ,kb_kscan_prepare_send 
+0x417f 008040 rtn 
+:      008041 kb_kscan_prepare_send:
+0x4180 008042 enable user2 
+0x4181 008043 rtn 
+:      008045 kb_kscan_release_a_key_data:
+0x4182 008046 and pdata ,0xff ,temp 
+0x4183 008047 fetch 1 ,mem_kb_keys 
+0x4184 008048 rtn blank 
+0x4185 008049 iforce loopcnt 
+0x4186 008050 arg mem_kb_report_data ,contr 
+:      008051 kb_kscan_find_same_key_data:
+0x4187 008052 ifetch 1 ,contr 
+0x4188 008053 isub temp ,null 
+0x4189 008054 branch kb_kscan_release_foundkey ,zero 
+0x418a 008055 loop kb_kscan_find_same_key_data 
+0x418b 008056 rtn 
+:      008059 kb_kscan_check_nextevent2:
+0x418c 008060 hfetch 1 ,core_kscn_event_num 
+0x418d 008061 and_into 0x01 ,pdata 
+0x418e 008062 beq kb_kscan_key_press ,kb_kscan_prepare_send 
+0x418f 008063 beq kb_kscan_key_release ,kb_kscan_check_if_empty 
+0x4190 008064 rtn 
+:      008066 kb_kscan_read_statekey:
+0x4191 008067 and pdata ,7 ,queue 
+0x4192 008068 fetch 1 ,mem_kb_state 
+0x4193 008069 qsetflag true ,pdata 
+0x4194 008070 store 1 ,mem_kb_state 
+0x4195 008071 rtn 
+:      008073 kb_clear_keys:
+0x4196 008074 setarg 0 
+0x4197 008075 store 8 ,mem_kb_down 
+0x4198 008076 store 1 ,mem_kb_keys 
+0x4199 008077 rtn 
+:      008079 kb_clean_kscan_fifo:
+0x419a 008080 hfetch 1 ,core_kscn_event_num 
+0x419b 008081 hfetch 1 ,core_kscn_event 
+0x419c 008082 hfetch 1 ,core_kscn_kstat 
+0x419d 008083 bbit0 kb_kscan_stat_empty ,kb_clean_kscan_fifo 
+0x419e 008084 setarg 0xff 
+0x419f 008085 enable user 
+0x41a0 008086 rtn 
+:      008088 kb_process_idle:
+0x41a1 008089 call kb_ui_check_paring_button 
+0x41a2 008090 rtn wake 
+:      008091 kb_process:
+0x41a3 008092 fetch 1 ,mem_kb_get_fn_flag 
+0x41a4 008093 call kb_recover_kb_down_data ,blank 
+0x41a5 008094 call kb_kscan_fn 
+0x41a6 008095 fetch 1 ,mem_kb_keys 
+0x41a7 008096 rtn blank 
+0x41a8 008097 call kb_read_gpio 
+0x41a9 008098 fetch 4 ,mem_kb_gpio_val 
+0x41aa 008099 store 4 ,mem_kb_gpio_last_val 
+0x41ab 008100 rtn 
+:      008102 kb_ui_check_paring_button:
+0x41ac 008103 fetch 2 ,mem_ui_state_map 
+0x41ad 008104 rtnbit0 ui_state_bt_reconnect 
+0x41ae 008105 fetch 1 ,mem_kb_temp_flag 
+0x41af 008106 rtnbit1 cacel_reconn_flag ,pdata 
+0x41b0 008107 fetch 2 ,mem_kb_down 
+0x41b1 008108 fetcht 2 ,mem_kb_fn_c 
+0x41b2 008109 isub temp ,null 
+0x41b3 008110 branch check_bb_reconn_cancel ,zero 
+0x41b4 008111 fetch 2 ,mem_kb_down 
+0x41b5 008112 fetcht 2 ,mem_kb_c_fn 
+0x41b6 008113 isub temp ,null 
+0x41b7 008114 branch check_bb_reconn_cancel ,zero 
+0x41b8 008115 fetch 2 ,mem_ui_state_map 
+0x41b9 008116 bbit1 ui_state_btn_down ,check_bb_reconn_cancel 
+0x41ba 008117 rtn 
+:      008119 check_bb_reconn_cancel:
+0x41bb 008120 fetch 1 ,mem_kb_temp_flag 
+0x41bc 008121 set1 cacel_reconn_flag ,pdata 
+0x41bd 008122 store 1 ,mem_kb_temp_flag 
+0x41be 008123 branch check_51cmd_bb_reconn_cancel 
+:      008126 kb_read_gpio:
+0x41bf 008127 hfetch 3 ,core_gpio_key0 
+0x41c0 008128 iforce regb 
+0x41c1 008129 hfetch 4 ,core_gpio_pu0 
+0x41c2 008130 iforce rega 
+0x41c3 008131 hfetcht 8 ,core_gpio_oe0 
+0x41c4 008132 setarg 0 
+0x41c5 008133 hstore 3 ,core_gpio_key0 
+0x41c6 008134 nop 100 
+0x41c7 008135 hfetch 1 ,core_gpio_in 
+0x41c8 008136 store 1 ,mem_kb_gpio_val 
+0x41c9 008137 hjam 0 ,core_gpio_pu0 
+0x41ca 008138 hfetch 1 ,core_gpio_oe3 
+0x41cb 008139 and_into 0xf0 ,pdata 
+0x41cc 008140 hstore 1 ,core_gpio_oe3 
+0x41cd 008141 xor_into 0xff ,pdata 
+0x41ce 008142 hstore 1 ,core_gpio_pu3 
+0x41cf 008143 setarg 0xff 
+0x41d0 008144 hstore 3 ,core_gpio_oe0 
+0x41d1 008145 setarg 0xffff 
+0x41d2 008146 hstore 2 ,core_gpio_pu1 
+0x41d3 008147 nop 100 
+0x41d4 008148 hfetch 3 ,core_gpio_in1 
+0x41d5 008149 iand regb ,pdata 
+0x41d6 008150 store 3 ,mem_kb_gpio_val + 1 
+0x41d7 008151 deposit rega 
+0x41d8 008152 hstore 4 ,core_gpio_pu0 
+0x41d9 008153 hstoret 8 ,core_gpio_oe0 
+0x41da 008154 deposit regb 
+0x41db 008155 hstore 3 ,core_gpio_key0 
+0x41dc 008156 rtn 
+:      008158 kb_pairing_button_check:
+0x41dd 008159 fetch 1 ,mem_scan_mode 
+0x41de 008160 nrtn blank 
+0x41df 008161 fetch 1 ,mem_app_handshake_flag 
+0x41e0 008162 nrtn blank 
+0x41e1 008163 fetch 1 ,mem_ui_button_timer 
+0x41e2 008164 rtn blank 
+0x41e3 008165 fetch 1 ,mem_ui_button_last_state 
+0x41e4 008166 nrtn blank 
+0x41e5 008167 branch app_enter_hibernate 
+:      008169 kb_process_bb_event:
+0x41e6 008170 copy regc ,pdata 
+0x41e7 008171 beq bt_evt_hid_connected ,kb_hid_connected 
+0x41e8 008172 beq bt_evt_pincode_req ,kb_process_pincode 
+0x41e9 008173 beq bt_evt_hid_handshake ,kb_bt_hid_handshake 
+0x41ea 008174 beq bt_evt_button_long_pressed ,kb_bb_event_discovery_btn 
+0x41eb 008175 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x41ec 008176 beq bt_evt_bb_connected ,kb_stop_discovery 
+0x41ed 008177 beq bt_evt_bb_disconnected ,kb_bb_disconnected 
+0x41ee 008178 beq bt_evt_reconn_failed ,kb_bb_event_reconn_failed 
+0x41ef 008179 beq bt_evt_reconn_page_timeout ,kb_bb_event_reconn_failed 
+0x41f0 008180 and pdata ,0x0f ,temp 
+0x41f1 008181 and_into bt_evt_timer_mask ,pdata 
+0x41f2 008182 beq bt_evt_timer_init ,kb_bb_event_timer 
+0x41f3 008183 rtn 
+:      008186 kb_bb_event_timer:
+0x41f4 008187 set0 mark_ext_patch ,mark 
+0x41f5 008188 bpatch patch19_4 ,mem_patch19 
+0x41f6 008189 storet 1 ,mem_app_evt_timer_count 
+:      008190 kb_bb_event_100ms_loop:
+0x41f7 008191 fetch 1 ,mem_app_evt_timer_count 
+0x41f8 008192 rtn blank 
+0x41f9 008193 increase -1 ,pdata 
+0x41fa 008194 store 1 ,mem_app_evt_timer_count 
+0x41fb 008195 call kb_led_cap_delay_timer 
+0x41fc 008196 call kb_check_hid_handshake_timer 
+0x41fd 008197 call kb_enble_mult_timer 
+0x41fe 008198 call kb_check_no_data_timer 
+0x41ff 008199 call select_system_led_timer 
+0x4200 008200 branch kb_bb_event_100ms_loop 
+:      008202 kb_bb_event_reconn_failed:
+0x4201 008203 fetch 2 ,mem_ui_state_map 
+0x4202 008204 bbit1 ui_state_btn_down ,kb_start_discovery 
+0x4203 008205 fetch 1 ,mem_kb_temp_flag 
+0x4204 008206 bbit0 ,cacel_reconn_flag ,app_bb_hibernate 
+0x4205 008207 fetch 1 ,mem_kb_temp_flag 
+0x4206 008208 set0 cacel_reconn_flag ,pdata 
+0x4207 008209 store 1 ,mem_kb_temp_flag 
+0x4208 008210 fetch 2 ,mem_ui_state_map 
+0x4209 008211 set0 ui_state_bt_reconnect ,pdata 
+0x420a 008212 store 2 ,mem_ui_state_map 
+0x420b 008213 rtn 
+:      008215 kb_bb_disconnected:
+0x420c 008216 set0 mark_ext_patch ,mark 
+0x420d 008217 bpatch patch19_5 ,mem_patch19 
+0x420e 008218 call kb_bb_discon_clear_stack 
+0x420f 008219 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x4210 008220 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x4211 008221 bbit1 app_disc_after_pairing ,kb_event_light_state_pairing 
+0x4212 008222 bbit1 app_disc_after_reconn ,kb_event_light_state_reconn 
+0x4213 008223 branch kb_start_discovery 
+:      008224 kb_event_light_state_pairing:
+0x4214 008225 bbit1 app_disc_after_handshake ,kb_event_light_state_hibernate 
+0x4215 008226 bbit1 app_disc_after_sniff ,kb_event_light_state_hibernate 
+0x4216 008227 branch kb_start_discovery 
+:      008228 kb_event_light_state_reconn:
+:      008229 kb_event_light_state_hibernate:
+0x4217 008230 fetch 2 ,mem_ui_state_map 
+0x4218 008231 bbit1 ui_state_btn_down ,kb_start_discovery 
+0x4219 008232 branch app_bb_hibernate 
+:      008234 kb_bb_discon_clear_stack:
+0x421a 008235 jam app_handshake_null ,mem_app_handshake_flag 
+0x421b 008236 jam 0 ,mem_kb_debug_sm 
+0x421c 008237 rtn 
+:      008240 kb_check_hid_handshake_timer:
+0x421d 008241 fetch 1 ,mem_hid_handshake_timer_count 
+0x421e 008242 rtn blank 
+0x421f 008243 increase -1 ,pdata 
+0x4220 008244 store 1 ,mem_hid_handshake_timer_count 
+0x4221 008245 nrtn blank 
+0x4222 008246 branch kb_bt_hid_handshake 
+:      008249 kb_bb_event_discovery_btn:
+0x4223 008250 setarg 0 
+0x4224 008251 store 2 ,mem_kb_direct_timer 
+0x4225 008252 store 1 ,mem_pin_length 
+0x4226 008253 call led_cap_darking 
+0x4227 008254 call kb_3_0_bb_event_discovery_btn 
+0x4228 008255 call app_lpm_mult_disable 
+0x4229 008256 branch kb_start_discovery 
+:      008258 led_cap_darking:
+0x422a 008259 jam 1 ,mem_led_cap_gpio_status 
+0x422b 008260 fetcht 1 ,mem_led_cap_gpio 
+0x422c 008261 branch gpio_out_inactive 
+:      008263 kb_3_0_bb_event_discovery_btn:
+0x422d 008264 set0 mark_ext_patch ,mark 
+0x422e 008265 bpatch patch19_6 ,mem_patch19 
+0x422f 008266 fetch 2 ,mem_ui_state_map 
+0x4230 008267 isolate1 ui_state_bt_reconnect ,pdata 
+0x4231 008268 call app_bt_reconnect_cancel ,true 
+0x4232 008269 fetch 2 ,mem_discovery_timeout 
+0x4233 008270 store 2 ,mem_discovery_timeout_timer_count 
+0x4234 008271 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x4235 008272 set1 app_disc_by_button ,pdata 
+0x4236 008273 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x4237 008274 fetch 2 ,mem_ui_state_map 
+0x4238 008275 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x4239 008276 rtn 
+:      008279 kb_stop_discovery:
+0x423a 008280 call app_led_stop_blink 
+0x423b 008281 setarg 0 
+0x423c 008282 store 2 ,mem_kb_discovery_timer 
+0x423d 008283 branch app_bt_stop_discovery 
+:      008285 kb_start_discovery:
+0x423e 008286 call app_lpm_mult_disable 
+0x423f 008287 fetch 2 ,mem_discovery_timeout 
+0x4240 008288 store 2 ,mem_kb_discovery_timer 
+0x4241 008289 call app_bt_start_discovery 
+0x4242 008290 jam 0 ,mem_kb_led_on_timer 
+0x4243 008292 call app_led_start_blink 
+0x4244 008293 call kb_clean_kscan_fifo 
+0x4245 008294 branch kb_clear_keys 
+:      008296 kb_discovery_timeout_sleep:
+0x4246 008297 branch app_enter_hibernate 
+:      008299 kb_process_pincode:
+0x4247 008300 jam 0 ,mem_hid_handshake_timer_count 
+0x4248 008301 jam 0 ,mem_pin_length 
+0x4249 008302 call kb_clear_keys 
+0x424a 008303 branch kb_clean_kscan_fifo 
+:      008306 kb_before_hibernate:
+0x424b 008307 fetch 1 ,mem_kb_led_on_timer 
+0x424c 008308 branch kb_before_hibernate_cont ,blank 
+0x424d 008309 arg 320 ,temp 
+0x424e 008310 imul32 temp ,temp 
+0x424f 008311 copy clkn_bt ,pdata 
+0x4250 008312 iadd temp ,temp 
+:      008313 kb_before_hibernate_wait:
+0x4251 008314 copy clkn_bt ,pdata 
+0x4252 008315 isub temp ,null 
+0x4253 008316 nbranch kb_before_hibernate_wait ,positive 
+:      008317 kb_before_hibernate_cont:
+0x4254 008318 fetcht 1 ,mem_led_power_gpio 
+0x4255 008319 call gpio_out_inactive 
+0x4256 008320 enable user 
+0x4257 008321 hfetch 4 ,0x8138 
+0x4258 008322 setflag user ,26 ,pdata 
+0x4259 008323 hstore 4 ,core_lpm_reg 
+0x425a 008324 call lpm_write_ctrl 
+:      008325 kb_wake_common:
+0x425b 008326 hjam 0x00 ,core_gpio_key0 
+0x425c 008327 hjam 0x00 ,core_gpio_key1 
+0x425d 008328 hfetch 1 ,core_gpio_key2 
+0x425e 008329 and_into 0xf0 ,pdata 
+0x425f 008330 hstore 1 ,core_gpio_key2 
+0x4260 008331 setarg 0x00 
+0x4261 008332 store 4 ,mem_gpio_wakeup_high 
+0x4262 008333 setarg 0xff 
+0x4263 008334 fetcht 1 ,mem_ui_button_gpio 
+0x4264 008335 copy temp ,queue 
+0x4265 008336 qset1 pdata 
+0x4266 008337 store 4 ,mem_gpio_wakeup_low 
+0x4267 008338 rtn 
+:      008339 kb_process_lpm_before:
+0x4268 008340 call kb_wake_common 
+0x4269 008341 fetch 1 ,mem_lpm_current_mult 
+0x426a 008342 nrtn blank 
+0x426b 008343 jam 0 ,mem_gpio_wakeup_low 
+0x426c 008344 rtn 
+:      008346 kb_hid_connected:
+0x426d 008347 setarg hid_handshake_timeout 
+0x426e 008348 store 1 ,mem_hid_handshake_timer_count 
+0x426f 008349 call kb_clean_kscan_fifo 
+0x4270 008350 branch kb_clear_keys 
+:      008353 kb_bt_hid_handshake:
+0x4271 008354 set0 mark_ext_patch ,mark 
+0x4272 008355 bpatch patch19_7 ,mem_patch19 
+0x4273 008356 call ui_led_off 
+0x4274 008357 jam app_handshake_done ,mem_app_handshake_flag 
+0x4275 008358 call kb_clean_kscan_fifo 
+0x4276 008359 call kb_clear_keys 
+0x4277 008360 call app_lpm_mult_enable 
+0x4278 008361 call app_bt_store_reconn_info 
+0x4279 008362 setarg 0 
+0x427a 008363 store 2 ,mem_discovery_timeout_timer_count 
+0x427b 008364 store 1 ,mem_hid_handshake_timer_count 
+0x427c 008365 branch app_bt_enter_sniff 
+:      008368 store_current_status:
+0x427d 008369 fetch 1 ,mem_kb_current_status 
+0x427e 008370 and_into 0x7 ,pdata 
+0x427f 008371 store 1 ,mem_store_current_status 
+0x4280 008372 arg 1 ,temp 
+0x4281 008373 arg mem_store_current_status ,rega 
+0x4282 008374 setarg eeprom_system_falg 
+0x4283 008375 branch iicd_write_eep 
+:      008378 read_current_status:
+0x4284 008379 arg 1 ,temp 
+0x4285 008380 arg mem_store_current_status ,rega 
+0x4286 008381 setarg eeprom_system_falg 
+0x4287 008382 byteswap pdata ,pdata 
+0x4288 008383 store 2 ,mem_addr_mi 
+0x4289 008384 call iicd_read_eep 
+0x428a 008385 fetch 1 ,mem_store_current_status 
+0x428b 008386 copy pdata ,regb 
+0x428c 008387 and_into 0x0f ,pdata 
+0x428d 008388 beq 0x0f ,kb_current_status_regroup 
+0x428e 008389 copy regb ,pdata 
+0x428f 008390 store 1 ,mem_kb_current_status 
+0x4290 008391 rtn 
+:      008394 kb_kscan_release_foundkey:
+0x4291 008395 add contr ,-1 ,contw 
+0x4292 008396 call memcpy 
+0x4293 008397 fetch 1 ,mem_kb_keys 
+0x4294 008398 increase -1 ,pdata 
+0x4295 008399 store 1 ,mem_kb_keys 
+0x4296 008400 fetch 1 ,mem_kb_release_fn_data 
+0x4297 008401 beq 0x7f ,kb_clear_fn_lock_flag 
+0x4298 008402 branch kb_kscan_check 
+:      008404 kb_recover_kb_down_data:
+0x4299 008405 fetch 8 ,mem_kb_down 
+0x429a 008406 store 8 ,mem_kb_down_test 
+0x429b 008407 branch kb_kscan_check 
+:      008409 kb_kscan_fn:
+0x429c 008410 fetch 1 ,mem_kb_keys 
+0x429d 008411 branch kb_kscan_no_data ,blank 
+0x429e 008412 copy pdata ,regb 
+0x429f 008413 fetch 5 ,mem_kb_down 
+0x42a0 008414 copy pdata ,temp 
+:      008415 kb_kscan_fn_loop:
+0x42a1 008416 copy temp ,pdata 
+0x42a2 008417 compare 0x7f ,pdata ,0xff 
+0x42a3 008418 branch kb_get_fn ,true 
+0x42a4 008419 increase -1 ,regb 
+0x42a5 008420 setarg mem_kb_down_regroup 
+0x42a6 008421 iadd regb ,contw 
+0x42a7 008422 copy temp ,pdata 
+0x42a8 008423 istore 1 ,contw 
+0x42a9 008424 copy temp ,pdata 
+0x42aa 008425 rshift8 pdata ,pdata 
+0x42ab 008426 copy pdata ,temp 
+0x42ac 008427 nbranch kb_kscan_fn_loop ,blank 
+0x42ad 008428 fetch 5 ,mem_kb_down_regroup 
+0x42ae 008429 call kb_down_data ,blank 
+0x42af 008430 branch kb_kscan_check 
+:      008431 kb_get_fn:
+0x42b0 008432 setarg 1 
+0x42b1 008433 store 1 ,mem_kb_get_fn_flag 
+0x42b2 008434 branch kb_kscan_fn_loop + 8 
+:      008436 select_system_led_timer:
+0x42b3 008437 fetch 1 ,mem_select_system_led_timer 
+0x42b4 008438 rtn blank 
+0x42b5 008439 increase -1 ,pdata 
+0x42b6 008440 store 1 ,mem_select_system_led_timer 
+0x42b7 008441 nrtn blank 
+0x42b8 008442 branch ui_led_blink_stop 
+:      008445 kb_current_status_regroup:
+0x42b9 008446 copy regb ,pdata 
+0x42ba 008447 and_into kb_map2_status_win ,pdata 
+0x42bb 008448 store 1 ,mem_kb_current_status 
+0x42bc 008449 rtn 
+:      008450 kb_clear_fn_lock_flag:
+0x42bd 008451 jam 0 ,mem_kb_get_fn_flag 
+0x42be 008452 call kb_down_data 
+0x42bf 008453 branch kb_kscan_check 
+:      008456 kb_kscan_check:
+0x42c0 008457 set0 mark_ext_patch ,mark 
+0x42c1 008458 bpatch patch1a_1 ,mem_patch1a 
+0x42c2 008459 hfetch 1 ,core_kscn_kstat 
+0x42c3 008460 rtnbit1 kb_kscan_stat_empty 
+0x42c4 008461 hfetch 1 ,core_kscn_event_num 
+0x42c5 008462 bbit1 kb_kscan_key_event_stat ,kb_kscan_read_event 
+0x42c6 008463 hfetch 1 ,core_kscn_kstat 
+0x42c7 008464 bbit0 kb_kscan_stat_ghost ,kb_kscan_read_event 
+0x42c8 008465 hfetch 1 ,core_kscn_event 
+0x42c9 008466 branch kb_kscan_check 
+:      008468 kb_kscan_no_data:
+0x42ca 008469 call kb_clear_data 
+0x42cb 008470 branch kb_kscan_check 
+:      008472 kb_down_data:
+0x42cc 008473 fetch 8 ,mem_kb_down 
+0x42cd 008474 store 8 ,mem_kb_down_test 
+0x42ce 008475 rtn 
+:      008477 kb_clear_data:
+0x42cf 008478 setarg 0 
+0x42d0 008479 store 1 ,mem_kb_get_fn_flag 
+0x42d1 008480 store 5 ,mem_kb_down_regroup 
+0x42d2 008481 store 8 ,mem_kb_down 
+0x42d3 008482 rtn 
+:      008484 kb_kscan_read_event:
+0x42d4 008485 fetch 1 ,mem_kb_temp_flag 
+0x42d5 008486 set1 key_event_flag ,pdata 
+0x42d6 008487 store 1 ,mem_kb_temp_flag 
+0x42d7 008489 hfetch 1 ,core_kscn_event_num 
+0x42d8 008490 isolate1 kb_kscan_key_event_stat ,pdata 
+0x42d9 008491 store 1 ,mem_kscan_event_num_last 
+0x42da 008492 hfetch 1 ,core_kscn_event 
+0x42db 008493 store 1 ,mem_kscn_event_last 
+0x42dc 008494 arg mem_kb_map ,contr 
+0x42dd 008495 iadd contr ,contr 
+0x42de 008496 ifetch 1 ,contr 
+0x42df 008497 fetcht 1 ,mem_kb_keys 
+0x42e0 008498 sub temp ,4 ,null 
+0x42e1 008499 nbranch kb_kscan_check ,positive 
+0x42e2 008500 iforce contr 
+0x42e3 008501 setarg mem_kb_down 
+0x42e4 008502 iadd temp ,contw 
+0x42e5 008503 deposit contr 
+0x42e6 008504 istore 1 ,contw 
+0x42e7 008505 increase 1 ,temp 
+0x42e8 008506 storet 1 ,mem_kb_keys 
+0x42e9 008507 branch kb_kscan_fn 
+:      008523 l2cap_init:
+0x42ea 008524 branch l2cap_init_wake ,wake 
+:      008525 l2cap_init_work:
+0x42eb 008526 setarg mem_l2cap_xmem_end 
+0x42ec 008527 arg mem_l2cap_xmem_start ,contw 
+0x42ed 008528 isub contw ,loopcnt 
+0x42ee 008529 call clear_mem 
+:      008530 l2cap_init_wake:
+0x42ef 008531 set0 mark_ext_patch ,mark 
+0x42f0 008532 bpatch patch1a_2 ,mem_patch1a 
+0x42f1 008533 setarg mem_sdp_mem_end 
+0x42f2 008534 arg mem_sdp_mem_start ,contw 
+0x42f3 008535 isub contw ,loopcnt 
+0x42f4 008536 call clear_mem 
+0x42f5 008537 setarg mem_l2cap_mem_end 
+0x42f6 008538 arg mem_l2cap_mem_start ,contw 
+0x42f7 008539 isub contw ,loopcnt 
+0x42f8 008540 call clear_mem 
+0x42f9 008541 branch l2cap_lpm_load_txbuf 
+:      008543 process_rx_l2cap_pkt:
+0x42fa 008544 set0 mark_ext_patch ,mark 
+0x42fb 008545 bpatch patch1a_3 ,mem_patch1a 
+0x42fc 008546 copy contr ,temp 
+0x42fd 008549 copy temp ,contr 
+0x42fe 008550 ifetch 2 ,contr 
+0x42ff 008551 store 2 ,mem_l2cap_rx_pkt_length 
+0x4300 008552 ifetch 2 ,contr 
+0x4301 008553 store 2 ,mem_l2cap_rx_cid 
+0x4302 008554 deposit contr 
+0x4303 008555 store 2 ,mem_l2cap_payload_ptr 
+0x4304 008556 fetch 1 ,memui_reconnect_mode 
+0x4305 008557 beq no_reconnection ,l2cap_rx_multiplexing 
+0x4306 008558 branch ml2cap_rx_multiplexing 
+:      008560 l2cap_rx_multiplexing:
+0x4307 008561 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4308 008562 branch l2cap_rx_reset_state ,blank 
+0x4309 008563 set0 mark_ext_patch ,mark 
+0x430a 008564 bpatch patch1a_4 ,mem_patch1a 
+0x430b 008565 fetch 1 ,mem_l2cap_rx_cid 
+0x430c 008566 beq l2cap_signal_channel ,l2cap_call_proc_signal 
+:      008567 l2cap_rx_multiplexing0:
+0x430d 008568 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
+0x430e 008569 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+0x430f 008570 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+0x4310 008571 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+0x4311 008572 branch l2cap_rx_reset_state 
+:      008574 l2cap_check_map:
+0x4312 008577 set0 mark_ext_patch ,mark 
+0x4313 008578 bpatch patch1a_5 ,mem_patch1a 
+0x4314 008579 call l2cap_malloc_get_full_map 
+0x4315 008580 fetch 1 ,mem_used_map 
+0x4316 008581 beq 0 ,set_pdata_0 
+0x4317 008582 beq 1 ,set_pdata_0 
+0x4318 008583 beq 2 ,set_pdata_0 
+0x4319 008584 beq 3 ,set_pdata_0 
+0x431a 008585 beq 0x81 ,set_pdata_0 
+0x431b 008586 beq 0xc0 ,set_pdata_0 
+0x431c 008587 beq 0x80 ,set_pdata_0 
+0x431d 008588 beq 0x40 ,set_pdata_0 
+0x431e 008589 rtn 
+:      008591 set_pdata_0:
+0x431f 008592 setarg 0 
+0x4320 008593 rtn 
+:      008596 l2cap_call_proc_signal:
+0x4321 008597 call l2cap_check_map 
+0x4322 008598 nrtn blank 
+:      008599 l2cap_call_proc_signal0:
+0x4323 008600 call l2cap_malloc_signal_channel 
+0x4324 008601 call l2cap_process_signal_pkt 
+0x4325 008602 fetcht 2 ,mem_l2cap_signal_tx_length 
+0x4326 008603 branch l2cap_call_proc_no_reply ,blank 
+0x4327 008604 call l2cap_get_signal_tx_buff 
+0x4328 008605 fetch 2 ,mem_l2cap_signal_tx_length 
+0x4329 008606 istore 2 ,contw 
+0x432a 008607 force l2cap_signal_channel ,pdata 
+0x432b 008608 istore 2 ,contw 
+0x432c 008609 branch l2cap_rx_reset_state 
+:      008611 l2cap_call_proc_sigal_pending:
+0x432d 008612 fetch 1 ,mem_l2cap_pending_item 
+0x432e 008613 rtn blank 
+0x432f 008614 copy pdata ,rega 
+0x4330 008615 set0 mark_ext_patch ,mark 
+0x4331 008616 bpatch patch1a_6 ,mem_patch1a 
+0x4332 008617 fetch 4 ,mem_l2cap_sdpres_delay_time 
+0x4333 008618 arg 0x100 ,temp 
+0x4334 008619 iadd temp ,temp 
+0x4335 008620 copy clkn_bt ,pdata 
+0x4336 008621 isub temp ,null 
+0x4337 008622 nrtn positive 
+0x4338 008623 jam 0 ,mem_l2cap_pending_item 
+0x4339 008624 copy rega ,pdata 
+0x433a 008625 beq l2cap_sdp_channel ,l2cap_sdp_conn_succ 
+0x433b 008626 branch assert 
+:      008627 l2cap_sdp_conn_succ:
+0x433c 008628 arg 0 ,debug 
+0x433d 008629 call l2cap_malloc_signal_channel 
+0x433e 008630 call restore_l2cap_req_param 
+0x433f 008631 call l2cap_get_signal_tx_payload 
+0x4340 008632 call save_cont_pointers 
+0x4341 008633 call send_connection_sdp_res 
+0x4342 008634 call l2cap_get_signal_tx_buff 
+0x4343 008636 setarg 0x000c 
+0x4344 008637 istore 2 ,contw 
+0x4345 008638 force l2cap_signal_channel ,pdata 
+0x4346 008639 istore 2 ,contw 
+0x4347 008640 branch l2cap_rx_reset_state 
+:      008644 l2cap_reset_sdp_map:
+0x4348 008645 set0 mark_ext_patch ,mark 
+0x4349 008646 bpatch patch1a_7 ,mem_patch1a 
+0x434a 008647 fetch 2 ,mem_sdp_tx_pkt_length 
+0x434b 008648 increase 4 ,pdata 
+0x434c 008649 rshift4 pdata ,pdata 
+0x434d 008650 rshift3 pdata ,pdata 
+0x434e 008651 add pdata ,1 ,temp 
+0x434f 008652 arg mem_tx_fifo3 ,contr 
+0x4350 008653 ifetch 3 ,contr 
+0x4351 008654 rtn blank 
+0x4352 008655 store 3 ,mem_tx_fifo_map_temp 
+0x4353 008656 fetch 1 ,mem_tx_fifo_map_temp 
+0x4354 008657 copy pdata ,rega 
+0x4355 008658 call check_l2cap_map 
+0x4356 008659 copy regb ,pdata 
+0x4357 008660 store 1 ,mem_tx_fifo3 
+0x4358 008661 rtn 
+:      008663 check_l2cap_map:
+0x4359 008664 arg 0 ,queue 
+0x435a 008665 arg 0 ,regb 
+:      008667 check_l2cap_map_loop:
+0x435b 008668 sub queue ,7 ,null 
+0x435c 008669 nrtn positive 
+0x435d 008670 qisolate1 rega 
+0x435e 008671 branch check_l2cap_map_used ,true 
+0x435f 008672 branch check_l2cap_map_used2 
+:      008674 check_l2cap_map_used:
+0x4360 008675 copy temp ,pdata 
+0x4361 008676 branch check_l2cap_map_used2 ,blank 
+0x4362 008677 qset1 regb 
+0x4363 008678 increase -1 ,temp 
+:      008680 check_l2cap_map_used2:
+0x4364 008681 increase 1 ,queue 
+0x4365 008682 branch check_l2cap_map_loop 
+:      008684 l2cap_call_proc_sdp:
+0x4366 008685 call l2cap_malloc_is_fifo_empty 
+0x4367 008686 nrtn blank 
+0x4368 008687 call l2cap_check_map 
+0x4369 008688 nrtn blank 
+0x436a 008689 call l2cap_malloc_sdp_channel 
+0x436b 008690 call sdp_process 
+0x436c 008691 call l2cap_reset_sdp_map 
+0x436d 008692 branch l2cap_call_proc_sdp_common 
+:      008695 ml2cap_call_proc_sdp:
+0x436e 008696 call l2cap_malloc_is_fifo_empty 
+0x436f 008697 nrtn blank 
+0x4370 008698 call l2cap_malloc_sdp_channel 
+0x4371 008699 call sdp_process 
+:      008700 l2cap_call_proc_sdp_common:
+0x4372 008701 call l2cap_get_sdp_tx_buff 
+0x4373 008702 fetch 2 ,mem_sdp_tx_pkt_length 
+0x4374 008703 branch l2cap_call_proc_no_reply ,blank 
+0x4375 008704 istore 2 ,contw 
+0x4376 008705 fetch 2 ,mem_sdp_remote_cid 
+0x4377 008706 istore 2 ,contw 
+0x4378 008707 branch l2cap_rx_reset_state 
+:      008709 l2cap_call_proc_hid:
+0x4379 008710 call hid_rx_process 
+0x437a 008711 branch l2cap_rx_reset_state 
+:      008713 l2cap_call_proc_rfcomm:
+0x437b 008714 set0 mark_ext_patch ,mark 
+0x437c 008715 bpatch patch1b_0 ,mem_patch1b 
+0x437d 008716 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+0x437e 008717 call rfcomm_rx_process 
+0x437f 008718 fetch 1 ,mem_rfcomm_malloc_fail_flag 
+0x4380 008719 rtneq rfcomm_malloc_fail 
+0x4381 008720 branch l2cap_rx_reset_state 
+:      008721 l2cap_call_proc_no_reply:
+0x4382 008722 call l2cap_malloc_discard 
+:      008724 l2cap_rx_reset_state:
+0x4383 008725 setarg 0 
+0x4384 008726 store 2 ,mem_l2cap_rx_pkt_length 
+0x4385 008727 store 2 ,mem_l2cap_rx_cid 
+0x4386 008728 jam l2cap_rx_done ,mem_l2cap_rx_done 
+0x4387 008729 rtn 
+:      008731 l2cap_process_signal_pkt:
+0x4388 008732 set0 mark_ext_patch ,mark 
+0x4389 008733 bpatch patch1b_1 ,mem_patch1b 
+0x438a 008734 call l2cap_get_signal_tx_payload 
+0x438b 008735 force 0 ,regb 
+0x438c 008736 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x438d 008737 copy pdata ,regc 
+0x438e 008738 fetch 2 ,mem_l2cap_payload_ptr 
+0x438f 008739 iforce contr 
+:      008740 l2cap_process_signal_pkt_loop:
+0x4390 008741 call l2cap_process_one_signal 
+0x4391 008742 deposit regc 
+0x4392 008743 increase -4 ,regc 
+0x4393 008744 increase -4 ,pdata 
+0x4394 008745 nbranch l2cap_process_signal_pkt_loop ,blank 
+0x4395 008746 copy regb ,pdata 
+0x4396 008747 store 2 ,mem_l2cap_signal_tx_length 
+0x4397 008748 rtn 
+:      008750 l2cap_process_one_signal:
+0x4398 008751 set0 mark_ext_patch ,mark 
+0x4399 008752 bpatch patch1b_2 ,mem_patch1b 
+0x439a 008753 ifetch 1 ,contr 
+0x439b 008754 beq signal_cmd_reject ,l2cap_proc_signal_cmd_reject 
+0x439c 008755 beq signal_connect_req ,l2cap_proc_signal_connect_req 
+0x439d 008756 beq signal_connect_rsp ,l2cap_proc_signal_connect_rsp 
+0x439e 008757 beq signal_config_req ,l2cap_proc_signal_config_req 
+0x439f 008758 beq signal_config_rsp ,l2cap_proc_signal_config_rsp 
+0x43a0 008759 beq signal_disconnect_req ,l2cap_proc_signal_disconnect_req 
+0x43a1 008760 beq signal_disconnect_rsp ,l2cap_proc_signal_disconnect_rsp 
+0x43a2 008761 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+0x43a3 008762 beq signal_echo_rsp ,l2cap_proc_signal_echo_rsp 
+0x43a4 008763 beq signal_info_req ,l2cap_proc_signal_info_req 
+0x43a5 008764 beq signal_info_rsp ,l2cap_proc_signal_info_rsp 
+0x43a6 008765 call l2cap_reject_command 
+:      008766 l2cap_process_one_signal_rtn:
+0x43a7 008767 rtn 
+:      008769 l2cap_proc_signal_info_req:
+0x43a8 008770 ifetch 1 ,contr 
+0x43a9 008771 copy pdata ,queue 
+0x43aa 008772 ifetch 2 ,contr 
+0x43ab 008773 copy pdata ,rega 
+0x43ac 008774 copy regc ,pdata 
+0x43ad 008775 isub rega ,regc 
+0x43ae 008776 setarg signal_info_rsp 
+0x43af 008777 istore 1 ,contw 
+0x43b0 008778 copy queue ,pdata 
+0x43b1 008779 istore 1 ,contw 
+0x43b2 008780 ifetch 2 ,contr 
+:      008781 l2cap_proc_signal_info_req_reply:
+0x43b3 008782 beq l2cap_sig_ext_featrue ,l2cap_proc_signal_info_req_ext 
+0x43b4 008783 beq l2cap_sig_fix_featrue ,l2cap_proc_signal_info_req_fix 
+0x43b5 008784 rtn 
+:      008785 l2cap_proc_signal_info_req_ext:
+0x43b6 008786 setarg 0x020008 
+0x43b7 008787 istore 6 ,contw 
+0x43b8 008788 setarg 0x0280 
+0x43b9 008789 istore 4 ,contw 
+0x43ba 008790 force 12 ,pdata 
+0x43bb 008791 branch l2cap_proc_signal_info_req_common 
+:      008792 l2cap_proc_signal_info_req_fix:
+0x43bc 008793 setarg 0x3000c 
+0x43bd 008794 istore 6 ,contw 
+0x43be 008795 setarg 0x0006 
+0x43bf 008796 istore 8 ,contw 
+0x43c0 008797 force 16 ,pdata 
+:      008798 l2cap_proc_signal_info_req_common:
+0x43c1 008799 iadd regb ,regb 
+0x43c2 008800 branch l2cap_process_one_signal_rtn 
+:      008802 ml2cap_proc_signal_info_req:
+0x43c3 008803 ifetch 1 ,contr 
+0x43c4 008804 copy pdata ,queue 
+0x43c5 008805 ifetch 2 ,contr 
+0x43c6 008806 copy pdata ,rega 
+0x43c7 008807 ifetch 2 ,contr 
+0x43c8 008808 store 2 ,mem_temp 
+0x43c9 008809 copy regc ,pdata 
+0x43ca 008810 isub rega ,regc 
+0x43cb 008811 call l2cap_get_signal_tx_payload 
+0x43cc 008812 setarg signal_info_rsp 
+0x43cd 008813 istore 1 ,contw 
+0x43ce 008814 copy queue ,pdata 
+0x43cf 008815 istore 1 ,contw 
+0x43d0 008816 fetch 2 ,mem_temp 
+0x43d1 008817 branch l2cap_proc_signal_info_req_reply 
+:      008821 l2cap_proc_signal_cmd_reject:
+0x43d2 008822 ifetch 1 ,contr 
+0x43d3 008823 copy pdata ,queue 
+0x43d4 008824 ifetch 2 ,contr 
+0x43d5 008825 copy pdata ,rega 
+0x43d6 008826 iadd contr ,contr 
+0x43d7 008827 copy regc ,pdata 
+0x43d8 008828 isub rega ,regc 
+:      008829 l2cap_proc_signal_cmd_reject_rtn:
+0x43d9 008830 branch l2cap_process_one_signal_rtn 
+:      008832 l2cap_proc_signal_connect_req:
+0x43da 008833 call save_cont_pointers 
+0x43db 008836 call load_cont_pointers 
+0x43dc 008837 arg 0 ,debug 
+0x43dd 008838 ifetch 1 ,contr 
+0x43de 008839 copy pdata ,queue 
+0x43df 008840 ifetch 2 ,contr 
+0x43e0 008841 copy pdata ,rega 
+0x43e1 008842 ifetch 2 ,contr 
+0x43e2 008843 copy pdata ,temp 
+0x43e3 008844 ifetch 2 ,contr 
+0x43e4 008845 copy pdata ,timeup 
+0x43e5 008846 set0 mark_ext_patch ,mark 
+0x43e6 008847 bpatch patch1b_3 ,mem_patch1b 
+0x43e7 008848 copy temp ,pdata 
+0x43e8 008849 beq psm_sdp ,l2cap_proc_signal_connect_req_sdp 
+0x43e9 008850 beq psm_rfcomm ,l2cap_proc_signal_connect_req_rfcomm 
+0x43ea 008851 beq psm_hid_control ,l2cap_proc_signal_connect_req_hid_ctrl 
+0x43eb 008852 beq psm_hid_interrupt ,l2cap_proc_signal_connect_req_hid_int 
+0x43ec 008853 call l2cap_reject_command 
+0x43ed 008854 branch l2cap_proc_signal_connect_req_rtn 
+:      008856 l2cap_proc_signal_connect_req_sdp:
+0x43ee 008857 call save_cont_pointers 
+0x43ef 008858 arg l2cap_sdp_channel ,temp 
+0x43f0 008859 fetch 2 ,mem_sdp_remote_cid 
+0x43f1 008860 nbranch already_connected ,blank 
+0x43f2 008861 copy timeup ,pdata 
+0x43f3 008862 store 2 ,mem_sdp_remote_cid 
+0x43f4 008863 copy clkn_bt ,pdata 
+0x43f5 008864 store 4 ,mem_l2cap_sdpres_delay_time 
+0x43f6 008865 call store_l2cap_req_param 
+0x43f7 008866 branch send_connection_pending 
+:      008868 store_l2cap_req_param:
+0x43f8 008869 storet 2 ,mem_psm 
+0x43f9 008870 deposit timeup 
+0x43fa 008871 store 2 ,mem_scid 
+0x43fb 008872 deposit rega 
+0x43fc 008873 store 2 ,mem_cmd_length 
+0x43fd 008874 deposit regb 
+0x43fe 008875 store 2 ,mem_tt2 
+0x43ff 008876 deposit regc 
+0x4400 008877 store 2 ,mem_tt3 
+0x4401 008878 deposit queue 
+0x4402 008879 store 2 ,mem_id 
+0x4403 008880 rtn 
+:      008882 restore_l2cap_req_param:
+0x4404 008883 fetcht 2 ,mem_psm 
+0x4405 008884 fetch 2 ,mem_scid 
+0x4406 008885 copy pdata ,timeup 
+0x4407 008886 fetch 2 ,mem_cmd_length 
+0x4408 008887 copy pdata ,rega 
+0x4409 008888 fetch 2 ,mem_tt2 
+0x440a 008889 copy pdata ,regb 
+0x440b 008890 fetch 2 ,mem_tt3 
+0x440c 008891 copy pdata ,regc 
+0x440d 008892 fetch 2 ,mem_id 
+0x440e 008893 copy pdata ,queue 
+0x440f 008894 rtn 
+:      008896 l2cap_proc_signal_connect_req_rfcomm:
+0x4410 008897 call save_cont_pointers 
+0x4411 008898 setarg l2cap_rfcomm_channel 
+0x4412 008899 arg l2cap_rfcomm_channel ,temp 
+0x4413 008900 fetch 2 ,mem_rfcomm_remote_cid 
+0x4414 008901 nbranch already_connected ,blank 
+0x4415 008902 copy timeup ,pdata 
+0x4416 008903 store 2 ,mem_rfcomm_remote_cid 
+0x4417 008904 fetch 1 ,mem_rfcomm_state 
+0x4418 008905 set1 l2cap_channel_state_conn_req ,pdata 
+0x4419 008906 set1 l2cap_channel_state_conn_res ,pdata 
+0x441a 008907 store 1 ,mem_rfcomm_state 
+0x441b 008908 branch send_connection_res 
+:      008909 l2cap_proc_signal_connect_req_hid_ctrl:
+0x441c 008910 call save_cont_pointers 
+0x441d 008911 arg l2cap_hid_control_channel ,temp 
+0x441e 008912 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x441f 008913 nbranch already_connected ,blank 
+0x4420 008914 copy timeup ,pdata 
+0x4421 008915 store 2 ,mem_hid_ctrl_remote_cid 
+0x4422 008916 fetch 1 ,mem_hid_control_state 
+0x4423 008917 set1 l2cap_channel_state_conn_req ,pdata 
+0x4424 008918 set1 l2cap_channel_state_conn_res ,pdata 
+0x4425 008919 store 1 ,mem_hid_control_state 
+0x4426 008920 branch send_connection_res 
+:      008921 l2cap_proc_signal_connect_req_hid_int:
+0x4427 008922 call save_cont_pointers 
+0x4428 008923 deposit clke 
+0x4429 008924 arg l2cap_hid_interrupt_channel ,temp 
+0x442a 008925 fetch 2 ,mem_hid_int_remote_cid 
+0x442b 008926 nbranch already_connected ,blank 
+0x442c 008927 copy timeup ,pdata 
+0x442d 008928 store 2 ,mem_hid_int_remote_cid 
+0x442e 008929 fetch 1 ,mem_hid_interrupt_state 
+0x442f 008930 set1 l2cap_channel_state_conn_req ,pdata 
+0x4430 008931 set1 l2cap_channel_state_conn_res ,pdata 
+0x4431 008932 store 1 ,mem_hid_interrupt_state 
+0x4432 008933 branch send_connection_res 
+:      008935 send_connection_pending:
+0x4433 008936 setarg l2cap_connect_pending 
+0x4434 008937 store 2 ,meml2cap_t1 
+0x4435 008938 jam l2cap_sdp_channel ,mem_l2cap_pending_item 
+0x4436 008939 branch send_connection_res0 
+:      008940 send_connection_sdp_res:
+0x4437 008941 fetch 1 ,mem_sdp_state 
+0x4438 008942 set1 l2cap_channel_state_conn_req ,pdata 
+0x4439 008943 set1 l2cap_channel_state_conn_res ,pdata 
+0x443a 008944 store 1 ,mem_sdp_state 
+:      008945 send_connection_res:
+0x443b 008946 setarg l2cap_connect_successful 
+0x443c 008947 store 2 ,meml2cap_t1 
+:      008948 send_connection_res0:
+0x443d 008949 set0 mark_ext_patch ,mark 
+0x443e 008950 bpatch patch1b_4 ,mem_patch1b 
+0x443f 008951 call load_cont_pointers 
+0x4440 008952 setarg signal_connect_rsp 
+0x4441 008953 istore 1 ,contw 
+0x4442 008954 copy queue ,pdata 
+0x4443 008955 istore 1 ,contw 
+0x4444 008956 setarg 0x0008 
+0x4445 008957 istore 2 ,contw 
+0x4446 008958 copy temp ,pdata 
+0x4447 008959 istore 2 ,contw 
+0x4448 008960 copy timeup ,pdata 
+0x4449 008961 istore 2 ,contw 
+0x444a 008962 fetch 2 ,meml2cap_t1 
+0x444b 008963 beq l2cap_connect_pending ,connect_pending 
+0x444c 008964 isolate0 0 ,debug 
+0x444d 008965 branch connect_suc ,true 
+0x444e 008966 setarg l2cap_connect_refused_no_resources 
+:      008967 connect_suc:
+0x444f 008968 istore 2 ,contw 
+0x4450 008969 force 0x0000 ,pdata 
+0x4451 008970 istore 2 ,contw 
+0x4452 008971 setarg 12 
+0x4453 008972 branch connect_req_update_byte_counts 
+:      008973 connect_pending:
+0x4454 008974 istore 2 ,contw 
+0x4455 008975 force 0x0002 ,pdata 
+0x4456 008976 istore 2 ,contw 
+0x4457 008977 setarg 12 
+0x4458 008978 branch connect_req_update_byte_counts 
+:      008980 already_connected:
+0x4459 008981 set1 0 ,debug 
+0x445a 008982 branch send_connection_res 
+:      008983 connect_req_update_byte_counts:
+0x445b 008984 iadd regb ,regb 
+0x445c 008985 copy regc ,pdata 
+0x445d 008986 isub rega ,regc 
+0x445e 008987 branch l2cap_proc_signal_connect_req_rtn 
+:      008988 l2cap_proc_signal_connect_req_rtn:
+0x445f 008989 branch l2cap_process_one_signal_rtn 
+:      008991 l2cap_proc_signal_connect_rsp:
+0x4460 008992 ifetch 1 ,contr 
+0x4461 008993 copy pdata ,queue 
+0x4462 008994 ifetch 2 ,contr 
+0x4463 008995 copy pdata ,rega 
+0x4464 008996 copy regc ,pdata 
+0x4465 008997 isub rega ,regc 
+0x4466 008998 ifetch 2 ,contr 
+0x4467 008999 copy pdata ,timeup 
+0x4468 009000 ifetch 2 ,contr 
+0x4469 009001 copy pdata ,temp 
+0x446a 009002 set0 mark_ext_patch ,mark 
+0x446b 009003 bpatch patch1b_5 ,mem_patch1b 
+0x446c 009004 setarg l2cap_sdp_channel 
+0x446d 009005 isub temp ,null 
+0x446e 009006 branch l2cap_proc_signal_connect_rsp_sdp ,zero 
+0x446f 009007 setarg l2cap_rfcomm_channel 
+0x4470 009008 isub temp ,null 
+0x4471 009009 branch l2cap_proc_signal_connect_rsp_rfcomm ,zero 
+0x4472 009010 setarg l2cap_hid_control_channel 
+0x4473 009011 isub temp ,null 
+0x4474 009012 branch l2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+0x4475 009013 setarg l2cap_hid_interrupt_channel 
+0x4476 009014 isub temp ,null 
+0x4477 009015 branch l2cap_proc_signal_connect_rsp_hid_int ,zero 
+0x4478 009016 rtn 
+:      009018 l2cap_proc_signal_connect_rsp_sdp:
+0x4479 009019 copy timeup ,pdata 
+0x447a 009020 store 2 ,mem_sdp_remote_cid 
+0x447b 009021 fetch 1 ,mem_sdp_state 
+0x447c 009022 set1 l2cap_channel_state_conn_res ,pdata 
+0x447d 009023 store 1 ,mem_sdp_state 
+0x447e 009024 branch l2cap_process_one_signal_rtn 
+:      009025 l2cap_proc_signal_connect_rsp_rfcomm:
+0x447f 009026 copy timeup ,pdata 
+0x4480 009027 store 2 ,mem_rfcomm_remote_cid 
+0x4481 009028 fetch 1 ,mem_rfcomm_state 
+0x4482 009029 set1 l2cap_channel_state_conn_res ,pdata 
+0x4483 009030 store 1 ,mem_rfcomm_state 
+0x4484 009031 rtn 
+:      009032 l2cap_proc_signal_connect_rsp_hid_int:
+0x4485 009033 copy timeup ,pdata 
+0x4486 009034 store 2 ,mem_hid_ctrl_remote_cid 
+0x4487 009035 fetch 1 ,mem_hid_interrupt_state 
+0x4488 009036 set1 l2cap_channel_state_conn_res ,pdata 
+0x4489 009037 store 1 ,mem_hid_interrupt_state 
+0x448a 009038 rtn 
+:      009039 l2cap_proc_signal_connect_rsp_hid_ctrl:
+0x448b 009040 copy timeup ,pdata 
+0x448c 009041 store 2 ,mem_hid_int_remote_cid 
+0x448d 009042 fetch 1 ,mem_hid_control_state 
+0x448e 009043 set1 l2cap_channel_state_conn_res ,pdata 
+0x448f 009044 store 1 ,mem_hid_control_state 
+0x4490 009045 rtn 
+:      009047 l2cap_proc_signal_config_req:
+0x4491 009048 ifetch 1 ,contr 
+0x4492 009049 copy pdata ,queue 
+0x4493 009050 ifetch 2 ,contr 
+0x4494 009051 copy pdata ,rega 
+0x4495 009052 copy regc ,pdata 
+0x4496 009053 isub rega ,regc 
+0x4497 009054 ifetch 2 ,contr 
+0x4498 009055 copy pdata ,temp 
+0x4499 009056 copy temp ,rega 
+0x449a 009057 set0 mark_ext_patch ,mark 
+0x449b 009058 bpatch patch1b_6 ,mem_patch1b 
+0x449c 009059 setarg l2cap_sdp_channel 
+0x449d 009060 isub temp ,null 
+0x449e 009061 branch l2cap_proc_signal_config_req_sdp ,zero 
+0x449f 009062 setarg l2cap_rfcomm_channel 
+0x44a0 009063 isub temp ,null 
+0x44a1 009064 branch l2cap_proc_signal_config_req_rfcomm ,zero 
+0x44a2 009065 setarg l2cap_hid_control_channel 
+0x44a3 009066 isub temp ,null 
+0x44a4 009067 branch l2cap_proc_signal_config_req_hid_ctrl ,zero 
+0x44a5 009068 setarg l2cap_hid_interrupt_channel 
+0x44a6 009069 isub temp ,null 
+0x44a7 009070 branch l2cap_proc_signal_config_req_hid_int ,zero 
+0x44a8 009071 branch l2cap_reject_command 
+:      009073 l2cap_proc_signal_config_req_sdp:
+0x44a9 009074 copy contw ,timeup 
+0x44aa 009075 fetch 1 ,mem_sdp_state 
+0x44ab 009076 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x44ac 009077 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x44ad 009079 store 1 ,mem_sdp_state 
+0x44ae 009080 copy timeup ,contw 
+0x44af 009081 arg l2cap_sdp_channel ,timeup 
+0x44b0 009082 fetch 2 ,mem_sdp_remote_cid 
+0x44b1 009083 copy pdata ,temp 
+0x44b2 009084 branch l2cap_send_config_rsp 
+:      009085 l2cap_proc_signal_config_req_hid_ctrl:
+0x44b3 009086 copy contw ,timeup 
+0x44b4 009087 fetch 1 ,mem_hid_control_state 
+0x44b5 009088 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x44b6 009089 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x44b7 009091 store 1 ,mem_hid_control_state 
+0x44b8 009092 copy timeup ,contw 
+0x44b9 009093 arg l2cap_hid_control_channel ,timeup 
+0x44ba 009094 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x44bb 009095 copy pdata ,temp 
+0x44bc 009096 branch l2cap_send_config_rsp 
+:      009097 l2cap_proc_signal_config_req_hid_int:
+0x44bd 009098 copy contw ,timeup 
+0x44be 009099 fetch 1 ,mem_hid_interrupt_state 
+0x44bf 009100 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x44c0 009101 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x44c1 009103 store 1 ,mem_hid_interrupt_state 
+0x44c2 009104 copy timeup ,contw 
+0x44c3 009105 arg l2cap_hid_interrupt_channel ,timeup 
+0x44c4 009106 fetch 2 ,mem_hid_int_remote_cid 
+0x44c5 009107 copy pdata ,temp 
+0x44c6 009108 branch l2cap_send_config_rsp 
+:      009109 l2cap_proc_signal_config_req_rfcomm:
+0x44c7 009110 copy contw ,timeup 
+0x44c8 009111 fetch 1 ,mem_rfcomm_state 
+0x44c9 009112 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x44ca 009113 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x44cb 009115 store 1 ,mem_rfcomm_state 
+0x44cc 009117 copy timeup ,contw 
+0x44cd 009118 arg l2cap_rfcomm_channel ,timeup 
+0x44ce 009119 fetch 2 ,mem_rfcomm_remote_cid 
+0x44cf 009120 copy pdata ,temp 
+:      009121 l2cap_send_config_rsp:
+0x44d0 009122 set0 mark_ext_patch ,mark 
+0x44d1 009123 bpatch patch1b_7 ,mem_patch1b 
+0x44d2 009124 setarg signal_config_rsp 
+0x44d3 009125 istore 1 ,contw 
+0x44d4 009126 copy queue ,pdata 
+0x44d5 009127 istore 1 ,contw 
+0x44d6 009128 setarg 0x0006 
+0x44d7 009129 istore 2 ,contw 
+0x44d8 009130 copy temp ,pdata 
+0x44d9 009131 istore 2 ,contw 
+0x44da 009132 force 0x00 ,pdata 
+0x44db 009133 istore 2 ,contw 
+0x44dc 009134 force l2cap_config_success ,pdata 
+0x44dd 009135 istore 2 ,contw 
+0x44de 009136 force 10 ,pdata 
+0x44df 009137 iadd regb ,regb 
+0x44e0 009139 storet 2 ,mem_config_req_dest_cid 
+0x44e1 009140 copy queue ,pdata 
+0x44e2 009141 store 1 ,mem_config_identifier 
+0x44e3 009142 force l2cap_sdp_channel ,pdata 
+0x44e4 009143 icompare 0xff ,timeup 
+0x44e5 009144 branch l2cap_send_config_rsp_is_sdp ,true 
+0x44e6 009145 increase 1 ,pdata 
+:      009146 l2cap_send_config_rsp_is_sdp:
+0x44e7 009148 rtn 
+:      009149 l2cap_check_channel_state:
+0x44e8 009150 disable user 
+0x44e9 009151 rtnbit1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x44ea 009152 rtnbit0 l2cap_channel_state_conn_req ,pdata 
+0x44eb 009153 rtnbit0 l2cap_channel_state_conn_res ,pdata 
+0x44ec 009154 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x44ed 009155 copy contr ,contw 
+0x44ee 009156 increase -1 ,contw 
+0x44ef 009157 istore 1 ,contw 
+0x44f0 009158 enable user 
+0x44f1 009159 rtn 
+:      009160 l2cap_send_config_req:
+:      009161 l2cap_send_config_req_sdp:
+0x44f2 009162 fetch 1 ,mem_sdp_state 
+0x44f3 009163 call l2cap_check_channel_state 
+0x44f4 009164 nbranch l2cap_send_config_req_rfcomm ,user 
+0x44f5 009165 jam l2cap_sdp_channel ,mem_send_config_req 
+0x44f6 009166 fetch 2 ,mem_sdp_remote_cid 
+0x44f7 009167 store 2 ,mem_config_req_dest_cid 
+0x44f8 009168 branch l2cap_generate_config_req 
+:      009169 l2cap_send_config_req_rfcomm:
+0x44f9 009170 fetch 1 ,mem_rfcomm_state 
+0x44fa 009171 call l2cap_check_channel_state 
+0x44fb 009172 nbranch l2cap_send_config_req_hid_ctrl ,user 
+0x44fc 009173 jam l2cap_rfcomm_channel ,mem_send_config_req 
+0x44fd 009174 fetch 2 ,mem_rfcomm_remote_cid 
+0x44fe 009175 store 2 ,mem_config_req_dest_cid 
+0x44ff 009176 branch l2cap_generate_config_req 
+:      009177 l2cap_send_config_req_hid_ctrl:
+0x4500 009178 fetch 1 ,mem_hid_control_state 
+0x4501 009179 call l2cap_check_channel_state 
+0x4502 009180 nbranch l2cap_send_config_req_hid_int ,user 
+0x4503 009181 jam l2cap_hid_control_channel ,mem_send_config_req 
+0x4504 009182 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4505 009183 store 2 ,mem_config_req_dest_cid 
+0x4506 009184 branch l2cap_generate_config_req 
+:      009185 l2cap_send_config_req_hid_int:
+0x4507 009186 fetch 1 ,mem_hid_interrupt_state 
+0x4508 009187 call l2cap_check_channel_state 
+0x4509 009188 nrtn user 
+0x450a 009189 jam l2cap_hid_interrupt_channel ,mem_send_config_req 
+0x450b 009190 fetch 2 ,mem_hid_int_remote_cid 
+0x450c 009191 store 2 ,mem_config_req_dest_cid 
+:      009194 l2cap_generate_config_req:
+0x450d 009195 set0 mark_ext_patch ,mark 
+0x450e 009196 bpatch patch1c_0 ,mem_patch1c 
+0x450f 009197 call l2cap_get_req_id 
+0x4510 009198 call l2cap_malloc_signal_channel 
+0x4511 009199 force 0 ,regb 
+0x4512 009200 call l2cap_get_signal_tx_payload 
+0x4513 009201 force signal_config_req ,pdata 
+0x4514 009202 istore 1 ,contw 
+0x4515 009203 fetch 1 ,mem_ml2cap_comm_id 
+0x4516 009204 istore 1 ,contw 
+0x4517 009205 setarg 0x0008 
+0x4518 009206 istore 2 ,contw 
+0x4519 009207 fetch 2 ,mem_config_req_dest_cid 
+0x451a 009208 istore 2 ,contw 
+0x451b 009209 setarg 0x0000 
+0x451c 009210 istore 2 ,contw 
+0x451d 009211 force 1 ,pdata 
+0x451e 009212 istore 1 ,contw 
+0x451f 009213 force 2 ,pdata 
+0x4520 009214 istore 1 ,contw 
+0x4521 009215 fetch 1 ,mem_send_config_req 
+0x4522 009216 beq l2cap_rfcomm_channel ,l2cap_generate_config_req_rfcomm 
+0x4523 009217 setarg l2cap_config_mtu_sdp 
+0x4524 009218 istore 2 ,contw 
+0x4525 009219 branch l2cap_generate_config_req_done 
+:      009220 l2cap_generate_config_req_rfcomm:
+0x4526 009221 setarg l2cap_config_mtu_rfcomm 
+0x4527 009222 istore 2 ,contw 
+:      009223 l2cap_generate_config_req_done:
+0x4528 009224 arg 0x0c ,temp 
+0x4529 009225 storet 2 ,mem_l2cap_signal_tx_length 
+0x452a 009226 call l2cap_get_signal_tx_buff 
+0x452b 009227 fetch 2 ,mem_l2cap_signal_tx_length 
+0x452c 009228 istore 2 ,contw 
+0x452d 009229 force l2cap_signal_channel ,pdata 
+0x452e 009230 istore 2 ,contw 
+0x452f 009231 jam 0 ,mem_send_config_req 
+:      009232 l2cap_proc_signal_config_req_rtn:
+0x4530 009233 branch l2cap_process_one_signal_rtn 
+:      009235 l2cap_proc_signal_config_rsp:
+0x4531 009236 increase 1 ,contr 
+0x4532 009237 ifetch 2 ,contr 
+0x4533 009238 copy pdata ,rega 
+0x4534 009239 copy regc ,pdata 
+0x4535 009240 isub rega ,regc 
+0x4536 009241 ifetch 2 ,contr 
+0x4537 009242 copy pdata ,rega 
+0x4538 009243 set0 mark_ext_patch ,mark 
+0x4539 009244 bpatch patch1c_1 ,mem_patch1c 
+0x453a 009245 setarg l2cap_sdp_channel 
+0x453b 009246 isub rega ,null 
+0x453c 009247 branch l2cap_proc_signal_config_rsp_sdp ,zero 
+0x453d 009248 setarg l2cap_rfcomm_channel 
+0x453e 009249 isub rega ,null 
+0x453f 009250 branch l2cap_proc_signal_config_rsp_rfcomm ,zero 
+0x4540 009251 setarg l2cap_hid_control_channel 
+0x4541 009252 isub rega ,null 
+0x4542 009253 branch l2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+0x4543 009254 setarg l2cap_hid_interrupt_channel 
+0x4544 009255 isub rega ,null 
+0x4545 009256 branch l2cap_proc_signal_config_rsp_hid_int ,zero 
+0x4546 009257 increase 2 ,contr 
+0x4547 009258 ifetch 2 ,contr 
+0x4548 009259 iforce null 
+0x4549 009260 branch l2cap_process_one_signal_rtn 
+:      009261 l2cap_proc_signal_config_rsp_sdp:
+0x454a 009262 fetch 1 ,mem_sdp_state 
+0x454b 009263 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x454c 009264 store 1 ,mem_sdp_state 
+0x454d 009265 branch l2cap_process_one_signal_rtn 
+:      009266 l2cap_proc_signal_config_rsp_rfcomm:
+0x454e 009267 fetch 1 ,mem_rfcomm_state 
+0x454f 009268 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4550 009269 store 1 ,mem_rfcomm_state 
+0x4551 009270 branch l2cap_process_one_signal_rtn 
+:      009271 l2cap_proc_signal_config_rsp_hid_ctrl:
+0x4552 009272 fetch 1 ,mem_hid_control_state 
+0x4553 009273 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4554 009274 store 1 ,mem_hid_control_state 
+0x4555 009275 branch l2cap_process_one_signal_rtn 
+:      009276 l2cap_proc_signal_config_rsp_hid_int:
+0x4556 009277 fetch 1 ,mem_hid_interrupt_state 
+0x4557 009278 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4558 009279 store 1 ,mem_hid_interrupt_state 
+0x4559 009280 jam bt_evt_hid_connected ,mem_fifo_temp 
+0x455a 009281 branch ui_ipc_send_event 
+:      009285 l2cap_proc_signal_disconnect_req:
+0x455b 009286 ifetch 1 ,contr 
+0x455c 009287 copy pdata ,queue 
+0x455d 009288 ifetch 2 ,contr 
+0x455e 009289 copy pdata ,rega 
+0x455f 009290 copy regc ,pdata 
+0x4560 009291 isub rega ,regc 
+0x4561 009292 ifetch 2 ,contr 
+0x4562 009293 copy pdata ,rega 
+0x4563 009294 ifetch 2 ,contr 
+0x4564 009295 copy pdata ,timeup 
+0x4565 009296 copy rega ,temp 
+0x4566 009297 call save_cont_pointers 
+0x4567 009298 set0 mark_ext_patch ,mark 
+0x4568 009299 bpatch patch1c_2 ,mem_patch1c 
+0x4569 009300 setarg l2cap_sdp_channel 
+0x456a 009301 isub temp ,null 
+0x456b 009302 branch l2cap_proc_signal_disconnect_req_sdp ,zero 
+0x456c 009303 setarg l2cap_rfcomm_channel 
+0x456d 009304 isub temp ,null 
+0x456e 009305 branch l2cap_proc_signal_disconnect_req_rfcomm ,zero 
+0x456f 009306 setarg l2cap_hid_control_channel 
+0x4570 009307 isub temp ,null 
+0x4571 009308 branch l2cap_proc_signal_disconnect_req_hid_ctrl ,zero 
+0x4572 009309 setarg l2cap_hid_interrupt_channel 
+0x4573 009310 isub temp ,null 
+0x4574 009311 branch l2cap_proc_signal_disconnect_req_hid_int ,zero 
+0x4575 009312 call l2cap_reject_command 
+0x4576 009313 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      009314 l2cap_proc_signal_disconnect_req_hid_ctrl:
+0x4577 009315 copy timeup ,temp 
+0x4578 009316 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4579 009317 isub temp ,null 
+0x457a 009318 branch l2cap_disconnect_hid_control_now ,zero 
+0x457b 009319 call l2cap_reject_command 
+0x457c 009320 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      009321 l2cap_proc_signal_disconnect_req_hid_int:
+0x457d 009322 copy timeup ,temp 
+0x457e 009323 fetch 2 ,mem_hid_int_remote_cid 
+0x457f 009324 isub temp ,null 
+0x4580 009325 branch l2cap_disconnect_hid_interrupt_now ,zero 
+0x4581 009326 call l2cap_reject_command 
+0x4582 009327 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      009329 l2cap_proc_signal_disconnect_req_sdp:
+0x4583 009330 copy timeup ,temp 
+0x4584 009331 fetch 2 ,mem_sdp_remote_cid 
+0x4585 009332 isub temp ,null 
+0x4586 009333 branch l2cap_disconnect_sdp_now ,zero 
+0x4587 009334 call l2cap_reject_command 
+0x4588 009335 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      009336 l2cap_disconnect_hid_control_now:
+0x4589 009337 call l2cap_reset_hid_ctrl_state 
+0x458a 009338 branch l2cap_send_disconnect_rsp_pkt 
+:      009339 l2cap_disconnect_hid_interrupt_now:
+0x458b 009340 call l2cap_reset_hid_int_state 
+0x458c 009341 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x458d 009342 branch l2cap_send_disconnect_rsp_pkt ,blank 
+0x458e 009350 branch l2cap_send_disconnect_rsp_pkt 
+:      009352 l2cap_disconnect_sdp_now:
+0x458f 009353 call l2cap_reset_sdp_channel_state 
+0x4590 009354 fetch 1 ,mem_upper_sm_ss 
+0x4591 009355 nbranch l2cap_send_disconnect_rsp_pkt ,blank 
+0x4592 009358 branch l2cap_send_disconnect_rsp_pkt 
+:      009359 l2cap_proc_signal_disconnect_req_rfcomm:
+0x4593 009360 copy timeup ,temp 
+0x4594 009361 fetch 2 ,mem_rfcomm_remote_cid 
+0x4595 009362 isub temp ,null 
+0x4596 009363 branch l2cap_disconnect_rfcomm_now ,zero 
+0x4597 009364 call l2cap_reject_command 
+0x4598 009365 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      009366 l2cap_disconnect_rfcomm_now:
+0x4599 009367 call l2cap_reset_rfcomm_channel_state 
+0x459a 009368 branch l2cap_send_disconnect_rsp_pkt 
+:      009369 l2cap_send_disconnect_rsp_pkt:
+0x459b 009370 call load_cont_pointers 
+0x459c 009371 setarg signal_disconnect_rsp 
+0x459d 009372 istore 1 ,contw 
+0x459e 009373 copy queue ,pdata 
+0x459f 009374 istore 1 ,contw 
+0x45a0 009375 setarg 0x0004 
+0x45a1 009376 istore 2 ,contw 
+0x45a2 009377 copy rega ,pdata 
+0x45a3 009378 istore 2 ,contw 
+0x45a4 009379 copy timeup ,pdata 
+0x45a5 009380 istore 2 ,contw 
+0x45a6 009381 force 8 ,pdata 
+0x45a7 009382 branch l2cap_proc_signal_disconnect_req_rtn 
+:      009383 l2cap_proc_signal_disconnect_req_err_rtn:
+0x45a8 009384 call load_cont_pointers 
+0x45a9 009385 branch l2cap_proc_signal_disconnect_req_rtn 
+:      009386 l2cap_proc_signal_disconnect_req_rtn:
+0x45aa 009387 iadd regb ,regb 
+0x45ab 009388 branch l2cap_process_one_signal_rtn 
+:      009389 l2cap_proc_signal_disconnect_rsp:
+0x45ac 009390 ifetch 1 ,contr 
+0x45ad 009391 copy pdata ,queue 
+0x45ae 009392 ifetch 2 ,contr 
+0x45af 009393 copy pdata ,rega 
+0x45b0 009394 copy regc ,pdata 
+0x45b1 009395 isub rega ,regc 
+0x45b2 009396 ifetch 2 ,contr 
+0x45b3 009397 copy pdata ,timeup 
+0x45b4 009398 ifetch 2 ,contr 
+0x45b5 009399 copy pdata ,temp 
+0x45b6 009400 call save_cont_pointers 
+0x45b7 009401 set0 mark_ext_patch ,mark 
+0x45b8 009402 bpatch patch1c_3 ,mem_patch1c 
+0x45b9 009403 setarg l2cap_sdp_channel 
+0x45ba 009404 isub temp ,null 
+0x45bb 009405 branch l2cap_proc_signal_disconnect_rsp_sdp ,zero 
+0x45bc 009406 setarg l2cap_rfcomm_channel 
+0x45bd 009407 isub temp ,null 
+0x45be 009408 branch l2cap_proc_signal_disconnect_rsp_rfcomm ,zero 
+0x45bf 009409 setarg l2cap_hid_control_channel 
+0x45c0 009410 isub temp ,null 
+0x45c1 009411 branch l2cap_proc_signal_disconnect_rsp_hid_ctrl ,zero 
+0x45c2 009412 setarg l2cap_hid_interrupt_channel 
+0x45c3 009413 isub temp ,null 
+0x45c4 009414 branch l2cap_proc_signal_disconnect_rsp_hid_int ,zero 
+0x45c5 009415 call l2cap_reject_command 
+0x45c6 009416 branch l2cap_proc_signal_disconnect_rsp_err_rtn 
+:      009417 l2cap_proc_signal_disconnect_rsp_sdp:
+0x45c7 009418 copy temp ,rega 
+0x45c8 009419 copy timeup ,temp 
+0x45c9 009420 fetch 2 ,mem_sdp_remote_cid 
+0x45ca 009421 isub temp ,null 
+0x45cb 009422 call l2cap_reset_sdp_channel_state ,zero 
+0x45cc 009423 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      009424 l2cap_proc_signal_disconnect_rsp_rfcomm:
+0x45cd 009425 copy temp ,rega 
+0x45ce 009426 copy timeup ,temp 
+0x45cf 009427 fetch 2 ,mem_rfcomm_remote_cid 
+0x45d0 009428 isub temp ,null 
+0x45d1 009429 call l2cap_reset_rfcomm_channel_state ,zero 
+0x45d2 009430 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      009431 l2cap_proc_signal_disconnect_rsp_hid_ctrl:
+0x45d3 009432 copy temp ,rega 
+0x45d4 009433 copy timeup ,temp 
+0x45d5 009434 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x45d6 009435 isub temp ,null 
+0x45d7 009436 call l2cap_reset_hid_ctrl_state ,zero 
+0x45d8 009437 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      009438 l2cap_proc_signal_disconnect_rsp_hid_int:
+0x45d9 009439 copy temp ,rega 
+0x45da 009440 copy timeup ,temp 
+0x45db 009441 fetch 2 ,mem_hid_int_remote_cid 
+0x45dc 009442 isub temp ,null 
+0x45dd 009443 call l2cap_reset_hid_int_state ,zero 
+0x45de 009444 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      009445 l2cap_proc_signal_disconnect_rsp_rtn:
+0x45df 009446 call load_cont_pointers 
+0x45e0 009447 branch l2cap_process_one_signal_rtn 
+:      009448 l2cap_proc_signal_disconnect_rsp_err_rtn:
+0x45e1 009449 branch l2cap_process_one_signal_rtn 
+:      009452 l2cap_proc_signal_echo_req:
+0x45e2 009453 ifetch 1 ,contr 
+0x45e3 009454 copy pdata ,queue 
+0x45e4 009455 ifetch 2 ,contr 
+0x45e5 009456 copy pdata ,rega 
+0x45e6 009457 iadd contr ,contr 
+0x45e7 009458 setarg 9 
+0x45e8 009459 istore 1 ,contw 
+0x45e9 009460 copy queue ,pdata 
+0x45ea 009461 istore 1 ,contw 
+0x45eb 009462 force 0x0000 ,pdata 
+0x45ec 009463 istore 2 ,contw 
+0x45ed 009464 force 4 ,pdata 
+0x45ee 009465 iadd regb ,regb 
+0x45ef 009466 copy regc ,pdata 
+0x45f0 009467 isub rega ,regc 
+0x45f1 009468 branch l2cap_process_one_signal_rtn 
+:      009469 l2cap_proc_signal_echo_rsp:
+0x45f2 009470 branch l2cap_process_one_signal_rtn 
+:      009472 l2cap_proc_signal_info_rsp:
+0x45f3 009473 branch l2cap_process_one_signal_rtn 
+:      009474 l2cap_reject_command:
+0x45f4 009475 force 0 ,regb 
+0x45f5 009476 call l2cap_get_signal_tx_payload 
+0x45f6 009477 setarg signal_cmd_reject 
+0x45f7 009478 istore 1 ,contw 
+0x45f8 009479 copy queue ,pdata 
+0x45f9 009480 istore 1 ,contw 
+0x45fa 009481 setarg 2 
+0x45fb 009482 istore 2 ,contw 
+0x45fc 009483 setarg cmd_not_understood 
+0x45fd 009484 istore 2 ,contw 
+0x45fe 009485 increase 6 ,regb 
+0x45ff 009486 arg 4 ,regc 
+0x4600 009487 branch l2cap_process_one_signal_rtn 
+:      009491 l2cap_reset_rfcomm_channel_state:
+0x4601 009492 setarg 0 
+0x4602 009493 store 2 ,mem_rfcomm_tx_pkt_length 
+0x4603 009494 store 2 ,mem_rfcomm_remote_cid 
+0x4604 009495 jam 0 ,mem_rfcomm_state 
+0x4605 009496 rtn 
+:      009497 l2cap_reset_sdp_channel_state:
+0x4606 009498 setarg 0 
+0x4607 009499 store 2 ,mem_sdp_tx_pkt_length 
+0x4608 009500 store 2 ,mem_sdp_remote_cid 
+0x4609 009501 jam 0 ,mem_sdp_state 
+0x460a 009502 rtn 
+:      009503 l2cap_reset_hid_ctrl_state:
+0x460b 009504 setarg 0 
+0x460c 009505 store 2 ,mem_hid_ctrl_remote_cid 
+0x460d 009506 jam 0 ,mem_hid_control_state 
+0x460e 009507 fetch 1 ,mem_hid_interrupt_state 
+0x460f 009508 beq 0 ,l2cap_reset_hid_disconnected 
+0x4610 009509 rtn 
+:      009511 l2cap_reset_hid_int_state:
+0x4611 009512 setarg 0 
+0x4612 009513 store 2 ,mem_hid_int_remote_cid 
+0x4613 009514 jam 0 ,mem_hid_interrupt_state 
+0x4614 009515 fetch 1 ,mem_hid_control_state 
+0x4615 009516 beq 0 ,l2cap_reset_hid_disconnected 
+0x4616 009517 rtn 
+:      009519 l2cap_reset_hid_disconnected:
+0x4617 009520 jam bt_evt_hid_disconnected ,mem_fifo_temp 
+0x4618 009521 branch ui_ipc_send_event 
+:      009523 l2cap_disconnect_interrupt_req:
+0x4619 009524 fetch 1 ,mem_control_tasks 
+0x461a 009525 set0 l2cap_disconnect_interrupt ,pdata 
+0x461b 009526 store 1 ,mem_control_tasks 
+0x461c 009527 fetch 2 ,mem_hid_int_remote_cid 
+0x461d 009528 rtn blank 
+0x461e 009529 call l2cap_malloc_signal_channel 
+0x461f 009530 fetch 2 ,mem_hid_int_remote_cid 
+0x4620 009531 copy pdata ,rega 
+0x4621 009532 force l2cap_hid_interrupt_channel ,regb 
+0x4622 009533 branch l2cap_generate_disconnect_req 
+:      009534 l2cap_disconnect_control_req:
+0x4623 009535 fetch 1 ,mem_control_tasks 
+0x4624 009536 set0 l2cap_disconnect_control ,pdata 
+0x4625 009537 store 1 ,mem_control_tasks 
+0x4626 009538 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4627 009539 rtn blank 
+0x4628 009540 call l2cap_malloc_signal_channel 
+0x4629 009541 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x462a 009542 copy pdata ,rega 
+0x462b 009543 force l2cap_hid_control_channel ,regb 
+:      009544 l2cap_generate_disconnect_req:
+0x462c 009545 call l2cap_get_req_id 
+0x462d 009546 call l2cap_get_signal_tx_payload 
+0x462e 009547 force signal_disconnect_req ,pdata 
+0x462f 009548 istore 1 ,contw 
+0x4630 009549 fetch 1 ,mem_ml2cap_comm_id 
+0x4631 009550 istore 1 ,contw 
+0x4632 009551 setarg 0x0004 
+0x4633 009552 istore 2 ,contw 
+0x4634 009553 copy rega ,pdata 
+0x4635 009554 istore 2 ,contw 
+0x4636 009555 copy regb ,pdata 
+0x4637 009556 istore 2 ,contw 
+0x4638 009557 force 0x08 ,temp 
+0x4639 009558 branch ml2cap_send_signal 
+:      009560 ml2cap_send_signal_connect_req:
+0x463a 009561 set0 mark_ext_patch ,mark 
+0x463b 009562 bpatch patch1c_4 ,mem_patch1c 
+0x463c 009563 call l2cap_get_req_id 
+0x463d 009564 call l2cap_get_signal_tx_payload 
+0x463e 009565 setarg signal_connect_req 
+0x463f 009566 istore 1 ,contw 
+0x4640 009567 fetch 1 ,mem_ml2cap_comm_id 
+0x4641 009568 istore 1 ,contw 
+0x4642 009569 setarg 0x0004 
+0x4643 009570 istore 2 ,contw 
+0x4644 009571 copy temp ,pdata 
+0x4645 009572 istore 2 ,contw 
+0x4646 009573 copy timeup ,pdata 
+0x4647 009574 istore 2 ,contw 
+0x4648 009575 arg 8 ,temp 
+0x4649 009576 branch ml2cap_send_signal 
+:      009577 ml2cap_send_signal_config_req:
+0x464a 009578 set0 mark_ext_patch ,mark 
+0x464b 009579 bpatch patch1c_5 ,mem_patch1c 
+0x464c 009580 call l2cap_get_req_id 
+0x464d 009581 call l2cap_get_signal_tx_payload 
+0x464e 009582 setarg signal_config_req 
+0x464f 009583 istore 1 ,contw 
+0x4650 009584 fetch 1 ,mem_ml2cap_comm_id 
+0x4651 009585 istore 1 ,contw 
+0x4652 009586 setarg 0x0008 
+0x4653 009587 istore 2 ,contw 
+0x4654 009589 copy temp ,pdata 
+0x4655 009591 istore 2 ,contw 
+0x4656 009592 setarg 0x0000 
+0x4657 009593 istore 2 ,contw 
+0x4658 009594 setarg 0x01 
+0x4659 009595 istore 1 ,contw 
+0x465a 009596 setarg 0x02 
+0x465b 009597 istore 1 ,contw 
+0x465c 009598 setarg l2cap_config_mtu_rfcomm 
+0x465d 009599 istore 2 ,contw 
+0x465e 009600 arg 0xc ,temp 
+0x465f 009601 branch ml2cap_send_signal 
+:      009602 ml2cap_send_signal_disconn_req:
+0x4660 009603 set0 mark_ext_patch ,mark 
+0x4661 009604 bpatch patch1c_6 ,mem_patch1c 
+0x4662 009605 call l2cap_get_req_id 
+0x4663 009606 call l2cap_get_signal_tx_payload 
+0x4664 009607 setarg signal_disconnect_req 
+0x4665 009608 istore 1 ,contw 
+0x4666 009609 fetch 1 ,mem_ml2cap_comm_id 
+0x4667 009610 increase 1 ,pdata 
+0x4668 009611 copy contw ,rega 
+0x4669 009612 store 1 ,mem_ml2cap_comm_id 
+0x466a 009613 copy rega ,contw 
+0x466b 009614 istore 1 ,contw 
+0x466c 009615 setarg 0x0004 
+0x466d 009616 istore 2 ,contw 
+0x466e 009617 copy temp ,pdata 
+0x466f 009618 istore 2 ,contw 
+0x4670 009619 copy timeup ,pdata 
+0x4671 009620 istore 2 ,contw 
+0x4672 009621 arg 0x8 ,temp 
+:      009624 ml2cap_send_signal:
+0x4673 009625 storet 2 ,mem_l2cap_signal_tx_length 
+0x4674 009626 copy temp ,pdata 
+0x4675 009627 branch l2cap_malloc_discard ,blank 
+0x4676 009628 call l2cap_get_signal_tx_buff 
+0x4677 009629 fetch 2 ,mem_l2cap_signal_tx_length 
+0x4678 009630 istore 2 ,contw 
+0x4679 009631 force l2cap_signal_channel ,pdata 
+0x467a 009632 istore 2 ,contw 
+0x467b 009633 rtn 
+:      009635 msdp_send_req_done:
+0x467c 009636 fetch 2 ,mem_sdp_tx_pkt_length 
+0x467d 009637 branch assert ,blank 
+0x467e 009638 call l2cap_get_sdp_tx_buff 
+0x467f 009639 fetch 2 ,mem_sdp_tx_pkt_length 
+0x4680 009640 istore 2 ,contw 
+0x4681 009641 fetch 2 ,mem_sdp_remote_cid 
+0x4682 009642 istore 2 ,contw 
+0x4683 009643 rtn 
+:      009644 ml2cap_rx_multiplexing:
+0x4684 009645 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4685 009646 branch l2cap_rx_reset_state ,blank 
+0x4686 009647 set0 mark_ext_patch ,mark 
+0x4687 009648 bpatch patch1c_7 ,mem_patch1c 
+0x4688 009649 fetch 1 ,mem_l2cap_rx_cid 
+0x4689 009650 beq l2cap_signal_channel ,ml2cap_call_proc_signal 
+0x468a 009651 beq l2cap_sdp_channel ,ml2cap_call_proc_sdp 
+0x468b 009652 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+0x468c 009653 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+0x468d 009654 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+0x468e 009655 branch l2cap_rx_reset_state 
+:      009657 ml2cap_call_proc_signal:
+0x468f 009658 set0 mark_ext_patch ,mark 
+0x4690 009659 bpatch patch1d_0 ,mem_patch1d 
+0x4691 009660 call l2cap_malloc_signal_channel 
+0x4692 009661 force 0 ,regb 
+0x4693 009662 call l2cap_get_signal_tx_payload 
+0x4694 009663 copy pdata ,contw 
+0x4695 009664 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4696 009665 copy pdata ,regc 
+0x4697 009666 fetch 2 ,mem_l2cap_payload_ptr 
+0x4698 009667 iforce contr 
+:      009668 ml2cap_proc_one_comm_loop:
+0x4699 009669 call ml2cap_proc_one_comm 
+0x469a 009670 increase -4 ,regc 
+0x469b 009671 nbranch ml2cap_proc_one_comm_loop ,zero 
+0x469c 009672 copy regb ,temp 
+0x469d 009673 call ml2cap_send_signal 
+0x469e 009674 branch l2cap_rx_reset_state 
+:      009676 ml2cap_proc_one_comm:
+0x469f 009677 ifetch 1 ,contr 
+0x46a0 009678 beq signal_connect_req ,ml2cap_proc_signal_connect_req 
+0x46a1 009679 beq signal_cmd_reject ,ml2cap_proc_signal_cmd_reject 
+0x46a2 009680 beq signal_connect_rsp ,ml2cap_proc_signal_connect_rsp 
+0x46a3 009681 beq signal_config_rsp ,ml2cap_proc_signal_config_rsp 
+0x46a4 009682 beq signal_config_req ,ml2cap_proc_signal_config_req 
+0x46a5 009683 beq signal_disconnect_rsp ,ml2cap_proc_signal_disconn_rsp 
+0x46a6 009684 beq signal_disconnect_req ,ml2cap_proc_signal_disconn_req 
+0x46a7 009685 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+0x46a8 009686 beq signal_info_req ,ml2cap_proc_signal_info_req 
+0x46a9 009687 branch ml2cap_proc_send_reject 
+:      009689 ml2cap_proc_signal_connect_req:
+0x46aa 009690 call save_cont_pointers 
+0x46ab 009692 call load_cont_pointers 
+0x46ac 009693 branch l2cap_proc_signal_connect_req 
+:      009694 ml2cap_proc_signal_cmd_reject:
+0x46ad 009695 ifetch 1 ,contr 
+0x46ae 009696 copy pdata ,queue 
+0x46af 009697 ifetch 2 ,contr 
+0x46b0 009698 copy pdata ,rega 
+0x46b1 009699 copy regc ,pdata 
+0x46b2 009700 isub rega ,regc 
+:      009701 mvptr:
+0x46b3 009702 ifetch 1 ,contr 
+0x46b4 009703 increase -1 ,rega 
+0x46b5 009704 nbranch mvptr ,zero 
+0x46b6 009705 rtn 
+:      009706 ml2cap_proc_signal_connect_rsp:
+0x46b7 009707 ifetch 1 ,contr 
+0x46b8 009708 copy pdata ,queue 
+0x46b9 009709 ifetch 2 ,contr 
+0x46ba 009710 copy pdata ,rega 
+0x46bb 009711 ifetch 2 ,contr 
+0x46bc 009712 copy pdata ,timeup 
+0x46bd 009713 ifetch 2 ,contr 
+0x46be 009714 copy pdata ,temp 
+0x46bf 009715 ifetch 2 ,contr 
+0x46c0 009716 sub pdata ,0 ,null 
+0x46c1 009717 branch ml2cap_proc_signal_connect_rsp_sucessful ,zero 
+0x46c2 009718 beq l2cap_connect_refused_psm_unsupported ,ml2cap_proc_signal_connect_refused_result 
+0x46c3 009719 beq l2cap_connect_refused_no_resources ,ml2cap_proc_signal_connect_refused_result 
+0x46c4 009720 branch ml2cap_proc_signal_connect_rsp_mnosucc 
+:      009721 ml2cap_proc_signal_connect_refused_result:
+0x46c5 009722 jam bt_evt_ml2cap_conn_refused ,mem_fifo_temp 
+0x46c6 009723 call ui_ipc_send_event 
+:      009724 ml2cap_proc_signal_connect_rsp_mnosucc:
+0x46c7 009725 ifetch 2 ,contr 
+0x46c8 009726 branch mnosucc 
+:      009727 ml2cap_proc_signal_connect_rsp_sucessful:
+0x46c9 009728 call save_cont_pointers 
+0x46ca 009732 set0 mark_ext_patch ,mark 
+0x46cb 009733 bpatch patch1d_1 ,mem_patch1d 
+0x46cc 009734 setarg l2cap_sdp_channel 
+0x46cd 009735 isub temp ,null 
+0x46ce 009736 branch ml2cap_proc_signal_connect_rsp_sdp ,zero 
+0x46cf 009737 setarg l2cap_rfcomm_channel 
+0x46d0 009738 isub temp ,null 
+0x46d1 009739 branch ml2cap_proc_signal_connect_rsp_rfcomm ,zero 
+0x46d2 009740 setarg l2cap_hid_interrupt_channel 
+0x46d3 009741 isub temp ,null 
+0x46d4 009742 branch ml2cap_proc_signal_connect_rsp_hid_int ,zero 
+0x46d5 009743 setarg l2cap_hid_control_channel 
+0x46d6 009744 isub temp ,null 
+0x46d7 009745 branch ml2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+0x46d8 009746 branch mnosucc 
+:      009747 ml2cap_proc_signal_connect_rsp_sdp:
+0x46d9 009748 copy timeup ,pdata 
+0x46da 009749 store 2 ,mem_sdp_remote_cid 
+0x46db 009750 fetch 1 ,mem_sdp_state 
+0x46dc 009751 set1 l2cap_channel_state_conn_res 
+0x46dd 009752 store 1 ,mem_sdp_state 
+0x46de 009753 branch mnosucc1 
+:      009754 ml2cap_proc_signal_connect_rsp_rfcomm:
+0x46df 009755 copy timeup ,pdata 
+0x46e0 009756 store 2 ,mem_rfcomm_remote_cid 
+0x46e1 009757 fetch 1 ,mem_rfcomm_state 
+0x46e2 009758 set1 l2cap_channel_state_conn_res 
+0x46e3 009759 store 1 ,mem_rfcomm_state 
+0x46e4 009760 branch mnosucc1 
+:      009761 ml2cap_proc_signal_connect_rsp_hid_ctrl:
+0x46e5 009762 copy timeup ,pdata 
+0x46e6 009763 store 2 ,mem_hid_ctrl_remote_cid 
+0x46e7 009764 fetch 1 ,mem_hid_control_state 
+0x46e8 009765 set1 l2cap_channel_state_conn_res 
+0x46e9 009766 store 1 ,mem_hid_control_state 
+0x46ea 009767 branch mnosucc1 
+:      009768 ml2cap_proc_signal_connect_rsp_hid_int:
+0x46eb 009769 copy timeup ,pdata 
+0x46ec 009770 store 2 ,mem_hid_int_remote_cid 
+0x46ed 009771 fetch 1 ,mem_hid_interrupt_state 
+0x46ee 009772 set1 l2cap_channel_state_conn_res 
+0x46ef 009773 store 1 ,mem_hid_interrupt_state 
+:      009776 mnosucc1:
+0x46f0 009777 call load_cont_pointers 
+:      009778 mnosucc:
+0x46f1 009779 copy regc ,pdata 
+0x46f2 009780 isub rega ,regc 
+0x46f3 009781 rtn 
+:      009783 ml2cap_proc_signal_config_rsp:
+0x46f4 009784 ifetch 1 ,contr 
+0x46f5 009785 copy pdata ,queue 
+0x46f6 009786 ifetch 2 ,contr 
+0x46f7 009787 copy pdata ,rega 
+0x46f8 009788 copy regc ,pdata 
+0x46f9 009789 isub rega ,regc 
+0x46fa 009790 ifetch 2 ,contr 
+0x46fb 009791 copy pdata ,timeup 
+0x46fc 009792 ifetch 2 ,contr 
+0x46fd 009793 ifetch 2 ,contr 
+0x46fe 009794 nbranch mcrsdone1 ,blank 
+0x46ff 009795 call save_cont_pointers 
+0x4700 009799 copy timeup ,temp 
+0x4701 009800 set0 mark_ext_patch ,mark 
+0x4702 009801 bpatch patch1d_2 ,mem_patch1d 
+0x4703 009802 setarg l2cap_sdp_channel 
+0x4704 009803 isub temp ,null 
+0x4705 009804 branch ml2cap_proc_signal_config_rsp_sdp ,zero 
+0x4706 009805 setarg l2cap_rfcomm_channel 
+0x4707 009806 isub temp ,null 
+0x4708 009807 branch ml2cap_proc_signal_config_rsp_rfcomm ,zero 
+0x4709 009808 setarg l2cap_hid_control_channel 
+0x470a 009809 isub temp ,null 
+0x470b 009810 branch ml2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+0x470c 009811 setarg l2cap_hid_interrupt_channel 
+0x470d 009812 isub temp ,null 
+0x470e 009813 branch ml2cap_proc_signal_config_rsp_hid_int ,zero 
+:      009814 ml2cap_proc_signal_config_rsp_sdp:
+0x470f 009815 fetch 1 ,mem_sdp_state 
+0x4710 009816 set1 l2cap_channel_state_rcv_cfg_res 
+0x4711 009817 store 1 ,mem_sdp_state 
+0x4712 009818 rtn 
+:      009819 ml2cap_proc_signal_config_rsp_rfcomm:
+0x4713 009820 fetch 1 ,mem_rfcomm_state 
+0x4714 009821 set1 l2cap_channel_state_rcv_cfg_res 
+0x4715 009822 store 1 ,mem_rfcomm_state 
+0x4716 009823 rtn 
+:      009824 ml2cap_proc_signal_config_rsp_hid_ctrl:
+0x4717 009825 fetch 1 ,mem_hid_control_state 
+0x4718 009826 set1 l2cap_channel_state_rcv_cfg_res 
+0x4719 009827 store 1 ,mem_hid_control_state 
+0x471a 009828 rtn 
+:      009829 ml2cap_proc_signal_config_rsp_hid_int:
+0x471b 009830 fetch 1 ,mem_hid_interrupt_state 
+0x471c 009831 set1 l2cap_channel_state_rcv_cfg_res 
+0x471d 009832 store 1 ,mem_hid_interrupt_state 
+0x471e 009833 jam bt_evt_hid_connected ,mem_fifo_temp 
+0x471f 009834 branch ui_ipc_send_event 
+:      009837 mcfrsdone:
+0x4720 009838 call load_cont_pointers 
+:      009839 mcrsdone1:
+0x4721 009840 increase -6 ,rega 
+:      009841 mloop2:
+0x4722 009842 branch mcrsdone ,zero 
+0x4723 009843 increase 1 ,contr 
+0x4724 009844 increase -1 ,rega 
+0x4725 009845 branch mloop2 
+:      009846 mcrsdone:
+0x4726 009847 rtn 
+:      009848 ml2cap_proc_signal_config_req:
+0x4727 009849 ifetch 1 ,contr 
+0x4728 009850 copy pdata ,queue 
+0x4729 009851 ifetch 2 ,contr 
+0x472a 009852 copy pdata ,rega 
+0x472b 009853 copy regc ,pdata 
+0x472c 009854 isub rega ,regc 
+0x472d 009855 ifetch 2 ,contr 
+0x472e 009856 increase 2 ,contr 
+0x472f 009857 copy pdata ,temp 
+0x4730 009858 setarg signal_config_rsp 
+0x4731 009859 istore 1 ,contw 
+0x4732 009860 copy queue ,pdata 
+0x4733 009861 istore 1 ,contw 
+0x4734 009862 increase 2 ,rega 
+0x4735 009863 copy rega ,pdata 
+0x4736 009864 istore 2 ,contw 
+0x4737 009865 call save_cont_pointers 
+0x4738 009866 set0 mark_ext_patch ,mark 
+0x4739 009867 bpatch patch1d_3 ,mem_patch1d 
+0x473a 009868 setarg l2cap_sdp_channel 
+0x473b 009869 isub temp ,null 
+0x473c 009870 branch ml2cap_proc_signal_config_req_sdp ,zero 
+0x473d 009871 setarg l2cap_rfcomm_channel 
+0x473e 009872 isub temp ,null 
+0x473f 009873 branch ml2cap_proc_signal_config_req_rfcomm ,zero 
+0x4740 009874 setarg l2cap_hid_control_channel 
+0x4741 009875 isub temp ,null 
+0x4742 009876 branch ml2cap_proc_signal_config_req_hid_ctrl ,zero 
+0x4743 009877 setarg l2cap_hid_interrupt_channel 
+0x4744 009878 isub temp ,null 
+0x4745 009879 branch ml2cap_proc_signal_config_req_hid_int ,zero 
+0x4746 009880 branch mcfgrq_done 
+:      009881 ml2cap_proc_signal_config_req_sdp:
+0x4747 009882 fetch 1 ,mem_sdp_state 
+0x4748 009883 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4749 009884 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x474a 009885 store 1 ,mem_sdp_state 
+0x474b 009886 bbit1 l2cap_channel_state_snd_cfg_req ,ml2cap_proc_signal_config_req_sdp_nsndreq 
+0x474c 009887 fetcht 1 ,mem_control_tasks 
+0x474d 009888 set1 l2cap_init_config_req ,temp 
+0x474e 009889 storet 1 ,mem_control_tasks 
+0x474f 009890 copy queue ,pdata 
+0x4750 009891 increase 1 ,pdata 
+0x4751 009892 store 1 ,mem_config_identifier 
+0x4752 009893 fetch 1 ,mem_sdp_state 
+0x4753 009894 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x4754 009895 store 1 ,mem_sdp_state 
+:      009896 ml2cap_proc_signal_config_req_sdp_nsndreq:
+0x4755 009897 fetch 2 ,mem_sdp_remote_cid 
+0x4756 009898 store 2 ,mem_config_req_dest_cid 
+0x4757 009899 branch mcfgrq_done 
+:      009900 ml2cap_proc_signal_config_req_rfcomm:
+0x4758 009901 fetch 1 ,mem_rfcomm_state 
+0x4759 009902 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x475a 009903 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x475b 009904 store 1 ,mem_rfcomm_state 
+0x475c 009905 fetch 2 ,mem_rfcomm_remote_cid 
+0x475d 009906 branch mcfgrq_done 
+:      009907 ml2cap_proc_signal_config_req_hid_ctrl:
+0x475e 009908 fetch 1 ,mem_hid_control_state 
+0x475f 009909 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4760 009910 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4761 009911 store 1 ,mem_hid_control_state 
+0x4762 009912 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4763 009913 branch mcfgrq_done 
+:      009914 ml2cap_proc_signal_config_req_hid_int:
+0x4764 009915 fetch 1 ,mem_hid_interrupt_state 
+0x4765 009916 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4766 009917 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4767 009918 store 1 ,mem_hid_interrupt_state 
+0x4768 009919 fetch 2 ,mem_hid_int_remote_cid 
+:      009922 mcfgrq_done:
+0x4769 009923 copy pdata ,timeup 
+0x476a 009924 call load_cont_pointers 
+0x476b 009926 copy timeup ,pdata 
+0x476c 009928 istore 2 ,contw 
+0x476d 009929 force 0x0000 ,pdata 
+0x476e 009930 istore 2 ,contw 
+0x476f 009931 force 0x0000 ,pdata 
+0x4770 009932 istore 2 ,contw 
+0x4771 009933 force 10 ,pdata 
+0x4772 009934 iadd regb ,regb 
+0x4773 009935 increase -6 ,rega 
+:      009936 mloop1:
+0x4774 009937 branch mcrqdone ,zero 
+0x4775 009938 ifetch 1 ,contr 
+0x4776 009939 istore 1 ,contw 
+0x4777 009940 increase 1 ,regb 
+0x4778 009941 increase -1 ,rega 
+0x4779 009942 branch mloop1 
+:      009943 mcrqdone:
+0x477a 009944 rtn 
+:      009945 ml2cap_proc_signal_disconn_req:
+0x477b 009946 ifetch 1 ,contr 
+0x477c 009947 copy pdata ,queue 
+0x477d 009948 ifetch 2 ,contr 
+0x477e 009949 copy pdata ,rega 
+0x477f 009950 copy regc ,pdata 
+0x4780 009951 isub rega ,regc 
+0x4781 009953 ifetch 2 ,contr 
+0x4782 009954 copy pdata ,rega 
+0x4783 009955 ifetch 2 ,contr 
+0x4784 009956 copy pdata ,timeup 
+0x4785 009957 call save_cont_pointers 
+0x4786 009958 set0 mark_ext_patch ,mark 
+0x4787 009959 bpatch patch1d_4 ,mem_patch1d 
+0x4788 009960 setarg l2cap_sdp_channel 
+0x4789 009961 copy rega ,temp 
+0x478a 009962 isub temp ,null 
+0x478b 009963 branch ml2cap_proc_signal_disconn_sdp ,zero 
+0x478c 009964 setarg l2cap_hid_control_channel 
+0x478d 009965 copy rega ,temp 
+0x478e 009966 isub temp ,null 
+0x478f 009967 branch ml2cap_proc_signal_disconn_hid_ctrl ,zero 
+0x4790 009968 setarg l2cap_hid_interrupt_channel 
+0x4791 009969 copy rega ,temp 
+0x4792 009970 isub temp ,null 
+0x4793 009971 branch ml2cap_proc_signal_disconn_hid_int ,zero 
+0x4794 009972 branch mclsrfc 
+:      009973 ml2cap_proc_signal_disconn_sdp:
+0x4795 009974 setarg 0x0000 
+0x4796 009975 store 2 ,mem_sdp_tx_pkt_length 
+0x4797 009976 store 2 ,mem_sdp_remote_cid 
+0x4798 009977 store 1 ,mem_sdp_state 
+0x4799 009978 branch mclssdp 
+:      009979 ml2cap_proc_signal_disconn_hid_ctrl:
+0x479a 009980 call l2cap_reset_hid_ctrl_state 
+0x479b 009981 branch mclssdp 
+:      009982 ml2cap_proc_signal_disconn_hid_int:
+0x479c 009983 call l2cap_reset_hid_int_state 
+0x479d 009989 branch mclssdp 
+:      009990 mclsrfc:
+0x479e 009991 setarg 0x0000 
+0x479f 009992 store 2 ,mem_rfcomm_tx_pkt_length 
+:      009993 mclssdp:
+0x47a0 009994 call load_cont_pointers 
+0x47a1 009995 setarg signal_disconnect_rsp 
+0x47a2 009996 istore 1 ,contw 
+0x47a3 009997 copy queue ,pdata 
+0x47a4 009998 istore 1 ,contw 
+0x47a5 009999 setarg 0x0004 
+0x47a6 010000 istore 2 ,contw 
+0x47a7 010001 copy rega ,pdata 
+0x47a8 010002 istore 2 ,contw 
+0x47a9 010003 copy timeup ,pdata 
+0x47aa 010004 istore 2 ,contw 
+0x47ab 010005 force 8 ,pdata 
+0x47ac 010006 iadd regb ,regb 
+0x47ad 010007 rtn 
+:      010009 ml2cap_proc_signal_disconn_rsp:
+0x47ae 010010 ifetch 1 ,contr 
+0x47af 010011 copy pdata ,queue 
+0x47b0 010012 ifetch 2 ,contr 
+0x47b1 010013 copy pdata ,rega 
+0x47b2 010014 ifetch 2 ,contr 
+0x47b3 010015 copy pdata ,timeup 
+0x47b4 010016 ifetch 2 ,contr 
+0x47b5 010017 copy pdata ,temp 
+0x47b6 010018 call save_cont_pointers 
+0x47b7 010019 set0 mark_ext_patch ,mark 
+0x47b8 010020 bpatch patch1d_5 ,mem_patch1d 
+0x47b9 010021 fetch 1 ,mem_ml2cap_comm_id 
+0x47ba 010022 icompare 0xff ,queue 
+0x47bb 010023 nbranch mdisdone ,true 
+0x47bc 010024 setarg l2cap_sdp_channel 
+0x47bd 010025 isub temp ,null 
+0x47be 010026 branch ml2cap_proc_signal_disconn_rsp_sdp ,zero 
+0x47bf 010027 setarg l2cap_rfcomm_channel 
+0x47c0 010028 isub temp ,null 
+0x47c1 010029 branch ml2cap_proc_signal_disconn_rsp_rfcomm ,zero 
+0x47c2 010030 branch mdisdone 
+:      010031 ml2cap_proc_signal_disconn_rsp_sdp:
+0x47c3 010032 jam 0 ,mem_sdp_remote_cid 
+0x47c4 010033 jam 0 ,mem_sdp_state 
+0x47c5 010034 branch mdisdone 
+:      010035 ml2cap_proc_signal_disconn_rsp_rfcomm:
+:      010038 mdisdone:
+0x47c6 010039 call load_cont_pointers 
+0x47c7 010040 copy regc ,pdata 
+0x47c8 010041 isub rega ,regc 
+0x47c9 010042 rtn 
+:      010044 ml2cap_proc_send_reject:
+0x47ca 010045 setarg signal_cmd_reject 
+0x47cb 010046 istore 1 ,contw 
+0x47cc 010047 ifetch 1 ,contr 
+0x47cd 010048 istore 1 ,contw 
+0x47ce 010049 setarg 0x0002 
+0x47cf 010050 istore 2 ,contw 
+0x47d0 010051 setarg 0x0000 
+0x47d1 010052 istore 2 ,contw 
+0x47d2 010053 setarg 0x0006 
+0x47d3 010054 iadd regb ,regb 
+0x47d4 010055 force 4 ,regc 
+0x47d5 010056 rtn 
+:      010059 l2cap_get_req_id:
+0x47d6 010060 fetch 1 ,mem_ml2cap_comm_id 
+0x47d7 010061 increase 1 ,pdata 
+0x47d8 010062 bne 0 ,l2cap_get_req_id_ok 
+0x47d9 010063 increase 1 ,pdata 
+:      010064 l2cap_get_req_id_ok:
+0x47da 010065 store 1 ,mem_ml2cap_comm_id 
+0x47db 010066 rtn 
+:      010076 l2cap_malloc:
+0x47dc 010077 set0 mark_ext_patch ,mark 
+0x47dd 010078 bpatch patch1d_6 ,mem_patch1d 
+0x47de 010079 arg 0 ,regb 
+0x47df 010080 call l2cap_malloc_is_fifo_full 
+0x47e0 010081 nbranch assert ,blank 
+0x47e1 010082 call l2cap_malloc_get_full_map 
+0x47e2 010083 arg mem_tx_buff0 ,regb 
+0x47e3 010084 arg 0 ,queue 
+:      010085 l2cap_malloc_loop:
+0x47e4 010086 fetcht 1 ,mem_used_map 
+0x47e5 010087 qisolate1 temp 
+0x47e6 010088 branch l2cap_malloc_next ,true 
+0x47e7 010089 call l2cap_malloc_enough 
+0x47e8 010090 sub timeup ,0 ,null 
+0x47e9 010091 branch l2cap_malloc_next ,positive 
+0x47ea 010092 call l2cap_malloc_into_fifo 
+0x47eb 010093 branch l2cap_malloc_rtn 
+:      010094 l2cap_malloc_next:
+0x47ec 010095 increase 128 ,regb 
+0x47ed 010096 increase 1 ,queue 
+0x47ee 010097 setarg 8 
+0x47ef 010098 isub queue ,null 
+0x47f0 010099 branch l2cap_malloc_loop ,positive 
+0x47f1 010100 arg 0 ,regb 
+:      010101 l2cap_malloc_rtn:
+0x47f2 010102 copy regb ,pdata 
+0x47f3 010103 branch assert ,blank 
+0x47f4 010104 rtn 
+:      010112 l2cap_malloc_fifo_out:
+0x47f5 010113 set0 mark_ext_patch ,mark 
+0x47f6 010114 bpatch patch1d_7 ,mem_patch1d 
+0x47f7 010115 call l2cap_malloc_fifo_get_first_ptr 
+0x47f8 010116 increase 1 ,contr 
+0x47f9 010117 ifetch 2 ,contr 
+0x47fa 010118 rtn 
+:      010124 l2cap_malloc_free:
+0x47fb 010125 set0 mark_ext_patch ,mark 
+0x47fc 010126 bpatch patch1e_0 ,mem_patch1e 
+0x47fd 010127 call l2cap_malloc_fifo_get_first_ptr 
+0x47fe 010128 copy contr ,contw 
+0x47ff 010129 copy contr ,temp 
+0x4800 010130 setarg 0 
+0x4801 010131 istore 3 ,contw 
+0x4802 010132 rtn 
+:      010137 l2cap_malloc_discard:
+0x4803 010138 set0 mark_ext_patch ,mark 
+0x4804 010139 bpatch patch1e_1 ,mem_patch1e 
+0x4805 010140 call l2cap_malloc_is_fifo_empty 
+0x4806 010141 branch assert ,blank 
+0x4807 010142 fetch 3 ,mem_tx_fifo2 
+0x4808 010143 store 3 ,mem_tx_fifo3 
+0x4809 010144 fetch 3 ,mem_tx_fifo1 
+0x480a 010145 store 3 ,mem_tx_fifo2 
+0x480b 010146 fetch 3 ,mem_tx_fifo0 
+0x480c 010147 store 3 ,mem_tx_fifo1 
+0x480d 010148 rtn 
+:      010154 l2cap_malloc_is_fifo_full:
+0x480e 010155 set0 mark_ext_patch ,mark 
+0x480f 010156 bpatch patch1e_2 ,mem_patch1e 
+0x4810 010157 fetch 3 ,mem_tx_fifo0 
+0x4811 010158 rtn 
+:      010164 l2cap_malloc_is_fifo_nearly_full:
+0x4812 010165 set0 mark_ext_patch ,mark 
+0x4813 010166 bpatch patch1e_3 ,mem_patch1e 
+0x4814 010167 fetch 3 ,mem_tx_fifo1 
+0x4815 010168 rtn 
+:      010174 l2cap_malloc_is_fifo_empty:
+0x4816 010175 set0 mark_ext_patch ,mark 
+0x4817 010176 bpatch patch1e_4 ,mem_patch1e 
+0x4818 010177 fetch 3 ,mem_tx_fifo3 
+0x4819 010178 rtn 
+:      010183 l2cap_malloc_fifo_get_first_ptr:
+0x481a 010184 call l2cap_malloc_is_fifo_empty 
+0x481b 010185 branch assert ,blank 
+0x481c 010186 arg mem_tx_fifo0 ,contr 
+:      010187 l2cap_malloc_free_loop:
+0x481d 010188 ifetch 3 ,contr 
+0x481e 010189 branch l2cap_malloc_free_loop ,blank 
+0x481f 010190 increase -3 ,contr 
+0x4820 010191 rtn 
+:      010198 l2cap_malloc_get_full_map:
+0x4821 010199 set0 mark_ext_patch ,mark 
+0x4822 010200 bpatch patch1e_5 ,mem_patch1e 
+0x4823 010201 arg 4 ,loopcnt 
+0x4824 010202 arg mem_tx_fifo0_map ,contr 
+0x4825 010203 arg 0 ,temp 
+:      010204 l2cap_malloc_get_full_map_loop:
+0x4826 010205 ifetch 3 ,contr 
+0x4827 010206 and pdata ,0xff ,pdata 
+0x4828 010207 ior temp ,temp 
+0x4829 010208 loop l2cap_malloc_get_full_map_loop 
+0x482a 010209 storet 1 ,mem_used_map 
+0x482b 010210 rtn 
+:      010218 l2cap_malloc_into_fifo:
+0x482c 010219 set0 mark_ext_patch ,mark 
+0x482d 010220 bpatch patch1e_6 ,mem_patch1e 
+0x482e 010221 call l2cap_malloc_is_fifo_full 
+0x482f 010222 nbranch assert ,blank 
+0x4830 010223 call l2cap_malloc_is_fifo_empty 
+0x4831 010224 branch l2cap_malloc_into_fifo_no_push ,blank 
+0x4832 010225 fetch 3 ,mem_tx_fifo1 
+0x4833 010226 store 3 ,mem_tx_fifo0 
+0x4834 010227 ifetch 3 ,contr 
+0x4835 010228 istore 3 ,contw 
+0x4836 010229 ifetch 3 ,contr 
+0x4837 010230 istore 3 ,contw 
+0x4838 010231 setarg 0 
+0x4839 010232 istore 3 ,contw 
+:      010233 l2cap_malloc_into_fifo_no_push:
+0x483a 010234 arg 0 ,temp 
+0x483b 010235 copy timeup ,pdata 
+0x483c 010236 iadd queue ,pdata 
+:      010237 l2cap_malloc_into_fifo_loop:
+0x483d 010238 qset1 temp 
+0x483e 010239 increase 1 ,queue 
+0x483f 010240 isub queue ,null 
+0x4840 010241 nbranch l2cap_malloc_into_fifo_loop ,zero 
+0x4841 010243 lshift8 regb ,pdata 
+0x4842 010244 ior temp ,pdata 
+0x4843 010245 store 3 ,mem_tx_fifo3 
+0x4844 010246 rtn 
+:      010256 l2cap_malloc_enough:
+0x4845 010257 set0 mark_ext_patch ,mark 
+0x4846 010258 bpatch patch1e_7 ,mem_patch1e 
+0x4847 010259 call l2cap_malloc_get_full_map 
+0x4848 010260 copy queue ,regc 
+0x4849 010261 arg 0 ,temp 
+0x484a 010262 arg 0 ,timeup 
+:      010264 l2cap_malloc_enough_loop:
+0x484b 010265 copy queue ,pdata 
+0x484c 010266 beq 8 ,l2cap_malloc_enough_end 
+0x484d 010267 fetch 1 ,mem_used_map 
+0x484e 010268 qisolate1 pdata 
+0x484f 010269 branch l2cap_malloc_enough_end ,true 
+0x4850 010270 increase 128 ,temp 
+0x4851 010271 increase 1 ,queue 
+0x4852 010272 copy rega ,pdata 
+0x4853 010273 isub temp ,null 
+0x4854 010274 branch l2cap_malloc_enough_end ,zero 
+0x4855 010275 branch l2cap_malloc_enough_loop ,positive 
+:      010276 l2cap_malloc_enough_end:
+0x4856 010277 copy temp ,pdata 
+0x4857 010278 isub rega ,null 
+0x4858 010279 nbranch l2cap_malloc_enough_rtn ,positive 
+0x4859 010280 copy queue ,pdata 
+0x485a 010281 copy regc ,temp 
+0x485b 010282 isub temp ,timeup 
+:      010283 l2cap_malloc_enough_rtn:
+0x485c 010284 copy regc ,queue 
+0x485d 010285 rtn 
+:      010288 l2cap_malloc_signal_channel:
+0x485e 010289 set0 mark_ext_patch ,mark 
+0x485f 010290 bpatch patch1f_0 ,mem_patch1f 
+0x4860 010291 arg l2cap_signal_malloc_size ,rega 
+0x4861 010292 call l2cap_malloc 
+0x4862 010293 store 2 ,mem_l2cap_signal_tx_buff_ptr 
+0x4863 010294 increase 4 ,pdata 
+0x4864 010295 store 2 ,mem_l2cap_signal_tx_payload_ptr 
+0x4865 010296 setarg 0 
+0x4866 010297 store 2 ,mem_l2cap_signal_tx_length 
+0x4867 010298 rtn 
+:      010300 l2cap_get_signal_tx_buff:
+0x4868 010301 fetch 2 ,mem_l2cap_signal_tx_buff_ptr 
+0x4869 010302 branch l2cap_util_pdata_to_contw 
+:      010304 l2cap_get_signal_tx_payload:
+0x486a 010305 fetch 2 ,mem_l2cap_signal_tx_payload_ptr 
+0x486b 010306 branch l2cap_util_pdata_to_contw 
+:      010309 l2cap_malloc_sdp_channel:
+0x486c 010310 set0 mark_ext_patch ,mark 
+0x486d 010311 bpatch patch1f_1 ,mem_patch1f 
+0x486e 010312 arg sdp_malloc_size ,rega 
+0x486f 010313 call l2cap_malloc 
+0x4870 010314 store 2 ,mem_sdp_tx_buff_ptr 
+0x4871 010315 increase 4 ,pdata 
+0x4872 010316 store 2 ,mem_sdp_tx_payload_ptr 
+0x4873 010317 setarg 0 
+0x4874 010318 store 2 ,mem_sdp_tx_pkt_length 
+0x4875 010319 rtn 
+:      010321 l2cap_get_sdp_tx_buff:
+0x4876 010322 fetch 2 ,mem_sdp_tx_buff_ptr 
+0x4877 010323 branch l2cap_util_pdata_to_contw 
+:      010325 l2cap_get_sdp_tx_payload:
+0x4878 010326 fetch 2 ,mem_sdp_tx_payload_ptr 
+0x4879 010327 branch l2cap_util_pdata_to_contw 
+:      010330 l2cap_malloc_rfcomm_channel:
+0x487a 010331 set0 mark_ext_patch ,mark 
+0x487b 010332 bpatch patch1f_2 ,mem_patch1f 
+0x487c 010333 call push_stack 
+0x487d 010334 jam rfcomm_malloc_fail ,mem_rfcomm_malloc_fail_flag 
+0x487e 010335 call l2cap_malloc_is_fifo_full 
+0x487f 010336 nrtn blank 
+0x4880 010337 arg rfcomm_malloc_size ,rega 
+0x4881 010338 call l2cap_malloc 
+0x4882 010339 store 2 ,mem_rfcomm_tx_buff_ptr 
+0x4883 010340 increase 4 ,pdata 
+0x4884 010341 store 2 ,mem_rfcomm_tx_payload_ptr 
+0x4885 010342 setarg 0 
+0x4886 010343 store 2 ,mem_rfcomm_tx_pkt_length 
+0x4887 010344 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+0x4888 010345 branch pop_stack 
+:      010347 l2cap_get_rfcomm_tx_buff:
+0x4889 010348 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+0x488a 010349 branch l2cap_util_pdata_to_contw 
+:      010351 l2cap_util_pdata_to_contw:
+0x488b 010352 branch assert ,blank 
+0x488c 010353 copy pdata ,contw 
+0x488d 010354 rtn 
+:      010357 l2cap_lpm_save_calc_len:
+0x488e 010358 set0 mark_ext_patch ,mark 
+0x488f 010359 bpatch patch1f_3 ,mem_patch1f 
+0x4890 010360 arg 0 ,regb 
+0x4891 010361 arg mem_tx_fifo0_map ,rega 
+0x4892 010362 increase -2 ,rega 
+:      010363 l2cap_lpm_save_calc_len_loop:
+0x4893 010364 increase 2 ,rega 
+0x4894 010365 setarg mem_tx_fifo_end 
+0x4895 010366 isub rega ,null 
+0x4896 010367 branch l2cap_lpm_save_calc_len_end ,zero 
+0x4897 010368 ifetch 1 ,rega 
+0x4898 010369 increase 1 ,rega 
+0x4899 010370 branch l2cap_lpm_save_calc_len_loop ,blank 
+0x489a 010371 ifetcht 2 ,rega 
+0x489b 010372 ifetch 2 ,temp 
+0x489c 010373 iadd regb ,regb 
+0x489d 010374 increase 4 ,regb 
+0x489e 010375 branch l2cap_lpm_save_calc_len_loop 
+:      010376 l2cap_lpm_save_calc_len_end:
+0x489f 010377 copy regb ,pdata 
+0x48a0 010378 rtn 
+:      010381 l2cap_lpm_get_wake_lock:
+0x48a1 010382 arg wake_lock_l2cap_tx ,queue 
+0x48a2 010383 branch lpm_get_wake_lock 
+:      010385 l2cap_lpm_put_wake_lock:
+0x48a3 010386 arg wake_lock_l2cap_tx ,queue 
+0x48a4 010387 branch lpm_put_wake_lock 
+:      010389 l2cap_lpm_save_txbuf:
+0x48a5 010390 set0 mark_ext_patch ,mark 
+0x48a6 010391 bpatch patch1f_4 ,mem_patch1f 
+0x48a7 010392 call l2cap_malloc_get_full_map 
+0x48a8 010393 fetch 1 ,mem_used_map 
+0x48a9 010394 rtn blank 
+0x48aa 010395 call l2cap_lpm_save_calc_len 
+0x48ab 010396 arg l2cap_lpm_txbuf_len ,temp 
+0x48ac 010397 isub temp ,null 
+0x48ad 010398 branch l2cap_lpm_get_wake_lock ,positive 
+0x48ae 010399 call l2cap_lpm_put_wake_lock 
+0x48af 010400 arg mem_l2cap_lpm_txbuf ,contw 
+0x48b0 010401 arg mem_tx_fifo0 ,rega 
+:      010402 l2cap_lpm_save_txbuf_loop:
+0x48b1 010403 setarg mem_tx_fifo_end 
+0x48b2 010404 isub rega ,null 
+0x48b3 010405 rtn zero 
+0x48b4 010406 ifetch 1 ,rega 
+0x48b5 010407 increase 1 ,rega 
+0x48b6 010408 nbranch l2cap_lpm_save_txbuf_nempty ,blank 
+0x48b7 010409 istore 2 ,contw 
+0x48b8 010410 increase 2 ,rega 
+0x48b9 010411 branch l2cap_lpm_save_txbuf_loop 
+:      010412 l2cap_lpm_save_txbuf_nempty:
+0x48ba 010413 ifetch 2 ,rega 
+0x48bb 010414 increase 2 ,rega 
+0x48bc 010415 copy pdata ,contr 
+0x48bd 010416 ifetch 2 ,contr 
+0x48be 010417 istore 2 ,contw 
+0x48bf 010418 copy pdata ,loopcnt 
+0x48c0 010419 increase 2 ,loopcnt 
+0x48c1 010420 call memcpy 
+0x48c2 010421 branch l2cap_lpm_save_txbuf_loop 
+:      010423 l2cap_lpm_load_txbuf:
+0x48c3 010424 set0 mark_ext_patch ,mark 
+0x48c4 010425 bpatch patch1f_5 ,mem_patch1f 
+0x48c5 010426 call l2cap_malloc_get_full_map 
+0x48c6 010427 fetch 1 ,mem_used_map 
+0x48c7 010428 rtn blank 
+0x48c8 010429 arg mem_tx_fifo0_ptr ,rega 
+0x48c9 010430 increase -3 ,rega 
+0x48ca 010431 arg mem_l2cap_lpm_txbuf ,contr 
+:      010432 l2cap_lpm_load_txbuf_loop:
+0x48cb 010433 increase 3 ,rega 
+0x48cc 010434 setarg mem_tx_fifo_end + 1 
+0x48cd 010435 isub rega ,null 
+0x48ce 010436 rtn zero 
+0x48cf 010437 ifetch 2 ,contr 
+0x48d0 010438 branch l2cap_lpm_load_txbuf_loop ,blank 
+0x48d1 010439 increase 4 ,pdata 
+0x48d2 010440 copy pdata ,loopcnt 
+0x48d3 010441 copy contr ,regb 
+0x48d4 010442 ifetch 2 ,rega 
+0x48d5 010443 copy pdata ,contw 
+0x48d6 010444 copy regb ,contr 
+0x48d7 010445 increase -2 ,contr 
+0x48d8 010446 call memcpy 
+0x48d9 010447 branch l2cap_lpm_load_txbuf_loop 
+:      010457 le_secure_connection_enable:
+0x48da 010458 fetch 1 ,mem_le_pres_auth 
+0x48db 010459 set1 le_auth_secure_connection_pairing_bit ,pdata 
+0x48dc 010460 store 1 ,mem_le_pres_auth 
+0x48dd 010461 rtn 
+:      010462 le_secure_connection_disable:
+0x48de 010463 fetch 1 ,mem_le_pres_auth 
+0x48df 010464 set0 le_auth_secure_connection_pairing_bit ,pdata 
+0x48e0 010465 store 1 ,mem_le_pres_auth 
+0x48e1 010466 rtn 
+:      010469 le_init_conn:
+0x48e2 010470 set0 mark_ext_patch ,mark 
+0x48e3 010471 bpatch patch1f_6 ,mem_patch1f 
+0x48e4 010472 disable wake 
+0x48e5 010473 jam 1 ,mem_le_conn_handle 
+0x48e6 010474 jam 3 ,mem_le_state 
+0x48e7 010475 jam 1 ,mem_le_arq 
+0x48e8 010476 setarg -1 
+0x48e9 010477 store 2 ,mem_le_event_count 
+0x48ea 010478 force 0 ,pdata 
+0x48eb 010479 store 1 ,mem_le_ch 
+0x48ec 010480 store 1 ,mem_le_op 
+0x48ed 010481 store 3 ,mem_sniff_rcv 
+0x48ee 010482 store 3 ,mem_sniff_lost 
+0x48ef 010483 store 5 ,mem_le_pcnt_tx 
+0x48f0 010484 set1 39 ,pdata 
+0x48f1 010485 store 5 ,mem_le_pcnt_rx 
+0x48f2 010486 jam 1 ,mem_le_txheader 
+0x48f3 010487 jam 0 ,mem_le_txlen 
+0x48f4 010488 branch le_supervision_flush 
+:      010490 le_init_master:
+0x48f5 010491 set0 mark_ext_patch ,mark 
+0x48f6 010492 bpatch patch1f_7 ,mem_patch1f 
+0x48f7 010493 enable master 
+0x48f8 010494 jam lemode_master ,mem_le_mode 
+0x48f9 010495 jam 1 ,mem_le_att_handle 
+0x48fa 010496 jam 1 ,mem_le_search_handle_start 
+0x48fb 010497 setarg 0xffff 
+0x48fc 010498 store 2 ,mem_le_search_handle_end 
+0x48fd 010499 force 0 ,pdata 
+0x48fe 010500 store 5 ,mem_le_pcnt_rx 
+0x48ff 010501 set1 39 ,pdata 
+0x4900 010502 store 5 ,mem_le_pcnt_tx 
+0x4901 010503 branch le_init_conn 
+:      010506 le_init_slave:
+0x4902 010507 set1 mark_ext_patch ,mark 
+0x4903 010508 bpatch patch20_0 ,mem_patch20 
+0x4904 010509 disable master 
+0x4905 010510 jam lemode_slave ,mem_le_mode 
+0x4906 010511 jam 0 ,mem_le_adv_enable 
+0x4907 010512 jam 0 ,mem_lpm_current_mult 
+0x4908 010513 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x4909 010514 jam flag_le_enc_null ,mem_le_enc_state 
+0x490a 010515 fetch 2 ,mem_le_superto 
+0x490b 010516 store 2 ,mem_le_init_superto 
+0x490c 010517 fetch 2 ,mem_le_tsniff 
+0x490d 010518 mul32 pdata ,5 ,pdata 
+0x490e 010519 rshift4 pdata ,pdata 
+0x490f 010520 store 2 ,mem_le_superto 
+0x4910 010521 branch le_init_conn 
+:      010527 le_dispatch:
+0x4911 010528 call le_enable 
+0x4912 010529 call le_scan 
+0x4913 010530 call le_adv 
+0x4914 010531 branch le_disable 
+:      010533 le_conn_dispatch:
+0x4915 010534 set1 mark_ext_patch ,mark 
+0x4916 010535 bpatch patch20_1 ,mem_patch20 
+0x4917 010536 call le_enable 
+0x4918 010537 call app_process_ble 
+0x4919 010538 fetch 1 ,mem_le_mode 
+0x491a 010539 beq lemode_master ,le_master_dispatch 
+0x491b 010540 branch le_slave_dispatch 
+:      010546 le_master_dispatch:
+0x491c 010547 set1 mark_ext_patch ,mark 
+0x491d 010548 bpatch patch20_2 ,mem_patch20 
+0x491e 010549 enable master 
+0x491f 010550 call le_supervision_update 
+0x4920 010551 branch le_master_disconn ,positive 
+0x4921 010552 call check_ble_disabled 
+0x4922 010553 call le_setup 
+0x4923 010554 call le_prepare_tx 
+0x4924 010555 disable match 
+0x4925 010556 call le_transmit_receive_sifs 
+0x4926 010557 nrtn match 
+0x4927 010558 set1 mark_ext_patch ,mark 
+0x4928 010559 bpatch patch20_3 ,mem_patch20 
+0x4929 010560 fetch 1 ,mem_le_conn_rcv 
+0x492a 010561 increase 1 ,pdata 
+0x492b 010562 store 1 ,mem_le_conn_rcv 
+0x492c 010563 call le_acknowledge 
+0x492d 010564 disable master 
+0x492e 010565 rtn 
+:      010567 le_master_disconn:
+0x492f 010568 call le_disconnect 
+0x4930 010569 disable master 
+0x4931 010570 rtn 
+:      010575 le_slave_dispatch:
+0x4932 010576 set1 mark_ext_patch ,mark 
+0x4933 010577 bpatch patch20_4 ,mem_patch20 
+0x4934 010578 call sp_calc_sequence_256 
+0x4935 010579 call le_secure_connect_sm 
+0x4936 010580 disable attempt 
+0x4937 010581 call le_supervision_update 
+0x4938 010582 branch le_slave_disconn ,positive 
+0x4939 010583 call check_ble_disabled 
+0x493a 010584 call le_setup 
+0x493b 010585 call le_receive_slave 
+0x493c 010586 nbranch le_slave_unsync ,sync 
+0x493d 010587 call le_got_first_packet 
+0x493e 010588 branch le_slave_match ,match 
+0x493f 010589 branch le_slave_transmit_last 
+:      010592 le_slave_match:
+0x4940 010593 set1 mark_ext_patch ,mark 
+0x4941 010594 bpatch patch20_5 ,mem_patch20 
+0x4942 010595 call le_got_first_packet 
+0x4943 010596 call le_acknowledge 
+0x4944 010597 call le_prepare_tx 
+0x4945 010598 fetch 1 ,mem_le_rxbuf 
+0x4946 010599 bbit1 md ,le_slave_more_data 
+0x4947 010600 call le_xtype_fifo_is_empty 
+0x4948 010601 nbranch le_slave_more_data ,blank 
+:      010602 le_slave_transmit_last:
+0x4949 010603 set1 mark_ext_patch ,mark 
+0x494a 010604 bpatch patch20_6 ,mem_patch20 
+0x494b 010605 call le_transmit_norx 
+:      010606 le_slave_cont:
+0x494c 010607 call check_51cmd 
+0x494d 010608 fetch 1 ,mem_le_op 
+0x494e 010609 bbit1 op_disconn ,le_slave_disconn 
+:      010610 le_slave_unsync:
+0x494f 010611 set1 mark_ext_patch ,mark 
+0x4950 010612 bpatch patch20_7 ,mem_patch20 
+0x4951 010613 call le_lpm_set_mult 
+0x4952 010614 call le_update_channel_map 
+0x4953 010615 call le_update_param 
+0x4954 010616 branch calc_clke_offset 
+:      010618 le_slave_more_data:
+0x4955 010619 set1 mark_ext_patch ,mark 
+0x4956 010620 bpatch patch21_0 ,mem_patch21 
+0x4957 010621 enable attempt 
+0x4958 010622 call le_transmit_receive_sifs 
+0x4959 010623 branch le_slave_match ,match 
+0x495a 010624 branch le_slave_cont 
+:      010626 le_slave_disconn:
+:      010629 le_disconnect:
+0x495b 010630 set1 mark_ext_patch ,mark 
+0x495c 010631 bpatch patch21_1 ,mem_patch21 
+:      010632 le_disconnect0:
+0x495d 010633 call le_clear_connection_info 
+0x495e 010634 call app_disconn_reason_collect_ble 
+0x495f 010635 call sp_initialize_256 
+0x4960 010636 jam bt_evt_le_disconnected ,mem_fifo_temp 
+0x4961 010637 branch ui_ipc_send_event 
+:      010639 le_clear_connection_info:
+0x4962 010640 jam 0 ,mem_le_conn_handle 
+0x4963 010641 jam lemode_idle ,mem_le_mode 
+0x4964 010642 jam 0 ,mem_le_state 
+0x4965 010643 jam flag_le_enc_null ,mem_le_enc_state 
+0x4966 010644 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x4967 010645 rtn 
+:      010647 le_got_first_packet:
+0x4968 010648 set1 mark_ext_patch ,mark 
+0x4969 010649 bpatch patch21_2 ,mem_patch21 
+0x496a 010650 fetch 1 ,mem_le_conn_rcv 
+0x496b 010651 increase 1 ,pdata 
+0x496c 010652 store 1 ,mem_le_conn_rcv 
+0x496d 010653 fetch 1 ,mem_le_state 
+0x496e 010654 rtnbit1 lestate_got_first_packet 
+0x496f 010655 set1 lestate_got_first_packet 
+0x4970 010656 store 1 ,mem_le_state 
+0x4971 010657 fetch 2 ,mem_le_init_superto 
+0x4972 010658 store 2 ,mem_le_superto 
+0x4973 010659 setarg 0 
+0x4974 010660 store 4 ,mem_le_transmit_window 
+0x4975 010661 rtn 
+:      010666 le_enable:
+0x4976 010667 set1 mark_ext_patch ,mark 
+0x4977 010668 bpatch patch21_3 ,mem_patch21 
+0x4978 010669 hjam 0x36 ,0x90f 
+0x4979 010670 hjam 0x5f ,0x90b 
+0x497a 010671 enable le 
+0x497b 010672 hjam 7 ,rfen_ulp 
+0x497c 010673 branch check_ble_disabled 
+:      010675 le_disable:
+0x497d 010676 set1 mark_ext_patch ,mark 
+0x497e 010677 bpatch patch21_4 ,mem_patch21 
+0x497f 010678 hjam 0x2e ,0x90f 
+0x4980 010679 hjam 0xff ,0x90b 
+0x4981 010680 disable le 
+0x4982 010681 hjam 3 ,rfen_ulp 
+0x4983 010682 arg 0 ,stop_watch 
+0x4984 010683 rtn 
+:      010685 le_prep:
+0x4985 010686 disable enable_crc 
+0x4986 010687 disable enable_white 
+0x4987 010688 fetch 3 ,mem_le_crcinit 
+0x4988 010689 iforce crc24_init 
+0x4989 010690 fetch 1 ,mem_le_ch_mapped 
+0x498a 010691 reverse pdata ,temp 
+0x498b 010692 set1 1 ,temp 
+0x498c 010693 rshift temp ,white_init 
+0x498d 010694 rtn 
+:      010697 lerx_setfreq:
+0x498e 010698 call le_setfreq 
+0x498f 010699 call set_freq_rx 
+0x4990 010700 setarg param_pll_setup 
+0x4991 010701 call sleep 
+0x4992 010702 branch rf_rx_enable 
+:      010704 letx_setfreq:
+0x4993 010705 branch txon ,match 
+:      010706 letx_setfreq0:
+0x4994 010707 call le_setfreq 
+0x4995 010708 branch set_freq_tx 
+:      010709 le_setfreq:
+0x4996 010710 set1 mark_ext_patch ,mark 
+0x4997 010711 bpatch patch21_5 ,mem_patch21 
+0x4998 010712 call set_sync_on 
+0x4999 010713 fetch 1 ,mem_le_testtype 
+0x499a 010714 nbranch le_ctf_test ,blank 
+0x499b 010715 fetch 1 ,mem_le_ch_mapped 
+0x499c 010716 sub pdata ,36 ,null 
+0x499d 010717 branch le_ctf_normal ,positive 
+0x499e 010718 force 0 ,temp 
+0x499f 010719 rtneq 37 
+0x49a0 010720 force 24 ,temp 
+0x49a1 010721 rtneq 38 
+0x49a2 010722 force 78 ,temp 
+0x49a3 010723 rtn 
+:      010725 le_ctf_normal:
+0x49a4 010726 sub pdata ,10 ,null 
+0x49a5 010727 branch le_ctf_low ,positive 
+0x49a6 010728 increase 1 ,pdata 
+:      010730 le_ctf_low:
+0x49a7 010731 lshift pdata ,pdata 
+0x49a8 010732 add pdata ,2 ,temp 
+0x49a9 010733 rtn 
+:      010735 le_ctf_test:
+0x49aa 010736 fetch 1 ,mem_le_ch_mapped 
+0x49ab 010737 lshift pdata ,temp 
+0x49ac 010738 rtn 
+:      010740 le_sca_map:
+0x49ad 010741 arg 500 ,temp 
+0x49ae 010742 rtn blank 
+0x49af 010743 arg 250 ,temp 
+0x49b0 010744 rtneq 1 
+0x49b1 010745 arg 150 ,temp 
+0x49b2 010746 rtneq 2 
+0x49b3 010747 arg 100 ,temp 
+0x49b4 010748 rtneq 3 
+0x49b5 010749 arg 75 ,temp 
+0x49b6 010750 rtneq 4 
+0x49b7 010751 arg 50 ,temp 
+0x49b8 010752 rtneq 5 
+0x49b9 010753 arg 40 ,temp 
+0x49ba 010754 rtneq 6 
+0x49bb 010755 arg 20 ,temp 
+0x49bc 010756 rtn 
+:      010760 le_adv_access:
+0x49bd 010761 setarg 0x8e89be 
+0x49be 010762 lshift8 pdata ,pdata 
+0x49bf 010763 or_into 0xd6 ,pdata 
+0x49c0 010764 iforce access 
+0x49c1 010765 setarg 0x555555 
+0x49c2 010766 store 3 ,mem_le_crcinit 
+0x49c3 010767 rtn 
+:      010769 le_setup:
+0x49c4 010770 set1 mark_ext_patch ,mark 
+0x49c5 010771 bpatch patch21_6 ,mem_patch21 
+0x49c6 010772 enable swfine 
+0x49c7 010773 fetch 4 ,mem_le_access 
+0x49c8 010774 iforce access 
+0x49c9 010775 call le_map_channel 
+0x49ca 010776 setarg 0x200 
+0x49cb 010777 branch le_setup_master ,master 
+0x49cc 010778 fetch 2 ,mem_le_receive_window 
+0x49cd 010779 rshift pdata ,pdata 
+:      010780 le_setup_master:
+0x49ce 010781 arg param_pll_setup ,temp 
+0x49cf 010782 iadd temp ,pdata 
+0x49d0 010783 call ahead_window 
+0x49d1 010784 deposit clke 
+0x49d2 010785 store 6 ,mem_le_rxon_ts 
+0x49d3 010786 rtn 
+:      010788 le_next_adv_channel:
+0x49d4 010789 set1 mark_ext_patch ,mark 
+0x49d5 010790 bpatch patch21_7 ,mem_patch21 
+0x49d6 010791 fetch 1 ,mem_le_ch_mapped 
+0x49d7 010792 increase 1 ,pdata 
+0x49d8 010793 store 1 ,mem_le_ch_mapped 
+0x49d9 010794 rtnne 40 
+0x49da 010795 jam 37 ,mem_le_ch_mapped 
+0x49db 010796 rtn 
+:      010798 le_context_nexthop:
+0x49dc 010799 set1 mark_ext_patch ,mark 
+0x49dd 010800 bpatch patch22_0 ,mem_patch22 
+0x49de 010801 add rega ,coffset_mode ,contr 
+0x49df 010802 ifetch 1 ,contr 
+0x49e0 010803 rtnbit0 mode_le 
+0x49e1 010804 add rega ,coffset_le_event_cnt ,contw 
+0x49e2 010805 ifetch 2 ,contw 
+0x49e3 010806 increase 1 ,pdata 
+0x49e4 010807 istore 2 ,contw 
+0x49e5 010808 add rega ,coffset_le_hop ,contr 
+0x49e6 010809 ifetch 1 ,contr 
+0x49e7 010810 add rega ,coffset_le_ch ,contw 
+0x49e8 010811 ifetcht 1 ,contw 
+0x49e9 010812 iadd temp ,pdata 
+0x49ea 010813 sub pdata ,36 ,null 
+0x49eb 010814 branch le_nexthop_nowrap ,positive 
+0x49ec 010815 increase -37 ,pdata 
+:      010816 le_nexthop_nowrap:
+0x49ed 010817 istore 1 ,contw 
+0x49ee 010818 rtn 
+:      010821 le_calc_channel_map:
+0x49ef 010822 set1 mark_ext_patch ,mark 
+0x49f0 010823 bpatch patch22_1 ,mem_patch22 
+0x49f1 010824 fetch 5 ,mem_le_channel_map 
+0x49f2 010825 force 0 ,temp 
+0x49f3 010826 force 37 ,loopcnt 
+:      010827 le_count_channels_loop:
+0x49f4 010828 bbit0 0 ,le_count_channels_notused 
+0x49f5 010829 increase 1 ,temp 
+:      010830 le_count_channels_notused:
+0x49f6 010831 rshift pdata ,pdata 
+0x49f7 010832 loop le_count_channels_loop 
+0x49f8 010833 add temp ,-1 ,pdata 
+0x49f9 010834 store 1 ,mem_le_channels 
+0x49fa 010835 rtn 
+:      010837 le_map_channel:
+0x49fb 010838 set1 mark_ext_patch ,mark 
+0x49fc 010839 bpatch patch22_2 ,mem_patch22 
+0x49fd 010840 fetch 1 ,mem_le_ch 
+0x49fe 010841 iforce queue 
+0x49ff 010842 fetcht 5 ,mem_le_channel_map 
+0x4a00 010843 qisolate1 temp 
+0x4a01 010844 branch le_map_channel_end ,true 
+:      010845 le_map_channel_next:
+0x4a02 010846 set1 mark_ext_patch ,mark 
+0x4a03 010847 bpatch patch22_3 ,mem_patch22 
+0x4a04 010848 fetch 1 ,mem_le_channels 
+0x4a05 010849 isub queue ,pdata 
+0x4a06 010850 branch le_map_channel_cont ,positive 
+0x4a07 010851 sub pdata ,-1 ,queue 
+0x4a08 010852 branch le_map_channel_next 
+:      010853 le_map_channel_cont:
+0x4a09 010854 copy queue ,loopcnt 
+0x4a0a 010855 force 0 ,queue 
+:      010856 le_map_channel_loop:
+0x4a0b 010857 qisolate1 temp 
+0x4a0c 010858 branch le_map_channel_skip ,true 
+0x4a0d 010859 increase 1 ,loopcnt 
+:      010860 le_map_channel_skip:
+0x4a0e 010861 deposit loopcnt 
+0x4a0f 010862 branch le_map_channel_end ,blank 
+0x4a10 010863 increase 1 ,queue 
+0x4a11 010864 increase -1 ,loopcnt 
+0x4a12 010865 branch le_map_channel_loop 
+:      010866 le_map_channel_end:
+0x4a13 010867 deposit queue 
+0x4a14 010868 store 1 ,mem_le_ch_mapped 
+0x4a15 010869 rtn 
+:      010872 le_wait_tx:
+0x4a16 010873 branch le_wait_master ,master 
+0x4a17 010874 until null ,timeout 
+0x4a18 010875 rtn 
+:      010877 le_wait_master:
+0x4a19 010878 arg 0xea0 ,timeup 
+0x4a1a 010879 until clkn_rt ,meet 
+0x4a1b 010880 rtn 
+:      010882 le_receive_adv:
+0x4a1c 010883 disable swfine 
+0x4a1d 010884 fetch 2 ,mem_le_scan_window 
+0x4a1e 010885 copy pdata ,timeup 
+0x4a1f 010886 branch le_receive_packet 
+:      010889 le_receive_slave:
+0x4a20 010890 set1 mark_ext_patch ,mark 
+0x4a21 010891 bpatch patch22_4 ,mem_patch22 
+0x4a22 010892 enable swfine 
+0x4a23 010893 fetch 2 ,mem_le_receive_window 
+0x4a24 010894 fetcht 4 ,mem_le_transmit_window 
+0x4a25 010895 iadd temp ,timeup 
+:      010896 le_receive_packet:
+0x4a26 010897 call lerx_setfreq 
+:      010898 le_receive_rxon:
+0x4a27 010899 set1 mark_ext_patch ,mark 
+0x4a28 010900 bpatch patch22_5 ,mem_patch22 
+0x4a29 010901 call le_prep 
+0x4a2a 010902 disable match 
+0x4a2b 010903 enable decode_fec0 
+0x4a2c 010904 enable is_rx 
+0x4a2d 010905 disable is_tx 
+0x4a2e 010906 copy timeup ,stop_watch 
+0x4a2f 010907 correlate null ,timeout 
+0x4a30 010908 branch le_receive_on_attempt ,attempt 
+0x4a31 010909 copy clke ,temp 
+0x4a32 010910 storet 6 ,mem_sync_clke 
+:      010911 le_receive_on_attempt:
+0x4a33 010912 nbranch end_of_packet ,sync 
+0x4a34 010913 branch le_receive_skip ,attempt 
+0x4a35 010914 arg param_clke_cal_le ,clke_rt 
+0x4a36 010915 copy bt_clk ,clke_bt 
+0x4a37 010916 fetch 1 ,mem_le_state 
+0x4a38 010917 bbit0 lestate_got_first_packet ,le_receive_skip 
+0x4a39 010918 call lpm_adjust_clk ,wake 
+:      010919 le_receive_skip:
+0x4a3a 010920 set1 mark_ext_patch ,mark 
+0x4a3b 010921 bpatch patch22_6 ,mem_patch22 
+0x4a3c 010922 call save_rssi 
+0x4a3d 010923 enable enable_white 
+0x4a3e 010924 enable enable_crc 
+0x4a3f 010925 parse demod ,bucket ,8 
+0x4a40 010926 rshift3 pwindow ,pdata 
+0x4a41 010927 store 1 ,mem_le_rxbuf 
+0x4a42 010928 parse demod ,bucket ,8 
+0x4a43 010929 rshift3 pwindow ,pdata 
+0x4a44 010930 istore 1 ,contw 
+0x4a45 010931 and pdata ,0x3f ,loopcnt 
+0x4a46 010932 branch lerx_nopayload ,zero 
+:      010934 lerx_loop:
+0x4a47 010935 parse demod ,bucket ,8 
+0x4a48 010936 rshift3 pwindow ,pdata 
+0x4a49 010937 istore 1 ,contw 
+0x4a4a 010938 loop lerx_loop 
+:      010940 lerx_nopayload:
+0x4a4b 010941 set1 mark_ext_patch ,mark 
+0x4a4c 010942 bpatch patch22_7 ,mem_patch22 
+0x4a4d 010943 parse demod ,bucket ,24 
+0x4a4e 010944 enable swfine 
+0x4a4f 010945 arg param_sifs ,stop_watch 
+0x4a50 010946 rshift32 pdata ,pdata 
+0x4a51 010947 rshift16 pdata ,pdata 
+0x4a52 010948 istore 3 ,contw 
+0x4a53 010949 branch end_of_packet ,crc_failed 
+0x4a54 010950 enable match 
+0x4a55 010951 fetch 1 ,mem_last_freq 
+0x4a56 010952 add pdata ,0 ,rega 
+0x4a57 010953 call rf_write_freq 
+0x4a58 010954 disable decode_fec0 
+0x4a59 010955 branch set_sync_on 
+:      010957 le_transmit_receive_sifs:
+0x4a5a 010958 set1 mark_ext_patch ,mark 
+0x4a5b 010959 bpatch patch23_0 ,mem_patch23 
+0x4a5c 010960 call le_transmit 
+0x4a5d 010961 fetcht 1 ,mem_last_freq 
+0x4a5e 010962 call set_freq_rx 
+0x4a5f 010963 call rf_rx_enable 
+0x4a60 010964 enable swfine 
+0x4a61 010965 arg 5500 ,timeup 
+0x4a62 010966 branch le_receive_rxon 
+:      010968 le_transmit_norx:
+0x4a63 010969 call le_transmit 
+0x4a64 010970 branch end_of_packet 
+:      010972 le_transmit:
+0x4a65 010973 set1 mark_ext_patch ,mark 
+0x4a66 010974 bpatch patch23_1 ,mem_patch23 
+0x4a67 010975 call le_prep 
+0x4a68 010976 call letx_setfreq 
+0x4a69 010977 call le_transmit0 
+0x4a6a 010978 fetch 1 ,mem_device_option 
+0x4a6b 010979 beq dvc_op_module ,module_le_transmit 
+0x4a6c 010980 rtn 
+:      010981 le_transmit0:
+0x4a6d 010982 set1 txgfsk ,radio_ctrl 
+0x4a6e 010983 enable encode_fec0 
+0x4a6f 010984 enable is_tx 
+0x4a70 010985 disable is_rx 
+0x4a71 010986 call le_wait_tx 
+0x4a72 010987 rshift16 access ,pdata 
+0x4a73 010988 rshift8 pdata ,pdata 
+0x4a74 010989 rshift4 pdata ,pdata 
+0x4a75 010990 inject mod ,40 
+0x4a76 010991 enable enable_white 
+0x4a77 010992 enable enable_crc 
+0x4a78 010993 set1 mark_ext_patch ,mark 
+0x4a79 010994 bpatch patch23_2 ,mem_patch23 
+0x4a7a 010995 fetch 1 ,mem_le_txheader 
+0x4a7b 010996 inject mod ,8 
+0x4a7c 010997 ifetch 1 ,contr 
+0x4a7d 010998 and pdata ,0x3f ,loopcnt 
+0x4a7e 010999 inject mod ,8 
+0x4a7f 011000 branch letr_nopayload ,zero 
+:      011001 letr_loop:
+0x4a80 011002 ifetch 1 ,contr 
+0x4a81 011003 inject mod ,8 
+0x4a82 011004 loop letr_loop 
+:      011006 letr_nopayload:
+0x4a83 011007 enable enable_parity 
+0x4a84 011008 inject mod ,24 
+0x4a85 011009 disable enable_parity 
+0x4a86 011010 until null ,tx_clear 
+0x4a87 011011 nop 100 
+0x4a88 011012 disable encode_fec0 
+0x4a89 011013 rtn 
+:      011015 le_send_adv_ind:
+0x4a8a 011016 set1 mark_ext_patch ,mark 
+0x4a8b 011017 bpatch patch23_3 ,mem_patch23 
+0x4a8c 011018 fetch 1 ,mem_le_adv_type 
+0x4a8d 011019 beq adv_direct_ind ,le_send_adv_direct_ind 
+0x4a8e 011020 fetch 1 ,mem_le_adv_own_addr_type 
+0x4a8f 011021 lshift4 pdata ,pdata 
+0x4a90 011022 lshift2 pdata ,pdata 
+0x4a91 011023 store 1 ,mem_le_txheader 
+0x4a92 011024 fetcht 1 ,mem_le_adv_data_len 
+0x4a93 011025 add temp ,6 ,pdata 
+0x4a94 011026 store 1 ,mem_le_txlen 
+0x4a95 011027 fetch 6 ,mem_le_lap 
+0x4a96 011028 store 6 ,mem_le_txpayload 
+0x4a97 011029 copy temp ,loopcnt 
+0x4a98 011030 arg mem_le_adv_data ,contr 
+0x4a99 011031 call memcpy_fast 
+0x4a9a 011032 branch le_send_adv_transmit 
+:      011033 le_send_adv_direct_ind:
+0x4a9b 011034 fetcht 2 ,mem_le_notify_handle 
+0x4a9c 011035 call le_att_check_notification_enable 
+0x4a9d 011036 copy rega ,contw 
+0x4a9e 011037 setarg 1 
+0x4a9f 011038 istore 1 ,contw 
+0x4aa0 011039 fetch 1 ,mem_le_adv_direct_addr_type 
+0x4aa1 011040 lshift4 pdata ,pdata 
+0x4aa2 011041 lshift2 pdata ,pdata 
+0x4aa3 011042 increase 1 ,pdata 
+0x4aa4 011043 store 1 ,mem_le_txheader 
+0x4aa5 011044 setarg 12 
+0x4aa6 011045 store 1 ,mem_le_txlen 
+0x4aa7 011046 fetch 6 ,mem_le_lap 
+0x4aa8 011047 store 6 ,mem_le_txpayload 
+0x4aa9 011048 fetch 6 ,mem_hci_plap 
+0x4aaa 011049 istore 6 ,contw 
+:      011050 le_send_adv_transmit:
+0x4aab 011051 set1 mark_ext_patch ,mark 
+0x4aac 011052 bpatch patch23_4 ,mem_patch23 
+0x4aad 011053 fetch 1 ,mem_le_adv_transmit 
+0x4aae 011054 increase 1 ,pdata 
+0x4aaf 011055 store 1 ,mem_le_adv_transmit 
+0x4ab0 011056 arg 1800 ,stop_watch 
+0x4ab1 011057 disable match 
+0x4ab2 011058 branch le_transmit_receive_sifs 
+:      011060 le_send_scan_request:
+0x4ab3 011061 set1 mark_ext_patch ,mark 
+0x4ab4 011062 bpatch patch23_5 ,mem_patch23 
+0x4ab5 011063 fetch 1 ,mem_le_scan_type 
+0x4ab6 011064 rtnne le_scan_type_active ,pdata 
+0x4ab7 011065 fetch 1 ,mem_le_adv_transmit 
+0x4ab8 011066 increase 1 ,pdata 
+0x4ab9 011067 store 1 ,mem_le_adv_transmit 
+0x4aba 011068 arg 0x0c03 ,temp 
+0x4abb 011069 fetch 1 ,mem_le_scan_own_addr_type 
+0x4abc 011070 nsetflag blank ,le_sender_addr_bit ,temp 
+0x4abd 011071 copy rega ,pdata 
+0x4abe 011072 nsetflag blank ,le_receiver_addr_bit ,temp 
+0x4abf 011073 storet 2 ,mem_le_txheader 
+0x4ac0 011074 fetch 6 ,mem_le_lap 
+0x4ac1 011075 istore 6 ,contw 
+0x4ac2 011076 fetch 6 ,mem_le_plap 
+0x4ac3 011077 istore 6 ,contw 
+0x4ac4 011078 branch le_transmit_receive_sifs 
+:      011081 le_send_scan_response:
+0x4ac5 011082 set1 mark_ext_patch ,mark 
+0x4ac6 011083 bpatch patch23_6 ,mem_patch23 
+0x4ac7 011084 arg scan_rsp ,temp 
+0x4ac8 011085 fetch 1 ,mem_le_adv_own_addr_type 
+0x4ac9 011086 nsetflag blank ,le_sender_addr_bit ,temp 
+0x4aca 011087 storet 1 ,mem_le_txheader 
+0x4acb 011088 fetcht 1 ,mem_le_scan_data_len 
+0x4acc 011089 add temp ,6 ,pdata 
+0x4acd 011090 store 1 ,mem_le_txlen 
+0x4ace 011091 fetch 6 ,mem_le_lap 
+0x4acf 011092 store 6 ,mem_le_txpayload 
+0x4ad0 011093 arg mem_le_scan_data ,contr 
+0x4ad1 011094 copy temp ,loopcnt 
+0x4ad2 011095 call memcpy_fast 
+0x4ad3 011096 branch le_transmit_norx 
+:      011099 le_connect_request:
+0x4ad4 011100 set1 mark_ext_patch ,mark 
+0x4ad5 011101 bpatch patch23_7 ,mem_patch23 
+0x4ad6 011102 force -1 ,pdata 
+0x4ad7 011103 setsect 2 ,1 
+0x4ad8 011104 store 5 ,mem_le_channel_map 
+0x4ad9 011105 call le_calc_channel_map 
+0x4ada 011106 force 4 ,loopcnt 
+0x4adb 011107 arg mem_le_access ,contw 
+0x4adc 011108 call generate_random_loop 
+0x4add 011109 fetch 2 ,mem_le_conn_superto 
+0x4ade 011110 store 2 ,mem_le_superto 
+:      011111 le_con_req_hop_retry:
+0x4adf 011112 random pdata 
+0x4ae0 011113 and_into 0xf ,pdata 
+0x4ae1 011114 sub pdata ,4 ,null 
+0x4ae2 011115 branch le_con_req_hop_retry ,positive 
+0x4ae3 011116 store 1 ,mem_le_hop 
+0x4ae4 011117 store 1 ,mem_tmp1 
+0x4ae5 011118 set1 mark_ext_patch ,mark 
+0x4ae6 011119 bpatch patch24_0 ,mem_patch24 
+0x4ae7 011120 fetcht 2 ,mem_le_conn_interval 
+0x4ae8 011121 storet 2 ,mem_le_tsniff 
+0x4ae9 011122 copy temp ,regc 
+0x4aea 011123 add clkn_bt ,7 ,pdata 
+0x4aeb 011124 idiv regc 
+0x4aec 011125 call wait_div_end 
+0x4aed 011126 remainder rega 
+0x4aee 011127 isub rega ,pdata 
+0x4aef 011128 iadd regc ,pdata 
+0x4af0 011129 fetcht 2 ,mem_le_dsniff 
+0x4af1 011130 iadd temp ,pdata 
+0x4af2 011131 store 4 ,mem_le_anchor 
+0x4af3 011132 isub clkn_bt ,rega 
+0x4af4 011133 increase -6 ,rega 
+0x4af5 011134 arg 0x2205 ,regb 
+0x4af6 011135 fetch 1 ,mem_le_conn_own_addr_type 
+0x4af7 011136 nsetflag blank ,le_sender_addr_bit ,regb 
+0x4af8 011137 fetch 1 ,mem_le_conn_peer_addr_type 
+0x4af9 011138 nsetflag blank ,le_receiver_addr_bit ,regb 
+0x4afa 011139 copy regb ,pdata 
+0x4afb 011140 store 2 ,mem_le_txheader 
+0x4afc 011141 fetch 6 ,mem_le_lap 
+0x4afd 011142 istore 6 ,contw 
+0x4afe 011143 fetch 6 ,mem_le_plap 
+0x4aff 011144 istore 6 ,contw 
+0x4b00 011145 fetch 4 ,mem_le_access 
+0x4b01 011146 istore 4 ,contw 
+0x4b02 011147 random pdata 
+0x4b03 011148 istore 2 ,contw 
+0x4b04 011149 random pdata 
+0x4b05 011150 istore 1 ,contw 
+0x4b06 011151 force 2 ,pdata 
+0x4b07 011152 istore 1 ,contw 
+0x4b08 011153 rshift2 rega ,pdata 
+0x4b09 011154 istore 2 ,contw 
+0x4b0a 011155 rshift2 regc ,pdata 
+0x4b0b 011156 istore 2 ,contw 
+0x4b0c 011157 set1 mark_ext_patch ,mark 
+0x4b0d 011158 bpatch patch24_1 ,mem_patch24 
+0x4b0e 011159 fetch 2 ,mem_le_conn_latency 
+0x4b0f 011160 istore 2 ,contw 
+0x4b10 011161 fetch 2 ,mem_le_conn_superto 
+0x4b11 011162 istore 2 ,contw 
+0x4b12 011163 fetch 5 ,mem_le_channel_map 
+0x4b13 011164 istore 5 ,contw 
+0x4b14 011165 fetch 1 ,mem_le_hop 
+0x4b15 011166 arg param_le_sca ,temp 
+0x4b16 011167 ior temp ,pdata 
+0x4b17 011168 istore 1 ,contw 
+0x4b18 011169 call le_transmit_norx 
+0x4b19 011170 setarg mem_le_txheader 
+0x4b1a 011171 add pdata ,18 ,contr 
+0x4b1b 011172 ifetch 3 ,contr 
+0x4b1c 011173 store 3 ,mem_le_crcinit 
+0x4b1d 011174 rtn 
+:      011176 le_init_adv:
+0x4b1e 011177 set1 mark_ext_patch ,mark 
+0x4b1f 011178 bpatch patch24_2 ,mem_patch24 
+0x4b20 011179 disable master 
+0x4b21 011180 branch le_adv_access 
+:      011184 le_update_param:
+0x4b22 011185 fetch 1 ,mem_le_state 
+0x4b23 011186 rtnbit0 lestate_update_param 
+0x4b24 011187 fetch 2 ,mem_le_event_count 
+0x4b25 011188 fetcht 2 ,mem_le_instant 
+0x4b26 011189 isub temp ,pdata 
+0x4b27 011190 nrtn positive 
+0x4b28 011191 set1 mark_ext_patch ,mark 
+0x4b29 011192 bpatch patch24_3 ,mem_patch24 
+0x4b2a 011193 fetch 1 ,mem_device_option 
+0x4b2b 011194 bne dvc_op_shutter ,le_update_param_common 
+0x4b2c 011195 jam 1 ,mem_lpm_mode 
+:      011196 le_update_param_common:
+0x4b2d 011197 fetch 1 ,mem_le_state 
+0x4b2e 011198 set0 lestate_update_param ,pdata 
+0x4b2f 011199 set0 lestate_got_first_packet ,pdata 
+0x4b30 011200 store 1 ,mem_le_state 
+0x4b31 011201 fetch 4 ,mem_le_anchor 
+0x4b32 011202 fetcht 2 ,mem_le_tsniff 
+0x4b33 011203 isub temp ,rega 
+0x4b34 011204 set1 mark_ext_patch ,mark 
+0x4b35 011205 bpatch patch24_4 ,mem_patch24 
+0x4b36 011206 fetch 1 ,mem_le_new_param 
+0x4b37 011207 store 1 ,mem_le_window_size 
+0x4b38 011208 ifetcht 2 ,contr 
+0x4b39 011209 ifetch 2 ,contr 
+0x4b3a 011210 lshift2 pdata ,pdata 
+0x4b3b 011211 store 2 ,mem_le_tsniff 
+0x4b3c 011212 lshift2 temp ,temp 
+0x4b3d 011213 iadd temp ,pdata 
+0x4b3e 011214 ifetcht 4 ,contr 
+0x4b3f 011215 storet 4 ,mem_le_slave_latency 
+0x4b40 011216 iadd rega ,pdata 
+0x4b41 011217 store 4 ,mem_le_anchor 
+0x4b42 011218 branch le_receive_window_size 
+:      011220 le_update_channel_map:
+0x4b43 011221 set1 mark_ext_patch ,mark 
+0x4b44 011222 bpatch patch24_5 ,mem_patch24 
+0x4b45 011223 fetch 1 ,mem_le_state 
+0x4b46 011224 rtnbit0 lestate_update_map 
+0x4b47 011225 fetch 2 ,mem_le_event_count 
+0x4b48 011226 fetcht 2 ,mem_le_instant 
+0x4b49 011227 isub temp ,pdata 
+0x4b4a 011228 nrtn positive 
+0x4b4b 011229 fetch 1 ,mem_le_state 
+0x4b4c 011230 set0 lestate_update_map ,pdata 
+0x4b4d 011231 store 1 ,mem_le_state 
+0x4b4e 011232 fetch 5 ,mem_le_new_map 
+0x4b4f 011233 store 5 ,mem_le_channel_map 
+0x4b50 011234 branch le_calc_channel_map 
+:      011237 le_acknowledge:
+0x4b51 011238 set1 mark_ext_patch ,mark 
+0x4b52 011239 bpatch patch24_6 ,mem_patch24 
+0x4b53 011240 call le_supervision_flush 
+0x4b54 011241 call le_check_wak 
+0x4b55 011242 fetch 1 ,mem_le_rxbuf 
+0x4b56 011243 rshift pdata ,pdata 
+0x4b57 011244 ixor temp ,pdata 
+0x4b58 011245 isolate1 nesn ,pdata 
+0x4b59 011246 setflag true ,mark_old_packet ,mark 
+0x4b5a 011247 fetch 1 ,mem_le_rxbuf + 1 
+0x4b5b 011248 branch le_ack_unenc ,blank 
+0x4b5c 011249 fetch 1 ,mem_le_state 
+0x4b5d 011250 bbit0 lestate_encryption ,le_ack_unenc 
+0x4b5e 011251 call load_sk 
+0x4b5f 011252 call le_decrypt 
+0x4b60 011253 nrtn blank 
+:      011254 le_ack_unenc:
+0x4b61 011255 rtnmark1 mark_old_packet 
+0x4b62 011256 fetcht 1 ,mem_le_arq 
+0x4b63 011257 setflip nesn ,temp 
+0x4b64 011258 storet 1 ,mem_le_arq 
+0x4b65 011259 branch le_parse 
+:      011261 le_check_wak:
+0x4b66 011262 set1 mark_ext_patch ,mark 
+0x4b67 011263 bpatch patch24_7 ,mem_patch24 
+0x4b68 011264 fetcht 1 ,mem_le_arq 
+0x4b69 011265 isolate0 wak ,temp 
+0x4b6a 011266 rtn true 
+0x4b6b 011267 fetch 1 ,mem_le_rxbuf 
+0x4b6c 011268 lshift pdata ,pdata 
+0x4b6d 011269 ixor temp ,pdata 
+0x4b6e 011270 rtnbit0 sn 
+0x4b6f 011271 set0 wak ,temp 
+0x4b70 011272 setflip sn ,temp 
+0x4b71 011273 storet 1 ,mem_le_arq 
+0x4b72 011274 compare 3 ,temp ,3 
+0x4b73 011275 nrtn true 
+0x4b74 011276 fetch 1 ,mem_le_txpayload 
+0x4b75 011277 beq ll_start_enc_req ,le_set_enc 
+0x4b76 011278 fetch 1 ,mem_le_enc_state 
+0x4b77 011279 beq flag_le_enc_pause ,le_clear_enc 
+0x4b78 011280 rtn 
+:      011283 le_set_enc:
+0x4b79 011284 fetch 1 ,mem_le_state 
+0x4b7a 011285 set1 lestate_encryption ,pdata 
+0x4b7b 011286 store 1 ,mem_le_state 
+0x4b7c 011287 rtn 
+:      011289 le_clear_enc:
+0x4b7d 011290 set1 mark_ext_patch ,mark 
+0x4b7e 011291 bpatch patch25_0 ,mem_patch25 
+0x4b7f 011292 jam flag_le_enc_null ,mem_le_enc_state 
+0x4b80 011293 arg 0 ,pdata 
+0x4b81 011294 store 4 ,mem_le_last_mic 
+0x4b82 011295 store 5 ,mem_le_pcnt_tx 
+0x4b83 011296 set1 39 ,pdata 
+0x4b84 011297 store 5 ,mem_le_pcnt_rx 
+0x4b85 011298 fetch 1 ,mem_le_state 
+0x4b86 011299 set0 lestate_encryption ,pdata 
+0x4b87 011300 store 1 ,mem_le_state 
+0x4b88 011301 rtn 
+:      011305 le_wait_adv:
+0x4b89 011306 set1 mark_ext_patch ,mark 
+0x4b8a 011307 bpatch patch25_1 ,mem_patch25 
+0x4b8b 011308 call le_next_adv_channel 
+0x4b8c 011309 call le_receive_adv 
+0x4b8d 011310 fetch 1 ,mem_le_adv_waitcnt 
+0x4b8e 011311 increase 1 ,pdata 
+0x4b8f 011312 store 1 ,mem_le_adv_waitcnt 
+0x4b90 011313 rtn 
+:      011315 le_scan:
+0x4b91 011316 set1 mark_ext_patch ,mark 
+0x4b92 011317 bpatch patch25_2 ,mem_patch25 
+0x4b93 011318 fetch 1 ,mem_le_scan_enable 
+0x4b94 011319 rtnne le_scan_enable 
+0x4b95 011320 arg le_scan_interval_timer ,queue 
+0x4b96 011321 call timer_check 
+0x4b97 011322 nrtn blank 
+0x4b98 011323 fetch 2 ,mem_le_scan_interval 
+0x4b99 011324 fetcht 2 ,mem_le_scan_window 
+0x4b9a 011325 isub temp ,pdata 
+0x4b9b 011326 arg le_scan_interval_timer ,queue 
+0x4b9c 011327 call timer_init 
+0x4b9d 011328 disable master 
+0x4b9e 011329 call le_init_adv 
+0x4b9f 011330 call le_wait_adv 
+0x4ba0 011331 nrtn match 
+0x4ba1 011332 set1 mark_ext_patch ,mark 
+0x4ba2 011333 bpatch patch25_3 ,mem_patch25 
+0x4ba3 011334 fetch 6 ,mem_le_rxbuf + 2 
+0x4ba4 011335 store 6 ,mem_le_plap 
+0x4ba5 011338 fetch 1 ,mem_le_adv_rcv 
+0x4ba6 011339 increase 1 ,pdata 
+0x4ba7 011340 store 1 ,mem_le_adv_rcv 
+0x4ba8 011341 call le_create_conn 
+0x4ba9 011342 rtn master 
+0x4baa 011343 call le_send_scan_request 
+0x4bab 011344 nrtn match 
+0x4bac 011345 set1 mark_ext_patch ,mark 
+0x4bad 011346 bpatch patch25_4 ,mem_patch25 
+0x4bae 011347 fetch 1 ,mem_le_scanrsp_rcv 
+0x4baf 011348 increase 1 ,pdata 
+0x4bb0 011349 store 1 ,mem_le_scanrsp_rcv 
+0x4bb1 011350 fetch 9 ,mem_le_rxbuf + 8 
+0x4bb2 011351 store 9 ,mem_tmp_buffer 
+0x4bb3 011352 rtn 
+:      011354 le_create_conn:
+0x4bb4 011355 set1 mark_ext_patch ,mark 
+0x4bb5 011356 bpatch patch25_5 ,mem_patch25 
+0x4bb6 011357 fetch 1 ,mem_cmd_le_create_conn 
+0x4bb7 011358 rtnne hci_cmd_le_create_conn ,pdata 
+0x4bb8 011359 fetch 6 ,mem_le_plap 
+0x4bb9 011360 fetcht 6 ,mem_le_conn_peer_addr 
+0x4bba 011361 isub temp ,null 
+0x4bbb 011362 nrtn zero 
+0x4bbc 011363 call context_new 
+0x4bbd 011364 nrtn zero 
+0x4bbe 011365 call le_connect_request 
+0x4bbf 011366 call le_init_master 
+0x4bc0 011367 set1 mark_ext_patch ,mark 
+0x4bc1 011368 bpatch patch25_6 ,mem_patch25 
+0x4bc2 011369 jam 0 ,mem_hci_cmd 
+0x4bc3 011370 jam 0 ,mem_le_peer_sca 
+0x4bc4 011371 jam 0 ,mem_le_scan_enable 
+0x4bc5 011372 jam 0 ,mem_cmd_le_create_conn 
+0x4bc6 011373 jam xt_ll_version_ind ,mem_fifo_temp 
+0x4bc7 011374 call le_xtype_fifo_in 
+0x4bc8 011375 branch context_save 
+:      011377 le_scan_check_sender_addr_type:
+0x4bc9 011378 arg 1 ,rega 
+0x4bca 011379 fetch 1 ,mem_le_rxbuf 
+0x4bcb 011380 rtnbit1 le_sender_addr_bit 
+0x4bcc 011381 arg 0 ,rega 
+0x4bcd 011382 rtn 
+:      011384 le_xtype_fifo_count:
+0x4bce 011385 arg mem_le_xtype_fifo ,contr 
+0x4bcf 011386 branch fifo_content_count 
+:      011388 le_xtype_fifo_is_empty:
+0x4bd0 011389 arg mem_le_xtype_fifo ,rega 
+0x4bd1 011390 branch fifo_is_empty 
+:      011392 le_xtype_fifo_is_full:
+0x4bd2 011393 arg mem_le_xtype_fifo ,rega 
+0x4bd3 011394 branch fifo_is_full 
+:      011396 le_xtype_fifo_is_near_full:
+0x4bd4 011397 arg mem_le_xtype_fifo ,rega 
+0x4bd5 011398 branch fifo_is_near_full 
+:      011400 le_xtype_fifo_in:
+0x4bd6 011401 arg mem_le_xtype_fifo ,rega 
+0x4bd7 011402 branch fifo_in 
+:      011404 le_prepare_tx:
+0x4bd8 011405 set1 mark_ext_patch ,mark 
+0x4bd9 011406 bpatch patch25_7 ,mem_patch25 
+0x4bda 011407 fetch 1 ,mem_le_arq 
+0x4bdb 011408 rtnbit1 wak 
+0x4bdc 011409 fetch 1 ,mem_device_option 
+0x4bdd 011410 beq dvc_op_shutter ,le_prepare_tx_shutter 
+:      011411 le_prepare_tx_1:
+0x4bde 011412 arg mem_le_xtype_fifo ,rega 
+0x4bdf 011413 call fifo_out 
+0x4be0 011414 nbranch le_prepare_tx_cmd ,blank 
+0x4be1 011415 branch le_send_empty 
+:      011417 le_prepare_tx_shutter:
+0x4be2 011418 fetch 1 ,mem_empty_count 
+0x4be3 011419 nbranch le_send_empty_shutter ,blank 
+0x4be4 011420 fetch 1 ,mem_le_state 
+0x4be5 011421 bbit0 lestate_encryption ,le_tx_4 
+0x4be6 011422 fetch 1 ,mem_le_rxbuf + 1 
+0x4be7 011423 branch le_tx_4 ,blank 
+0x4be8 011424 branch le_send_empty 
+:      011425 le_send_empty_shutter:
+0x4be9 011426 fetch 1 ,mem_empty_count 
+0x4bea 011427 increase -1 ,pdata 
+0x4beb 011428 store 1 ,mem_empty_count 
+0x4bec 011429 branch le_send_empty 
+:      011430 le_tx_4:
+0x4bed 011431 fetch 1 ,mem_le_pairing_state 
+0x4bee 011432 bne flag_le_pairing_after_auth ,in_le_tx_4 
+0x4bef 011433 jam 3 ,mem_empty_count 
+:      011434 in_le_tx_4:
+0x4bf0 011435 branch le_prepare_tx_1 
+:      011437 le_prepare_tx_cmd:
+0x4bf1 011438 copy pdata ,temp 
+0x4bf2 011439 set1 mark_ext_patch ,mark 
+0x4bf3 011440 bpatch patch26_0 ,mem_patch26 
+0x4bf4 011441 copy temp ,pdata 
+0x4bf5 011442 bbit0 5 ,le_prepare_l2cap 
+0x4bf6 011443 force 3 ,type 
+0x4bf7 011444 set0 5 ,pdata 
+0x4bf8 011445 store 1 ,mem_le_txpayload 
+0x4bf9 011446 set1 mark_ext_patch ,mark 
+0x4bfa 011447 bpatch patch26_1 ,mem_patch26 
+:      011448 le_prepare_tx_ll:
+0x4bfb 011449 fetch 1 ,mem_le_txpayload 
+0x4bfc 011450 beq ll_connection_update_req ,le_send_connection_update_req 
+0x4bfd 011451 beq ll_channel_map_req ,le_send_channel_map_req 
+0x4bfe 011452 beq ll_terminate_ind ,le_send_terminate_ind 
+0x4bff 011453 beq ll_enc_req ,le_send_enc_req 
+0x4c00 011454 beq ll_enc_rsp ,le_send_enc_rsp 
+0x4c01 011455 beq ll_start_enc_req ,le_send_start_enc_req 
+0x4c02 011456 beq ll_start_enc_rsp ,le_send_start_enc_rsp 
+0x4c03 011457 beq ll_unknown_rsp ,le_send_unknown_rsp 
+0x4c04 011458 beq ll_feature_req ,le_send_feature 
+0x4c05 011459 beq ll_feature_rsp ,le_send_feature 
+0x4c06 011460 beq ll_pause_enc_req ,le_send_pause_enc_req 
+0x4c07 011461 beq ll_pause_enc_rsp ,le_send_pause_enc_rsp 
+0x4c08 011462 beq ll_version_ind ,le_send_version_ind 
+0x4c09 011463 beq ll_reject_ind ,le_send_reject_ind 
+0x4c0a 011464 beq ll_connection_param_req ,le_send_conn_param_req 
+0x4c0b 011465 beq ll_ping_rsp ,le_send_ping_response 
+0x4c0c 011466 branch assert 
+:      011468 le_prepare_l2cap:
+0x4c0d 011469 jam 0 ,mem_le_txcid + 1 
+0x4c0e 011470 force 2 ,type 
+0x4c0f 011471 bbit0 6 ,le_prepare_att 
+0x4c10 011472 beq attop_write_command ,le_prepare_att 
+0x4c11 011473 beq attop_signed_write_command ,le_prepare_att 
+0x4c12 011474 jam le_l2cap_cid_smp ,mem_le_txcid 
+0x4c13 011475 set0 6 ,pdata 
+0x4c14 011476 store 1 ,mem_le_l2cap 
+0x4c15 011477 set1 mark_ext_patch ,mark 
+0x4c16 011478 bpatch patch26_2 ,mem_patch26 
+0x4c17 011479 fetch 1 ,mem_le_l2cap 
+:      011480 le_prepare_smp0:
+0x4c18 011481 beq smp_pairing_request ,le_send_smp_pairing_request 
+0x4c19 011482 beq smp_pairing_response ,le_send_smp_pairing_response 
+0x4c1a 011483 beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
+0x4c1b 011484 beq smp_pairing_random ,le_send_smp_pairing_random 
+0x4c1c 011485 beq smp_pairing_failed ,le_send_smp_pairing_failed 
+0x4c1d 011486 beq smp_encryption_information ,le_send_smp_encryption_information 
+0x4c1e 011487 beq smp_master_identification ,le_send_smp_master_identification 
+0x4c1f 011488 beq smp_identity_information ,le_send_smp_identity_information 
+0x4c20 011489 beq smp_identity_address_information ,le_send_smp_identity_address_information 
+0x4c21 011490 beq smp_signing_information ,le_send_smp_signing_information 
+0x4c22 011491 beq smp_security_request ,le_send_smp_security_request 
+0x4c23 011492 beq smp_pairing_public_key ,le_send_smp_pairing_public_key 
+0x4c24 011493 beq smp_pairing_dhkey_check ,le_send_smp_pairing_dhkey_check 
+0x4c25 011494 branch assert 
+:      011496 le_prepare_att:
+0x4c26 011497 jam le_l2cap_cid_att ,mem_le_txcid 
+0x4c27 011498 store 1 ,mem_le_l2cap 
+0x4c28 011499 set1 mark_ext_patch ,mark 
+0x4c29 011500 bpatch patch26_3 ,mem_patch26 
+0x4c2a 011501 fetch 1 ,mem_le_l2cap 
+0x4c2b 011502 beq attop_error_response ,le_send_att_error_response 
+0x4c2c 011503 beq attop_exchange_mtu_request ,le_send_att_exchange_mtu_req 
+0x4c2d 011504 beq attop_exchange_mtu_response ,le_send_att_exchange_mtu_rsp 
+0x4c2e 011505 beq attop_find_information_request ,le_send_att_find_information_request 
+0x4c2f 011506 beq attop_find_information_response ,le_send_att_find_information_response 
+0x4c30 011507 beq attop_find_by_type_value_request ,le_send_att_find_by_type_value_request 
+0x4c31 011508 beq attop_find_by_type_value_response ,le_send_att_find_by_type_value_response 
+0x4c32 011509 beq attop_read_by_type_request ,le_send_att_read_by_type_request 
+0x4c33 011510 beq attop_read_by_type_response ,le_send_att_read_by_type_response 
+0x4c34 011511 beq attop_read_request ,le_send_att_read_request 
+0x4c35 011512 beq attop_read_response ,le_send_att_read_response 
+0x4c36 011513 beq attop_read_blob_request ,le_send_att_read_blob_request 
+0x4c37 011514 beq attop_read_blob_response ,le_send_att_read_blob_response 
+0x4c38 011515 beq attop_read_multiple_request ,le_send_att_read_multiple_request 
+0x4c39 011516 beq attop_read_multiple_response ,le_send_att_read_multiple_response 
+0x4c3a 011517 beq attop_read_by_group_type_request ,le_send_att_read_by_group_type_request 
+0x4c3b 011518 beq attop_read_by_group_type_response ,le_send_att_read_by_group_type_response 
+0x4c3c 011519 beq attop_write_request ,le_send_att_write_request 
+0x4c3d 011520 beq attop_write_response ,le_send_att_write_response 
+0x4c3e 011521 beq attop_prepare_write_request ,le_send_att_prepare_write_request 
+0x4c3f 011522 beq attop_prepare_write_response ,le_send_att_prepare_write_response 
+0x4c40 011523 beq attop_execute_write_request ,le_send_att_execute_write_request 
+0x4c41 011524 beq attop_execute_write_response ,le_send_att_execute_write_response 
+0x4c42 011525 beq attop_handle_value_notification ,le_send_att_handle_value_notification 
+0x4c43 011526 beq attop_handle_value_indication ,le_send_att_handle_value_indication 
+0x4c44 011527 beq attop_handle_value_confirmation ,le_send_att_handle_value_confirmation 
+0x4c45 011528 beq attop_write_command ,le_send_att_write_command 
+0x4c46 011529 beq attop_signed_write_command ,le_send_att_signed_write_command 
+0x4c47 011530 beq empty_le_data_pre ,le_send_empty_le_data_pre 
+0x4c48 011531 beq empty_le_data ,le_send_empty_le_data 
+0x4c49 011532 beq attop_continue ,le_send_att_continue 
+0x4c4a 011533 branch assert 
+:      011535 le_send_empty_le_data_pre:
+0x4c4b 011536 jam attop_read_by_group_type_request ,mem_fifo_temp 
+0x4c4c 011537 call le_xtype_fifo_in 
+:      011539 le_send_empty_le_data:
+0x4c4d 011540 setarg 0x0011 
+0x4c4e 011541 store 2 ,mem_le_txheader 
+0x4c4f 011542 fetch 1 ,mem_le_arq 
+0x4c50 011543 set1 wak ,pdata 
+0x4c51 011544 store 1 ,mem_le_arq 
+0x4c52 011545 jam attop_write_request ,mem_fifo_temp 
+0x4c53 011546 branch le_xtype_fifo_in 
+:      011548 le_send_connection_update_req:
+0x4c54 011549 force 12 ,temp 
+0x4c55 011550 branch le_send_packet 
+:      011552 le_send_channel_map_req:
+0x4c56 011553 force 8 ,temp 
+0x4c57 011554 branch le_send_packet 
+:      011556 le_send_terminate_ind:
+0x4c58 011557 force 2 ,temp 
+0x4c59 011558 branch le_send_packet 
+:      011560 le_send_enc_req:
+0x4c5a 011561 force 0 ,pdata 
+0x4c5b 011562 istore 8 ,contw 
+0x4c5c 011563 istore 2 ,contw 
+0x4c5d 011564 copy contw ,temp 
+0x4c5e 011565 arg mem_le_skdm ,contw 
+0x4c5f 011566 force 8 ,loopcnt 
+0x4c60 011567 call generate_random_loop 
+0x4c61 011568 fetch 8 ,mem_le_skdm 
+0x4c62 011569 istore 8 ,temp 
+0x4c63 011570 copy contw ,temp 
+0x4c64 011571 arg mem_le_ivm ,contw 
+0x4c65 011572 force 4 ,loopcnt 
+0x4c66 011573 call generate_random_loop 
+0x4c67 011574 fetch 4 ,mem_le_ivm 
+0x4c68 011575 istore 4 ,temp 
+0x4c69 011576 force 23 ,temp 
+0x4c6a 011577 branch le_send_packet 
+:      011579 le_send_enc_rsp:
+0x4c6b 011580 copy contw ,temp 
+0x4c6c 011581 arg mem_le_skds ,contw 
+0x4c6d 011582 force 8 ,loopcnt 
+0x4c6e 011583 call generate_random_loop 
+0x4c6f 011584 fetch 8 ,mem_le_skds 
+0x4c70 011585 istore 8 ,temp 
+0x4c71 011586 copy contw ,temp 
+0x4c72 011587 arg mem_le_ivs ,contw 
+0x4c73 011588 force 4 ,loopcnt 
+0x4c74 011589 call generate_random_loop 
+0x4c75 011590 fetch 4 ,mem_le_ivs 
+0x4c76 011591 istore 4 ,temp 
+0x4c77 011592 call generate_sk 
+0x4c78 011593 fetch 1 ,mem_ltk_exists 
+0x4c79 011594 beq 0 ,le_ltk_lost 
+0x4c7a 011595 jam xt_ll_start_enc_req ,mem_fifo_temp 
+0x4c7b 011596 call le_xtype_fifo_in 
+0x4c7c 011597 force 13 ,temp 
+0x4c7d 011598 branch le_send_packet 
+:      011600 le_ltk_lost:
+0x4c7e 011601 jam flag_le_enc_null ,mem_le_enc_state 
+0x4c7f 011602 jam xt_ll_reject_ind ,mem_fifo_temp 
+0x4c80 011603 call le_xtype_fifo_in 
+0x4c81 011604 call check_51cmd_le_smp_sec_req 
+0x4c82 011605 force 13 ,temp 
+0x4c83 011606 branch le_send_packet 
+:      011609 le_send_start_enc_req:
+0x4c84 011610 force 1 ,temp 
+0x4c85 011611 branch le_send_packet 
+:      011613 le_send_start_enc_rsp:
+0x4c86 011614 force 1 ,temp 
+0x4c87 011615 branch le_send_packet ,master 
+0x4c88 011616 fetch 1 ,mem_device_option 
+0x4c89 011617 beq dvc_op_shutter ,le_send_start_enc_rsp_shutter 
+0x4c8a 011618 fetch 1 ,mem_le_pairing_state 
+0x4c8b 011619 bne flag_le_pairing_after_auth ,le_send_start_enc_rsp_end 
+0x4c8c 011620 jam xt_smp_encryption_information ,mem_fifo_temp 
+0x4c8d 011621 call le_xtype_fifo_in 
+0x4c8e 011622 branch le_send_start_enc_rsp_common 
+:      011623 le_send_start_enc_rsp_end:
+0x4c8f 011624 jam flag_le_enc_end ,mem_le_enc_state 
+:      011625 le_send_start_enc_rsp_common:
+0x4c90 011626 force 1 ,temp 
+0x4c91 011627 branch le_send_packet 
+:      011628 le_send_start_enc_rsp_shutter:
+0x4c92 011629 jam 1 ,mem_lpm_mode 
+0x4c93 011630 fetch 1 ,mem_le_pairing_state 
+0x4c94 011631 bne flag_le_pairing_after_auth ,le_send_start_enc_rsp0 
+0x4c95 011632 jam xt_smp_encryption_information ,mem_fifo_temp 
+0x4c96 011633 call le_xtype_fifo_in 
+:      011634 le_send_start_enc_rsp0:
+0x4c97 011635 jam flag_le_enc_end ,mem_le_enc_state 
+0x4c98 011636 force 1 ,temp 
+0x4c99 011637 call le_send_packet 
+0x4c9a 011638 jam 1 ,mem_send_updata_le_param_timer 
+0x4c9b 011639 rtn 
+:      011640 le_send_unknown_rsp:
+0x4c9c 011641 fetch 1 ,mem_le_ll_cur_opcode 
+0x4c9d 011642 istore 1 ,contw 
+0x4c9e 011643 force 2 ,temp 
+0x4c9f 011644 branch le_send_packet 
+:      011646 le_send_feature:
+0x4ca0 011647 setarg param_le_features 
+0x4ca1 011648 istore 8 ,contw 
+0x4ca2 011649 force 9 ,temp 
+0x4ca3 011650 branch le_send_packet 
+:      011652 le_send_pause_enc_req:
+:      011655 le_send_pause_enc_rsp:
+:      011656 le_send_ping_response:
+0x4ca4 011657 force 1 ,temp 
+0x4ca5 011658 branch le_send_packet 
+:      011660 le_send_version_ind:
+0x4ca6 011661 fetch 5 ,mem_lmp_version 
+0x4ca7 011662 istore 5 ,contw 
+0x4ca8 011667 force 6 ,temp 
+0x4ca9 011668 branch le_send_packet 
+:      011670 le_send_reject_ind:
+0x4caa 011671 setarg le_err_pin_or_key_missing 
+0x4cab 011672 istore 1 ,contw 
+0x4cac 011673 force 2 ,temp 
+0x4cad 011674 branch le_send_packet 
+:      011676 le_send_conn_param_req:
+0x4cae 011677 increase -1 ,contw 
+0x4caf 011678 setarg 0x000c 
+0x4cb0 011679 istore 2 ,contw 
+0x4cb1 011680 setarg 0x0005 
+0x4cb2 011681 istore 2 ,contw 
+0x4cb3 011682 setarg 0xb412 
+0x4cb4 011683 istore 2 ,contw 
+0x4cb5 011684 setarg 0x0008 
+0x4cb6 011685 istore 2 ,contw 
+0x4cb7 011686 fetch 8 ,mem_le_interal_min 
+0x4cb8 011687 istore 8 ,contw 
+0x4cb9 011688 force 2 ,type 
+0x4cba 011689 branch le_send_autolen 
+:      011691 le_send_smp_pairing_request:
+0x4cbb 011692 setarg 0x1000401 
+0x4cbc 011693 store 4 ,mem_le_preq 
+0x4cbd 011694 setarg 0x070710 
+0x4cbe 011695 istore 3 ,contw 
+0x4cbf 011696 fetch 6 ,mem_le_preq_iocap 
+0x4cc0 011697 store 6 ,mem_le_l2cap_response 
+0x4cc1 011698 force 11 ,temp 
+0x4cc2 011699 branch le_send_packet 
+:      011701 le_send_smp_pairing_response:
+0x4cc3 011702 fetch 1 ,mem_device_option 
+0x4cc4 011703 sub pdata ,dvc_op_module ,null 
+0x4cc5 011704 call le_parse_smp_pairing_request_check_irk ,zero 
+0x4cc6 011706 fetch 1 ,mem_device_option 
+0x4cc7 011707 bne dvc_op_shutter ,le_send_smp_pairing_response_common 
+0x4cc8 011708 jam pair_ing ,mem_pair_state 
+0x4cc9 011709 fetch 1 ,mem_le_preq_init_key_distribution 
+0x4cca 011710 bbit1 initator_irk ,le_send_smp_pairing_response_common 
+0x4ccb 011711 setarg param_smp_key_dist2 
+0x4ccc 011712 istore 3 ,contw 
+:      011713 le_send_smp_pairing_response_common:
+0x4ccd 011714 fetch 6 ,mem_le_pres_iocap 
+0x4cce 011715 store 6 ,mem_le_l2cap_response 
+0x4ccf 011716 force 11 ,temp 
+0x4cd0 011717 branch le_send_packet 
+:      011719 le_parse_smp_pairing_request_check_irk:
+0x4cd1 011720 fetcht 1 ,mem_le_pres_init_key_distribution 
+0x4cd2 011721 fetch 1 ,mem_le_preq_init_key_distribution 
+0x4cd3 011722 isolate1 le_initator_irk_bit ,pdata 
+0x4cd4 011723 setflag true ,le_initator_irk_bit ,temp 
+0x4cd5 011724 storet 1 ,mem_le_pres_init_key_distribution 
+0x4cd6 011725 fetcht 1 ,mem_le_pres_resp_key_distribution 
+0x4cd7 011726 setflag true ,le_initator_irk_bit ,temp 
+0x4cd8 011727 storet 1 ,mem_le_pres_resp_key_distribution 
+0x4cd9 011728 rtn 
+:      011731 le_send_smp_pairing_confirm:
+0x4cda 011732 fetch 1 ,mem_le_secure_connect_enable 
+0x4cdb 011733 beq 1 ,le_send_smp_pairing_confirm_sc 
+0x4cdc 011734 call generate_confirm 
+0x4cdd 011735 arg mem_le_l2cap_response ,contw 
+0x4cde 011736 call store_aes_result 
+0x4cdf 011737 force 21 ,temp 
+0x4ce0 011738 branch le_send_packet 
+:      011739 le_send_smp_pairing_confirm_sc:
+0x4ce1 011740 arg mem_le_srand ,contw 
+0x4ce2 011741 call generate_random 
+0x4ce3 011742 call function_f4_cb 
+0x4ce4 011743 arg mem_le_l2cap_response ,contw 
+0x4ce5 011744 call load_inverse_result 
+0x4ce6 011745 force 21 ,temp 
+0x4ce7 011746 branch le_send_packet 
+:      011748 le_send_smp_pairing_random:
+0x4ce8 011749 fetch 8 ,mem_le_mrand 
+0x4ce9 011750 branch le_send_smp_mrandom ,master 
+0x4cea 011751 fetch 8 ,mem_le_srand 
+:      011753 le_send_smp_mrandom:
+0x4ceb 011754 call le_send_smp_128 
+0x4cec 011755 branch le_send_packet 
+:      011757 le_send_smp_pairing_failed:
+0x4ced 011758 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x4cee 011759 arg pairing_failed_unspecified_reason ,pdata 
+0x4cef 011760 istore 1 ,contw 
+0x4cf0 011761 force 6 ,temp 
+0x4cf1 011762 branch le_send_packet 
+:      011764 le_send_smp_encryption_information:
+0x4cf2 011765 jam bt_evt_le_enc_info ,mem_fifo_temp 
+0x4cf3 011766 call ui_ipc_send_event 
+0x4cf4 011767 jam xt_smp_master_identification ,mem_fifo_temp 
+0x4cf5 011768 call le_xtype_fifo_in 
+0x4cf6 011769 fetch 1 ,mem_device_option 
+0x4cf7 011770 beq dvc_op_shutter ,le_send_smp_encryption_information_shutter 
+0x4cf8 011771 fetch 8 ,mem_le_ltk 
+0x4cf9 011772 call le_send_smp_128 
+0x4cfa 011773 call le_send_packet 
+0x4cfb 011774 fetch 1 ,mem_le_conn_peer_addr_type 
+0x4cfc 011775 beq master_public_addr ,app_ble_store_reconn_info 
+0x4cfd 011776 fetch 1 ,mem_le_plap + 5 
+0x4cfe 011777 compare 0xc0 ,pdata ,0xc0 
+0x4cff 011778 branch app_ble_store_reconn_info ,true 
+0x4d00 011779 rtn 
+:      011781 le_send_smp_encryption_information_shutter:
+0x4d01 011782 setarg 0x112233 
+0x4d02 011783 store 3 ,mem_le_ltk 
+0x4d03 011784 setarg 0x445566 
+0x4d04 011785 istore 3 ,contw 
+0x4d05 011786 setarg 0x778899 
+0x4d06 011787 istore 3 ,contw 
+0x4d07 011788 setarg 0x001122 
+0x4d08 011789 istore 3 ,contw 
+0x4d09 011790 setarg 0x334455 
+0x4d0a 011791 istore 3 ,contw 
+0x4d0b 011792 setarg 0x66 
+0x4d0c 011793 istore 1 ,contw 
+0x4d0d 011795 fetch 8 ,mem_le_ltk 
+0x4d0e 011796 call le_send_smp_128 
+0x4d0f 011797 branch le_send_packet 
+:      011800 le_send_smp_master_identification:
+0x4d10 011801 fetch 1 ,mem_device_option 
+0x4d11 011802 beq dvc_op_shutter ,le_send_smp_master_identification_shutter 
+0x4d12 011804 fetch 1 ,mem_le_preq_init_key_distribution 
+0x4d13 011805 bbit0 le_initator_irk_bit ,le_send_smp_master_identification_only 
+0x4d14 011806 jam xt_smp_identity_information ,mem_fifo_temp 
+0x4d15 011807 call le_xtype_fifo_in 
+0x4d16 011808 branch le_send_smp_master_identification_common 
+:      011810 le_send_smp_master_identification_only:
+0x4d17 011811 jam flag_le_enc_end ,mem_le_enc_state 
+0x4d18 011812 jam flag_le_pairing_end ,mem_le_pairing_state 
+:      011813 le_send_smp_master_identification_common:
+0x4d19 011814 arg mem_le_ediv ,contw 
+0x4d1a 011815 force 10 ,loopcnt 
+0x4d1b 011816 call generate_random_loop 
+0x4d1c 011817 fetch 2 ,mem_le_ediv 
+0x4d1d 011818 store 2 ,mem_le_l2cap_response 
+0x4d1e 011819 fetch 8 ,mem_le_rand 
+0x4d1f 011820 istore 8 ,contw 
+0x4d20 011821 force 15 ,temp 
+0x4d21 011822 branch le_send_packet 
+:      011824 le_send_smp_master_identification_shutter:
+0x4d22 011825 arg mem_le_l2cap_response ,contw 
+0x4d23 011826 force 8 ,loopcnt 
+0x4d24 011827 call generate_random_loop 
+0x4d25 011828 force 15 ,temp 
+0x4d26 011829 branch le_send_packet 
+:      011831 le_send_smp_identity_information:
+0x4d27 011832 jam xt_smp_identity_address_information ,mem_fifo_temp 
+0x4d28 011833 call le_xtype_fifo_in 
+0x4d29 011834 setarg 0 
+0x4d2a 011835 store 8 ,mem_le_l2cap_response 
+0x4d2b 011836 istore 8 ,contw 
+0x4d2c 011837 branch le_send_autolen 
+:      011839 le_send_smp_identity_address_information:
+0x4d2d 011842 fetch 1 ,mem_le_conn_own_addr_type 
+0x4d2e 011843 store 1 ,mem_le_l2cap_response 
+0x4d2f 011844 fetch 6 ,mem_le_lap 
+0x4d30 011845 istore 6 ,contw 
+0x4d31 011846 branch le_send_autolen 
+:      011848 le_send_smp_signing_information:
+0x4d32 011849 arg mem_le_l2cap_response ,contw 
+0x4d33 011850 call generate_random 
+0x4d34 011851 branch le_send_autolen 
+:      011853 le_send_smp_security_request:
+0x4d35 011854 fetch 1 ,mem_le_pres_auth 
+0x4d36 011855 store 1 ,mem_le_l2cap_response 
+0x4d37 011856 force 6 ,temp 
+0x4d38 011857 branch le_send_packet 
+:      011859 le_send_smp_pairing_public_key:
+0x4d39 011861 fetch 1 ,mem_le_continue_type 
+0x4d3a 011862 beq le_continue_type_public_key ,le_send_public_key_continue 
+0x4d3b 011865 arg 65 ,temp 
+0x4d3c 011866 storet 2 ,mem_le_txpayload 
+0x4d3d 011867 set1 mark_ext_patch ,mark 
+0x4d3e 011868 bpatch patch26_4 ,mem_patch26 
+0x4d3f 011869 arg 0x02 ,type 
+0x4d40 011870 setarg le_l2cap_cid_smp 
+0x4d41 011871 store 2 ,mem_le_txcid 
+0x4d42 011873 arg mem_le_l2cap_response ,contw 
+0x4d43 011874 arg 22 ,loopcnt 
+0x4d44 011875 arg mem_le_pubkey_local_x_256 ,contr 
+0x4d45 011876 call memcpy_fast 
+0x4d46 011877 jam 22 ,mem_le_public_length 
+0x4d47 011879 jam 27 ,mem_le_txlen 
+0x4d48 011881 fetcht 1 ,mem_le_arq 
+0x4d49 011882 set1 md ,temp 
+0x4d4a 011883 storet 1 ,mem_le_arq 
+0x4d4b 011888 jam le_continue_type_public_key ,mem_le_continue_type 
+0x4d4c 011889 fetcht 1 ,mem_le_arq 
+0x4d4d 011890 branch le_send_non_l2cap2 
+:      011893 le_send_public_key_continue:
+0x4d4e 011894 jam le_continue_type_null ,mem_le_continue_type 
+0x4d4f 011896 fetch 1 ,mem_le_public_length 
+0x4d50 011897 beq 22 ,le_send_public_key_continue2 
+0x4d51 011899 arg 15 ,loopcnt 
+0x4d52 011900 jam 15 ,mem_le_txlen 
+0x4d53 011901 call le_send_smp_publickey_continue_common 
+0x4d54 011902 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x4d55 011903 jam le_sc_stat_send_public_key ,mem_le_secure_connect_state 
+0x4d56 011904 jam 0 ,mem_le_public_length 
+0x4d57 011905 rtn 
+:      011906 le_send_smp_publickey_continue_common:
+0x4d58 011907 arg mem_le_pubkey_local_x_256 ,contr 
+0x4d59 011908 iadd contr ,contr 
+0x4d5a 011909 arg mem_le_txpayload ,contw 
+0x4d5b 011910 call memcpy_fast 
+0x4d5c 011911 arg 1 ,type 
+0x4d5d 011912 branch le_send_non_l2cap 
+:      011915 le_send_public_key_continue2:
+0x4d5e 011916 jam 49 ,mem_le_public_length 
+0x4d5f 011917 arg 27 ,loopcnt 
+0x4d60 011918 jam 27 ,mem_le_txlen 
+0x4d61 011919 call le_send_smp_publickey_continue_common 
+0x4d62 011921 jam le_continue_type_public_key ,mem_le_continue_type 
+0x4d63 011925 rtn 
+:      011927 le_send_smp_pairing_dhkey_check:
+0x4d64 011928 call function_f6_eb 
+0x4d65 011929 arg mem_le_l2cap_response ,contw 
+0x4d66 011930 call load_inverse_result 
+0x4d67 011931 force 21 ,temp 
+0x4d68 011932 branch le_send_packet 
+:      011934 le_send_smp_128:
+0x4d69 011935 store 8 ,mem_le_l2cap_response 
+0x4d6a 011936 ifetch 8 ,contr 
+0x4d6b 011937 istore 8 ,contw 
+0x4d6c 011938 force 21 ,temp 
+0x4d6d 011939 rtn 
+:      011941 le_send_att_error_response_notfound:
+0x4d6e 011942 jam att_err_attribute_not_found ,mem_le_err_code 
+:      011943 le_send_att_error_response:
+0x4d6f 011944 jam attop_error_response ,mem_le_l2cap 
+0x4d70 011945 fetch 3 ,mem_le_att_opcode 
+0x4d71 011946 store 3 ,mem_le_l2cap_response 
+0x4d72 011947 fetch 1 ,mem_le_err_code 
+0x4d73 011948 istore 1 ,contw 
+0x4d74 011949 branch le_send_autolen 
+:      011951 le_send_att_exchange_mtu_rsp:
+:      011952 le_send_att_exchange_mtu_req:
+0x4d75 011953 fetch 2 ,mem_le_local_mtu 
+0x4d76 011954 istore 2 ,contw 
+0x4d77 011955 branch le_send_autolen 
+:      011957 le_send_att_find_information_request:
+0x4d78 011958 fetch 2 ,mem_le_search_handle_start 
+0x4d79 011959 store 2 ,mem_le_l2cap_response 
+0x4d7a 011960 fetch 2 ,mem_le_search_handle_end 
+0x4d7b 011961 istore 2 ,contw 
+0x4d7c 011962 branch le_send_autolen 
+:      011966 le_send_att_find_information_response:
+0x4d7d 011967 arg 2 ,timeup 
+0x4d7e 011968 force 1 ,pdata 
+0x4d7f 011969 store 1 ,mem_le_l2cap_response 
+0x4d80 011970 call le_init_attlist_search 
+:      011971 le_send_att_find_information_res_loop:
+0x4d81 011972 call le_att_handle_inrange 
+0x4d82 011973 branch le_send_att_find_information_res_end ,blank 
+0x4d83 011974 nbranch le_send_att_find_information_res_next ,positive 
+0x4d84 011975 disable user 
+0x4d85 011976 istore 2 ,contw 
+0x4d86 011977 ifetch 1 ,contr 
+0x4d87 011978 copy pdata ,loopcnt 
+0x4d88 011979 call memcpy_fast 
+0x4d89 011980 increase -1 ,timeup 
+0x4d8a 011981 branch le_send_att_find_information_res_end ,zero 
+:      011982 le_send_att_find_information_res_cont:
+0x4d8b 011983 ifetch 1 ,contr 
+0x4d8c 011984 iadd contr ,contr 
+0x4d8d 011985 branch le_send_att_find_information_res_loop 
+:      011986 le_send_att_find_information_res_next:
+0x4d8e 011987 ifetch 1 ,contr 
+0x4d8f 011988 iadd contr ,contr 
+0x4d90 011989 branch le_send_att_find_information_res_cont 
+:      011990 le_send_att_find_information_res_end:
+0x4d91 011991 branch le_send_att_error_response_notfound ,user 
+0x4d92 011992 branch le_send_autolen 
+:      011995 le_send_att_find_by_type_value_request:
+0x4d93 011996 fetch 2 ,mem_le_search_handle_start 
+0x4d94 011997 branch le_send_empty_le_data ,blank 
+0x4d95 011998 store 2 ,mem_le_l2cap_response 
+0x4d96 011999 fetch 2 ,mem_le_search_handle_end 
+0x4d97 012001 istore 2 ,contw 
+0x4d98 012002 fetch 2 ,mem_le_search_uuid 
+0x4d99 012004 istore 2 ,contw 
+0x4d9a 012005 fetch 2 ,mem_le_search_att_type 
+0x4d9b 012007 istore 2 ,contw 
+0x4d9c 012008 branch le_send_autolen 
+:      012011 le_start_end_handle_check_1:
+0x4d9d 012012 disable user 
+0x4d9e 012013 fetcht 2 ,mem_le_search_handle_start 
+0x4d9f 012014 fetch 2 ,mem_le_search_handle_end 
+0x4da0 012015 isub temp ,null 
+0x4da1 012016 nbranch le_start_end_handle_check_1_fail ,positive 
+0x4da2 012017 deposit temp 
+0x4da3 012018 rtnne 0 
+:      012019 le_start_end_handle_check_1_fail:
+0x4da4 012020 enable user 
+0x4da5 012021 jam att_err_invalid_handle ,mem_le_err_code 
+0x4da6 012022 branch le_send_att_error_response 
+:      012024 le_send_att_find_by_type_value_response:
+0x4da7 012025 call le_start_end_handle_check_1 
+0x4da8 012026 rtn user 
+0x4da9 012027 fetcht 2 ,mem_le_search_uuid 
+0x4daa 012028 setarg uuid_gatt_primary_service 
+0x4dab 012029 isub temp ,null 
+0x4dac 012030 branch le_send_att_find_by_type_value_res_primary ,zero 
+0x4dad 012031 setarg uuid_gatt_secondary_service 
+0x4dae 012032 isub temp ,null 
+0x4daf 012033 branch le_send_att_error_response_notfound ,zero 
+0x4db0 012034 setarg uuid_gatt_include 
+0x4db1 012035 isub temp ,null 
+0x4db2 012036 branch le_send_att_error_response_notfound ,zero 
+0x4db3 012037 setarg uuid_gatt_characteristic 
+0x4db4 012038 isub temp ,null 
+0x4db5 012039 branch le_send_att_error_response_notfound ,zero 
+0x4db6 012040 branch le_send_att_error_response_notfound 
+:      012042 le_send_att_find_by_type_value_res_primary:
+0x4db7 012043 jam le_find_by_type_val_res_not_found ,mem_le_search_res 
+0x4db8 012044 fetcht 2 ,mem_le_search_handle_start 
+0x4db9 012045 storet 2 ,mem_temp 
+0x4dba 012046 call le_att_get_handle_info 
+0x4dbb 012047 nbranch le_send_att_error_response_notfound ,blank 
+:      012048 le_send_att_find_primary_search_loop:
+0x4dbc 012049 fetcht 2 ,mem_temp 
+0x4dbd 012050 call le_att_get_handle_info 
+0x4dbe 012051 nbranch le_send_att_error_response_notfound2 ,blank 
+0x4dbf 012052 copy contr ,rega 
+0x4dc0 012053 fetch 1 ,mem_le_search_len 
+0x4dc1 012054 copy pdata ,loopcnt 
+0x4dc2 012055 fetcht 1 ,mem_le_search_att_type_length 
+0x4dc3 012056 isub temp ,null 
+0x4dc4 012057 nbranch le_send_att_find_primary_search_loop1 ,zero 
+0x4dc5 012058 arg mem_le_search_att_type ,regb 
+0x4dc6 012059 call string_compare 
+0x4dc7 012061 branch le_send_att_find_primary_search_end_start_handle_found ,zero 
+0x4dc8 012063 fetch 2 ,mem_le_cur_uuid 
+0x4dc9 012064 fetcht 2 ,mem_le_search_uuid 
+0x4dca 012065 isub temp ,null 
+0x4dcb 012066 branch le_send_att_find_primary_search_end_ending_handle_found ,zero 
+:      012067 le_send_att_find_primary_search_loop1:
+0x4dcc 012068 fetch 2 ,mem_temp 
+0x4dcd 012069 increase 1 ,pdata 
+0x4dce 012070 store 2 ,mem_temp 
+0x4dcf 012071 branch le_send_att_find_primary_search_loop 
+:      012073 le_send_att_error_response_notfound2:
+0x4dd0 012074 fetch 1 ,mem_le_search_res 
+0x4dd1 012075 beq le_find_by_type_val_res_found_starting_handle ,le_send_att_find_primary_search_end_ending_handle_found 
+0x4dd2 012076 branch le_send_att_error_response_notfound 
+:      012079 le_send_att_find_primary_search_end_start_handle_found:
+0x4dd3 012080 fetch 2 ,mem_le_cur_uuid 
+0x4dd4 012081 fetcht 2 ,mem_le_search_uuid 
+0x4dd5 012082 isub temp ,null 
+0x4dd6 012083 nbranch le_send_att_find_primary_search_loop1 ,zero 
+0x4dd7 012084 jam le_find_by_type_val_res_found_starting_handle ,mem_le_search_res 
+0x4dd8 012086 fetcht 2 ,mem_temp 
+0x4dd9 012087 storet 2 ,mem_le_cur_handle_start 
+0x4dda 012088 branch le_send_att_find_primary_search_loop1 
+:      012090 le_send_att_find_primary_search_end_ending_handle_found:
+0x4ddb 012091 fetch 1 ,mem_le_search_res 
+0x4ddc 012092 beq le_find_by_type_val_res_not_found ,le_send_att_find_primary_search_loop1 
+0x4ddd 012093 jam le_find_by_type_val_res_found_ending_handle ,mem_le_search_res 
+0x4dde 012094 fetcht 2 ,mem_temp 
+0x4ddf 012095 increase -1 ,temp 
+0x4de0 012096 storet 2 ,mem_le_cur_handle_end 
+:      012097 le_send_att_find_primary_search_end:
+0x4de1 012098 fetch 2 ,mem_le_cur_handle_start 
+0x4de2 012099 icopy rega 
+0x4de3 012100 fetch 2 ,mem_le_cur_handle_end 
+0x4de4 012101 icopy regb 
+0x4de5 012102 jam attop_find_by_type_value_response ,mem_le_l2cap 
+0x4de6 012103 deposit rega 
+0x4de7 012104 store 2 ,mem_le_l2cap_response 
+0x4de8 012105 deposit regb 
+0x4de9 012106 istore 2 ,contw 
+0x4dea 012107 force 9 ,temp 
+0x4deb 012108 branch le_send_packet 
+:      012111 le_send_att_read_by_type_request:
+0x4dec 012112 fetch 2 ,mem_le_search_handle_start 
+0x4ded 012114 istore 2 ,contw 
+0x4dee 012115 fetch 2 ,mem_le_search_handle_end 
+0x4def 012117 istore 2 ,contw 
+0x4df0 012118 fetch 2 ,mem_le_search_att_type 
+0x4df1 012119 istore 2 ,contw 
+0x4df2 012120 force 11 ,temp 
+0x4df3 012121 branch le_send_packet 
+:      012125 le_send_att_read_by_type_response:
+0x4df4 012126 fetcht 2 ,mem_le_search_handle_start 
+0x4df5 012127 storet 2 ,mem_temp 
+0x4df6 012128 call le_init_attlist_search 
+0x4df7 012129 call le_att_get_handle_ptr2 
+0x4df8 012130 increase -2 ,contr 
+0x4df9 012131 copy contr ,pdata 
+0x4dfa 012132 store 2 ,mem_le_cur_attlist_start_ptr 
+0x4dfb 012134 fetcht 2 ,mem_le_search_uuid 
+0x4dfc 012135 setarg uuid_gatt_characteristic 
+0x4dfd 012136 isub temp ,null 
+0x4dfe 012137 nbranch le_send_att_read_by_type_res_not_characteristic ,zero 
+0x4dff 012138 arg 2 ,timeup 
+0x4e00 012139 set1 mark_ext_patch ,mark 
+0x4e01 012140 bpatch patch26_5 ,mem_patch26 
+:      012141 le_send_att_read_by_type_response_loop:
+0x4e02 012142 call le_att_check_handle_end 
+0x4e03 012143 nbranch le_send_att_read_by_type_response_end ,positive 
+0x4e04 012144 fetcht 2 ,mem_temp 
+0x4e05 012145 call le_att_get_handle_info_from_ptr 
+0x4e06 012146 beq 1 ,le_send_att_read_by_type_response_end 
+0x4e07 012147 call le_att_same_uuid 
+0x4e08 012148 nbranch le_send_att_read_by_type_response_next_handle ,zero 
+0x4e09 012149 nbranch le_send_att_read_by_type_res_found_next ,user 
+0x4e0a 012150 disable user 
+0x4e0b 012152 call le_send_att_read_by_type_write_properties 
+0x4e0c 012153 call le_att_next_handle 
+0x4e0d 012154 call le_att_get_handle_info_from_ptr 
+0x4e0e 012155 call le_send_att_read_by_type_write_uuid 
+0x4e0f 012156 increase -1 ,timeup 
+0x4e10 012157 branch le_send_att_read_by_type_response_end ,zero 
+:      012158 le_send_att_read_by_type_response_next_handle:
+0x4e11 012159 call le_att_next_handle 
+0x4e12 012160 branch le_send_att_read_by_type_response_loop 
+:      012161 le_send_att_read_by_type_response_end:
+0x4e13 012162 branch le_send_att_error_response_notfound ,user 
+0x4e14 012163 branch le_send_auto_len_by_mem 
+:      012165 le_send_att_read_by_type_res_found_next:
+0x4e15 012166 call le_store_att_record 
+0x4e16 012167 call le_att_next_handle 
+0x4e17 012168 call le_att_get_handle_info_from_ptr 
+0x4e18 012169 fetch 1 ,mem_le_l2cap_response 
+0x4e19 012170 beq 21 ,le_send_att_read_by_type_response_end 
+0x4e1a 012171 fetch 1 ,mem_le_cur_uuid_lenth 
+0x4e1b 012172 increase 5 ,pdata 
+0x4e1c 012173 fetcht 1 ,mem_le_l2cap_response 
+0x4e1d 012174 isub temp ,null 
+0x4e1e 012175 nbranch le_send_att_read_by_type_response_end ,zero 
+0x4e1f 012177 call get_contw 
+0x4e20 012178 fetch 2 ,mem_temp 
+0x4e21 012179 increase -1 ,pdata 
+0x4e22 012180 istore 2 ,contw 
+0x4e23 012181 call le_write_att_record_common 
+0x4e24 012182 call le_send_att_read_by_type_write_uuid 
+0x4e25 012183 increase -1 ,timeup 
+0x4e26 012184 branch le_send_att_read_by_type_response_end ,zero 
+0x4e27 012185 branch le_send_att_read_by_type_response_next_handle 
+:      012186 le_send_att_read_by_type_write_properties:
+0x4e28 012187 fetch 2 ,mem_temp 
+0x4e29 012188 store 2 ,mem_le_l2cap_response + 1 
+0x4e2a 012190 fetch 1 ,mem_le_search_len 
+0x4e2b 012191 copy pdata ,loopcnt 
+0x4e2c 012192 call get_contr 
+0x4e2d 012193 call memcpy_fast 
+0x4e2e 012194 branch store_contw 
+:      012195 le_send_att_read_by_type_write_uuid:
+0x4e2f 012196 call get_contw 
+0x4e30 012197 fetch 2 ,mem_temp 
+0x4e31 012198 istore 2 ,contw 
+0x4e32 012199 call store_contw 
+0x4e33 012200 fetch 1 ,mem_le_cur_uuid_lenth 
+0x4e34 012201 copy pdata ,loopcnt 
+0x4e35 012202 increase 5 ,pdata 
+0x4e36 012203 store 1 ,mem_le_l2cap_response 
+0x4e37 012204 call get_contw 
+0x4e38 012205 call get_contr 
+0x4e39 012206 isub loopcnt ,contr 
+0x4e3a 012207 increase -1 ,contr 
+0x4e3b 012208 call memcpy_fast 
+0x4e3c 012209 branch store_contw 
+:      012213 le_send_att_read_by_type_res_not_characteristic:
+0x4e3d 012214 fetcht 2 ,mem_le_search_handle_start 
+0x4e3e 012215 storet 2 ,mem_temp 
+:      012216 le_send_att_read_by_type_res_not_char_loop:
+0x4e3f 012217 call le_att_check_handle_end 
+0x4e40 012218 nbranch le_send_att_error_response_notfound ,positive 
+0x4e41 012219 call le_att_get_handle_info_from_ptr 
+0x4e42 012220 beq 1 ,le_send_att_error_response_notfound 
+0x4e43 012221 call le_att_same_uuid 
+0x4e44 012222 nbranch le_send_att_read_by_type_res_not_char_next ,zero 
+:      012223 le_check_if_name_uuid:
+0x4e45 012224 fetch 1 ,mem_le_search_uuid_length 
+0x4e46 012225 bne 2 ,le_send_att_read_by_type_res_not_name 
+0x4e47 012226 fetch 2 ,mem_le_search_uuid 
+0x4e48 012227 arg uuid_chrctr_device_name ,temp 
+0x4e49 012228 isub temp ,null 
+0x4e4a 012229 nbranch le_send_att_read_by_type_res_not_name ,zero 
+0x4e4b 012230 fetch 1 ,mem_le_name_len 
+0x4e4c 012231 branch le_send_att_read_by_type_res_not_char_common 
+:      012232 le_send_att_read_by_type_res_not_name:
+0x4e4d 012233 fetch 1 ,mem_le_search_len 
+:      012234 le_send_att_read_by_type_res_not_char_common:
+0x4e4e 012235 copy pdata ,loopcnt 
+0x4e4f 012236 increase 2 ,pdata 
+0x4e50 012237 store 1 ,mem_le_l2cap_response 
+0x4e51 012238 fetch 2 ,mem_temp 
+0x4e52 012239 istore 2 ,contw 
+0x4e53 012240 call get_contr 
+0x4e54 012241 call memcpy_fast 
+0x4e55 012242 branch le_send_autolen 
+:      012243 le_send_att_read_by_type_res_not_char_next:
+0x4e56 012244 call le_att_next_handle 
+0x4e57 012245 branch le_send_att_read_by_type_res_not_char_loop 
+:      012248 le_send_att_read_request:
+0x4e58 012249 fetch 1 ,mem_le_temp 
+0x4e59 012251 increase -1 ,pdata 
+0x4e5a 012252 store 1 ,mem_le_temp 
+0x4e5b 012253 lshift pdata ,pdata 
+0x4e5c 012255 iadd contr ,contr 
+0x4e5d 012256 ifetcht 2 ,contr 
+0x4e5e 012257 storet 2 ,mem_le_l2cap_response 
+0x4e5f 012258 branch le_send_autolen 
+:      012260 le_send_att_read_response:
+0x4e60 012261 fetch 1 ,mem_le_flag 
+0x4e61 012262 bbit0 flag_ble_insufficient_authentication ,le_send_att_read_response_common 
+0x4e62 012263 fetch 2 ,mem_le_att_handle 
+0x4e63 012264 fetcht 2 ,mem_le_pairing_handle 
+0x4e64 012265 isub temp ,null 
+0x4e65 012266 branch le_send_att_read_response_error_insufficient_authentication ,zero 
+:      012267 le_send_att_read_response_common:
+0x4e66 012268 fetcht 2 ,mem_le_att_handle 
+0x4e67 012269 call le_att_get_handle_ptr 
+0x4e68 012270 branch le_send_att_error_response_notfound ,blank 
+0x4e69 012271 ifetch 1 ,contr 
+0x4e6a 012272 branch le_send_autolen ,blank 
+0x4e6b 012273 sub pdata ,22 ,null 
+0x4e6c 012274 branch le_send_att_read_response_less ,positive 
+0x4e6d 012275 force 22 ,pdata 
+:      012276 le_send_att_read_response_less:
+0x4e6e 012277 icopy loopcnt 
+0x4e6f 012278 call memcpy_fast 
+0x4e70 012279 branch le_send_autolen 
+:      012281 le_send_att_read_response_error_insufficient_authentication:
+0x4e71 012282 fetch 1 ,mem_le_pairing_mode 
+0x4e72 012283 branch le_send_att_read_response_common ,blank 
+0x4e73 012284 fetch 1 ,mem_le_state 
+0x4e74 012285 bbit1 lestate_encryption ,le_send_att_read_response_common 
+0x4e75 012286 jam att_err_insufficient_authentication ,mem_le_err_code 
+0x4e76 012287 branch le_send_att_error_response 
+:      012289 le_send_att_read_blob_request:
+0x4e77 012290 setarg 0x0003 
+0x4e78 012291 store 2 ,mem_le_l2cap_response 
+0x4e79 012292 setarg 0x0008 
+0x4e7a 012293 istore 2 ,contw 
+0x4e7b 012294 branch le_send_autolen 
+:      012296 le_send_att_read_blob_response:
+0x4e7c 012297 fetch 2 ,mem_le_att_offset 
+0x4e7d 012298 iforce rega 
+0x4e7e 012299 fetcht 2 ,mem_le_att_handle 
+0x4e7f 012300 call le_att_get_handle_ptr 
+0x4e80 012301 branch le_send_att_error_response_notfound ,blank 
+0x4e81 012302 ifetch 1 ,contr 
+0x4e82 012303 isub rega ,loopcnt 
+0x4e83 012304 nbranch le_send_att_error_response_notfound ,positive 
+0x4e84 012305 sub loopcnt ,22 ,null 
+0x4e85 012306 branch le_send_att_read_blob_response_less ,positive 
+0x4e86 012307 force 22 ,loopcnt 
+:      012308 le_send_att_read_blob_response_less:
+0x4e87 012309 deposit rega 
+0x4e88 012310 iadd contr ,contr 
+0x4e89 012311 call memcpy_fast 
+0x4e8a 012312 branch le_send_autolen 
+:      012314 le_send_att_read_multiple_request:
+0x4e8b 012315 setarg 0x0003 
+0x4e8c 012316 istore 2 ,contw 
+0x4e8d 012317 setarg 0x0007 
+0x4e8e 012318 istore 2 ,contw 
+0x4e8f 012319 setarg 0x0009 
+0x4e90 012320 istore 2 ,contw 
+0x4e91 012321 branch le_send_autolen 
+:      012323 le_send_att_read_multiple_response:
+0x4e92 012324 fetch 1 ,mem_le_temp 
+0x4e93 012325 icopy regc 
+0x4e94 012327 arg mem_le_rxbuf + 7 ,rega 
+0x4e95 012328 arg mem_le_l2cap_response ,regb 
+0x4e96 012329 arg 0 ,timeup 
+0x4e97 012330 disable user7 
+:      012332 le_send_att_read_multiple_response_loop:
+0x4e98 012333 copy rega ,contr 
+0x4e99 012334 ifetcht 2 ,contr 
+0x4e9a 012335 copy contr ,rega 
+0x4e9b 012336 call le_att_get_handle_ptr 
+0x4e9c 012337 branch le_send_att_read_multiple_response_end ,blank 
+0x4e9d 012338 ifetch 1 ,contr 
+0x4e9e 012339 icopy loopcnt 
+0x4e9f 012340 iadd timeup ,timeup 
+0x4ea0 012344 sub timeup ,24 ,null 
+0x4ea1 012345 nbranch le_send_att_read_multiple_response_end_1 ,positive 
+0x4ea2 012346 copy regb ,contw 
+:      012348 le_copy_att_value_loop_3:
+0x4ea3 012349 ifetch 1 ,contr 
+0x4ea4 012350 istore 1 ,contw 
+0x4ea5 012351 loop le_copy_att_value_loop_3 
+0x4ea6 012352 copy contw ,regb 
+0x4ea7 012353 enable user7 
+0x4ea8 012354 increase -1 ,regc 
+0x4ea9 012355 branch le_send_att_read_multiple_response_end ,zero 
+0x4eaa 012356 branch le_send_att_read_multiple_response_loop 
+:      012358 le_send_att_read_multiple_response_end:
+0x4eab 012359 nbranch le_send_att_read_multiple_response_fail ,user7 
+0x4eac 012360 disable user7 
+0x4ead 012361 copy timeup ,temp 
+0x4eae 012362 increase 5 ,temp 
+0x4eaf 012363 branch le_send_packet 
+:      012365 le_send_att_read_multiple_response_end_1:
+0x4eb0 012366 nbranch le_send_att_read_multiple_response_fail ,user7 
+0x4eb1 012367 disable user7 
+0x4eb2 012368 deposit timeup 
+0x4eb3 012369 isub loopcnt ,temp 
+0x4eb4 012370 increase 5 ,temp 
+0x4eb5 012371 branch le_send_packet 
+:      012373 le_send_att_read_multiple_response_fail:
+0x4eb6 012374 jam att_err_unsupported_group_type ,mem_le_err_code 
+0x4eb7 012375 branch le_send_att_error_response 
+:      012378 le_send_att_read_by_group_type_request:
+0x4eb8 012379 fetch 2 ,mem_le_att_handle 
+0x4eb9 012380 branch le_send_empty_le_data ,blank 
+0x4eba 012381 istore 2 ,contw 
+0x4ebb 012382 setarg 0xffff 
+0x4ebc 012383 istore 2 ,contw 
+0x4ebd 012384 setarg 0x2800 
+0x4ebe 012385 istore 2 ,contw 
+0x4ebf 012386 branch le_send_autolen 
+:      012392 le_send_att_read_by_group_type_response:
+0x4ec0 012393 arg 2 ,timeup 
+0x4ec1 012394 fetch 2 ,mem_le_search_handle_start 
+0x4ec2 012395 store 2 ,mem_temp 
+0x4ec3 012396 jam 0 ,mem_le_search_res 
+0x4ec4 012398 fetcht 2 ,mem_le_search_handle_start 
+0x4ec5 012399 storet 2 ,mem_temp 
+0x4ec6 012400 call le_init_attlist_search 
+0x4ec7 012401 call le_att_get_handle_ptr2 
+0x4ec8 012402 increase -2 ,contr 
+0x4ec9 012403 copy contr ,pdata 
+0x4eca 012404 store 2 ,mem_le_cur_attlist_start_ptr 
+0x4ecb 012405 set1 mark_ext_patch ,mark 
+0x4ecc 012406 bpatch patch26_6 ,mem_patch26 
+:      012407 le_send_att_read_by_group_type_response_loop:
+0x4ecd 012408 call le_att_check_handle_end 
+0x4ece 012409 nbranch le_send_att_read_by_group_type_end0 ,positive 
+0x4ecf 012410 fetcht 2 ,mem_temp 
+0x4ed0 012411 call le_att_get_handle_info_from_ptr 
+0x4ed1 012412 beq 1 ,le_send_att_read_by_group_type_end1 
+0x4ed2 012414 call le_att_same_type 
+0x4ed3 012415 nbranch le_send_att_read_by_group_type_next_handle ,zero 
+0x4ed4 012416 fetch 1 ,mem_le_search_res 
+0x4ed5 012417 beq 1 ,le_send_att_read_by_group_type_end1 
+0x4ed6 012418 nbranch le_send_att_read_by_group_type_store_write_record ,user 
+0x4ed7 012419 disable user 
+0x4ed8 012420 fetch 1 ,mem_le_search_len 
+0x4ed9 012421 increase 4 ,pdata 
+0x4eda 012422 store 1 ,mem_le_l2cap_response 
+0x4edb 012423 call store_contw 
+0x4edc 012424 branch le_send_att_read_by_group_type_store_record 
+:      012425 le_send_att_read_by_group_type_store_write_record:
+0x4edd 012426 fetch 1 ,mem_le_l2cap_response 
+0x4ede 012427 beq 20 ,le_send_att_read_by_group_type_end1 
+0x4edf 012428 fetch 1 ,mem_le_search_len 
+0x4ee0 012429 increase 4 ,pdata 
+0x4ee1 012430 fetcht 1 ,mem_le_l2cap_response 
+0x4ee2 012431 isub temp ,null 
+0x4ee3 012432 nbranch le_send_att_read_by_group_type_end1 ,zero 
+0x4ee4 012436 fetch 2 ,mem_temp 
+0x4ee5 012437 increase -1 ,pdata 
+0x4ee6 012438 store 2 ,mem_le_cur_handle_end 
+0x4ee7 012439 call le_write_att_record 
+:      012440 le_send_att_read_by_group_type_store_record:
+0x4ee8 012441 fetch 2 ,mem_temp 
+0x4ee9 012442 store 2 ,mem_le_cur_handle_start 
+0x4eea 012443 call le_store_att_record 
+0x4eeb 012444 increase -1 ,timeup 
+0x4eec 012445 branch le_send_att_read_by_group_type_last_find ,zero 
+:      012446 le_send_att_read_by_group_type_next_handle:
+0x4eed 012447 call le_att_next_handle 
+0x4eee 012448 branch le_send_att_read_by_group_type_response_loop 
+:      012449 le_send_att_read_by_group_type_last_find:
+0x4eef 012450 jam 1 ,mem_le_search_res 
+0x4ef0 012451 branch le_send_att_read_by_group_type_next_handle 
+:      012452 le_send_att_read_by_group_type_end0:
+0x4ef1 012453 fetch 2 ,mem_temp 
+0x4ef2 012454 store 2 ,mem_le_cur_handle_end 
+0x4ef3 012455 branch le_send_att_read_by_group_type_end_common 
+:      012456 le_send_att_read_by_group_type_end1:
+0x4ef4 012457 fetch 2 ,mem_temp 
+0x4ef5 012458 increase -1 ,pdata 
+0x4ef6 012459 store 2 ,mem_le_cur_handle_end 
+0x4ef7 012460 branch le_send_att_read_by_group_type_end_common 
+:      012461 le_send_att_read_by_group_type_end_common:
+0x4ef8 012462 branch le_send_att_error_response_notfound ,user 
+0x4ef9 012463 call le_write_att_record 
+0x4efa 012464 branch le_send_auto_len_by_mem 
+:      012467 le_att_next_handle:
+0x4efb 012468 fetcht 2 ,mem_temp 
+0x4efc 012469 increase 1 ,temp 
+0x4efd 012470 storet 2 ,mem_temp 
+0x4efe 012471 rtn 
+:      012473 le_att_check_handle_end:
+0x4eff 012474 fetcht 2 ,mem_temp 
+0x4f00 012475 fetch 2 ,mem_le_search_handle_end 
+0x4f01 012476 isub temp ,null 
+0x4f02 012477 rtn 
+:      012479 le_att_same_type:
+0x4f03 012480 fetcht 1 ,mem_le_search_att_type_length 
+0x4f04 012481 arg mem_le_search_att_type ,rega 
+:      012482 le_att_check_same_common:
+0x4f05 012483 fetch 1 ,mem_le_cur_uuid_lenth 
+0x4f06 012484 copy pdata ,loopcnt 
+0x4f07 012485 isub temp ,null 
+0x4f08 012486 nrtn zero 
+0x4f09 012487 arg mem_le_cur_uuid ,regb 
+0x4f0a 012488 branch string_compare 
+:      012490 le_att_same_uuid:
+0x4f0b 012491 fetcht 1 ,mem_le_search_uuid_length 
+0x4f0c 012492 arg mem_le_search_uuid ,rega 
+0x4f0d 012493 branch le_att_check_same_common 
+:      012496 le_store_att_record:
+0x4f0e 012497 fetch 1 ,mem_le_search_len 
+0x4f0f 012498 store 1 ,mem_tmp_buffer 
+0x4f10 012499 copy pdata ,loopcnt 
+0x4f11 012500 call get_contr 
+0x4f12 012501 branch memcpy_fast 
+:      012503 le_send_auto_len_by_mem:
+0x4f13 012504 call get_contw 
+0x4f14 012505 branch le_send_autolen 
+:      012507 le_write_att_record:
+0x4f15 012508 call get_contw 
+0x4f16 012509 fetch 2 ,mem_le_cur_handle_start 
+0x4f17 012510 istore 2 ,contw 
+0x4f18 012511 fetch 2 ,mem_le_cur_handle_end 
+0x4f19 012512 istore 2 ,contw 
+:      012513 le_write_att_record_common:
+0x4f1a 012514 fetch 1 ,mem_tmp_buffer 
+0x4f1b 012515 copy pdata ,loopcnt 
+0x4f1c 012516 call memcpy_fast 
+0x4f1d 012517 branch store_contw 
+:      012519 le_send_att_write_request:
+0x4f1e 012520 fetch 2 ,mem_le_notify_handle 
+0x4f1f 012521 store 2 ,mem_le_l2cap_response 
+0x4f20 012522 fetch 1 ,mem_le_handle_data_len 
+0x4f21 012523 copy pdata ,loopcnt 
+0x4f22 012524 arg mem_le_handle_data ,contr 
+0x4f23 012525 call memcpy_fast 
+0x4f24 012526 branch le_send_autolen 
+:      012529 le_send_att_write_response:
+0x4f25 012530 force 5 ,temp 
+0x4f26 012531 branch le_send_packet 
+:      012533 le_send_att_prepare_write_request:
+0x4f27 012534 force 6 ,temp 
+0x4f28 012535 branch le_send_packet 
+:      012537 le_send_att_continue:
+0x4f29 012538 fetch 1 ,mem_le_continue_type 
+0x4f2a 012539 beq le_continue_type_notification ,le_send_att_notify_continue 
+0x4f2b 012540 beq le_continue_type_prepare_write_response ,le_send_att_prepare_write_response_continue 
+0x4f2c 012541 jam le_continue_type_null ,mem_le_continue_type 
+0x4f2d 012542 rtn 
+:      012544 le_send_att_notify_continue:
+0x4f2e 012545 fetch 2 ,mem_cb_update_notify_continue 
+0x4f2f 012546 branch callback_func 
+:      012548 le_send_att_prepare_write_response_continue:
+0x4f30 012549 fetch 2 ,mem_prepare_write_len 
+0x4f31 012550 branch assert ,blank 
+0x4f32 012551 fetcht 2 ,mem_prepare_write_offest 
+0x4f33 012552 branch assert ,blank 
+0x4f34 012553 isub temp ,pdata 
+0x4f35 012554 arg 27 ,temp 
+0x4f36 012555 call not_greater_than 
+0x4f37 012556 copy pdata ,loopcnt 
+0x4f38 012561 arg mem_temp_prepare_write_request ,rega 
+0x4f39 012562 fetch 2 ,mem_prepare_write_offest 
+0x4f3a 012563 iadd rega ,rega 
+0x4f3b 012564 iadd loopcnt ,pdata 
+0x4f3c 012565 store 2 ,mem_prepare_write_offest 
+0x4f3d 012566 fetcht 2 ,mem_prepare_write_len 
+0x4f3e 012567 isub temp ,temp 
+0x4f3f 012568 ncall le_send_att_insert_continue ,zero 
+0x4f40 012569 jam le_continue_type_prepare_write_response ,mem_le_continue_type 
+0x4f41 012570 arg mem_le_txpayload ,contw 
+0x4f42 012571 copy rega ,contr 
+0x4f43 012572 call memcpy_fast 
+0x4f44 012573 arg 1 ,type 
+0x4f45 012574 branch le_send_not_fill_l2cap_len 
+:      012577 le_send_att_prepare_write_response:
+0x4f46 012578 fetch 2 ,mem_prepare_write_len 
+0x4f47 012579 branch assert ,blank 
+0x4f48 012580 add pdata ,5 ,temp 
+0x4f49 012581 storet 2 ,mem_le_txpayload 
+0x4f4a 012582 arg 18 ,temp 
+0x4f4b 012583 call not_greater_than 
+0x4f4c 012584 copy pdata ,loopcnt 
+0x4f4d 012585 store 2 ,mem_prepare_write_offest 
+0x4f4e 012588 fetcht 2 ,mem_prepare_write_len 
+0x4f4f 012589 isub temp ,temp 
+0x4f50 012590 ncall le_send_att_insert_continue ,zero 
+0x4f51 012591 jam le_continue_type_prepare_write_response ,mem_le_continue_type 
+0x4f52 012592 arg 0x02 ,type 
+0x4f53 012596 fetch 2 ,mem_prepare_handle 
+0x4f54 012597 store 2 ,mem_le_l2cap + 1 
+0x4f55 012598 fetch 2 ,mem_le_prepare_write_req_offset 
+0x4f56 012599 istore 2 ,contw 
+0x4f57 012604 arg mem_temp_prepare_write_request ,contr 
+0x4f58 012605 call memcpy_fast 
+:      012606 le_send_not_fill_l2cap_len:
+0x4f59 012607 setarg mem_le_txpayload 
+0x4f5a 012608 isub contw ,pdata 
+0x4f5b 012609 sub pdata ,0 ,temp 
+0x4f5c 012610 storet 1 ,mem_le_txlen 
+0x4f5d 012611 branch le_send_non_l2cap 
+:      012614 le_send_att_insert_continue:
+0x4f5e 012615 fetch 3 ,mem_le_xtype_fifo 
+0x4f5f 012616 nbranch le_send_att_insert_cont_next ,blank 
+0x4f60 012617 jam attop_continue ,mem_le_xtype_fifo + 2 
+0x4f61 012618 rtn 
+:      012619 le_send_att_insert_cont_next:
+0x4f62 012620 call le_xtype_fifo_is_near_full 
+0x4f63 012621 nbranch assert ,blank 
+0x4f64 012622 jam attop_continue ,mem_le_xtype_fifo + 1 
+0x4f65 012623 rtn 
+:      012627 le_send_att_execute_write_request:
+0x4f66 012628 force 6 ,temp 
+0x4f67 012629 branch le_send_packet 
+:      012631 le_send_att_execute_write_response:
+0x4f68 012632 force 5 ,temp 
+0x4f69 012633 branch le_send_packet 
+:      012635 le_att_check_notification_enable:
+0x4f6a 012636 set1 mark_ext_patch ,mark 
+0x4f6b 012637 bpatch patch26_7 ,mem_patch26 
+0x4f6c 012638 increase 1 ,temp 
+0x4f6d 012639 call le_att_get_handle_ptr 
+0x4f6e 012640 increase -2 ,contr 
+0x4f6f 012641 ifetch 2 ,contr 
+0x4f70 012642 arg client_charactertic_configuration ,temp 
+0x4f71 012643 isub temp ,null 
+0x4f72 012644 nrtn zero 
+0x4f73 012645 increase 1 ,contr 
+0x4f74 012646 copy contr ,rega 
+0x4f75 012647 ifetch 1 ,contr 
+0x4f76 012648 rtn 
+:      012650 le_send_att_handle_value_notification:
+0x4f77 012651 fetch 2 ,mem_cb_update_notify_value 
+0x4f78 012652 branch callback_func 
+:      012654 le_send_att_handle_value_indication:
+0x4f79 012655 force 6 ,temp 
+0x4f7a 012656 branch le_send_packet 
+:      012658 le_send_att_handle_value_confirmation:
+0x4f7b 012659 force 6 ,temp 
+0x4f7c 012660 branch le_send_packet 
+:      012662 le_send_att_write_command:
+0x4f7d 012663 force 6 ,temp 
+0x4f7e 012664 branch le_send_packet 
+:      012666 le_send_att_signed_write_command:
+0x4f7f 012667 force 6 ,temp 
+0x4f80 012668 branch le_send_packet 
+:      012671 le_send_autolen:
+0x4f81 012672 set1 mark_ext_patch ,mark 
+0x4f82 012673 bpatch patch27_0 ,mem_patch27 
+0x4f83 012674 setarg mem_le_txpayload 
+0x4f84 012675 isub contw ,pdata 
+0x4f85 012676 sub pdata ,0 ,temp 
+0x4f86 012677 branch le_send_packet 
+:      012680 le_send_empty:
+0x4f87 012681 force 0 ,temp 
+0x4f88 012682 force 1 ,type 
+:      012684 le_send_packet:
+0x4f89 012685 set1 mark_ext_patch ,mark 
+0x4f8a 012686 bpatch patch27_1 ,mem_patch27 
+0x4f8b 012687 storet 1 ,mem_le_txlen 
+0x4f8c 012688 compare 2 ,type ,3 
+0x4f8d 012689 nbranch le_send_non_l2cap ,true 
+0x4f8e 012690 add temp ,-4 ,pdata 
+0x4f8f 012691 store 2 ,mem_le_txpayload 
+:      012693 le_send_non_l2cap:
+0x4f90 012694 fetcht 1 ,mem_le_arq 
+0x4f91 012695 call le_xtype_fifo_is_empty 
+:      012696 le_send_non_l2cap1:
+0x4f92 012697 nsetflag blank ,md ,temp 
+:      012698 le_send_non_l2cap2:
+0x4f93 012699 set1 wak ,temp 
+0x4f94 012700 and temp ,0xfc ,pdata 
+0x4f95 012701 ior type ,pdata 
+0x4f96 012702 store 1 ,mem_le_arq 
+0x4f97 012703 and_into 0x1f ,pdata 
+0x4f98 012704 store 1 ,mem_le_txheader 
+0x4f99 012705 set1 mark_ext_patch ,mark 
+0x4f9a 012706 bpatch patch27_2 ,mem_patch27 
+0x4f9b 012707 fetch 1 ,mem_le_txheader 
+0x4f9c 012708 compare 1 ,type ,3 
+0x4f9d 012709 nbranch le_send_no_txlen ,true 
+0x4f9e 012710 fetch 1 ,mem_le_txlen 
+0x4f9f 012711 rtn blank 
+:      012712 le_send_no_txlen:
+0x4fa0 012713 fetch 7 ,mem_le_txheader + 1 
+0x4fa1 012714 fetch 1 ,mem_le_state 
+0x4fa2 012715 rtnbit0 lestate_encryption 
+0x4fa3 012716 call load_sk 
+0x4fa4 012717 branch le_encrypt 
+:      012719 le_parse:
+0x4fa5 012720 set1 mark_ext_patch ,mark 
+0x4fa6 012721 bpatch patch27_3 ,mem_patch27 
+0x4fa7 012722 call le_xtype_fifo_is_full 
+0x4fa8 012723 nbranch assert ,blank 
+0x4fa9 012724 nrtn blank 
+0x4faa 012725 fetch 1 ,mem_le_rxbuf + 1 
+0x4fab 012726 rtn blank 
+0x4fac 012727 fetch 1 ,mem_le_rxbuf 
+0x4fad 012728 compare 1 ,pdata ,3 
+0x4fae 012729 branch le_parse_continue ,true 
+0x4faf 012730 fetch 7 ,mem_le_rxbuf + 1 
+0x4fb0 012731 fetch 1 ,mem_le_rxbuf 
+0x4fb1 012732 compare 2 ,pdata ,3 
+0x4fb2 012733 branch le_parse_l2cap ,true 
+:      012734 le_parse0:
+0x4fb3 012735 fetch 1 ,mem_le_rxbuf + 2 
+0x4fb4 012736 store 1 ,mem_le_rx_ll_opcode 
+0x4fb5 012737 copy pdata ,regc 
+0x4fb6 012738 set1 mark_ext_patch ,mark 
+0x4fb7 012739 bpatch patch27_4 ,mem_patch27 
+0x4fb8 012740 copy regc ,pdata 
+0x4fb9 012741 beq ll_connection_update_req ,le_parse_connection_update_req 
+0x4fba 012742 beq ll_channel_map_req ,le_parse_channel_map_req 
+0x4fbb 012743 beq ll_terminate_ind ,le_parse_terminate_ind 
+0x4fbc 012744 beq ll_enc_req ,le_parse_enc_req 
+0x4fbd 012745 beq ll_enc_rsp ,le_parse_enc_rsp 
+0x4fbe 012746 beq ll_start_enc_req ,le_parse_start_enc_req 
+0x4fbf 012747 beq ll_start_enc_rsp ,le_parse_start_enc_rsp 
+0x4fc0 012748 beq ll_unknown_rsp ,le_parse_unknown_rsp 
+0x4fc1 012749 beq ll_feature_req ,le_parse_feature_req 
+0x4fc2 012750 beq ll_feature_rsp ,le_parse_feature_rsp 
+0x4fc3 012751 beq ll_pause_enc_req ,le_parse_pause_enc_req 
+0x4fc4 012752 beq ll_pause_enc_rsp ,le_parse_pause_enc_rsp 
+0x4fc5 012753 beq ll_version_ind ,le_parse_version_ind 
+0x4fc6 012754 beq ll_reject_ind ,le_parse_reject_ind 
+0x4fc7 012755 beq ll_ping_req ,le_parse_ping_req 
+0x4fc8 012756 store 1 ,mem_le_ll_cur_opcode 
+0x4fc9 012757 jam xt_ll_unknown_rsp ,mem_fifo_temp 
+0x4fca 012758 branch le_xtype_fifo_in 
+:      012760 le_parse_l2cap:
+0x4fcb 012761 fetch 1 ,mem_le_rxbuf + 1 
+0x4fcc 012762 and pdata ,0x1f ,pdata 
+0x4fcd 012763 rtn blank 
+0x4fce 012764 fetch 2 ,mem_le_rxbuf + 2 
+0x4fcf 012765 store 2 ,mem_le_l2cap_pdu_length 
+0x4fd0 012766 fetch 2 ,mem_le_rxbuf + 4 
+0x4fd1 012767 beq le_l2cap_cid_att ,le_parse_att 
+0x4fd2 012768 beq le_l2cap_cid_smp ,le_parse_smp 
+0x4fd3 012769 rtn 
+:      012771 le_parse_continue_att:
+0x4fd4 012772 jam le_continue_flag_rx ,mem_le_continue_flag 
+0x4fd5 012773 fetch 1 ,mem_le_att_opcode 
+0x4fd6 012774 beq attop_write_request ,le_parse_l2cap_continue_write_request 
+0x4fd7 012775 beq attop_prepare_write_request ,le_parse_l2cap_continue_prepare_write_request 
+0x4fd8 012776 beq attop_write_command ,le_parse_l2cap_continue_write_command 
+0x4fd9 012777 jam le_continue_flag_null ,mem_le_continue_flag 
+0x4fda 012778 rtn 
+:      012781 le_parse_l2cap_continue_common:
+0x4fdb 012782 fetch 1 ,mem_le_rxbuf + 1 
+0x4fdc 012783 icopy regb 
+0x4fdd 012784 arg mem_le_rxbuf + 2 ,rega 
+0x4fde 012785 call le_writeatt_cb 
+0x4fdf 012787 fetch 1 ,mem_le_rxbuf + 1 
+0x4fe0 012788 fetcht 2 ,mem_le_buff_len 
+0x4fe1 012789 iadd temp ,pdata 
+0x4fe2 012791 store 2 ,mem_le_buff_len 
+0x4fe3 012792 fetcht 2 ,mem_le_buff_len_all 
+0x4fe4 012793 isub temp ,null 
+0x4fe5 012794 rtn 
+:      012796 le_parse_l2cap_continue_write_command:
+0x4fe6 012797 call le_parse_l2cap_continue_common 
+0x4fe7 012798 nrtn zero 
+0x4fe8 012799 jam le_continue_flag_null ,mem_le_continue_flag 
+0x4fe9 012800 rtn 
+:      012802 le_parse_l2cap_continue_write_request:
+0x4fea 012803 call le_parse_l2cap_continue_common 
+0x4feb 012804 nrtn zero 
+0x4fec 012805 jam le_continue_flag_null ,mem_le_continue_flag 
+0x4fed 012806 branch le_parse_att_write_request_end 
+:      012808 le_parse_l2cap_continue_prepare_write_request:
+0x4fee 012809 fetcht 2 ,mem_prepare_write_len 
+0x4fef 012810 fetch 1 ,mem_le_rxbuf + 1 
+0x4ff0 012811 icopy loopcnt 
+0x4ff1 012812 iadd temp ,pdata 
+0x4ff2 012813 store 2 ,mem_prepare_write_len 
+0x4ff3 012815 arg mem_temp_prepare_write_request ,pdata 
+0x4ff4 012816 iadd temp ,contw 
+0x4ff5 012817 arg mem_le_rxbuf + 2 ,contr 
+0x4ff6 012818 call memcpy_fast 
+0x4ff7 012820 call le_parse_l2cap_continue_common 
+0x4ff8 012821 nrtn zero 
+0x4ff9 012822 jam le_continue_flag_null ,mem_le_continue_flag 
+0x4ffa 012823 branch le_parse_att_prepare_write_request_end 
+:      012829 le_parse_smp:
+0x4ffb 012830 set1 mark_ext_patch ,mark 
+0x4ffc 012831 bpatch patch27_5 ,mem_patch27 
+0x4ffd 012832 ifetch 1 ,contr 
+0x4ffe 012833 beq smp_pairing_request ,le_parse_smp_pairing_request 
+0x4fff 012834 beq smp_pairing_response ,le_parse_smp_pairing_response 
+0x5000 012835 beq smp_pairing_confirm ,le_parse_smp_pairing_confirm 
+0x5001 012836 beq smp_pairing_random ,le_parse_smp_pairing_random 
+0x5002 012837 beq smp_pairing_failed ,le_parse_smp_pairing_failed 
+0x5003 012838 beq smp_encryption_information ,le_parse_smp_encryption_information 
+0x5004 012839 beq smp_master_identification ,le_parse_smp_master_identification 
+0x5005 012840 beq smp_identity_information ,le_parse_smp_identity_information 
+0x5006 012841 beq smp_identity_address_information ,le_parse_smp_identity_address_information 
+0x5007 012842 beq smp_signing_information ,le_parse_smp_signing_information 
+0x5008 012843 beq smp_security_request ,le_parse_smp_security_request 
+0x5009 012844 beq smp_pairing_public_key ,le_parse_smp_public_key 
+0x500a 012845 beq smp_pairing_dhkey_check ,le_parse_smp_dhkey_check 
+0x500b 012846 jam xt_smp_pairing_failed ,mem_fifo_temp 
+0x500c 012847 branch le_xtype_fifo_in 
+:      012849 le_parse_att:
+0x500d 012850 set1 mark_ext_patch ,mark 
+0x500e 012851 bpatch patch27_6 ,mem_patch27 
+0x500f 012852 ifetch 3 ,contr 
+0x5010 012853 store 3 ,mem_le_att_opcode 
+0x5011 012855 beq attop_exchange_mtu_request ,le_parse_att_exchange_mtu_request 
+0x5012 012856 beq attop_exchange_mtu_response ,le_parse_att_exchange_mtu_response 
+0x5013 012857 beq attop_find_information_request ,le_parse_att_find_information_request 
+0x5014 012859 beq attop_find_by_type_value_request ,le_parse_att_find_by_type_value_request 
+0x5015 012861 beq attop_read_by_type_request ,le_parse_att_read_by_type_request 
+0x5016 012863 beq attop_read_request ,le_parse_att_read_request 
+0x5017 012865 beq attop_read_blob_request ,le_parse_att_read_blob_request 
+0x5018 012867 beq attop_read_multiple_request ,le_parse_att_read_multiple_request 
+0x5019 012869 beq attop_read_by_group_type_request ,le_parse_att_read_by_group_type_request 
+0x501a 012871 beq attop_write_request ,le_parse_att_write_request 
+0x501b 012873 beq attop_prepare_write_request ,le_parse_att_prepare_write_request 
+0x501c 012875 beq attop_execute_write_request ,le_parse_att_execute_write_request 
+0x501d 012880 beq attop_write_command ,le_parse_att_write_command 
+0x501e 012882 rtn 
+:      012885 le_parse_connection_update_req:
+0x501f 012886 ifetch 9 ,contr 
+0x5020 012887 store 9 ,mem_le_new_param 
+0x5021 012888 ifetch 2 ,contr 
+0x5022 012889 store 2 ,mem_le_instant 
+0x5023 012890 fetch 1 ,mem_le_state 
+0x5024 012891 set1 lestate_update_param ,pdata 
+0x5025 012892 store 1 ,mem_le_state 
+0x5026 012893 fetch 1 ,mem_device_option 
+0x5027 012894 rtnne dvc_op_shutter 
+0x5028 012895 jam 0 ,mem_lpm_mode 
+0x5029 012896 jam 30 ,mem_shutter_conn_update_timer 
+0x502a 012897 rtn 
+:      012899 le_parse_channel_map_req:
+0x502b 012900 ifetch 5 ,contr 
+0x502c 012901 store 5 ,mem_le_new_map 
+0x502d 012902 ifetch 2 ,contr 
+0x502e 012903 store 2 ,mem_le_instant 
+0x502f 012904 fetch 1 ,mem_le_state 
+0x5030 012905 set1 lestate_update_map ,pdata 
+0x5031 012906 store 1 ,mem_le_state 
+0x5032 012907 rtn 
+:      012909 le_parse_terminate_ind:
+0x5033 012910 fetch 1 ,mem_device_option 
+0x5034 012911 bne dvc_op_shutter ,le_parse_terminate_ind_common 
+0x5035 012912 jam 1 ,mem_shutter_key_data_flag_1 
+:      012913 le_parse_terminate_ind_common:
+0x5036 012914 setarg 20 
+0x5037 012915 store 2 ,mem_le_superto 
+0x5038 012916 rtn 
+:      012918 le_parse_enc_req:
+0x5039 012919 ifetch 8 ,contr 
+0x503a 012920 store 8 ,mem_le_rand 
+0x503b 012921 ifetch 2 ,contr 
+0x503c 012922 store 2 ,mem_le_ediv 
+0x503d 012923 ifetch 8 ,contr 
+0x503e 012924 store 8 ,mem_le_skdm 
+0x503f 012925 ifetch 4 ,contr 
+0x5040 012926 store 4 ,mem_le_ivm 
+0x5041 012927 jam xt_ll_enc_rsp ,mem_fifo_temp 
+0x5042 012928 call le_xtype_fifo_in 
+0x5043 012929 jam flag_le_enc_start ,mem_le_enc_state 
+0x5044 012930 fetch 1 ,mem_le_pairing_state 
+0x5045 012931 rtneq flag_le_pairing_after_auth 
+0x5046 012932 fetch 1 ,mem_device_option 
+0x5047 012933 beq dvc_op_shutter ,load_device_list_mode_4_shutter 
+0x5048 012934 rtnne dvc_op_module 
+0x5049 012935 branch load_device_list_mode_4 
+:      012937 le_parse_enc_rsp:
+0x504a 012938 ifetch 8 ,contr 
+0x504b 012939 store 8 ,mem_le_skds 
+0x504c 012940 ifetch 4 ,contr 
+0x504d 012941 store 4 ,mem_le_ivs 
+0x504e 012942 branch generate_sk 
+:      012944 le_parse_start_enc_req:
+0x504f 012945 fetch 1 ,mem_le_state 
+0x5050 012946 set1 lestate_encryption ,pdata 
+0x5051 012947 store 1 ,mem_le_state 
+0x5052 012948 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+0x5053 012949 branch le_xtype_fifo_in 
+:      012951 le_parse_start_enc_rsp:
+0x5054 012952 rtn master 
+0x5055 012953 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+0x5056 012954 call le_xtype_fifo_in 
+0x5057 012955 jam bt_evt_le_start_enc ,mem_fifo_temp 
+0x5058 012956 branch ui_ipc_send_event 
+:      012958 le_parse_unknown_rsp:
+0x5059 012959 rtn 
+:      012961 le_parse_feature_req:
+0x505a 012962 jam xt_ll_feature_rsp ,mem_fifo_temp 
+0x505b 012963 branch le_xtype_fifo_in 
+:      012965 le_parse_feature_rsp:
+0x505c 012966 rtn 
+:      012968 le_parse_pause_enc_req:
+0x505d 012969 jam flag_le_enc_pause ,mem_le_enc_state 
+0x505e 012970 jam xt_ll_pause_enc_rsp ,mem_fifo_temp 
+0x505f 012971 call le_xtype_fifo_in 
+0x5060 012972 jam bt_evt_le_pause_enc ,mem_fifo_temp 
+0x5061 012973 branch ui_ipc_send_event 
+:      012976 le_parse_pause_enc_rsp:
+0x5062 012977 rtn 
+:      012979 le_parse_ping_req:
+0x5063 012980 jam xt_ll_ping_rsp ,mem_fifo_temp 
+0x5064 012981 branch le_xtype_fifo_in 
+:      012983 le_parse_version_ind:
+0x5065 012984 rtn master 
+0x5066 012985 jam xt_ll_version_ind ,mem_fifo_temp 
+0x5067 012986 branch le_xtype_fifo_in 
+:      012988 le_parse_reject_ind:
+0x5068 012989 rtn 
+:      012992 le_parse_smp_pairing_request:
+0x5069 012993 store 1 ,mem_le_preq 
+0x506a 012994 ifetch 6 ,contr 
+0x506b 012995 istore 6 ,contw 
+0x506c 012996 jam xt_smp_pairing_response ,mem_fifo_temp 
+0x506d 012997 call le_xtype_fifo_in 
+0x506e 012998 fetch 1 ,mem_device_option 
+0x506f 012999 beq dvc_op_shutter ,le_parse_smp_pairing_request_shutter 
+0x5070 013000 call le_check_master_support_secure_connect 
+0x5071 013001 jam flag_le_pairing_start ,mem_le_pairing_state 
+0x5072 013002 fetch 1 ,mem_le_preq_iocap 
+0x5073 013003 beq flag_iocap_displayonly ,le_set_tk_0 
+0x5074 013004 beq flag_iocap_displayyesno ,le_set_tk_0 
+0x5075 013005 beq flag_iocap_noinputnooutput ,le_set_tk_0 
+0x5076 013006 fetch 1 ,mem_le_pairing_mode 
+0x5077 013007 beq le_pairing_mode_lagacy_passkey ,le_genernate_tk 
+:      013008 le_set_tk_0:
+0x5078 013009 arg 0 ,pdata 
+0x5079 013010 store 4 ,mem_le_tk 
+0x507a 013011 rtn 
+:      013012 le_parse_smp_pairing_request_shutter:
+0x507b 013013 jam 1 ,mem_shutter_key_data_flag 
+0x507c 013014 rtn 
+:      013016 le_genernate_tk:
+0x507d 013017 arg mem_le_tk ,rega 
+0x507e 013018 copy rega ,contw 
+0x507f 013019 arg 3 ,loopcnt 
+0x5080 013020 call generate_random_loop 
+0x5081 013021 fetch 2 ,mem_le_tk + 2 
+0x5082 013022 and_into 0x7 ,pdata 
+0x5083 013023 store 2 ,mem_le_tk + 2 
+0x5084 013024 jam bt_evt_le_tk_generate ,mem_fifo_temp 
+0x5085 013025 branch ui_ipc_send_event 
+:      013027 le_check_master_support_secure_connect:
+0x5086 013028 fetch 1 ,mem_le_preq_auth 
+0x5087 013029 rtnbit1 le_auth_secure_connection_pairing_bit 
+0x5088 013030 fetch 1 ,mem_le_pairing_mode 
+0x5089 013031 rtnbit0 le_pairing_mode_secure_connect_bit 
+0x508a 013032 branch app_ble_disconnect 
+:      013035 le_parse_smp_pairing_response:
+0x508b 013036 store 1 ,mem_le_pres 
+0x508c 013037 ifetch 6 ,contr 
+0x508d 013038 istore 6 ,contw 
+0x508e 013039 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x508f 013040 branch le_xtype_fifo_in 
+:      013042 le_parse_smp_pairing_confirm:
+0x5090 013043 copy contr ,rega 
+0x5091 013044 fetch 1 ,mem_le_pairing_mode 
+0x5092 013045 beq le_pairing_mode_secure_connect_passkey ,le_parse_smp_pairing_confirm_secure_passkey 
+0x5093 013046 copy rega ,contr 
+0x5094 013047 arg mem_le_rconfirm ,contw 
+0x5095 013048 call memcpy16 
+0x5096 013049 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x5097 013050 branch le_xtype_fifo_in ,master 
+0x5098 013051 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x5099 013052 branch le_xtype_fifo_in 
+:      013053 le_parse_smp_pairing_confirm_secure_passkey:
+0x509a 013054 copy rega ,contr 
+0x509b 013055 arg mem_le_rconfirm ,contw 
+0x509c 013056 call memcpy16 
+0x509d 013057 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x509e 013058 jam le_sc_stat_passkey_wait_confirm ,mem_le_secure_connect_state 
+0x509f 013059 rtn 
+:      013061 le_parse_smp_pairing_random:
+0x50a0 013062 copy contr ,rega 
+0x50a1 013063 fetch 1 ,mem_le_secure_connect_enable 
+0x50a2 013064 beq 1 ,le_parse_smp_pairing_random_sc 
+0x50a3 013065 copy rega ,contr 
+0x50a4 013066 call authenticate_rconfirm 
+0x50a5 013067 branch le_parse_smp_pairing_random_success ,zero 
+:      013068 le_pairing_failed:
+0x50a6 013069 jam xt_smp_pairing_failed ,mem_fifo_temp 
+0x50a7 013070 call le_xtype_fifo_in 
+:      013071 le_parse_smp_pairing_failed:
+0x50a8 013072 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x50a9 013073 jam bt_evt_le_pairing_fail ,mem_fifo_temp 
+0x50aa 013074 branch ui_ipc_send_event 
+:      013076 le_parse_smp_pairing_random_sc:
+0x50ab 013077 arg mem_le_mrand ,contw 
+0x50ac 013078 copy rega ,contr 
+0x50ad 013079 call memcpy16 
+0x50ae 013080 fetch 1 ,mem_le_pairing_mode 
+0x50af 013081 beq le_pairing_mode_secure_connect_passkey ,le_parse_smp_pairing_random_sc_passkey 
+0x50b0 013082 call function_g2 
+0x50b1 013085 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x50b2 013086 call le_xtype_fifo_in 
+0x50b3 013087 fetch 1 ,mem_le_pairing_mode 
+0x50b4 013088 beq le_pairing_mode_secure_connect_numeric ,module_hci_event_le_gkey 
+0x50b5 013089 rtn 
+:      013091 le_parse_smp_pairing_random_sc_passkey:
+0x50b6 013092 call function_f4_ca 
+0x50b7 013093 arg mem_aes_cmac_temp ,contw 
+0x50b8 013094 call load_inverse_result 
+0x50b9 013095 arg mem_aes_cmac_temp ,rega 
+0x50ba 013096 arg mem_le_rconfirm ,regb 
+0x50bb 013097 arg 16 ,loopcnt 
+0x50bc 013098 call string_compare 
+0x50bd 013099 nbranch le_dhkey_check_fail ,zero 
+0x50be 013100 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x50bf 013101 branch le_xtype_fifo_in 
+:      013103 le_parse_smp_pairing_random_success:
+0x50c0 013104 call generate_stk 
+0x50c1 013105 jam bt_evt_le_pairing_success ,mem_fifo_temp 
+0x50c2 013106 call ui_ipc_send_event 
+0x50c3 013107 jam 1 ,mem_ltk_exists 
+0x50c4 013108 jam flag_le_pairing_after_auth ,mem_le_pairing_state 
+0x50c5 013109 jam xt_ll_enc_req ,mem_fifo_temp 
+0x50c6 013110 branch le_xtype_fifo_in ,master 
+0x50c7 013111 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x50c8 013112 branch le_xtype_fifo_in 
+:      013116 le_parse_smp_public_key:
+0x50c9 013117 fetch 1 ,mem_le_rxbuf + 1 
+0x50ca 013118 increase -5 ,pdata 
+0x50cb 013119 store 1 ,mem_le_public_length 
+0x50cc 013120 copy pdata ,loopcnt 
+0x50cd 013121 arg mem_le_pubkey_remote_x_256 ,contw 
+0x50ce 013122 increase 5 ,contr 
+0x50cf 013123 branch memcpy_fast 
+:      013125 le_parse_smp_dhkey_check:
+0x50d0 013126 arg mem_sp_confirm_remote ,contw 
+0x50d1 013127 call memcpy16 
+0x50d2 013128 jam le_sc_stat_receive_dhkey ,mem_le_secure_connect_state 
+0x50d3 013129 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x50d4 013130 rtn 
+:      013131 le_parse_smp_encryption_information:
+0x50d5 013132 arg mem_le_peer_ltk ,contw 
+0x50d6 013133 branch memcpy16 
+:      013135 le_parse_smp_master_identification:
+0x50d7 013136 rtn 
+:      013138 le_parse_smp_identity_information:
+0x50d8 013139 arg mem_le_irk ,contw 
+0x50d9 013140 call memcpy16 
+0x50da 013141 fetch 1 ,mem_le_conn_peer_addr_type 
+0x50db 013142 rtneq master_public_addr 
+0x50dc 013143 fetch 1 ,mem_le_plap + 5 
+0x50dd 013144 compare 0xc0 ,pdata ,0xc0 
+0x50de 013145 rtn true 
+0x50df 013146 branch app_ble_store_reconn_info 
+:      013148 le_parse_smp_identity_address_information:
+0x50e0 013149 jam flag_le_enc_end ,mem_le_enc_state 
+0x50e1 013150 jam flag_le_pairing_end ,mem_le_pairing_state 
+0x50e2 013151 rtn 
+:      013153 le_parse_smp_signing_information:
+0x50e3 013154 rtn 
+:      013156 le_parse_smp_security_request:
+0x50e4 013157 rtn 
+:      013160 le_parse_att_exchange_mtu_response:
+0x50e5 013161 fetch 2 ,mem_le_rxbuf + 7 
+0x50e6 013162 store 2 ,mem_le_remote_mtu 
+0x50e7 013163 rtn 
+:      013165 le_parse_att_exchange_mtu_request:
+0x50e8 013166 call le_parse_att_exchange_mtu_response 
+0x50e9 013167 jam attop_exchange_mtu_response ,mem_fifo_temp 
+0x50ea 013168 branch le_xtype_fifo_in 
+:      013170 le_parse_att_find_information_request:
+0x50eb 013171 call le_get_search_handle_start_end_common 
+0x50ec 013172 jam attop_find_information_response ,mem_fifo_temp 
+0x50ed 013173 branch le_xtype_fifo_in 
+:      013177 le_parse_att_find_by_type_value_request:
+0x50ee 013178 call le_get_search_handle_start_end_common 
+0x50ef 013179 ifetch 2 ,contr 
+0x50f0 013180 store 2 ,mem_le_search_uuid 
+0x50f1 013181 call store_contr 
+0x50f2 013182 arg mem_le_search_att_type_length ,contw 
+0x50f3 013183 fetch 2 ,mem_le_l2cap_pdu_length 
+0x50f4 013184 increase -7 ,pdata 
+0x50f5 013185 call le_get_search_common2 
+0x50f6 013186 jam attop_find_by_type_value_response ,mem_fifo_temp 
+0x50f7 013187 branch le_xtype_fifo_in 
+:      013191 le_parse_att_read_by_type_request:
+0x50f8 013192 call le_get_search_handle_start_end_common 
+0x50f9 013193 call le_get_search_att_uuid 
+0x50fa 013194 jam attop_read_by_type_response ,mem_fifo_temp 
+0x50fb 013195 branch le_xtype_fifo_in 
+:      013198 le_get_search_handle_start_end_common:
+0x50fc 013199 rshift8 pdata ,pdata 
+0x50fd 013200 store 2 ,mem_le_search_handle_start 
+0x50fe 013201 ifetch 2 ,contr 
+0x50ff 013202 store 2 ,mem_le_search_handle_end 
+0x5100 013203 rtn 
+:      013205 le_get_search_att_type:
+0x5101 013206 call store_contr 
+0x5102 013207 arg mem_le_search_att_type_length ,contw 
+:      013208 le_get_search_common:
+0x5103 013209 fetch 2 ,mem_le_l2cap_pdu_length 
+0x5104 013210 increase -5 ,pdata 
+:      013211 le_get_search_common2:
+0x5105 013212 istore 1 ,contw 
+0x5106 013213 copy pdata ,loopcnt 
+0x5107 013214 call get_contr 
+0x5108 013215 branch memcpy_fast 
+:      013217 le_get_search_att_uuid:
+0x5109 013218 call store_contr 
+0x510a 013219 arg mem_le_search_uuid_length ,contw 
+0x510b 013220 branch le_get_search_common 
+:      013225 le_parse_att_read_request:
+0x510c 013226 fetch 2 ,mem_le_rxbuf + 7 
+0x510d 013227 store 2 ,mem_le_att_handle 
+0x510e 013228 jam attop_read_response ,mem_fifo_temp 
+0x510f 013229 branch le_xtype_fifo_in 
+:      013233 le_parse_att_read_blob_request:
+0x5110 013234 ifetch 2 ,contr 
+0x5111 013235 store 2 ,mem_le_att_offset 
+0x5112 013236 jam attop_read_blob_response ,mem_fifo_temp 
+0x5113 013237 branch le_xtype_fifo_in 
+:      013240 le_parse_att_read_multiple_request:
+0x5114 013241 fetch 1 ,mem_le_rxbuf + 1 
+0x5115 013242 increase -5 ,pdata 
+0x5116 013243 rshift pdata ,pdata 
+0x5117 013244 store 1 ,mem_le_temp 
+0x5118 013245 jam attop_read_multiple_response ,mem_fifo_temp 
+0x5119 013246 branch le_xtype_fifo_in 
+:      013249 le_parse_att_read_by_group_type_request:
+0x511a 013250 call le_get_search_handle_start_end_common 
+0x511b 013251 call le_get_search_att_type 
+0x511c 013253 jam attop_read_by_group_type_response ,mem_fifo_temp 
+0x511d 013254 branch le_xtype_fifo_in 
+:      013256 le_parse_att_write_command:
+0x511e 013257 call le_parse_att_write_common 
+0x511f 013258 branch le_check_long_packet_patch 
+:      013260 le_parse_att_write_request:
+0x5120 013261 call le_parse_att_write_common 
+0x5121 013262 call le_check_long_packet_patch 
+0x5122 013263 nrtn zero 
+:      013264 le_parse_att_write_request_end:
+0x5123 013265 jam attop_write_response ,mem_fifo_temp 
+0x5124 013266 branch le_xtype_fifo_in 
+:      013268 le_check_long_packet_patch:
+0x5125 013269 fetch 1 ,mem_le_rxbuf + 1 
+0x5126 013270 increase -4 ,pdata 
+0x5127 013271 store 2 ,mem_le_buff_len 
+0x5128 013272 increase -3 ,pdata 
+0x5129 013274 ifetcht 2 ,contr 
+0x512a 013275 storet 2 ,mem_le_buff_len_all 
+0x512b 013276 storet 2 ,mem_le_buff_data_len_all 
+0x512c 013277 increase -3 ,temp 
+0x512d 013278 isub temp ,null 
+0x512e 013279 rtn 
+:      013281 le_parse_att_write_common:
+0x512f 013282 fetch 1 ,mem_le_rxbuf + 1 
+0x5130 013283 increase -7 ,pdata 
+0x5131 013284 icopy loopcnt 
+0x5132 013285 copy loopcnt ,regb 
+0x5133 013286 fetch 1 ,mem_le_flag 
+0x5134 013287 bbit0 flag_ble_copy_master_data_to_att_list ,le_parse_att_write_common1 
+0x5135 013288 fetcht 2 ,mem_le_att_handle 
+0x5136 013289 call le_att_get_handle_ptr 
+0x5137 013290 rtn blank 
+0x5138 013291 ifetch 1 ,contr 
+0x5139 013292 isub loopcnt ,null 
+0x513a 013293 branch le_parse_att_write_common0 ,positive 
+0x513b 013294 copy pdata ,loopcnt 
+:      013295 le_parse_att_write_common0:
+0x513c 013296 copy contr ,contw 
+0x513d 013297 copy loopcnt ,regb 
+0x513e 013298 arg mem_le_rxbuf + 9 ,contr 
+0x513f 013299 call memcpy_fast 
+:      013300 le_parse_att_write_common1:
+0x5140 013301 arg mem_le_rxbuf + 9 ,rega 
+0x5141 013302 branch le_writeatt_cb 
+:      013305 le_parse_att_prepare_write_request:
+0x5142 013306 fetch 1 ,mem_le_rxbuf + 1 
+0x5143 013307 increase -4 ,pdata 
+0x5144 013308 store 2 ,mem_le_buff_len 
+0x5145 013309 ifetcht 2 ,contr 
+0x5146 013310 storet 2 ,mem_le_buff_len_all 
+0x5147 013311 increase -2 ,temp 
+0x5148 013312 storet 2 ,mem_le_buff_data_len_all 
+0x5149 013314 fetch 1 ,mem_le_rxbuf + 1 
+0x514a 013315 increase -9 ,pdata 
+0x514b 013316 store 2 ,mem_prepare_write_len 
+0x514c 013318 icopy loopcnt 
+0x514d 013319 copy loopcnt ,regb 
+0x514e 013320 fetch 1 ,mem_le_flag 
+0x514f 013321 bbit0 flag_ble_copy_master_data_to_att_list ,le_parse_att_prepare_write_request1 
+0x5150 013322 fetcht 2 ,mem_le_att_handle 
+0x5151 013323 call le_att_get_handle_ptr 
+0x5152 013324 branch le_parse_att_prepare_write_request_end ,blank 
+0x5153 013325 ifetch 1 ,contr 
+0x5154 013326 isub loopcnt ,null 
+0x5155 013327 branch le_parse_att_prepare_write_request0 ,positive 
+0x5156 013328 copy pdata ,loopcnt 
+:      013329 le_parse_att_prepare_write_request0:
+0x5157 013330 copy contr ,contw 
+0x5158 013331 copy loopcnt ,regb 
+0x5159 013332 arg mem_le_rxbuf + 11 ,contr 
+0x515a 013333 call memcpy_fast 
+:      013335 le_parse_att_prepare_write_request1:
+0x515b 013336 copy regb ,loopcnt 
+0x515c 013337 arg mem_temp_prepare_write_request ,contw 
+0x515d 013338 arg mem_le_rxbuf + 11 ,contr 
+0x515e 013339 call memcpy_fast 
+0x515f 013341 arg mem_le_rxbuf + 11 ,rega 
+0x5160 013342 fetch 2 ,mem_le_rxbuf + 9 
+0x5161 013343 store 2 ,mem_le_prepare_write_req_offset 
+0x5162 013344 fetcht 2 ,mem_le_att_handle 
+0x5163 013345 storet 2 ,mem_prepare_handle 
+0x5164 013347 call le_writeatt_cb 
+0x5165 013349 fetch 2 ,mem_le_buff_len 
+0x5166 013350 fetcht 2 ,mem_le_buff_len_all 
+0x5167 013351 isub temp ,null 
+0x5168 013352 nrtn zero 
+:      013353 le_parse_att_prepare_write_request_end:
+0x5169 013354 jam attop_prepare_write_response ,mem_fifo_temp 
+0x516a 013355 branch le_xtype_fifo_in 
+:      013359 le_parse_att_execute_write_request:
+0x516b 013360 jam attop_execute_write_response ,mem_fifo_temp 
+0x516c 013361 branch le_xtype_fifo_in 
+:      013364 le_writeatt_cb:
+0x516d 013365 fetch 2 ,mem_cb_att_write 
+0x516e 013366 rtn blank 
+0x516f 013367 iforce pc 
+:      013369 le_supervision_update:
+0x5170 013370 fetcht 4 ,mem_le_supervision_timer 
+0x5171 013371 call get_clkbt 
+0x5172 013372 isub temp ,timeup 
+0x5173 013373 deposit timeup 
+0x5174 013374 fetcht 2 ,mem_le_superto 
+0x5175 013375 lshift4 temp ,temp 
+0x5176 013376 lshift temp ,temp 
+0x5177 013377 isub temp ,pdata 
+0x5178 013378 rtn 
+:      013380 le_supervision_flush:
+0x5179 013381 call get_clkbt 
+0x517a 013382 store 4 ,mem_le_supervision_timer 
+0x517b 013383 rtn 
+:      013387 le_adv:
+0x517c 013388 jam 36 ,mem_le_ch_mapped 
+:      013389 le_adv_loop:
+0x517d 013390 set1 mark_ext_patch ,mark 
+0x517e 013391 bpatch patch27_7 ,mem_patch27 
+0x517f 013392 fetch 1 ,mem_le_adv_enable 
+0x5180 013393 rtn blank 
+0x5181 013394 arg le_adv_interval_timer ,queue 
+0x5182 013395 call timer_check 
+0x5183 013396 nrtn blank 
+0x5184 013397 disable master 
+0x5185 013398 enable swfine 
+0x5186 013399 call le_init_adv 
+0x5187 013400 call le_next_adv_channel 
+0x5188 013401 call le_send_adv_ind 
+0x5189 013402 nbranch le_adv_not_match ,match 
+0x518a 013403 fetch 1 ,mem_le_req_rcv 
+0x518b 013404 increase 1 ,pdata 
+0x518c 013405 store 1 ,mem_le_req_rcv 
+0x518d 013406 set1 mark_ext_patch ,mark 
+0x518e 013407 bpatch patch28_0 ,mem_patch28 
+0x518f 013408 fetch 1 ,mem_le_rxbuf 
+0x5190 013409 and pdata ,0x0f ,pdata 
+0x5191 013410 beq scan_req ,le_send_scan_response 
+0x5192 013411 beq connect_req ,le_parse_connect_req 
+:      013412 le_adv_not_match:
+0x5193 013413 nop 10000 
+0x5194 013414 fetch 1 ,mem_le_ch_mapped 
+0x5195 013415 bne 39 ,le_adv_loop 
+0x5196 013416 arg le_adv_interval_timer ,queue 
+0x5197 013417 fetch 2 ,mem_le_adv_interval_max 
+0x5198 013418 branch timer_init 
+:      013421 le_receive_window_size:
+0x5199 013422 set1 mark_ext_patch ,mark 
+0x519a 013423 bpatch patch28_1 ,mem_patch28 
+0x519b 013424 fetch 1 ,mem_le_peer_sca 
+0x519c 013425 call le_sca_map 
+0x519d 013426 fetch 2 ,mem_le_tsniff 
+0x519e 013427 imul32 temp ,pdata 
+0x519f 013428 arg 375 ,temp 
+0x51a0 013429 imul32 temp ,pdata 
+0x51a1 013430 arg 100000 ,temp 
+0x51a2 013431 idiv temp 
+0x51a3 013432 fetch 1 ,mem_le_window_size 
+0x51a4 013433 arg 20000 ,temp 
+0x51a5 013434 imul32 temp ,pdata 
+0x51a6 013435 store 4 ,mem_le_transmit_window 
+0x51a7 013436 set1 mark_ext_patch ,mark 
+0x51a8 013437 bpatch patch28_2 ,mem_patch28 
+0x51a9 013438 fetch 2 ,mem_rx_window_sniff 
+0x51aa 013439 call wait_div_end 
+0x51ab 013440 quotient temp 
+0x51ac 013441 iadd temp ,pdata 
+0x51ad 013442 store 2 ,mem_le_receive_window 
+0x51ae 013443 rtn 
+:      013445 le_parse_connect_req:
+0x51af 013446 set1 mark_ext_patch ,mark 
+0x51b0 013447 bpatch patch28_3 ,mem_patch28 
+0x51b1 013448 fetch 6 ,mem_le_rxbuf + 8 
+0x51b2 013449 fetcht 6 ,mem_le_lap 
+0x51b3 013450 isub temp ,null 
+0x51b4 013451 nrtn zero 
+0x51b5 013452 call le_scan_check_sender_addr_type 
+0x51b6 013453 copy rega ,pdata 
+0x51b7 013454 store 1 ,mem_le_conn_peer_addr_type 
+0x51b8 013455 fetch 7 ,mem_le_rxbuf + 21 
+0x51b9 013456 store 7 ,mem_tmp_buffer 
+0x51ba 013457 ifetch 8 ,contr 
+0x51bb 013458 istore 8 ,contw 
+0x51bc 013459 fetch 6 ,mem_le_rxbuf + 2 
+0x51bd 013460 store 6 ,mem_le_plap 
+0x51be 013461 set1 mark_ext_patch ,mark 
+0x51bf 013462 bpatch patch28_4 ,mem_patch28 
+0x51c0 013463 increase 6 ,contr 
+0x51c1 013464 ifetch 8 ,contr 
+0x51c2 013465 store 8 ,mem_le_access 
+0x51c3 013466 ifetcht 2 ,contr 
+0x51c4 013467 lshift2 temp ,temp 
+0x51c5 013468 ifetch 2 ,contr 
+0x51c6 013469 lshift2 pdata ,pdata 
+0x51c7 013470 store 2 ,mem_le_tsniff 
+0x51c8 013471 store 4 ,mem_le_anchor 
+0x51c9 013472 isub temp ,pdata 
+0x51ca 013473 add pdata ,-2 ,clke_bt 
+0x51cb 013474 ifetch 9 ,contr 
+0x51cc 013475 store 9 ,mem_le_slave_latency 
+0x51cd 013476 set1 mark_ext_patch ,mark 
+0x51ce 013477 bpatch patch28_5 ,mem_patch28 
+0x51cf 013478 ifetch 1 ,contr 
+0x51d0 013479 rshift4 pdata ,temp 
+0x51d1 013480 rshift temp ,temp 
+0x51d2 013481 storet 1 ,mem_le_peer_sca 
+0x51d3 013482 and_into 0x1f ,pdata 
+0x51d4 013483 store 1 ,mem_le_hop 
+0x51d5 013484 call le_receive_window_size 
+0x51d6 013485 call le_calc_channel_map 
+0x51d7 013486 call le_init_slave 
+0x51d8 013487 call context_new 
+0x51d9 013488 nrtn zero 
+0x51da 013489 set1 mark_ext_patch ,mark 
+0x51db 013490 bpatch patch28_6 ,mem_patch28 
+0x51dc 013491 call calc_clke_offset 
+0x51dd 013492 jam bt_evt_le_connected ,mem_fifo_temp 
+0x51de 013493 call ui_ipc_send_event 
+0x51df 013495 branch context_save 
+:      013498 le_init_attlist_search:
+0x51e0 013499 set1 mark_ext_patch ,mark 
+0x51e1 013500 bpatch patch28_7 ,mem_patch28 
+0x51e2 013501 fetch 2 ,mem_le_search_handle_start 
+0x51e3 013502 iforce regb 
+0x51e4 013503 fetch 2 ,mem_le_search_handle_end 
+0x51e5 013504 iforce regc 
+0x51e6 013505 fetch 2 ,mem_ui_le_uuid_table 
+0x51e7 013506 iforce contr 
+0x51e8 013507 enable user 
+0x51e9 013508 rtn 
+:      013511 le_att_handle_inrange:
+0x51ea 013512 ifetch 2 ,contr 
+0x51eb 013513 rtn blank 
+0x51ec 013514 isub regb ,null 
+0x51ed 013515 nrtn positive 
+0x51ee 013516 isub regc ,null 
+0x51ef 013517 rtn zero 
+0x51f0 013518 branch le_att_handle_blank ,positive 
+0x51f1 013519 force 1 ,null 
+0x51f2 013520 rtn 
+:      013521 le_att_handle_blank:
+0x51f3 013522 force 0 ,pdata 
+0x51f4 013523 rtn 
+:      013527 le_att_get_handle_ptr:
+0x51f5 013528 call le_att_get_handle_ptr2 
+0x51f6 013529 branch le_att_get_handle_ptr_found ,zero 
+0x51f7 013530 rtn 
+:      013532 le_att_get_handle_ptr2:
+0x51f8 013533 set1 mark_ext_patch ,mark 
+0x51f9 013534 bpatch patch29_0 ,mem_patch29 
+0x51fa 013535 fetch 2 ,mem_ui_le_uuid_table 
+0x51fb 013536 iforce contr 
+:      013537 le_att_get_handle_loop1:
+0x51fc 013538 ifetch 2 ,contr 
+0x51fd 013539 rtn blank 
+0x51fe 013540 isub temp ,null 
+0x51ff 013541 rtn zero 
+0x5200 013542 ifetch 1 ,contr 
+0x5201 013543 iadd contr ,contr 
+0x5202 013544 ifetch 1 ,contr 
+0x5203 013545 iadd contr ,contr 
+0x5204 013546 branch le_att_get_handle_loop1 
+:      013547 le_att_get_handle_ptr_found:
+0x5205 013548 ifetch 1 ,contr 
+0x5206 013549 iadd contr ,contr 
+0x5207 013550 rtn 
+:      013554 le_att_get_short_uuid_ptr:
+0x5208 013555 set1 mark_ext_patch ,mark 
+0x5209 013556 bpatch patch29_1 ,mem_patch29 
+0x520a 013557 fetch 2 ,mem_ui_le_uuid_table 
+0x520b 013558 iforce contr 
+:      013559 le_att_get_short_uuid_loop:
+0x520c 013560 ifetch 2 ,contr 
+0x520d 013561 rtn blank 
+0x520e 013562 ifetch 1 ,contr 
+0x520f 013563 iadd contr ,contr 
+0x5210 013564 increase -2 ,contr 
+0x5211 013565 ifetch 2 ,contr 
+0x5212 013566 isub temp ,null 
+0x5213 013567 rtn zero 
+0x5214 013568 ifetch 1 ,contr 
+0x5215 013569 iadd contr ,contr 
+0x5216 013570 branch le_att_get_short_uuid_loop 
+:      013574 le_att_get_handle_info_from_ptr:
+0x5217 013575 fetch 2 ,mem_le_cur_attlist_start_ptr 
+0x5218 013576 copy pdata ,contr 
+0x5219 013577 branch le_att_get_handle_info + 1 
+:      013579 le_att_get_handle_info:
+0x521a 013580 set1 mark_ext_patch ,mark 
+0x521b 013581 bpatch patch29_2 ,mem_patch29 
+0x521c 013582 fetch 2 ,mem_ui_le_uuid_table 
+0x521d 013583 iforce contr 
+0x521e 013584 copy temp ,rega 
+:      013585 le_att_get_handle_loop:
+0x521f 013586 ifetch 2 ,contr 
+0x5220 013587 branch le_att_unfind_handle ,blank 
+0x5221 013588 isub rega ,null 
+0x5222 013589 branch le_att_finded_handle ,zero 
+0x5223 013590 ifetch 1 ,contr 
+0x5224 013591 iadd contr ,contr 
+0x5225 013592 ifetch 1 ,contr 
+0x5226 013593 iadd contr ,contr 
+0x5227 013594 branch le_att_get_handle_loop 
+:      013595 le_att_unfind_handle:
+0x5228 013596 setarg 1 
+0x5229 013597 rtn 
+:      013598 le_att_finded_handle:
+0x522a 013599 ifetch 1 ,contr 
+0x522b 013600 store 1 ,mem_le_cur_uuid_lenth 
+0x522c 013601 copy pdata ,loopcnt 
+0x522d 013602 arg mem_le_cur_uuid ,contw 
+0x522e 013603 call memcpy_fast 
+0x522f 013604 ifetch 1 ,contr 
+0x5230 013605 store 1 ,mem_le_search_len 
+0x5231 013606 call store_contr 
+0x5232 013607 setarg 0 
+0x5233 013608 rtn 
+:      013612 le_modified_name:
+0x5234 013613 set1 mark_ext_patch ,mark 
+0x5235 013614 bpatch patch29_3 ,mem_patch29 
+0x5236 013615 call le_modified_name_att_list 
+0x5237 013616 branch le_modified_name_adv 
+:      013618 le_modified_name_att_list:
+0x5238 013619 arg uuid_chrctr_device_name ,temp 
+0x5239 013620 call le_att_get_short_uuid_ptr 
+0x523a 013621 rtn blank 
+0x523b 013622 ifetch 1 ,contr 
+0x523c 013623 copy contr ,contw 
+0x523d 013624 fetcht 1 ,mem_le_name_len 
+0x523e 013625 copy temp ,loopcnt 
+0x523f 013626 isub temp ,null 
+0x5240 013627 nbranch le_name_length_longer_than_att ,positive 
+0x5241 013628 isub temp ,temp 
+0x5242 013629 arg mem_le_name ,contr 
+0x5243 013630 call memcpy 
+0x5244 013631 copy temp ,loopcnt 
+0x5245 013632 ncall memcpy_empty ,zero 
+0x5246 013633 rtn 
+:      013634 le_name_length_longer_than_att:
+0x5247 013635 copy pdata ,loopcnt 
+0x5248 013636 arg mem_le_name ,contr 
+0x5249 013637 branch memcpy_fast 
+:      013640 le_modified_name_adv:
+0x524a 013641 arg mem_le_adv_data_len + 32 ,regc 
+0x524b 013642 arg mem_le_adv_data ,rega 
+0x524c 013643 call le_modified_name_adv_and_scan 
+0x524d 013644 setarg 0 
+0x524e 013645 setflag user ,0 ,pdata 
+0x524f 013646 store 1 ,mem_pdatatemp 
+0x5250 013647 arg mem_le_scan_data_len + 32 ,regc 
+0x5251 013648 arg mem_le_scan_data ,rega 
+0x5252 013649 call le_modified_name_adv_and_scan 
+0x5253 013650 rtn user 
+0x5254 013651 fetch 1 ,mem_pdatatemp 
+0x5255 013652 branch assert ,blank 
+0x5256 013653 rtn 
+:      013656 le_modified_name_adv_and_scan:
+0x5257 013657 set1 mark_ext_patch ,mark 
+0x5258 013658 bpatch patch29_4 ,mem_patch29 
+0x5259 013659 call enable_usr 
+0x525a 013660 call clear_temp_block 
+0x525b 013661 arg 0 ,regb 
+0x525c 013662 arg mem_le_data_temp ,contw 
+0x525d 013663 call le_modified_name_adv_loop 
+0x525e 013664 fetch 1 ,mem_le_name_len 
+0x525f 013665 add pdata ,1 ,temp 
+0x5260 013666 iadd regb ,rega 
+0x5261 013667 increase 2 ,rega 
+0x5262 013668 sub rega ,0x1f ,null 
+0x5263 013669 nbranch le_modified_name_adv_and_scan_name_overflow ,positive 
+0x5264 013670 istoret 1 ,contw 
+0x5265 013671 arg 0x09 ,temp 
+0x5266 013672 istoret 1 ,contw 
+0x5267 013673 iforce loopcnt 
+0x5268 013674 call memcpy_fast 
+0x5269 013675 copy rega ,regb 
+:      013676 le_modified_name_adv_and_scan_store_data:
+0x526a 013677 deposit regb 
+0x526b 013678 store 1 ,mem_le_data_len_temp 
+0x526c 013679 arg mem_le_data_len_temp ,contr 
+0x526d 013680 setarg -32 
+0x526e 013681 iadd regc ,contw 
+0x526f 013682 branch memcpy32 
+:      013684 le_modified_name_adv_and_scan_name_overflow:
+0x5270 013685 call disable_usr 
+0x5271 013686 branch le_modified_name_adv_and_scan_store_data 
+:      013688 le_modified_name_adv_loop:
+0x5272 013689 ifetch 1 ,rega 
+0x5273 013690 rtn blank 
+0x5274 013691 pincrease 1 
+0x5275 013692 ifetcht 1 ,contr 
+0x5276 013693 sub temp ,0x09 ,null 
+0x5277 013694 branch le_modified_name_adv_found_name ,zero 
+0x5278 013695 iadd regb ,regb 
+0x5279 013696 copy rega ,contr 
+0x527a 013697 iforce loopcnt 
+0x527b 013698 call memcpy_fast 
+0x527c 013699 copy contr ,rega 
+:      013700 le_modified_name_adv_loop2:
+0x527d 013701 deposit rega 
+0x527e 013702 isub regc ,null 
+0x527f 013703 rtn positive 
+0x5280 013704 branch le_modified_name_adv_loop 
+:      013706 le_modified_name_adv_found_name:
+0x5281 013707 iadd rega ,rega 
+0x5282 013708 branch le_modified_name_adv_loop2 
+:      013711 memcpy_empty:
+0x5283 013712 setarg space 
+0x5284 013713 istore 1 ,contw 
+0x5285 013714 loop memcpy_empty 
+0x5286 013715 rtn 
+:      013718 le_lpm_set_mult:
+0x5287 013719 set1 mark_ext_patch ,mark 
+0x5288 013720 bpatch patch29_5 ,mem_patch29 
+0x5289 013721 disable wake 
+0x528a 013722 branch le_lpm_set_mult_attempt ,attempt 
+0x528b 013723 nbranch le_lpm_lost ,match 
+:      013724 le_lpm_set_mult_attempt:
+0x528c 013725 call lpm_match 
+0x528d 013726 fetch 2 ,mem_rx_window_sniff 
+0x528e 013727 store 2 ,mem_le_receive_window 
+0x528f 013728 fetch 1 ,mem_le_rxbuf 
+0x5290 013729 compare 1 ,pdata ,3 
+0x5291 013730 nbranch lpm_mult_short ,true 
+0x5292 013731 fetch 1 ,mem_le_txheader 
+0x5293 013732 compare 1 ,pdata ,3 
+0x5294 013733 nbranch lpm_mult_short ,true 
+0x5295 013734 fetch 2 ,mem_cb_le_set_mult 
+0x5296 013735 call callback_func 
+0x5297 013736 fetch 1 ,mem_le_state 
+0x5298 013737 bbit1 lestate_update_param ,lpm_mult_short 
+0x5299 013738 branch lpm_mult_wait_timeout 
+:      013740 le_lpm_lost:
+0x529a 013741 fetcht 2 ,mem_rx_window_sniff 
+0x529b 013742 rshift temp ,temp 
+0x529c 013743 fetch 2 ,mem_le_receive_window 
+0x529d 013744 iadd temp ,pdata 
+0x529e 013745 store 2 ,mem_le_receive_window 
+0x529f 013746 branch lpm_lost 
+:      013748 le_clean_att_list_handle_enable:
+0x52a0 013749 set1 mark_ext_patch ,mark 
+0x52a1 013750 bpatch patch29_6 ,mem_patch29 
+0x52a2 013751 jam 0 ,mem_le_switch_send_data 
+0x52a3 013752 fetcht 2 ,mem_le_notify_handle 
+0x52a4 013753 call le_att_check_notification_enable 
+0x52a5 013754 copy rega ,contw 
+0x52a6 013755 setarg 0 
+0x52a7 013756 istore 1 ,contw 
+0x52a8 013757 rtn 
+:      013762 le_secure_connect_sm:
+0x52a9 013763 fetch 1 ,mem_le_secure_connect_enable 
+0x52aa 013764 rtneq 0 
+0x52ab 013765 fetch 1 ,mem_le_secure_connect_flag 
+0x52ac 013766 rtnne le_sp_flag_commit_256 
+0x52ad 013767 set1 mark_ext_patch ,mark 
+0x52ae 013768 bpatch patch2a_0 ,mem_patch2a 
+0x52af 013769 jam sp_flag_standby ,mem_le_secure_connect_flag 
+0x52b0 013770 fetch 1 ,mem_le_secure_connect_state 
+0x52b1 013771 beq le_sc_stat_receive_public_key ,le_sc_receive_public_key 
+0x52b2 013772 beq le_sc_stat_wait_send_public_key ,le_sc_wait_send_public_key 
+0x52b3 013773 beq le_sc_stat_send_public_key ,le_sc_send_public_key 
+0x52b4 013774 beq le_sc_stat_receive_dhkey ,le_sc_receive_dhkey 
+0x52b5 013775 beq le_sc_stat_wait_confirm_gkey ,le_sc_wait_confirm_gkey 
+0x52b6 013776 beq le_sc_stat_passkey_wait_confirm ,le_sc_passkey_wait_confirm 
+0x52b7 013777 rtn 
+:      013780 le_sc_passkey_wait_confirm:
+0x52b8 013781 fetch 1 ,mem_authentication_passkey_times 
+0x52b9 013782 copy pdata ,queue 
+0x52ba 013783 increase 1 ,pdata 
+0x52bb 013784 store 1 ,mem_authentication_passkey_times 
+0x52bc 013785 fetch 4 ,mem_le_tk 
+0x52bd 013786 qisolate1 pdata 
+0x52be 013787 setarg 0x80 
+0x52bf 013788 setflag true ,0 ,pdata 
+0x52c0 013789 store 1 ,mem_passkey_1bit 
+0x52c1 013790 branch le_sc_ready_send_pairing_confirm 
+:      013792 le_sc_wait_confirm_gkey:
+0x52c2 013793 fetch 1 ,mem_le_sc_confirm_gkey_flag 
+0x52c3 013794 jam flag_le_sc_confrim_null ,mem_le_sc_confirm_gkey_flag 
+0x52c4 013795 beq flag_le_sc_confrim_gkey_ok ,le_sc_confirm_gkey_ok 
+0x52c5 013796 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52c6 013797 rtn 
+:      013799 le_sc_confirm_gkey_ok:
+0x52c7 013800 jam flag_le_pairing_after_auth ,mem_le_pairing_state 
+0x52c8 013801 jam xt_smp_pairing_dhkey_check ,mem_fifo_temp 
+0x52c9 013802 branch le_xtype_fifo_in 
+:      013804 le_sc_receive_dhkey:
+0x52ca 013805 fetch 1 ,mem_sp_dhkey_invalid 
+0x52cb 013806 beq sp_key_valid_256 ,le_dhkey_ready 
+0x52cc 013807 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52cd 013808 rtn 
+:      013810 le_dhkey_ready:
+0x52ce 013811 call function_f5 
+0x52cf 013815 fetch 1 ,mem_le_pairing_mode 
+0x52d0 013816 beq le_pairing_mode_secure_connect_passkey ,le_sc_confirm_gkey_ok_passkey 
+0x52d1 013817 call le_set_tk_0 
+:      013818 le_dhkey_ready_common:
+0x52d2 013819 call function_f6_ea 
+0x52d3 013820 arg mem_aes_cmac_temp ,rega 
+0x52d4 013821 arg mem_sp_confirm_remote ,regb 
+0x52d5 013822 arg 16 ,loopcnt 
+0x52d6 013823 call string_compare 
+0x52d7 013824 branch le_dhkey_check_ok ,zero 
+:      013825 le_dhkey_check_fail:
+0x52d8 013826 branch le_pairing_failed 
+:      013827 le_sc_confirm_gkey_ok_passkey:
+0x52d9 013830 branch le_dhkey_ready_common 
+:      013832 le_dhkey_check_ok:
+0x52da 013833 jam 1 ,mem_ltk_exists 
+0x52db 013834 fetch 1 ,mem_le_pairing_mode 
+0x52dc 013835 beq le_pairing_mode_secure_connect_justwork ,le_sc_confirm_gkey_ok 
+0x52dd 013836 beq le_pairing_mode_secure_connect_passkey ,le_sc_confirm_gkey_ok 
+0x52de 013837 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52df 013838 jam le_sc_stat_wait_confirm_gkey ,mem_le_secure_connect_state 
+0x52e0 013839 rtn 
+:      013841 le_sc_send_public_key:
+0x52e1 013842 fetch 1 ,mem_le_pairing_mode 
+0x52e2 013843 beq le_pairing_mode_secure_connect_passkey ,le_sc_send_public_key_passkey 
+0x52e3 013844 jam 0 ,mem_passkey_1bit 
+:      013845 le_sc_ready_send_pairing_confirm:
+0x52e4 013846 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x52e5 013847 branch le_xtype_fifo_in 
+:      013849 le_sc_send_public_key_passkey:
+0x52e6 013853 jam 0 ,mem_authentication_passkey_times 
+0x52e7 013855 branch le_genernate_tk 
+:      013857 le_sc_receive_public_key:
+0x52e8 013859 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52e9 013860 fetch 1 ,mem_le_sc_local_key_invalid 
+0x52ea 013861 beq sp_key_valid_256 ,le_public_key_ready 
+0x52eb 013863 rtn 
+:      013865 le_public_key_ready:
+0x52ec 013866 jam sp_key_invalid ,mem_sp_dhkey_invalid 
+0x52ed 013867 call sp_dhkey_calc_256 
+0x52ee 013868 jam le_sc_stat_wait_send_public_key ,mem_le_secure_connect_state 
+0x52ef 013869 rtn 
+:      013873 le_sc_wait_send_public_key:
+0x52f0 013874 call le_xtype_fifo_is_empty 
+0x52f1 013875 branch le_public_key_ready_send ,blank 
+0x52f2 013876 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52f3 013877 rtn 
+:      013878 le_public_key_ready_send:
+0x52f4 013879 jam xt_smp_pairing_public_key ,mem_fifo_temp 
+0x52f5 013880 call le_xtype_fifo_in 
+0x52f6 013881 jam xt_smp_pairing_public_key ,mem_fifo_temp 
+0x52f7 013882 call le_xtype_fifo_in 
+0x52f8 013883 jam xt_smp_pairing_public_key ,mem_fifo_temp 
+0x52f9 013884 branch le_xtype_fifo_in 
+:      013890 le_pairing_public_key_continue:
+0x52fa 013891 arg mem_le_pubkey_remote_x_256 ,pdata 
+0x52fb 013892 fetcht 1 ,mem_le_public_length 
+0x52fc 013893 iadd temp ,contw 
+0x52fd 013895 fetch 1 ,mem_le_rxbuf + 1 
+0x52fe 013896 copy pdata ,loopcnt 
+0x52ff 013897 iadd temp ,temp 
+0x5300 013898 call memcpy_fast 
+0x5301 013899 storet 1 ,mem_le_public_length 
+0x5302 013900 copy temp ,pdata 
+0x5303 013902 rtnne 64 
+0x5304 013903 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x5305 013904 jam le_sc_stat_receive_public_key ,mem_le_secure_connect_state 
+0x5306 013905 rtn 
+:      013906 le_parse_continue:
+0x5307 013907 set1 mark_ext_patch ,mark 
+0x5308 013908 bpatch patch2a_1 ,mem_patch2a 
+0x5309 013909 fetch 1 ,mem_le_public_length 
+0x530a 013910 bne 0 ,le_pairing_public_key_continue 
+0x530b 013911 branch le_parse_continue_att 
+:      013917 init_lmp:
+0x530c 013918 rtn wake 
+:      013919 init_lmp_work:
+0x530d 013920 set1 mark_ext_patch ,mark 
+0x530e 013921 bpatch patch2a_2 ,mem_patch2a 
+0x530f 013922 setarg 0 
+0x5310 013923 store 1 ,mem_lmp_to_send 
+0x5311 013924 store 1 ,mem_conn_sm 
+0x5312 013925 store 1 ,mem_lmo_opcode1 
+0x5313 013926 store 1 ,mem_lmo_opcode2 
+0x5314 013927 store 1 ,mem_esco_addr 
+0x5315 013928 store 1 ,mem_auth_enable 
+0x5316 013929 store 1 ,mem_connection_options 
+0x5317 013930 store 1 ,mem_pairing_auth 
+0x5318 013931 jam switch_flag_init ,mem_switch_flag 
+0x5319 013932 jam 0 ,mem_switch_fail_master_count 
+0x531a 013933 jam null_encryp ,mem_wait_encryption 
+:      013934 init_lmp_reinit:
+0x531b 013935 jam 0 ,mem_pairing_auth 
+0x531c 013936 jam 0 ,mem_sp_localsm 
+0x531d 013937 jam 0 ,mem_lmp_conn_state 
+:      013939 parse_rx_done:
+0x531e 013940 rtn 
+:      013942 parse_lmp:
+0x531f 013943 set1 mark_ext_patch ,mark 
+0x5320 013944 bpatch patch2a_3 ,mem_patch2a 
+0x5321 013945 call setlocalsm_master ,master 
+0x5322 013946 ncall setlocalsm_slave ,master 
+0x5323 013947 call lmo_fifo_check 
+0x5324 013948 nrtn blank 
+0x5325 013949 fetch 1 ,mem_state_map 
+0x5326 013950 rtnbit0 smap_rxlmp 
+0x5327 013951 set0 smap_rxlmp ,pdata 
+0x5328 013952 set0 mark_rxbuf_inuse ,mark 
+0x5329 013953 store 1 ,mem_state_map 
+0x532a 013954 fetch 1 ,mem_rxbuf 
+0x532b 013955 fetcht 1 ,mem_state_map 
+0x532c 013956 isolate1 smap_lmptidinit ,pdata 
+0x532d 013957 setflag true ,smap_lmptid ,temp 
+0x532e 013958 storet 1 ,mem_state_map 
+0x532f 013959 and_into 0x2 ,temp 
+0x5330 013960 storet 1 ,mem_lmo_tid2 
+0x5331 013961 fetcht 1 ,mem_state_map 
+0x5332 013962 rshift pdata ,pdata 
+0x5333 013963 store 1 ,mem_lmi_opcode2 
+0x5334 013964 set1 mark_ext_patch ,mark 
+0x5335 013965 bpatch patch2a_4 ,mem_patch2a 
+0x5336 013966 fetch 1 ,mem_lmi_opcode2 
+0x5337 013967 beq lmp_escape ,parse_lmp_escape 
+0x5338 013968 beq lmp_accepted ,parse_lmp_accepted 
+0x5339 013969 beq lmp_not_accepted ,parse_lmp_not_accepted 
+0x533a 013970 beq lmp_set_afh ,parse_lmp_set_afh 
+0x533b 013971 beq lmp_clkoffset_req ,parse_lmp_clkoffset_req 
+0x533c 013972 beq lmp_encryption_mode_req ,parse_lmp_encryption_mode_req 
+0x533d 013973 beq lmp_encryption_key_size_req ,parse_lmp_crypt_key 
+0x533e 013974 beq lmp_auto_rate ,parse_lmp_auto_rate 
+0x533f 013975 beq lmp_test_control ,parse_lmp_test_control 
+0x5340 013976 beq lmp_test_activate ,parse_lmp_test_activate 
+0x5341 013977 beq lmp_setup_complete ,parse_lmp_setup_complete 
+0x5342 013978 beq lmp_supervision_timeout ,parse_lmp_supervision_timeout 
+0x5343 013979 beq lmp_features_req ,parse_lmp_features_req 
+0x5344 013980 beq lmp_host_connection_req ,parse_lmp_conn_req 
+0x5345 013981 beq lmp_version_req ,parse_lmp_version_req 
+0x5346 013982 beq lmp_version_res ,parse_lmp_version_res 
+0x5347 013983 beq lmp_detach ,parse_lmp_detach 
+0x5348 013984 beq lmp_max_slot ,parse_lmp_max_slot 
+0x5349 013985 beq lmp_max_slot_req ,parse_lmp_max_slot_req 
+0x534a 013986 beq lmp_name_req ,parse_lmp_name_req 
+0x534b 013987 beq lmp_name_res ,parse_lmp_name_res 
+0x534c 013988 beq lmp_features_res ,parse_lmp_features_res 
+0x534d 013989 beq lmp_comb_key ,parse_lmp_comb_key 
+0x534e 013990 beq lmp_au_rand ,parse_lmp_au_rand 
+0x534f 013991 beq lmp_in_rand ,parse_lmp_in_rand 
+0x5350 013992 beq lmp_sres ,parse_lmp_sres 
+0x5351 013993 beq lmp_incr_power_req ,parse_lmp_incr_power 
+0x5352 013994 beq lmp_decr_power_req ,parse_lmp_decr_power 
+0x5353 013995 beq lmp_max_power ,parse_lmp_max_power 
+0x5354 013996 beq lmp_min_power ,parse_lmp_min_power 
+0x5355 013997 beq lmp_page_mode_req ,parse_lmp_page_mode_req 
+0x5356 013998 beq lmp_page_scan_mode_req ,parse_lmp_page_scan_mode_req 
+0x5357 013999 beq lmp_preferred_rate ,parse_lmp_preferred_rate 
+0x5358 014000 beq lmp_slot_offset ,parse_lmp_slot_offset 
+0x5359 014001 beq lmp_sniff_req ,parse_lmp_sniff_req 
+0x535a 014002 beq lmp_start_encryption_req ,parse_lmp_start_encryption_req 
+0x535b 014003 beq lmp_stop_encryption_req ,parse_lmp_stop_encryption_req 
+0x535c 014004 beq lmp_switch_req ,parse_lmp_switch_req 
+0x535d 014005 beq lmp_temp_rand ,parse_lmp_temp_rand 
+0x535e 014006 beq lmp_temp_key ,parse_lmp_temp_key 
+0x535f 014007 beq lmp_timing_accuracy_req ,parse_lmp_timing_accuracy_req 
+0x5360 014008 beq lmp_timing_accuracy_res ,parse_lmp_timing_accuracy_res 
+0x5361 014009 beq lmp_unit_key ,parse_lmp_unit_key 
+0x5362 014010 beq lmp_unsniff_req ,parse_lmp_unsniff_req 
+0x5363 014011 beq lmp_use_semi_permanent_key ,parse_lmp_use_semi_permanend_key 
+0x5364 014012 beq lmp_encapsulated_header ,parse_lmp_encapsulated_header 
+0x5365 014013 beq lmp_encapsulated_payload ,parse_lmp_encapsulated_payload 
+0x5366 014014 beq lmp_simple_pairing_confirm ,parse_simple_pairing_confirm 
+0x5367 014015 beq lmp_simple_pairing_number ,parse_lmp_simple_pairing_number 
+0x5368 014016 beq lmp_dhkey_check ,parse_dhkey_check 
+0x5369 014017 beq lmp_clkoffset_res ,parse_lmp_clkoffset_res 
+0x536a 014018 beq lmp_enc_key_size_mask_req ,parse_enc_key_size_mask_req 
+:      014021 reject_unknown_packet:
+0x536b 014022 jam unknown_lmp_pdu ,mem_lmo_reason2 
+:      014023 reject_lmp_packet:
+0x536c 014024 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x536d 014025 rtn 
+:      014027 parse_lmp_clkoffset_req:
+0x536e 014028 jam lmp_clkoffset_res ,mem_lmo_opcode2 
+0x536f 014029 rtn 
+:      014031 parse_enc_key_size_mask_req:
+0x5370 014032 jam lmp_enc_key_size_mask_res ,mem_lmo_opcode2 
+0x5371 014033 rtn 
+:      014035 parse_lmp_set_afh:
+0x5372 014036 fetch 4 ,mem_rxbuf + 1 
+0x5373 014037 lshift pdata ,pdata 
+0x5374 014038 store 4 ,mem_afh_instant 
+0x5375 014039 fetch 1 ,mem_rxbuf + 5 
+0x5376 014040 store 1 ,mem_afh_new_mod 
+0x5377 014041 fetch 5 ,mem_rxbuf + 6 
+0x5378 014042 store 5 ,mem_afh_map_new 
+0x5379 014043 fetch 5 ,mem_rxbuf + 11 
+0x537a 014044 istore 5 ,contw 
+0x537b 014045 fetch 1 ,mem_mode 
+0x537c 014046 set1 afh_change ,pdata 
+0x537d 014047 store 1 ,mem_mode 
+0x537e 014048 rtn 
+:      014049 parse_lmp_escape:
+0x537f 014050 set1 mark_ext_patch ,mark 
+0x5380 014051 bpatch patch2a_5 ,mem_patch2a 
+0x5381 014052 fetch 1 ,mem_rxbuf + 1 
+0x5382 014053 set1 7 ,pdata 
+0x5383 014054 store 1 ,mem_lmi_opcode2 
+0x5384 014055 beq lmp_ext_accepted ,parse_lmpext_accepted 
+0x5385 014056 beq lmp_not_accepted_ext ,parse_lmpext_not_accepted 
+0x5386 014057 beq lmp_sniff_subrating_req ,parse_lmp_sniff_subrating_req 
+0x5387 014058 beq lmp_sniff_subrating_res ,parse_lmp_sniff_subrating_res 
+0x5388 014059 beq lmp_packet_type_table_req ,parse_lmpext_packet_type_table_req 
+0x5389 014060 beq lmp_ext_features_req ,parse_lmpext_features_req 
+0x538a 014061 beq lmp_ext_features_res ,parse_lmpext_features_res 
+0x538b 014062 beq lmp_ext_chn_classification_req ,parse_lmpext_chn_classification_req 
+0x538c 014063 beq lmp_pause_encryption_req ,parse_lmpext_pause_encrypt 
+0x538d 014064 beq lmp_resume_encryption_req ,parse_lmpext_resume_encrypt 
+0x538e 014065 beq lmp_io_cap_req ,parse_lmpext_iocap_req 
+0x538f 014066 beq lmp_io_cap_res ,parse_lmpext_iocap_res 
+0x5390 014067 rtneq lmp_ext_features_res 
+:      014070 reject_unknown_ext_packet:
+0x5391 014071 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+0x5392 014072 jam unknown_lmp_pdu ,mem_lmo_reason2 
+0x5393 014074 rtn 
+:      014075 parse_lmpext_chn_classification_req:
+0x5394 014076 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+0x5395 014077 jam not_support_chn_classification ,mem_lmo_reason2 
+0x5396 014078 rtn 
+:      014080 parse_lmpext_iocap_req:
+0x5397 014081 call iocap_lmpext_load 
+0x5398 014082 jam lmp_io_cap_res ,mem_lmo_opcode2 
+0x5399 014083 rtn 
+:      014085 parse_lmpext_iocap_res:
+0x539a 014086 call iocap_lmpext_load 
+0x539b 014087 branch iocap_lmpext_common 
+:      014089 iocap_lmpext_load:
+0x539c 014090 arg mem_sp_iocap_remote ,contw 
+0x539d 014091 fetch 3 ,mem_rxbuf + 2 
+0x539e 014092 istore 3 ,contw 
+0x539f 014093 rtn 
+:      014095 iocap_lmpext_common:
+0x53a0 014096 branch master_set_mem_master_sp_flag ,true 
+0x53a1 014097 rtn 
+:      014098 parse_lmpext_accepted:
+0x53a2 014099 fetch 1 ,mem_rxbuf + 3 
+0x53a3 014100 set1 7 ,pdata 
+0x53a4 014101 store 1 ,mem_lmi_accepted_opcode 
+0x53a5 014102 beq lmp_packet_type_table_req ,parse_lmpext_accepted_ptt 
+0x53a6 014103 rtn 
+:      014106 parse_lmpext_not_accepted:
+0x53a7 014107 fetch 1 ,mem_rxbuf + 3 
+0x53a8 014108 set1 7 ,pdata 
+0x53a9 014109 store 1 ,mem_lmi_accepted_opcode 
+0x53aa 014110 beq lmp_packet_type_table_req ,parse_lmpext_not_accepted_ptt 
+0x53ab 014111 rtn 
+:      014113 parse_lmpext_accepted_ptt:
+0x53ac 014114 fetch 1 ,mem_ptt 
+0x53ad 014115 fetcht 1 ,mem_state_map 
+0x53ae 014116 nsetflag blank ,smap_edr ,temp 
+0x53af 014117 storet 1 ,mem_state_map 
+:      014118 parse_lmpext_not_accepted_ptt:
+0x53b0 014119 fetch 1 ,mem_state 
+0x53b1 014120 rtnbit0 state_init_seq 
+0x53b2 014121 set0 state_init_seq ,pdata 
+0x53b3 014122 store 1 ,mem_state 
+0x53b4 014123 fetch 1 ,mem_auth_enable 
+0x53b5 014124 nrtn blank 
+0x53b6 014125 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x53b7 014126 rtn 
+:      014128 parse_lmpext_pause_encrypt:
+0x53b8 014129 nbranch parse_lmpext_pause_encrypt_slave ,master 
+0x53b9 014130 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x53ba 014131 branch tid_reply 
+:      014133 parse_lmpext_pause_encrypt_slave:
+0x53bb 014134 jam lmp_pause_encryption_req ,mem_lmo_opcode2 
+0x53bc 014135 rtn 
+:      014137 parse_lmpext_resume_encrypt:
+0x53bd 014140 call tid_reply 
+0x53be 014141 branch lmp_start_encryption 
+:      014143 parse_lmpext_features_req:
+0x53bf 014144 jam lmp_ext_features_res ,mem_lmo_opcode2 
+0x53c0 014145 rtn 
+:      014147 parse_lmpext_features_res:
+0x53c1 014148 fetcht 1 ,mem_rxbuf + 4 
+0x53c2 014149 and temp ,0x1 ,temp 
+0x53c3 014150 storet 1 ,mem_remote_sppcap 
+0x53c4 014151 fetch 1 ,mem_hci_cmd 
+0x53c5 014152 bne hci_cmd_wait_remote_ext_feature ,parse_lmpext_features_res_not_hci 
+0x53c6 014153 jam 0 ,mem_hci_cmd 
+:      014154 parse_lmpext_features_res_not_hci:
+0x53c7 014155 fetch 1 ,mem_conn_sm 
+0x53c8 014156 rtnne conn_sm_wait_features_ext 
+0x53c9 014157 jam conn_sm_send_conn_req ,mem_conn_sm 
+0x53ca 014158 branch process_conn_sm 
+:      014160 parse_lmp_accepted:
+0x53cb 014161 set1 mark_ext_patch ,mark 
+0x53cc 014162 bpatch patch2a_6 ,mem_patch2a 
+0x53cd 014163 fetch 1 ,mem_rxbuf + 1 
+0x53ce 014164 store 1 ,mem_lmi_accepted_opcode 
+0x53cf 014165 beq lmp_host_connection_req ,parse_lmp_accepted_hostconn 
+0x53d0 014166 beq lmp_in_rand ,parse_lmp_accepted_inrand 
+0x53d1 014167 beq lmp_encryption_mode_req ,parse_lmp_accepted_enc_mode 
+0x53d2 014168 beq lmp_encryption_key_size_req ,parse_lmp_accepted_enc_keysize 
+0x53d3 014169 beq lmp_start_encryption_req ,parse_lmp_accepted_start_enc 
+0x53d4 014170 beq lmp_stop_encryption_req ,parse_lmp_accepted_stop_enc 
+0x53d5 014171 beq lmp_unsniff_req ,parse_lmp_accepted_unsniff_req 
+0x53d6 014172 beq lmp_sniff_req ,parse_lmp_accepted_sniff_req 
+0x53d7 014173 beq lmp_switch_req ,parse_lmp_accepted_switch 
+0x53d8 014175 beq lmp_encapsulated_header ,parse_lmp_accepted_encapsulated_header 
+0x53d9 014176 beq lmp_encapsulated_payload ,parse_lmp_accepted_encapsulated_payload 
+0x53da 014177 beq lmp_simple_pairing_number ,parse_lmp_accepted_simple_pairing_number 
+0x53db 014178 beq lmp_dhkey_check ,parse_lmp_accepted_dhkey_check 
+0x53dc 014179 rtn 
+:      014181 parse_lmp_not_accepted:
+0x53dd 014182 set1 mark_ext_patch ,mark 
+0x53de 014183 bpatch patch2a_7 ,mem_patch2a 
+0x53df 014184 fetch 1 ,mem_rxbuf + 1 
+0x53e0 014185 store 1 ,mem_lmi_accepted_opcode 
+0x53e1 014186 beq lmp_name_req ,parse_lmp_not_accepted_name_req 
+0x53e2 014187 beq lmp_host_connection_req ,parse_lmp_not_accepted_hostconn 
+0x53e3 014188 beq lmp_au_rand ,parse_lmp_not_accepted_aurand 
+0x53e4 014189 beq lmp_in_rand ,parse_lmp_not_accepted_inrand 
+0x53e5 014190 beq lmp_switch_req ,parse_lmp_not_accepted_switch 
+0x53e6 014192 beq lmp_simple_pairing_number ,parse_lmp_not_accepted_simple_pairing_number 
+0x53e7 014193 beq lmp_dhkey_check ,parse_lmp_not_accepted_dhkey_check 
+0x53e8 014194 beq lmp_unsniff_req ,parse_lmp_not_accepted_unsniff_req 
+0x53e9 014195 beq lmp_sniff_req ,parse_lmp_not_acdcept_sniff_req 
+0x53ea 014196 rtn 
+:      014198 parse_lmp_accepted_switch:
+0x53eb 014199 jam bt_evt_switch_accept ,mem_fifo_temp 
+0x53ec 014200 call ui_ipc_send_event 
+0x53ed 014201 branch role_switch_prepare0 
+:      014202 parse_lmp_not_accepted_switch:
+0x53ee 014203 jam bt_evt_switch_not_accept ,mem_fifo_temp 
+0x53ef 014204 call ui_ipc_send_event 
+0x53f0 014205 jam switch_flag_not_accept ,mem_switch_flag 
+0x53f1 014206 setarg timer_switch_waite 
+0x53f2 014207 arg switch_wait_timer ,queue 
+0x53f3 014208 branch timer_init 
+:      014211 parse_lmp_accepted_hostconn:
+0x53f4 014214 fetch 1 ,mem_lmp_conn_state 
+0x53f5 014215 set1 received_conn_req ,pdata 
+0x53f6 014216 store 1 ,mem_lmp_conn_state 
+0x53f7 014217 jam bt_evt_bb_connected ,mem_fifo_temp 
+0x53f8 014218 call ui_ipc_send_event 
+0x53f9 014219 jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+:      014221 parse_lmp_accepted_hostconn_ctn:
+0x53fa 014223 fetch 1 ,mem_conn_sm 
+0x53fb 014224 bne conn_sm_wait_conn_accept ,parse_rx_done 
+0x53fc 014227 jam conn_sm_auth_pair ,mem_conn_sm 
+0x53fd 014228 rtn 
+:      014236 parse_lmp_not_accepted_hostconn:
+0x53fe 014237 jam acl_connection_already_exists ,mem_disconn_reason_send 
+0x53ff 014238 jam lmp_detach ,mem_lmo_opcode2 
+0x5400 014240 jam conn_sm_standby ,mem_conn_sm 
+0x5401 014242 branch parse_rx_done ,true 
+0x5402 014243 rtn 
+:      014245 parse_lmp_accepted_inrand:
+0x5403 014246 fetch 1 ,mem_link_key_exists 
+0x5404 014247 nrtn blank 
+0x5405 014248 call clear_linkkey 
+0x5406 014249 call lmp_generate_key 
+0x5407 014250 rtn master 
+0x5408 014251 set1 mark_slave_in_rand_accepted ,mark 
+0x5409 014252 rtn 
+:      014254 parse_lmp_accepted_enc_mode:
+0x540a 014255 nrtn master 
+0x540b 014256 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+0x540c 014257 fetch 1 ,mem_state_map 
+0x540d 014258 rtnbit0 smap_encryption 
+0x540e 014259 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x540f 014260 rtn 
+:      014262 parse_lmp_accepted_enc_keysize:
+0x5410 014263 branch lmp_start_encryption 
+:      014265 parse_lmp_accepted_start_enc:
+0x5411 014266 call send_create_conn_start_l2cap_timer_sm 
+0x5412 014267 fetch 1 ,mem_state 
+0x5413 014268 rtnbit1 state_conn_comp 
+0x5414 014269 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5415 014270 fetch 1 ,mem_conn_sm 
+0x5416 014271 rtnne conn_sm_encrypt_wait 
+0x5417 014272 jam conn_sm_encrypt_wait_clear ,mem_conn_sm 
+0x5418 014273 rtn 
+:      014275 parse_lmp_accepted_stop_enc:
+0x5419 014283 rtn 
+:      014285 parse_lmp_not_accepted_aurand:
+:      014286 parse_lmp_not_accepted_aurand_send_detach:
+0x541a 014287 jam lmp_detach ,mem_lmo_opcode2 
+0x541b 014288 jam other_end_terminated ,mem_disconn_reason_send 
+0x541c 014289 rtn 
+:      014291 parse_lmp_not_accepted_inrand:
+0x541d 014292 fetch 1 ,mem_rxbuf + 2 
+0x541e 014293 beq key_missing ,parse_lmp_inrand_key_missing 
+0x541f 014294 rtnne pairing_not_allowed 
+0x5420 014295 jam pairing_not_allowed ,mem_disconn_reason_send 
+0x5421 014296 jam lmp_detach ,mem_lmo_opcode2 
+0x5422 014297 rtn 
+:      014298 parse_lmp_inrand_key_missing:
+0x5423 014299 jam key_missing ,mem_disconn_reason_send 
+0x5424 014300 jam lmp_detach ,mem_lmo_opcode2 
+0x5425 014301 rtn 
+:      014303 parse_lmp_not_accepted_name_req:
+0x5426 014304 rtn 
+:      014306 parse_lmp_not_accepted_simple_pairing_number:
+0x5427 014307 jam sp_stat_null ,mem_sp_state 
+0x5428 014308 jam lmp_detach ,mem_lmo_opcode2 
+0x5429 014309 branch parse_rx_done 
+:      014311 parse_lmp_not_accepted_dhkey_check:
+0x542a 014312 jam sp_stat_null ,mem_sp_state 
+0x542b 014313 jam lmp_detach ,mem_lmo_opcode2 
+0x542c 014314 branch parse_rx_done 
+:      014315 parse_lmp_not_accepted_unsniff_req:
+0x542d 014316 jam bt_evt_unsniff_not_accept ,mem_fifo_temp 
+0x542e 014317 branch ui_ipc_send_event 
+:      014319 parse_lmp_accepted_unsniff_req:
+0x542f 014320 jam bt_evt_unsniff_accept ,mem_fifo_temp 
+0x5430 014321 call ui_ipc_send_event 
+0x5431 014322 branch sniff_exit 
+:      014324 parse_lmp_accepted_sniff_req:
+0x5432 014325 jam bt_evt_sniff_accept ,mem_fifo_temp 
+0x5433 014326 call ui_ipc_send_event 
+0x5434 014327 setarg 0 
+0x5435 014328 store 2 ,mem_dsniff 
+0x5436 014329 fetch 2 ,mem_sniff_param_interval 
+0x5437 014330 lshift pdata ,pdata 
+0x5438 014331 store 2 ,mem_tsniff 
+0x5439 014332 fetch 1 ,mem_sniff_param_attempt 
+0x543a 014333 store 1 ,mem_sniff_attempt 
+0x543b 014334 fetch 1 ,mem_sniff_param_timeout 
+0x543c 014335 store 1 ,mem_sniff_timeout 
+0x543d 014336 branch sniff_init 
+:      014338 parse_lmp_not_acdcept_sniff_req:
+0x543e 014339 jam bt_evt_sniff_not_accept ,mem_fifo_temp 
+0x543f 014340 branch ui_ipc_send_event 
+:      014342 parse_lmp_crypt_key:
+0x5440 014343 fetcht 1 ,mem_rxbuf + 1 
+0x5441 014344 storet 1 ,mem_key_size 
+0x5442 014345 branch accept_lmp_msg 
+:      014347 parse_lmp_setup_complete:
+0x5443 014348 fetch 1 ,mem_lmp_conn_state 
+0x5444 014349 set1 received_setup_complete ,pdata 
+0x5445 014350 store 1 ,mem_lmp_conn_state 
+0x5446 014351 rtnbit1 sent_setup_complete 
+0x5447 014352 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5448 014353 branch parse_rx_done 
+:      014355 parse_lmp_max_slot:
+0x5449 014358 rtn 
+:      014360 parse_lmp_max_slot_req:
+0x544a 014361 fetch 1 ,mem_max_slot 
+0x544b 014362 fetcht 1 ,mem_rxbuf + 1 
+0x544c 014363 isub temp ,null 
+0x544d 014365 branch accept_lmp_msg ,positive 
+0x544e 014366 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x544f 014367 jam unspecified_error ,mem_lmo_reason2 
+0x5450 014368 jam lmp_max_slot_req ,mem_lmi_opcode2 
+0x5451 014369 rtn 
+:      014371 parse_lmp_detach:
+0x5452 014372 call prepare_disconnect 
+0x5453 014373 branch accept_lmp_msg 
+:      014375 accept_lmp_msg:
+0x5454 014376 jam lmp_accepted ,mem_lmo_opcode2 
+0x5455 014377 rtn 
+:      014379 parse_lmp_incr_power:
+0x5456 014380 jam lmp_max_power ,mem_lmo_opcode2 
+0x5457 014381 rtn 
+:      014383 parse_lmp_decr_power:
+0x5458 014384 jam lmp_min_power ,mem_lmo_opcode2 
+0x5459 014385 rtn 
+:      014387 parse_lmp_version_res:
+0x545a 014388 fetch 1 ,mem_conn_sm 
+0x545b 014389 rtneq conn_sm_wait_version 
+0x545c 014391 jam conn_sm_send_features ,mem_conn_sm 
+0x545d 014393 rtn 
+:      014396 parse_lmp_auto_rate:
+0x545e 014397 rtn 
+:      014399 parse_lmp_in_rand:
+0x545f 014400 call lmp_copy_rand 
+0x5460 014401 jam pincode_state_wait_pincode ,mem_pincode_state 
+0x5461 014402 jam bt_evt_pincode_req ,mem_fifo_temp 
+0x5462 014403 call ui_ipc_send_event 
+0x5463 014405 call tid_check 
+0x5464 014406 nbranch lmp_accept_inrand ,true 
+0x5465 014408 nbranch parse_lmp_inrand_res ,master 
+0x5466 014409 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5467 014410 jam lmp_in_rand ,mem_lmi_opcode2 
+0x5468 014411 jam transaction_collision ,mem_lmo_reason2 
+0x5469 014412 rtn 
+:      014413 parse_lmp_inrand_res:
+0x546a 014414 fetch 1 ,mem_op 
+0x546b 014415 set1 op_inrand_req ,pdata 
+0x546c 014416 store 1 ,mem_op 
+0x546d 014417 rtn 
+:      014420 pop_tid_follow:
+0x546e 014421 fetcht 1 ,mem_state_map 
+0x546f 014422 nsetflag blank ,smap_lmptid ,temp 
+0x5470 014423 storet 1 ,mem_state_map 
+0x5471 014424 rtn 
+:      014427 push_tid_follow:
+0x5472 014428 fetch 1 ,mem_lmo_tid2 
+0x5473 014429 rshift pdata ,pdata 
+0x5474 014430 and_into 1 ,pdata 
+0x5475 014431 rtn 
+:      014433 parse_lmp_au_rand_moudle:
+0x5476 014434 fetch 1 ,mem_device_option 
+0x5477 014435 rtnne dvc_op_module 
+0x5478 014436 fetch 1 ,mem_pairing_auth 
+0x5479 014437 call load_device_list ,blank 
+0x547a 014438 rtn 
+:      014440 parse_lmp_au_rand:
+0x547b 014441 call parse_lmp_au_rand_moudle 
+0x547c 014442 call push_tid_follow 
+0x547d 014443 store 1 ,mem_sres_tid 
+0x547e 014444 call lmp_copy_rand 
+0x547f 014445 jam lmp_sres ,mem_lmo_opcode2 
+0x5480 014446 fetch 1 ,mem_link_key_exists 
+0x5481 014447 nrtn blank 
+0x5482 014448 fetch 1 ,mem_state 
+0x5483 014449 rtnbit1 state_combkey 
+0x5484 014450 jam key_missing ,mem_lmo_reason2 
+0x5485 014451 branch reject_lmp_packet 
+:      014453 parse_lmp_sres:
+0x5486 014454 arg mem_plap ,rega 
+0x5487 014455 call function_e1 
+0x5488 014456 fetch 4 ,mem_rxbuf + 1 
+0x5489 014457 fetcht 4 ,mem_input_store 
+0x548a 014458 isub temp ,null 
+0x548b 014459 branch authentication_ok ,zero 
+0x548c 014460 jam lmp_detach ,mem_lmo_opcode2 
+0x548d 014461 jam authentication_failure_error ,mem_disconn_reason_send 
+0x548e 014462 rtn 
+:      014463 authentication_ok:
+0x548f 014464 call authentication_ok_common 
+0x5490 014465 fetch 1 ,mem_ssp_enable 
+0x5491 014466 branch pairing_success ,blank 
+0x5492 014467 rtn 
+:      014470 authentication_ok_common:
+0x5493 014471 call copy_aco 
+0x5494 014472 call linkkey_ready 
+0x5495 014473 fetch 1 ,mem_op 
+0x5496 014474 isolate1 op_auth_req ,pdata 
+0x5497 014475 set0 op_auth_req ,pdata 
+0x5498 014476 store 1 ,mem_op 
+0x5499 014477 fetch 1 ,mem_conn_sm 
+0x549a 014478 beq conn_sm_auth_wait ,authentication_ok_conn_sm 
+0x549b 014479 beq conn_sm_pairing_wait ,authentication_ok_conn_sm 
+0x549c 014480 rtn 
+:      014481 authentication_ok_conn_sm:
+0x549d 014482 fetch 1 ,mem_pairing_auth 
+0x549e 014483 rtnne defalt_pairing_auth 
+0x549f 014484 fetch 1 ,mem_state_map 
+0x54a0 014485 rtnbit1 smap_encryption 
+0x54a1 014486 branch host_create_conn_encrypt 
+:      014488 parse_lmp_comb_key:
+0x54a2 014489 arg mem_rxbuf + 1 ,rega 
+0x54a3 014490 arg mem_kinit ,regb 
+0x54a4 014491 arg mem_random_number ,contw 
+0x54a5 014492 call xor16 
+0x54a6 014493 arg mem_plap ,rega 
+0x54a7 014494 call generate_linkkey 
+0x54a8 014495 jam lmp_au_rand ,mem_lmo_opcode2 
+0x54a9 014496 fetch 1 ,mem_state 
+0x54aa 014497 bbit0 state_combkey ,lmp_generate_key 
+0x54ab 014498 rtn 
+:      014500 parse_lmp_name_res:
+0x54ac 014501 fetch 2 ,mem_len 
+0x54ad 014502 add pdata ,-3 ,loopcnt 
+0x54ae 014503 fetcht 1 ,mem_rxbuf + 1 
+0x54af 014504 setarg mem_tmp_buffer 
+0x54b0 014505 iadd temp ,contw 
+0x54b1 014506 arg mem_rxbuf + 3 ,contr 
+0x54b2 014507 call memcpy 
+0x54b3 014508 fetcht 1 ,mem_name_offset 
+0x54b4 014509 fetch 1 ,mem_rxbuf + 2 
+0x54b5 014510 isub temp ,pdata 
+0x54b6 014511 sub pdata ,14 ,null 
+0x54b7 014512 branch parse_lmp_name_res_end ,positive 
+0x54b8 014513 add temp ,14 ,pdata 
+0x54b9 014514 store 1 ,mem_name_offset 
+0x54ba 014515 jam lmp_name_req ,mem_lmo_opcode2 
+0x54bb 014516 rtn 
+:      014517 parse_lmp_name_res_end:
+0x54bc 014518 fetch 1 ,mem_state_map 
+0x54bd 014519 set1 smap_name_res ,pdata 
+0x54be 014520 store 1 ,mem_state_map 
+0x54bf 014521 bbit1 smap_name_req ,lmp_disconnect 
+0x54c0 014522 rtn 
+:      014523 parse_lmp_name_req:
+0x54c1 014524 fetch 1 ,mem_rxbuf + 1 
+0x54c2 014525 store 1 ,mem_lmi_opcode2 
+0x54c3 014526 jam lmp_name_res ,mem_lmo_opcode2 
+0x54c4 014527 rtn 
+:      014529 parse_lmp_conn_req:
+0x54c5 014530 branch accept_lmp_msg 
+:      014532 parse_lmp_timing_accuracy_req:
+0x54c6 014533 jam lmp_timing_accuracy_res ,mem_lmo_opcode2 
+0x54c7 014534 rtn 
+:      014536 parse_lmp_features_req:
+0x54c8 014537 jam lmp_features_res ,mem_lmo_opcode2 
+0x54c9 014538 rtn 
+:      014540 parse_lmp_version_req:
+0x54ca 014541 jam lmp_version_res ,mem_lmo_opcode2 
+0x54cb 014542 rtn 
+:      014544 parse_lmp_supervision_timeout:
+0x54cc 014547 rtn 
+:      014551 parse_lmp_sniff_subrating_req:
+0x54cd 014552 fetch 2 ,mem_tsniff 
+0x54ce 014553 iforce temp 
+0x54cf 014554 fetch 1 ,mem_rxbuf + 2 
+0x54d0 014555 store 1 ,mem_subsniff_rate 
+0x54d1 014556 imul32 temp ,temp 
+0x54d2 014557 fetch 2 ,mem_rxbuf + 3 
+0x54d3 014558 lshift pdata ,pdata 
+0x54d4 014559 store 2 ,mem_subsniff_tcmax 
+0x54d5 014560 fetch 4 ,mem_rxbuf + 5 
+0x54d6 014561 lshift pdata ,pdata 
+0x54d7 014562 store 4 ,mem_subsniff_instant 
+0x54d8 014564 deposit temp 
+0x54d9 014565 store 2 ,mem_subsniff_tsniff 
+0x54da 014566 rtn 
+:      014567 parse_lmpext_packet_type_table_req:
+0x54db 014568 fetcht 1 ,mem_ptt 
+0x54dc 014569 fetch 1 ,mem_rxbuf + 2 
+0x54dd 014570 ixor temp ,null 
+0x54de 014571 nbranch reject_unknown_ext_packet ,zero 
+0x54df 014572 isolate1 0 ,pdata 
+0x54e0 014573 fetch 1 ,mem_state_map 
+0x54e1 014574 setflag true ,smap_edr ,pdata 
+0x54e2 014575 store 1 ,mem_state_map 
+0x54e3 014576 jam lmp_ext_accepted ,mem_lmo_opcode2 
+0x54e4 014577 jam lmp_packet_type_table_req ,mem_lmi_opcode2 
+0x54e5 014578 rtn 
+:      014581 parse_lmp_sniff_subrating_res:
+:      014582 parse_lmp_preferred_rate:
+:      014583 parse_lmp_max_power:
+:      014584 parse_lmp_min_power:
+0x54e6 014585 rtn 
+:      014586 parse_lmp_page_mode_req:
+0x54e7 014588 branch accept_lmp_msg 
+:      014589 parse_lmp_page_scan_mode_req:
+0x54e8 014592 branch accept_lmp_msg 
+:      014596 parse_lmp_slot_offset:
+0x54e9 014597 fetch 2 ,mem_rxbuf + 1 
+0x54ea 014598 store 2 ,mem_slot_offset 
+0x54eb 014599 rtn 
+:      014601 parse_lmp_sniff_req_check_sniff_para:
+0x54ec 014602 fetch 2 ,mem_rxbuf + 4 
+0x54ed 014603 fetcht 1 ,mem_lpm_mult 
+0x54ee 014604 imul32 temp ,pdata 
+0x54ef 014605 arg 0x640 ,temp 
+0x54f0 014606 isub temp ,null 
+0x54f1 014608 rtn 
+:      014610 parse_lmp_sniff_req:
+0x54f2 014611 call parse_lmp_sniff_req_check_sniff_para 
+0x54f3 014612 branch lmp_reject_sniff ,positive 
+0x54f4 014613 fetch 1 ,mem_state 
+0x54f5 014614 bbit1 state_insniff ,lmp_reject_sniff 
+0x54f6 014615 fetch 2 ,mem_rxbuf + 2 
+0x54f7 014616 lshift pdata ,pdata 
+0x54f8 014617 store 2 ,mem_dsniff 
+0x54f9 014618 fetch 2 ,mem_rxbuf + 4 
+0x54fa 014619 lshift pdata ,pdata 
+0x54fb 014620 store 2 ,mem_tsniff 
+0x54fc 014621 fetch 2 ,mem_rxbuf + 6 
+0x54fd 014622 store 1 ,mem_sniff_attempt 
+0x54fe 014623 iforce temp 
+0x54ff 014624 fetch 2 ,mem_rxbuf + 8 
+0x5500 014625 store 1 ,mem_sniff_timeout 
+0x5501 014626 isub temp ,null 
+0x5502 014627 nbranch set_big_value_to_attempt ,positive 
+0x5503 014628 store 1 ,mem_sniff_attempt 
+:      014629 set_big_value_to_attempt:
+0x5504 014631 jam lmp_accepted ,mem_lmo_opcode2 
+0x5505 014632 jam lmp_sniff_req ,mem_lmi_opcode2 
+0x5506 014633 rtn 
+:      014635 lmp_reject_sniff:
+0x5507 014636 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5508 014637 branch reject_lmp_packet 
+:      014639 parse_lmp_start_encryption_req:
+0x5509 014640 call accept_lmp_msg 
+0x550a 014641 call lmp_copy_rand 
+0x550b 014642 call function_e3 
+0x550c 014643 branch start_encryption 
+:      014645 parse_lmp_stop_encryption_req:
+0x550d 014646 call accept_lmp_msg 
+0x550e 014647 branch stop_encryption 
+:      014650 parse_lmp_switch_req:
+0x550f 014651 fetch 4 ,mem_rxbuf + 1 
+0x5510 014652 lshift pdata ,pdata 
+0x5511 014654 branch parse_lmp_switch_accept ,master 
+0x5512 014655 fetcht 1 ,mem_link_key_exists 
+0x5513 014656 nbranch parse_lmp_switch_req_clear_mark ,blank 
+:      014657 parse_lmp_switch_req_not_accept:
+0x5514 014658 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5515 014659 jam lmp_switch_req ,mem_lmi_opcode2 
+0x5516 014660 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5517 014661 rtn 
+:      014662 parse_lmp_switch_req_clear_mark:
+0x5518 014663 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x5519 014664 jam 0 ,mem_conn_sm 
+0x551a 014665 branch role_switch_prepare 
+:      014667 parse_lmp_switch_accept:
+0x551b 014668 call role_switch_prepare 
+0x551c 014669 set1 mark_reconn_recieve_switch ,mark 
+0x551d 014670 fetch 1 ,mem_connection_options 
+0x551e 014671 set0 connection_switch ,pdata 
+0x551f 014672 store 1 ,mem_connection_options 
+0x5520 014673 branch accept_lmp_msg 
+:      014677 parse_lmp_temp_rand:
+:      014678 parse_lmp_temp_key:
+:      014679 parse_lmp_timing_accuracy_res:
+:      014680 parse_lmp_unit_key:
+:      014681 parse_lmp_use_semi_permanend_key:
+0x5521 014682 rtn 
+:      014685 parse_lmp_unsniff_req:
+0x5522 014686 jam lmp_accepted ,mem_lmo_opcode2 
+0x5523 014687 jam lmp_unsniff_req ,mem_lmi_opcode2 
+0x5524 014688 jam bt_evt_remote_unsniff ,mem_fifo_temp 
+0x5525 014689 call ui_ipc_send_event 
+0x5526 014690 branch sniff_exit 
+:      014692 parse_lmp_encapsulated_header:
+0x5527 014693 fetch 1 ,mem_rxbuf + 1 
+0x5528 014694 bne encapsulated_major_type_p192 ,parse_lmp_encapsulated_header_reject 
+0x5529 014695 fetch 1 ,mem_rxbuf + 2 
+0x552a 014696 bne encapsulated_minor_type_p192 ,parse_lmp_encapsulated_header_reject 
+0x552b 014697 fetch 1 ,mem_rxbuf + 3 
+0x552c 014698 bne encapsulated_len_p192 ,parse_lmp_encapsulated_header_reject 
+0x552d 014699 call check_localsm 
+0x552e 014700 branch parse_lmp_encapsulated_header_master ,true 
+0x552f 014701 jam sp_stat_key_recv ,mem_sp_state 
+:      014702 parse_lmp_encapsulated_header_master:
+0x5530 014703 jam lmp_accepted ,mem_lmo_opcode2 
+0x5531 014704 jam lmp_encapsulated_header ,mem_lmi_opcode2 
+0x5532 014705 branch parse_rx_done 
+:      014707 parse_lmp_encapsulated_header_reject:
+0x5533 014708 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5534 014709 branch reject_lmp_packet 
+:      014711 parse_lmp_accepted_encapsulated_header:
+0x5535 014714 jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+0x5536 014716 rtn 
+:      014717 parse_lmp_accepted_simple_pairing_number:
+0x5537 014718 fetch 1 ,mem_ssp_mode_flag 
+0x5538 014719 beq ssp_mode_ssp_pin_flag ,parse_lmp_accepted_simple_pairing_number_ssp_pin 
+0x5539 014720 beq ssp_mode_passkey_entry_flag ,parse_lmp_accepted_simple_pairing_number_passkey 
+:      014721 parse_lmp_accepted_simple_pairing_number_common:
+0x553a 014722 call check_localsm 
+0x553b 014723 rtn true 
+0x553c 014724 jam sp_stat_confirm_recv ,mem_sp_state 
+0x553d 014725 rtn 
+:      014727 parse_lmp_accepted_simple_pairing_number_ssp_pin:
+0x553e 014728 call g_noninit_number_confirm 
+0x553f 014729 jam bt_evt_bt_gkey_generate ,mem_fifo_temp 
+0x5540 014730 call ui_ipc_send_event 
+0x5541 014731 branch parse_lmp_accepted_simple_pairing_number_common 
+:      014734 parse_lmp_accepted_simple_pairing_number_passkey:
+0x5542 014735 call check_localsm 
+0x5543 014736 rtn true 
+0x5544 014737 fetch 1 ,mem_authentication_passkey_times 
+0x5545 014738 beq 19 ,authentication_passkey_end 
+0x5546 014739 increase 1 ,pdata 
+0x5547 014740 store 1 ,mem_authentication_passkey_times 
+:      014743 authentication_passkey:
+0x5548 014744 jam sp_flag_commit ,mem_sp_flag 
+0x5549 014745 jam sp_stat_commit_calc ,mem_sp_state 
+0x554a 014746 fetch 1 ,mem_authentication_passkey_times 
+0x554b 014747 copy pdata ,queue 
+0x554c 014748 fetch 6 ,mem_pin 
+0x554d 014749 qisolate1 pdata 
+0x554e 014750 setarg 0x80 
+0x554f 014751 setflag true ,0 ,pdata 
+0x5550 014752 store 1 ,mem_passkey_1bit 
+0x5551 014753 rtn 
+:      014755 authentication_passkey_end:
+0x5552 014756 jam sp_stat_confirm_recv ,mem_sp_state 
+0x5553 014757 rtn 
+:      014759 parse_lmp_accepted_dhkey_check:
+0x5554 014760 call parse_lmp_accepted_dhkey_check_common 
+:      014761 pairing_success:
+0x5555 014762 fetch 1 ,mem_flag_pairing_state 
+0x5556 014763 rtn blank 
+0x5557 014764 jam flag_pairing_state_not_pairing ,mem_flag_pairing_state 
+0x5558 014765 jam bt_evt_bt_pairing_success ,mem_fifo_temp 
+0x5559 014766 branch ui_ipc_send_event 
+:      014769 parse_lmp_accepted_dhkey_check_common:
+0x555a 014771 call check_localsm 
+0x555b 014772 ncall g_noninit ,true 
+0x555c 014773 call g_init ,true 
+0x555d 014774 call check_localsm 
+0x555e 014775 rtn true 
+0x555f 014776 jam sp_stat_link_key_calc ,mem_sp_state 
+0x5560 014777 jam sp_flag_commit ,mem_sp_flag 
+0x5561 014778 rtn 
+:      014780 parse_simple_pairing_confirm:
+0x5562 014781 arg mem_sp_confirm_remote ,contw 
+0x5563 014782 arg mem_rxbuf + 1 ,contr 
+0x5564 014783 call memcpy16 
+0x5565 014784 fetch 1 ,mem_ssp_mode_flag 
+0x5566 014785 rtneq ssp_mode_passkey_entry_flag 
+0x5567 014786 branch master_set_mem_master_sp_flag 
+:      014788 parse_lmp_encapsulated_payload:
+0x5568 014789 fetch 1 ,mem_master_sp_state 
+0x5569 014790 beq sp_stat_random_send ,parse_encapsulated_payload_master 
+0x556a 014791 fetch 1 ,mem_sp_state 
+0x556b 014792 bne sp_stat_key_recv ,parse_lmp_encapsulated_payload_reject 
+:      014793 parse_encapsulated_payload_master:
+0x556c 014794 fetch 1 ,mem_sp_remote_key_recv_count 
+0x556d 014795 sub pdata ,0x20 ,contw 
+0x556e 014796 nbranch parse_lmp_encapsulated_payload_reject ,positive 
+0x556f 014797 arg mem_sp_pubkey_remote ,contw 
+0x5570 014798 iadd contw ,contw 
+0x5571 014799 fetch 8 ,mem_rxbuf + 1 
+0x5572 014800 istore 8 ,contw 
+0x5573 014801 fetch 8 ,mem_rxbuf + 9 
+0x5574 014802 istore 8 ,contw 
+0x5575 014803 fetch 1 ,mem_sp_remote_key_recv_count 
+0x5576 014804 increase 16 ,pdata 
+0x5577 014805 store 1 ,mem_sp_remote_key_recv_count 
+0x5578 014806 bne encapsulated_len_p192 ,accept_lmp_msg 
+:      014807 parse_lmp_encapsulated_payload_completed:
+0x5579 014808 call check_localsm 
+0x557a 014809 branch accept_lmp_msg ,true 
+0x557b 014810 jam sp_key_valid ,mem_sp_remote_key_invalid 
+0x557c 014811 jam sp_stat_key_generate ,mem_sp_state 
+0x557d 014812 jam sp_flag_commit ,mem_sp_flag 
+0x557e 014813 branch accept_lmp_msg 
+:      014814 parse_lmp_encapsulated_payload_reject:
+0x557f 014815 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5580 014816 branch reject_lmp_packet 
+:      014817 parse_lmp_accepted_encapsulated_payload:
+0x5581 014818 fetch 1 ,mem_sp_local_key_send_count 
+0x5582 014819 beq encapsulated_len_p192 ,parse_lmp_encapsulated_payload_all_accepted 
+0x5583 014820 jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+0x5584 014821 branch parse_rx_done 
+:      014823 parse_lmp_encapsulated_payload_all_accepted:
+0x5585 014824 call check_localsm 
+0x5586 014825 branch parse_lmp_encapsulated_payload_all_accepted_master ,true 
+0x5587 014826 fetch 1 ,mem_ssp_mode_flag 
+0x5588 014827 beq ssp_mode_passkey_entry_flag ,parse_lmp_encapsulated_payload_all_accepted_get_passkey 
+0x5589 014828 jam sp_flag_commit ,mem_sp_flag 
+0x558a 014829 jam sp_stat_commit_calc ,mem_sp_state 
+0x558b 014830 branch parse_rx_done 
+:      014832 parse_lmp_encapsulated_payload_all_accepted_get_passkey:
+0x558c 014833 jam bt_evt_bt_get_passkey ,mem_fifo_temp 
+0x558d 014834 branch ui_ipc_send_event 
+:      014837 parse_lmp_encapsulated_payload_all_accepted_master:
+0x558e 014839 branch parse_rx_done 
+:      014841 parse_lmp_simple_pairing_number:
+0x558f 014842 fetch 1 ,mem_master_sp_state 
+0x5590 014843 beq sp_stat_random_send ,parse_lmp_simple_pairing_number_master 
+0x5591 014844 fetch 1 ,mem_sp_state 
+0x5592 014845 bne sp_stat_random_recv ,parse_lmp_simple_pairing_number_reject 
+:      014846 parse_lmp_simple_pairing_number_master:
+0x5593 014847 arg mem_sp_random_remote ,contw 
+0x5594 014848 fetch 8 ,mem_rxbuf + 1 
+0x5595 014849 istore 8 ,contw 
+0x5596 014850 fetch 8 ,mem_rxbuf + 9 
+0x5597 014851 istore 8 ,contw 
+0x5598 014852 call check_localsm 
+0x5599 014853 branch parse_lmp_simple_pairing_number_master0 ,true 
+0x559a 014854 jam sp_stat_random_send ,mem_sp_state 
+0x559b 014855 jam sp_flag_commit ,mem_sp_flag 
+0x559c 014856 branch accept_lmp_msg 
+:      014857 parse_lmp_simple_pairing_number_master0:
+0x559d 014858 jam sp_stat_commit_calc ,mem_master_sp_state 
+0x559e 014859 branch master_set_mem_master_sp_flag 
+:      014862 parse_lmp_simple_pairing_number_reject:
+0x559f 014863 jam pdu_not_allowed ,mem_lmo_reason2 
+0x55a0 014864 branch reject_lmp_packet 
+:      014866 parse_dhkey_check:
+0x55a1 014867 fetch 1 ,mem_master_sp_state 
+0x55a2 014868 beq sp_stat_confirm_send ,parse_dhkey_check_master 
+0x55a3 014869 fetch 1 ,mem_sp_state 
+0x55a4 014870 bne sp_stat_confirm_recv ,parse_lmp_dhkey_check_reject 
+:      014871 parse_dhkey_check_master:
+0x55a5 014872 arg mem_sp_check_result ,contw 
+0x55a6 014873 arg mem_rxbuf + 1 ,contr 
+0x55a7 014874 call memcpy16 
+0x55a8 014875 call check_localsm 
+0x55a9 014876 branch parse_dhkey_check_master0 ,true 
+0x55aa 014877 fetch 1 ,mem_ssp_mode_flag 
+0x55ab 014878 beq ssp_mode_ssp_pin_flag ,number_comparison_mode 
+:      014879 number_comparison_successed:
+0x55ac 014880 jam 0 ,mem_flag_mode_ssp_pin 
+0x55ad 014881 jam sp_stat_confirm_check ,mem_sp_state 
+0x55ae 014882 jam sp_flag_commit ,mem_sp_flag 
+0x55af 014883 jam lmp_dhkey_check ,mem_lmi_opcode2 
+0x55b0 014884 branch parse_rx_done 
+:      014886 parse_dhkey_check_master0:
+0x55b1 014887 jam sp_stat_confirm_check ,mem_master_sp_state 
+0x55b2 014888 jam sp_flag_commit ,mem_master_sp_flag 
+0x55b3 014889 branch parse_rx_done 
+:      014890 parse_lmp_dhkey_check_reject:
+0x55b4 014891 jam pdu_not_allowed ,mem_lmo_reason2 
+0x55b5 014892 branch reject_lmp_packet 
+:      014894 number_comparison_mode:
+0x55b6 014895 fetch 1 ,mem_flag_mode_ssp_pin 
+0x55b7 014896 bbit1 flag_mode_ssp_pin_reviceve_comparison_bit ,comparison_result 
+0x55b8 014897 set1 flag_mode_ssp_pin_recieve_dhkey_bit ,pdata 
+0x55b9 014898 store 1 ,mem_flag_mode_ssp_pin 
+0x55ba 014899 rtn 
+:      014901 comparison_result:
+0x55bb 014902 bbit1 flag_mode_ssp_pin_comparison_result_bit ,number_comparison_successed 
+0x55bc 014903 jam 0 ,mem_flag_mode_ssp_pin 
+0x55bd 014904 branch parse_lmp_dhkey_check_reject 
+:      014907 parse_lmp_clkoffset_res:
+0x55be 014908 branch parse_rx_done 
+:      014910 parse_lmp_encryption_mode_req:
+0x55bf 014911 fetch 1 ,mem_connection_options 
+0x55c0 014912 set0 connection_encrypt 
+0x55c1 014913 store 1 ,mem_connection_options 
+0x55c2 014914 call accept_lmp_msg 
+0x55c3 014915 nrtn master 
+0x55c4 014916 fetch 1 ,mem_rxbuf + 1 
+0x55c5 014917 fetcht 1 ,mem_op 
+0x55c6 014918 setflag blank ,op_stop_enc ,temp 
+0x55c7 014919 nsetflag blank ,op_start_enc ,temp 
+0x55c8 014920 storet 1 ,mem_op 
+0x55c9 014921 rtn 
+:      014923 parse_lmp_features_res:
+0x55ca 014924 fetcht 8 ,mem_rxbuf + 1 
+:      014925 parse_lmp_features_res_not_hci:
+0x55cb 014926 fetch 1 ,mem_conn_sm 
+0x55cc 014927 rtnne conn_sm_wait_features_res 
+0x55cd 014929 fetch 1 ,mem_connection_options 
+0x55ce 014930 bbit0 connection_feature_ext ,parse_lmp_send_conn 
+0x55cf 014932 jam conn_sm_send_features_ext ,mem_conn_sm 
+0x55d0 014933 rtn 
+:      014934 parse_lmp_send_conn:
+0x55d1 014935 jam conn_sm_send_conn_req ,mem_conn_sm 
+0x55d2 014936 rtn 
+:      014937 parse_lmp_test_activate:
+0x55d3 014938 fetch 1 ,mem_debug_config 
+0x55d4 014939 store 1 ,mem_test_mode_old_debug_config 
+0x55d5 014940 jam lmp_accepted ,mem_lmo_opcode2 
+0x55d6 014941 jam lmp_test_activate ,mem_lmi_opcode2 
+0x55d7 014942 rtn 
+:      014943 parse_lmp_test_control:
+0x55d8 014946 jam lmp_accepted ,mem_lmo_opcode2 
+0x55d9 014947 jam lmp_test_control ,mem_lmi_opcode2 
+0x55da 014948 force 9 ,loopcnt 
+0x55db 014949 arg mem_rxbuf + 1 ,contr 
+0x55dc 014950 arg mem_temp_payload ,contw 
+:      014951 parse_lmp_test_xor:
+0x55dd 014952 ifetch 1 ,contr 
+0x55de 014953 xor_into 0x55 ,pdata 
+0x55df 014954 istore 1 ,contw 
+0x55e0 014955 loop parse_lmp_test_xor 
+0x55e1 014956 fetch 1 ,test_mode_scenario 
+0x55e2 014957 fetcht 1 ,mem_tester_emulate 
+0x55e3 014958 set0 tester_no_whitening ,temp 
+0x55e4 014959 set0 tester_pattern_test ,temp 
+0x55e5 014960 beq exit_test_mode ,parse_lmp_test_control_exit 
+0x55e6 014961 beq pause_test_mode ,parse_lmp_test_control_pause 
+0x55e7 014962 beq closed_loop_back_acl ,parse_lmp_test_control_loopback 
+0x55e8 014963 beq acl_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+0x55e9 014964 beq closed_loop_back_sco ,parse_lmp_test_control_loopback 
+0x55ea 014965 beq sco_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+0x55eb 014966 beq zero_pattern ,parse_lmp_test_control_pattern 
+0x55ec 014967 beq one_pattern ,parse_lmp_test_control_pattern 
+0x55ed 014968 beq alt_pattern ,parse_lmp_test_control_pattern 
+0x55ee 014969 beq alt2_pattern ,parse_lmp_test_control_pattern 
+0x55ef 014970 beq pseudorandom ,parse_lmp_test_control_pattern 
+0x55f0 014971 rtn 
+:      014972 parse_lmp_test_control_exit:
+0x55f1 014974 fetch 1 ,mem_tester_emulate 
+0x55f2 014975 set1 tester_exit ,pdata 
+0x55f3 014976 set1 tester_change ,pdata 
+0x55f4 014977 store 1 ,mem_tester_emulate 
+0x55f5 014978 rtn 
+:      014979 parse_lmp_test_control_pattern:
+0x55f6 014980 set1 tester_pattern_test ,temp 
+0x55f7 014981 jam 5 ,mem_lch_code 
+0x55f8 014982 fetch 2 ,test_mode_data_length 
+0x55f9 014983 iforce loopcnt 
+0x55fa 014984 store 2 ,mem_len 
+0x55fb 014985 arg mem_rxbuf ,contw 
+0x55fc 014986 call pn9 
+:      014987 parse_lmp_test_control_loopback_nowhite:
+0x55fd 014988 set1 tester_no_whitening ,temp 
+:      014989 parse_lmp_test_control_loopback:
+0x55fe 014990 set1 tester_change ,temp 
+0x55ff 014991 force 0 ,pdata 
+0x5600 014992 store 1 ,mem_slave_rcvcnt 
+0x5601 014993 store 2 ,mem_tst_pktcnt_crc 
+0x5602 014994 store 2 ,mem_tst_pktcnt_dmh 
+0x5603 014995 store 2 ,mem_tst_pktcnt_hec 
+0x5604 014996 store 2 ,mem_tst_pktcnt_sync 
+0x5605 014997 fetch 1 ,test_mode_hopping_mode 
+0x5606 014998 compare fixed_freq ,pdata ,0xff 
+0x5607 014999 setflag true ,tester_fixed_freq ,temp 
+0x5608 015000 storet 1 ,mem_tester_emulate 
+0x5609 015001 rtn 
+:      015003 parse_lmp_test_control_pause:
+0x560a 015004 set0 mark_testmode ,mark 
+0x560b 015005 jam 0 ,mem_tester_emulate 
+0x560c 015006 fetch 1 ,mem_debug_config 
+0x560d 015007 set0 debug_tx_pattern ,pdata 
+0x560e 015008 store 1 ,mem_debug_config 
+0x560f 015009 rtn 
+:      015015 lmp_copy_rand:
+0x5610 015016 arg mem_rxbuf + 1 ,contr 
+0x5611 015017 arg mem_random_number ,contw 
+0x5612 015018 branch memcpy16 
+:      015020 lmp_generate_key:
+0x5613 015021 jam lmp_comb_key ,mem_lmo_opcode2 
+0x5614 015022 rtn 
+:      015024 lmp_start_encryption:
+0x5615 015025 nrtn master 
+0x5616 015026 jam lmp_start_encryption_req ,mem_lmo_opcode2 
+0x5617 015027 rtn 
+:      015029 lmp_accept_inrand:
+0x5618 015030 arg mem_lap ,rega 
+0x5619 015031 call generate_kinit 
+0x561a 015032 jam lmp_accepted ,mem_lmo_opcode2 
+0x561b 015033 jam lmp_in_rand ,mem_lmi_opcode2 
+0x561c 015034 rtn 
+:      015036 lmp_disconnect:
+0x561d 015037 jam 10 ,mem_conn_timer 
+0x561e 015038 jam lmp_detach ,mem_lmo_opcode2 
+0x561f 015039 jam local_host ,mem_disconn_reason_send 
+0x5620 015040 rtn 
+:      015046 send_lmp:
+0x5621 015047 set1 mark_ext_patch ,mark 
+0x5622 015048 bpatch patch2b_0 ,mem_patch2b 
+0x5623 015049 disable user 
+0x5624 015050 call lmo_fifo_process 
+0x5625 015051 fetch 1 ,mem_lmp_to_send 
+0x5626 015052 rtn blank 
+0x5627 015057 bbit1 7 ,send_lmp_escape 
+:      015058 send_lmp0:
+0x5628 015059 beq lmp_name_req ,send_lmp_name_req 
+0x5629 015060 beq lmp_name_res ,send_lmp_name_res 
+0x562a 015061 beq lmp_accepted ,send_lmp_accepted 
+0x562b 015062 beq lmp_not_accepted ,send_lmp_not_accepted 
+0x562c 015063 beq lmp_features_req ,send_lmp_features_req 
+0x562d 015064 beq lmp_features_res ,send_lmp_features_res 
+0x562e 015065 beq lmp_timing_accuracy_res ,send_lmp_timing_accuracy_res 
+0x562f 015066 beq lmp_version_req ,send_lmp_version_req 
+0x5630 015067 beq lmp_version_res ,send_lmp_version_res 
+0x5631 015068 beq lmp_setup_complete ,send_lmp_setup_complete 
+0x5632 015069 beq lmp_supervision_timeout ,send_lmp_superto 
+0x5633 015070 beq lmp_host_connection_req ,send_lmp_no_payload 
+0x5634 015071 beq lmp_in_rand ,send_lmp_inrand 
+0x5635 015072 beq lmp_comb_key ,send_lmp_comb_key 
+0x5636 015073 beq lmp_au_rand ,send_lmp_aurand 
+0x5637 015074 beq lmp_sres ,send_lmp_sres 
+0x5638 015075 beq lmp_encryption_mode_req ,send_lmp_encryption_mode_req 
+0x5639 015076 beq lmp_encryption_key_size_req ,send_lmp_encryption_key_size_req 
+0x563a 015077 beq lmp_start_encryption_req ,send_lmp_start_encryption 
+0x563b 015078 beq lmp_detach ,send_lmp_detach 
+0x563c 015079 beq lmp_quality_of_service_req ,send_lmp_quality_of_service_req 
+0x563d 015080 beq lmp_unit_key ,send_lmp_unit_key 
+0x563e 015082 beq lmp_incr_power_req ,send_lmp_inc_power 
+0x563f 015083 beq lmp_clkoffset_res ,send_lmp_clkoffset_res 
+0x5640 015084 beq lmp_max_power ,send_lmp_nopayload_reply 
+0x5641 015085 beq lmp_max_slot ,send_lmp_max_slot 
+0x5642 015086 beq lmp_max_slot_req ,send_lmp_max_slot_req 
+0x5643 015087 beq lmp_min_power ,send_lmp_nopayload_reply 
+0x5644 015088 beq lmp_slot_offset ,send_lmp_slot_offset 
+0x5645 015089 beq lmp_switch_req ,send_lmp_switch_req 
+0x5646 015090 beq lmp_sniff_req ,send_lmp_sniff_req 
+0x5647 015091 beq lmp_stop_encryption_req ,send_lmp_stop_encryption_req 
+0x5648 015092 beq lmp_timing_accuracy_req ,send_lmp_timing_accuracy_req 
+0x5649 015093 beq lmp_unsniff_req ,send_lmp_unsniff_req 
+0x564a 015094 beq lmp_encapsulated_header ,send_lmp_encapsulated_header 
+0x564b 015095 beq lmp_encapsulated_payload ,send_lmp_encapsulated_payload 
+0x564c 015096 beq lmp_simple_pairing_confirm ,send_lmp_simple_pairing_comfirm 
+0x564d 015097 beq lmp_simple_pairing_number ,send_lmp_simple_pairing_number 
+0x564e 015098 beq lmp_dhkey_check ,send_lmp_dhkey_check 
+0x564f 015099 beq lmp_auto_rate ,send_lmp_auto_rate 
+0x5650 015100 beq lmp_enc_key_size_mask_res ,send_lmp_enc_key_size_mask_res 
+0x5651 015102 beq lmp_clkoffset_req ,send_lmp_clkoffset_req 
+0x5652 015103 beq lmp_quality_of_service ,send_lmp_quality_of_service 
+0x5653 015104 beq lmp_test_activate ,send_lmp_test_activate 
+0x5654 015105 beq lmp_test_control ,send_lmp_test_control 
+:      015106 send_lmp_error:
+0x5655 015107 branch assert 
+0x5656 015108 rtn 
+:      015109 send_lmp_escape:
+0x5657 015110 beq lmp_ext_accepted ,send_lmpext_accepted 
+0x5658 015111 beq lmp_ext_features_res ,send_lmpext_features_res 
+0x5659 015112 beq lmp_not_accepted_ext ,send_lmpext_not_accepted 
+0x565a 015113 beq lmp_ext_features_req ,send_lmpext_features_req 
+0x565b 015114 beq lmp_packet_type_table_req ,send_lmpext_packet_type_table_req 
+0x565c 015115 beq lmp_pause_encryption_req ,send_lmpext_pause_encryption_req 
+0x565d 015116 beq lmp_io_cap_req ,send_lmp_io_cap_req 
+0x565e 015117 beq lmp_io_cap_res ,send_lmpext_io_cap_res 
+0x565f 015118 beq lmp_sniff_subrating_req ,send_lmpext_sniff_subrating_req 
+0x5660 015119 beq lmp_sniff_subrating_res ,send_lmpext_sniff_subrating_res 
+0x5661 015120 branch assert 
+:      015126 send_lmp_accepted:
+0x5662 015127 force 2 ,pdata 
+0x5663 015128 call msg_send_lmp 
+0x5664 015129 fetch 1 ,mem_lmi_opcode 
+0x5665 015130 istore 1 ,contw 
+0x5666 015131 call send_lmp_follow 
+0x5667 015132 set1 mark_ext_patch ,mark 
+0x5668 015133 bpatch patch2b_1 ,mem_patch2b 
+0x5669 015134 fetch 1 ,mem_lmi_opcode 
+0x566a 015135 beq lmp_in_rand ,send_lmp_accepted_inrand 
+0x566b 015136 beq lmp_encryption_mode_req ,send_lmp_accepted_enc_mode 
+0x566c 015137 beq lmp_encryption_key_size_req ,send_lmp_accepted_enc_key 
+0x566d 015138 beq lmp_sniff_req ,send_lmp_accept_sniff_req 
+0x566e 015139 beq lmp_host_connection_req ,send_lmp_accepted_connection 
+0x566f 015140 beq lmp_dhkey_check ,send_lmp_accept_dhkey_check 
+0x5670 015141 beq lmp_start_encryption_req ,send_create_conn_start_l2cap_timer_sm 
+0x5671 015142 rtn 
+:      015144 send_create_conn_start_l2cap_timer_sm:
+0x5672 015145 fetch 1 ,mem_conn_sm 
+0x5673 015146 rtn blank 
+0x5674 015147 jam conn_sm_wait_done ,mem_conn_sm 
+0x5675 015148 setarg timer_enpt_waite 
+0x5676 015149 arg enpt_delay_timer ,queue 
+0x5677 015150 branch timer_init 
+:      015152 send_lmp_accept_sniff_req:
+0x5678 015153 branch sniff_init 
+:      015154 send_lmp_not_accepted:
+0x5679 015155 force 3 ,pdata 
+0x567a 015156 call msg_send_lmp 
+0x567b 015157 fetch 1 ,mem_lmi_opcode 
+0x567c 015158 beq lmp_au_rand ,send_not_accept_aurand 
+0x567d 015159 istore 1 ,contw 
+0x567e 015160 fetch 1 ,mem_lmo_reason 
+0x567f 015161 istore 1 ,contw 
+0x5680 015162 branch send_lmp_follow 
+:      015164 send_not_accept_aurand:
+0x5681 015165 istore 1 ,contw 
+0x5682 015166 fetch 1 ,mem_lmo_reason 
+0x5683 015167 istore 1 ,contw 
+0x5684 015168 arg mem_sres_tid ,temp 
+0x5685 015169 branch special_tid_store 
+:      015171 send_lmpext_accepted:
+0x5686 015172 force 4 ,queue 
+0x5687 015173 call send_lmpext 
+0x5688 015174 setarg lmp_escape 
+0x5689 015175 istore 1 ,contw 
+0x568a 015176 fetch 1 ,mem_lmi_opcode 
+0x568b 015177 set0 7 ,pdata 
+0x568c 015178 istore 1 ,contw 
+0x568d 015179 fetch 1 ,mem_lmi_opcode 
+0x568e 015180 branch send_lmp_follow 
+:      015182 send_lmpext_not_accepted:
+0x568f 015183 force 5 ,queue 
+0x5690 015184 call send_lmpext 
+0x5691 015185 setarg lmp_escape 
+0x5692 015186 istore 1 ,contw 
+0x5693 015187 fetch 1 ,mem_lmi_opcode 
+0x5694 015188 set0 7 ,pdata 
+0x5695 015189 istore 1 ,contw 
+0x5696 015190 fetch 1 ,mem_lmo_reason 
+0x5697 015191 istore 1 ,contw 
+0x5698 015192 branch send_lmp_follow 
+:      015195 send_lmp_accepted_inrand:
+0x5699 015196 call clear_linkkey 
+0x569a 015197 call tid_check 
+0x569b 015198 rtn true 
+0x569c 015199 branch lmp_generate_key 
+:      015201 send_lmp_accepted_enc_mode:
+0x569d 015202 fetch 1 ,mem_op 
+0x569e 015203 bbit1 op_start_enc ,send_lmp_accepted_enc_start 
+0x569f 015204 rtnbit0 op_stop_enc 
+0x56a0 015205 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x56a1 015206 set0 op_stop_enc ,pdata 
+0x56a2 015207 call tid_reply 
+0x56a3 015208 branch send_lmp_accepted_enc_exit 
+:      015209 send_lmp_accepted_enc_start:
+0x56a4 015210 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+0x56a5 015211 set0 op_start_enc ,pdata 
+:      015212 send_lmp_accepted_enc_exit:
+0x56a6 015213 store 1 ,mem_op 
+0x56a7 015214 rtn 
+:      015216 send_lmp_accepted_enc_key:
+0x56a8 015217 call check_localsm 
+0x56a9 015218 branch lmp_start_encryption ,true 
+0x56aa 015219 rtn 
+:      015221 send_lmp_accepted_connection:
+0x56ab 015222 jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+0x56ac 015224 fetch 1 ,mem_lmp_conn_state 
+0x56ad 015225 set1 received_conn_req ,pdata 
+0x56ae 015226 store 1 ,mem_lmp_conn_state 
+0x56af 015227 jam bt_evt_bb_connected ,mem_fifo_temp 
+0x56b0 015228 branch ui_ipc_send_event 
+:      015231 send_lmp_accept_dhkey_check:
+0x56b1 015232 rtn 
+:      015236 send_lmpext_features_res:
+0x56b2 015237 force 12 ,queue 
+0x56b3 015238 call send_lmpext 
+0x56b4 015239 setarg 0x01 
+0x56b5 015240 istore 1 ,contw 
+0x56b6 015241 fetch 2 ,mem_lmpext_ssp_enable 
+0x56b7 015242 istore 2 ,contw 
+0x56b8 015243 setarg 0 
+0x56b9 015244 istore 3 ,contw 
+0x56ba 015245 setarg 0x00 
+0x56bb 015246 istore 4 ,contw 
+0x56bc 015247 branch send_lmp_reply 
+:      015248 send_lmpext_io_cap_res:
+0x56bd 015249 force 5 ,queue 
+0x56be 015250 call send_lmpext 
+0x56bf 015251 fetch 3 ,mem_sp_iocap_local 
+0x56c0 015252 istore 3 ,contw 
+0x56c1 015253 call send_lmp_reply 
+0x56c2 015254 jam flag_pairing_state_pairing ,mem_flag_pairing_state 
+0x56c3 015255 fetch 1 ,mem_sp_iocap_local 
+0x56c4 015256 beq display_yesno ,responder_iocap_display_yesno 
+0x56c5 015257 beq keyboard_only ,responder_iocap_keyboard_only 
+0x56c6 015258 beq no_input_no_output ,responder_iocap_no_input_no_output 
+0x56c7 015259 rtn 
+:      015261 responder_iocap_keyboard_only:
+0x56c8 015262 fetch 1 ,mem_sp_iocap_remote 
+0x56c9 015263 beq display_only ,responder_iocap_keyboard_only_initiator_iocap_display_only 
+0x56ca 015264 beq display_yesno ,responder_iocap_keyboard_only_initiator_iocap_display_yesno 
+0x56cb 015265 beq keyboard_only ,responder_iocap_keyboard_only_initiator_iocap_keyboard_only 
+0x56cc 015266 beq no_input_no_output ,responder_iocap_keyboard_only_initiator_iocap_no_input_no_output 
+0x56cd 015267 rtn 
+:      015270 responder_iocap_display_yesno:
+0x56ce 015271 fetch 1 ,mem_sp_iocap_remote 
+0x56cf 015272 beq display_only ,responder_iocap_display_yesno_initiator_iocap_display_only 
+0x56d0 015273 beq display_yesno ,responder_iocap_display_yesno_initiator_iocap_display_yesno 
+0x56d1 015274 beq keyboard_only ,responder_iocap_display_yesno_initiator_iocap_keyboard_only 
+0x56d2 015275 beq no_input_no_output ,responder_iocap_display_yesno_initiator_iocap_no_input_no_output 
+0x56d3 015276 rtn 
+:      015279 responder_iocap_no_input_no_output:
+0x56d4 015280 fetch 1 ,mem_sp_iocap_remote 
+0x56d5 015281 beq display_only ,responder_iocap_no_input_no_output_initiator_iocap_display_only 
+0x56d6 015282 beq display_yesno ,responder_iocap_no_input_no_output_initiator_iocap_display_yesno 
+0x56d7 015283 beq keyboard_only ,responder_iocap_no_input_no_output_initiator_iocap_keyboard_only 
+0x56d8 015284 beq no_input_no_output ,responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output 
+0x56d9 015285 rtn 
+:      015287 responder_iocap_keyboard_only_initiator_iocap_no_input_no_output:
+:      015288 responder_iocap_display_yesno_initiator_iocap_no_input_no_output:
+:      015289 responder_iocap_display_yesno_initiator_iocap_display_only:
+:      015290 responder_iocap_no_input_no_output_initiator_iocap_display_only:
+:      015291 responder_iocap_no_input_no_output_initiator_iocap_display_yesno:
+:      015292 responder_iocap_no_input_no_output_initiator_iocap_keyboard_only:
+:      015293 responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output:
+:      015294 set_ssp_mode_justwork:
+0x56da 015295 jam ssp_mode_just_work_flag ,mem_ssp_mode_flag 
+0x56db 015296 rtn 
+:      015298 responder_iocap_display_yesno_initiator_iocap_display_yesno:
+:      015299 set_ssp_mode_numeric_comparison:
+0x56dc 015300 jam ssp_mode_ssp_pin_flag ,mem_ssp_mode_flag 
+0x56dd 015301 rtn 
+:      015303 responder_iocap_keyboard_only_initiator_iocap_display_yesno:
+:      015304 responder_iocap_keyboard_only_initiator_iocap_keyboard_only:
+:      015305 responder_iocap_keyboard_only_initiator_iocap_display_only:
+:      015306 responder_iocap_display_yesno_initiator_iocap_keyboard_only:
+:      015307 set_ssp_mode_passkey:
+0x56de 015308 jam ssp_mode_passkey_entry_flag ,mem_ssp_mode_flag 
+0x56df 015309 rtn 
+:      015314 send_lmp_io_cap_req:
+0x56e0 015315 force 5 ,queue 
+0x56e1 015316 call send_lmpext 
+0x56e2 015317 fetch 3 ,mem_sp_iocap_local 
+0x56e3 015318 istore 3 ,contw 
+0x56e4 015319 branch send_lmp_request 
+:      015322 send_lmpext_sniff_subrating_req:
+0x56e5 015324 rtn 
+:      015325 send_lmpext_sniff_subrating_res:
+0x56e6 015326 force 9 ,queue 
+0x56e7 015327 call send_lmpext 
+0x56e8 015328 fetch 1 ,mem_subsniff_rate 
+0x56e9 015329 istore 1 ,contw 
+0x56ea 015330 fetch 2 ,mem_subsniff_tcmax 
+0x56eb 015331 istore 2 ,contw 
+0x56ec 015332 fetch 4 ,mem_subsniff_instant 
+0x56ed 015333 istore 4 ,contw 
+0x56ee 015334 branch send_lmp_reply 
+:      015336 send_lmp_name_res:
+0x56ef 015337 force 17 ,pdata 
+0x56f0 015338 call msg_send_lmp 
+0x56f1 015339 fetch 1 ,mem_lmi_opcode 
+0x56f2 015340 copy pdata ,temp 
+0x56f3 015341 beq 0x00 ,send_lmp_name_res_offset_ok 
+0x56f4 015342 beq 0x0e ,send_lmp_name_res_offset_ok 
+0x56f5 015343 beq 0x1c ,send_lmp_name_res_offset_ok 
+0x56f6 015344 rtn 
+:      015345 send_lmp_name_res_offset_ok:
+0x56f7 015346 istore 1 ,contw 
+0x56f8 015347 fetch 1 ,mem_local_name_length 
+0x56f9 015348 istore 1 ,contw 
+0x56fa 015349 arg 14 ,loopcnt 
+0x56fb 015350 setarg mem_local_name 
+0x56fc 015351 iadd temp ,contr 
+0x56fd 015352 call memcpy 
+0x56fe 015353 branch send_lmp_reply 
+:      015356 send_lmp_timing_accuracy_res:
+0x56ff 015357 force 3 ,pdata 
+0x5700 015358 call msg_send_lmp 
+0x5701 015359 setarg 0x0114 
+0x5702 015360 istore 2 ,contw 
+0x5703 015361 branch send_lmp_reply 
+:      015363 send_lmp_clkoffset_res:
+0x5704 015365 force 3 ,pdata 
+0x5705 015366 call msg_send_lmp 
+0x5706 015367 fetch 4 ,mem_clke_bt 
+0x5707 015368 isub clkn_bt ,pdata 
+0x5708 015369 branch send_lmp_clkoffset_res_master ,master 
+0x5709 015370 sub pdata ,0 ,pdata 
+:      015371 send_lmp_clkoffset_res_master:
+0x570a 015373 rshift2 pdata ,pdata 
+0x570b 015374 set0 15 ,pdata 
+0x570c 015375 istore 2 ,contw 
+0x570d 015376 branch send_lmp_reply 
+:      015378 send_lmp_version_res:
+0x570e 015379 force 6 ,pdata 
+0x570f 015380 call msg_send_lmp 
+0x5710 015381 fetch 5 ,mem_lmp_version 
+0x5711 015382 istore 5 ,contw 
+0x5712 015383 branch send_lmp_reply 
+:      015385 send_lmp_features_res:
+0x5713 015386 force 9 ,pdata 
+0x5714 015387 call msg_send_lmp 
+0x5715 015388 fetch 8 ,mem_features 
+0x5716 015389 istore 8 ,contw 
+0x5717 015390 branch send_lmp_reply 
+:      015397 send_lmpext_features_req:
+0x5718 015398 force 12 ,queue 
+0x5719 015399 call send_lmpext 
+0x571a 015400 setarg 0x01 
+0x571b 015401 istore 1 ,contw 
+0x571c 015402 fetch 2 ,mem_lmpext_ssp_enable 
+0x571d 015403 istore 2 ,contw 
+0x571e 015404 setarg 0 
+0x571f 015405 istore 3 ,contw 
+0x5720 015406 setarg 0x00 
+0x5721 015407 istore 4 ,contw 
+0x5722 015408 branch send_lmp_request 
+:      015410 send_lmpext_packet_type_table_req:
+0x5723 015411 force 3 ,queue 
+0x5724 015412 call send_lmpext 
+0x5725 015413 fetch 1 ,mem_ptt 
+0x5726 015414 istore 1 ,contw 
+0x5727 015415 disable user 
+0x5728 015416 call send_lmp_request 
+0x5729 015417 nrtn user 
+0x572a 015418 nrtn master 
+0x572b 015419 fetch 1 ,mem_afh_cfg 
+0x572c 015420 rtnbit0 afh_cfg_on 
+0x572d 015421 call afh_init 
+0x572e 015422 branch afh_open_all_channels 
+:      015425 ssp_enable:
+0x572f 015426 set1 mark_ext_patch ,mark 
+0x5730 015427 bpatch patch2b_2 ,mem_patch2b 
+0x5731 015428 fetch 1 ,mem_features + 6 
+0x5732 015429 set1 param_featrue_ssp ,pdata 
+0x5733 015430 store 1 ,mem_features + 6 
+0x5734 015431 setarg param_lmpext_ssp_enable 
+0x5735 015432 store 2 ,mem_lmpext_ssp_enable 
+0x5736 015433 rtn 
+:      015435 ssp_disable:
+0x5737 015436 set1 mark_ext_patch ,mark 
+0x5738 015437 bpatch patch2b_3 ,mem_patch2b 
+0x5739 015438 fetch 1 ,mem_features + 6 
+0x573a 015439 set0 param_featrue_ssp ,pdata 
+0x573b 015440 store 1 ,mem_features + 6 
+0x573c 015441 setarg 0 
+0x573d 015442 store 2 ,mem_lmpext_ssp_enable 
+0x573e 015443 rtn 
+:      015445 afh_init:
+0x573f 015446 jam 0x3 ,mem_afh_cfg 
+0x5740 015447 setarg 0 
+0x5741 015448 store 4 ,mem_afh_timer 
+0x5742 015449 arg mem_afh_map_lo ,contw 
+0x5743 015450 call afh_reset_map 
+0x5744 015451 arg mem_afh_map_new ,contw 
+0x5745 015452 call afh_reset_map 
+0x5746 015453 arg mem_afh_classify_channel_map ,contw 
+0x5747 015454 call afh_reset_map 
+0x5748 015455 branch afh_clear_error_counter 
+:      015456 afh_open_all_channels:
+0x5749 015457 arg mem_afh_map_new ,contw 
+0x574a 015458 call afh_reset_map 
+0x574b 015459 call afh_clear_error_counter 
+0x574c 015460 branch afh_set_send_flag 
+:      015463 afh_reset_map:
+0x574d 015464 setarg 0xffffff 
+0x574e 015465 istore 3 ,contw 
+0x574f 015466 istore 3 ,contw 
+0x5750 015467 istore 3 ,contw 
+0x5751 015468 setarg 0x7f 
+0x5752 015469 istore 1 ,contw 
+0x5753 015470 rtn 
+:      015471 afh_clear_error_counter:
+0x5754 015472 setarg 0 
+0x5755 015473 store 2 ,mem_afh_error_total 
+0x5756 015474 rtn 
+:      015475 afh_set_send_flag:
+0x5757 015476 fetch 1 ,mem_afh_cfg 
+0x5758 015477 set1 send_lmp_set_afh ,pdata 
+0x5759 015478 store 1 ,mem_afh_cfg 
+0x575a 015479 rtn 
+:      015482 send_lmpext_pause_encryption_req:
+0x575b 015483 force 2 ,queue 
+0x575c 015484 call send_lmpext 
+0x575d 015485 nbranch send_lmp_reply ,master 
+0x575e 015487 branch send_lmp_request 
+:      015491 send_lmp_detach:
+0x575f 015492 force 2 ,pdata 
+0x5760 015493 call msg_send_lmp 
+0x5761 015494 fetch 1 ,mem_disconn_reason_send 
+0x5762 015495 istore 1 ,contw 
+0x5763 015496 call send_lmp_request 
+:      015497 prepare_disconnect:
+0x5764 015498 fetch 1 ,mem_op 
+0x5765 015499 set1 op_disconn ,pdata 
+0x5766 015500 store 1 ,mem_op 
+0x5767 015501 jam 50 ,mem_conn_timer 
+0x5768 015502 rtn 
+:      015505 send_lmp_no_payload:
+0x5769 015506 force 1 ,pdata 
+0x576a 015507 call msg_send_lmp 
+0x576b 015508 branch send_lmp_request 
+:      015509 send_lmp_nopayload_reply:
+0x576c 015510 force 1 ,pdata 
+0x576d 015511 call msg_send_lmp 
+0x576e 015512 branch send_lmp_reply 
+:      015515 send_lmp_encryption_mode_req:
+0x576f 015516 force 2 ,pdata 
+0x5770 015517 call msg_send_lmp 
+0x5771 015518 fetch 1 ,mem_state_map 
+0x5772 015519 isolate0 smap_encryption ,pdata 
+0x5773 015520 setflag true ,0 ,pdata 
+0x5774 015521 and_into 1 ,pdata 
+0x5775 015522 istore 1 ,contw 
+0x5776 015523 branch send_lmp_request 
+:      015526 send_lmp_superto:
+0x5777 015527 force 3 ,pdata 
+0x5778 015528 call msg_send_lmp 
+0x5779 015529 fetch 2 ,mem_supervision_to 
+0x577a 015530 istore 2 ,contw 
+0x577b 015531 branch send_lmp_request 
+:      015533 send_lmp_name_req:
+0x577c 015534 jam 250 ,mem_conn_timer 
+0x577d 015535 force 2 ,pdata 
+0x577e 015536 call msg_send_lmp 
+0x577f 015537 fetch 1 ,mem_name_offset 
+0x5780 015538 istore 1 ,contw 
+0x5781 015539 branch send_lmp_request 
+:      015541 send_lmp_test_control:
+0x5782 015542 force 10 ,pdata 
+0x5783 015543 call msg_send_lmp 
+0x5784 015544 arg mem_temp_payload ,contr 
+0x5785 015545 force 9 ,loopcnt 
+:      015546 send_lmp_test_control_loop:
+0x5786 015547 ifetch 1 ,contr 
+0x5787 015548 xor_into 0x55 ,pdata 
+0x5788 015549 istore 1 ,contw 
+0x5789 015550 loop send_lmp_test_control_loop 
+0x578a 015551 branch send_lmp_request 
+:      015553 send_lmp_quality_of_service_req:
+0x578b 015554 branch send_lmp_request 
+:      015555 send_lmp_unit_key:
+0x578c 015556 branch send_lmp_request 
+:      015558 send_lmp_slot_offset:
+0x578d 015559 rtn master 
+0x578e 015560 call calc_slot_offset 
+0x578f 015561 force 9 ,pdata 
+0x5790 015562 call msg_send_lmp 
+0x5791 015563 fetch 2 ,mem_slot_offset 
+0x5792 015564 istore 2 ,contw 
+0x5793 015565 fetch 3 ,mem_lap 
+0x5794 015566 istore 3 ,contw 
+0x5795 015567 fetch 1 ,mem_uap 
+0x5796 015568 istore 1 ,contw 
+0x5797 015569 fetch 2 ,mem_nap 
+0x5798 015570 istore 2 ,contw 
+0x5799 015571 bmark0 mark_switch_initiated ,send_lmp_slot_offset_reply 
+0x579a 015572 set0 mark_switch_initiated ,mark 
+0x579b 015573 call send_lmp_request 
+0x579c 015574 jam lmp_switch_req ,mem_lmo_opcode2 
+0x579d 015575 rtn 
+:      015576 send_lmp_slot_offset_reply:
+0x579e 015577 call send_lmp_reply 
+0x579f 015578 jam lmp_accepted ,mem_lmo_opcode2 
+0x57a0 015579 jam lmp_switch_req ,mem_lmi_opcode2 
+0x57a1 015580 rtn 
+:      015582 send_lmp_switch_req:
+0x57a2 015583 arg 0x200 ,temp 
+0x57a3 015584 branch switch_on_native ,master 
+0x57a4 015585 deposit clke_bt 
+0x57a5 015586 branch switch_slack 
+:      015587 switch_on_native:
+0x57a6 015588 deposit clkn_bt 
+:      015589 switch_slack:
+0x57a7 015590 deposit bt_clk 
+0x57a8 015591 iadd temp ,pdata 
+0x57a9 015592 and_into 0x1fc ,pdata 
+0x57aa 015593 store 4 ,mem_sniff_anchor 
+0x57ab 015594 force 5 ,pdata 
+0x57ac 015595 call msg_send_lmp 
+0x57ad 015596 fetch 4 ,mem_sniff_anchor 
+0x57ae 015597 rshift pdata ,pdata 
+0x57af 015598 istore 4 ,contw 
+0x57b0 015599 branch send_lmp_request 
+:      015601 send_lmp_sniff_req:
+0x57b1 015602 force 10 ,pdata 
+0x57b2 015603 call msg_send_lmp 
+0x57b3 015604 arg mem_sniff_payload ,contr 
+0x57b4 015605 ifetch 9 ,contr 
+0x57b5 015606 istore 9 ,contw 
+0x57b6 015607 branch send_lmp_request 
+:      015610 send_lmp_timing_accuracy_req:
+0x57b7 015612 force 3 ,pdata 
+0x57b8 015613 call msg_send_lmp 
+0x57b9 015614 setarg 0x0114 
+0x57ba 015615 istore 2 ,contw 
+0x57bb 015616 branch send_lmp_request 
+:      015618 send_lmp_unsniff_req:
+0x57bc 015620 force 1 ,pdata 
+0x57bd 015621 call msg_send_lmp 
+0x57be 015630 branch send_lmp_request 
+:      015633 send_lmp_max_slot:
+0x57bf 015634 force 2 ,pdata 
+0x57c0 015635 call msg_send_lmp 
+0x57c1 015636 fetch 1 ,mem_max_slot 
+0x57c2 015637 istore 1 ,contw 
+0x57c3 015638 branch send_lmp_request 
+:      015641 send_lmp_max_slot_req:
+0x57c4 015642 force 2 ,pdata 
+0x57c5 015643 call msg_send_lmp 
+0x57c6 015644 setarg 0x05 
+0x57c7 015645 istore 1 ,contw 
+0x57c8 015646 branch send_lmp_request 
+:      015649 send_lmp_inc_power:
+0x57c9 015650 force 2 ,pdata 
+0x57ca 015651 call msg_send_lmp 
+0x57cb 015652 setarg 0x00 
+0x57cc 015653 istore 1 ,contw 
+0x57cd 015654 branch send_lmp_request 
+:      015658 send_lmp_setup_complete:
+0x57ce 015659 jam lmp_max_slot_req ,mem_lmo_opcode2 
+0x57cf 015660 fetch 1 ,mem_state 
+0x57d0 015661 set1 state_conn_comp ,pdata 
+0x57d1 015662 store 1 ,mem_state 
+0x57d2 015663 copy clkn_bt ,pdata 
+0x57d3 015664 store 4 ,mem_aurand_send_delay_time 
+0x57d4 015665 fetch 1 ,mem_lmp_conn_state 
+0x57d5 015666 bbit1 sent_setup_complete ,send_lmp_setup_complete_has_sent 
+0x57d6 015667 set1 sent_setup_complete ,pdata 
+0x57d7 015668 store 1 ,mem_lmp_conn_state 
+0x57d8 015669 jam bt_evt_setup_complete ,mem_fifo_temp 
+0x57d9 015670 call ui_ipc_send_event 
+0x57da 015671 force 1 ,pdata 
+0x57db 015672 call msg_send_lmp 
+0x57dc 015673 branch send_lmp_request 
+:      015674 send_lmp_setup_complete_has_sent:
+0x57dd 015675 jam 0 ,mem_lmp_to_send 
+0x57de 015676 rtn 
+:      015678 send_lmp_version_req:
+0x57df 015679 force 6 ,pdata 
+0x57e0 015680 call msg_send_lmp 
+0x57e1 015681 fetch 5 ,mem_lmp_version 
+0x57e2 015682 istore 5 ,contw 
+0x57e3 015683 branch send_lmp_request 
+:      015685 send_lmp_features_req:
+0x57e4 015686 force 9 ,pdata 
+0x57e5 015687 call msg_send_lmp 
+0x57e6 015688 fetch 8 ,mem_features 
+0x57e7 015689 istore 8 ,contw 
+0x57e8 015690 branch send_lmp_request 
+:      015692 sp_master_send_io_cap_get:
+0x57e9 015693 jam sp_flag_commit ,mem_master_sp_flag 
+0x57ea 015694 fetch 1 ,mem_sp_local_key_invalid 
+0x57eb 015695 rtnne sp_key_valid 
+0x57ec 015696 jam sp_master_stat_start_done ,mem_master_sp_state 
+0x57ed 015697 rtn 
+:      015699 sp_master_send_io_cap_send:
+0x57ee 015700 call tid_initiate 
+0x57ef 015701 jam lmp_io_cap_req ,mem_lmo_opcode2 
+0x57f0 015702 jam sp_stat_key_send ,mem_master_sp_state 
+0x57f1 015703 rtn 
+:      015706 sp_master_send_lmp_encapsulated_header:
+0x57f2 015707 call tid_initiate 
+0x57f3 015708 jam lmp_encapsulated_header ,mem_lmo_opcode2 
+0x57f4 015709 jam sp_stat_random_send ,mem_master_sp_state 
+0x57f5 015710 rtn 
+:      015712 sp_master_commitment_compare:
+0x57f6 015713 arg mem_sp_calc_result_high ,rega 
+0x57f7 015714 arg mem_sp_confirm_remote ,regb 
+0x57f8 015715 arg 16 ,loopcnt 
+0x57f9 015716 call string_compare 
+0x57fa 015717 branch sp_master_commitment_compare_success ,zero 
+0x57fb 015718 jam sp_stat_null ,mem_master_sp_state 
+0x57fc 015719 call master_clear_mem_master_sp_flag 
+0x57fd 015720 jam pdu_not_allowed ,mem_lmo_reason2 
+0x57fe 015721 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+0x57ff 015722 branch reject_lmp_packet 
+:      015723 sp_master_commitment_compare_success:
+0x5800 015724 jam sp_stat_confirm_calc ,mem_master_sp_state 
+0x5801 015725 call master_set_mem_master_sp_flag 
+0x5802 015726 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+0x5803 015727 branch accept_lmp_msg 
+:      015731 sp_master_send_lmp_simple_pairing_number:
+0x5804 015732 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+0x5805 015733 rtn 
+:      015737 sp_send_lmp_encapsulated_header:
+0x5806 015740 jam lmp_encapsulated_header ,mem_lmo_opcode2 
+0x5807 015742 rtn 
+:      015748 send_lmp_encapsulated_header:
+0x5808 015749 jam 0 ,mem_sp_local_key_send_count 
+0x5809 015750 force 4 ,pdata 
+0x580a 015751 call msg_send_lmp 
+0x580b 015752 force encapsulated_major_type_p192 ,pdata 
+0x580c 015753 istore 1 ,contw 
+0x580d 015754 force encapsulated_minor_type_p192 ,pdata 
+0x580e 015755 istore 1 ,contw 
+0x580f 015756 force encapsulated_len_p192 ,pdata 
+0x5810 015757 istore 1 ,contw 
+0x5811 015758 call check_localsm 
+0x5812 015759 branch send_lmp_request ,true 
+0x5813 015760 branch send_lmp_reply 
+:      015762 send_lmp_encapsulated_payload:
+0x5814 015764 force 17 ,pdata 
+0x5815 015765 call msg_send_lmp 
+0x5816 015766 fetch 1 ,mem_sp_local_key_send_count 
+0x5817 015767 arg mem_sp_pubkey_local ,contr 
+0x5818 015768 iadd contr ,contr 
+0x5819 015769 ifetch 8 ,contr 
+0x581a 015770 istore 8 ,contw 
+0x581b 015771 ifetch 8 ,contr 
+0x581c 015772 istore 8 ,contw 
+0x581d 015773 fetch 1 ,mem_sp_local_key_send_count 
+0x581e 015774 increase 16 ,pdata 
+0x581f 015775 store 1 ,mem_sp_local_key_send_count 
+0x5820 015776 call check_localsm 
+0x5821 015777 branch send_lmp_request ,true 
+0x5822 015778 branch send_lmp_reply 
+:      015781 sp_send_lmp_simple_pairing_comfirm:
+0x5823 015782 jam sp_stat_random_recv ,mem_sp_state 
+0x5824 015783 jam lmp_simple_pairing_confirm ,mem_lmo_opcode2 
+0x5825 015784 rtn 
+:      015785 send_lmp_simple_pairing_comfirm:
+0x5826 015788 force 17 ,pdata 
+0x5827 015789 call msg_send_lmp 
+0x5828 015790 arg mem_sp_calc_result_high ,contr 
+0x5829 015791 ifetch 8 ,contr 
+0x582a 015792 istore 8 ,contw 
+0x582b 015793 ifetch 8 ,contr 
+0x582c 015794 istore 8 ,contw 
+0x582d 015795 branch send_lmp_reply 
+:      015797 sp_send_lmp_simple_pairing_number:
+0x582e 015798 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+0x582f 015799 rtn 
+:      015801 send_lmp_simple_pairing_number:
+0x5830 015803 call check_localsm 
+0x5831 015804 call sp_local_random_key_generator ,true 
+0x5832 015805 force 17 ,pdata 
+0x5833 015806 call msg_send_lmp 
+0x5834 015807 arg mem_sp_random_local ,contr 
+0x5835 015808 ifetch 8 ,contr 
+0x5836 015809 istore 8 ,contw 
+0x5837 015810 ifetch 8 ,contr 
+0x5838 015811 istore 8 ,contw 
+0x5839 015812 call check_localsm 
+0x583a 015813 nbranch send_lmp_reply ,true 
+0x583b 015814 branch send_lmp_request ,true 
+:      015816 master_sp_sm_end:
+0x583c 015818 jam sp_stat_done ,mem_master_sp_state 
+:      015819 sp_aurand_send:
+0x583d 015820 call tid_initiate 
+0x583e 015821 jam lmp_au_rand ,mem_lmo_opcode2 
+0x583f 015822 call check_localsm_master 
+0x5840 015823 branch sp_master_key_prarm_push ,true 
+0x5841 015824 branch sp_link_key_prarm_push 
+:      015825 master_sp_send_lmp_dhkey_check:
+0x5842 015826 call tid_reply 
+:      015827 sp_send_lmp_dhkey_check:
+0x5843 015828 jam lmp_dhkey_check ,mem_lmo_opcode2 
+0x5844 015829 rtn 
+:      015830 send_lmp_dhkey_check:
+0x5845 015832 force 17 ,pdata 
+0x5846 015833 call msg_send_lmp 
+0x5847 015834 arg mem_sp_calc_result_high ,contr 
+0x5848 015835 ifetch 8 ,contr 
+0x5849 015836 istore 8 ,contw 
+0x584a 015837 ifetch 8 ,contr 
+0x584b 015838 istore 8 ,contw 
+0x584c 015839 call check_localsm 
+0x584d 015840 nbranch send_lmp_reply ,true 
+0x584e 015841 branch send_lmp_request ,true 
+:      015843 send_lmp_enc_key_size_mask_res:
+0x584f 015844 force 3 ,pdata 
+0x5850 015845 call msg_send_lmp 
+0x5851 015846 setarg 0xfffe 
+0x5852 015847 istore 2 ,contw 
+0x5853 015848 branch send_lmp_reply 
+:      015850 send_lmp_auto_rate:
+0x5854 015851 branch send_lmp_request 
+:      015852 send_lmp_clkoffset_req:
+0x5855 015853 branch send_lmp_request 
+:      015854 send_lmp_quality_of_service:
+0x5856 015855 branch send_lmp_request 
+:      015856 send_lmp_test_activate:
+0x5857 015857 branch send_lmp_request 
+:      015862 send_lmp_comb_key:
+0x5858 015863 call generate_random_number 
+0x5859 015864 arg mem_lap ,rega 
+0x585a 015865 call generate_linkkey 
+0x585b 015866 force 17 ,pdata 
+0x585c 015867 call msg_send_lmp 
+0x585d 015868 arg mem_kinit ,rega 
+0x585e 015869 arg mem_random_number ,regb 
+0x585f 015870 call xor16 
+0x5860 015871 nbranch send_lmp_follow ,master 
+0x5861 015872 branch send_lmp_tid 
+:      015874 send_lmp_inrand:
+0x5862 015875 call generate_random_number 
+0x5863 015876 arg mem_plap ,rega 
+0x5864 015877 call generate_kinit 
+:      015878 send_lmp_rand:
+0x5865 015879 force 17 ,pdata 
+0x5866 015880 call msg_send_lmp 
+0x5867 015881 arg mem_random_number ,contr 
+0x5868 015882 call memcpy16 
+0x5869 015883 fetch 1 ,mem_conn_sm 
+0x586a 015884 beq conn_sm_auth_wait ,send_lmp_request 
+0x586b 015885 beq conn_sm_pairing_wait ,send_lmp_request 
+0x586c 015886 branch send_lmp_tid 
+:      015888 send_lmp_aurand:
+0x586d 015889 fetch 1 ,mem_pairing_auth 
+0x586e 015890 branch send_lmp_aurand_notpairing ,blank 
+0x586f 015891 call check_localsm 
+0x5870 015892 call tid_initiate ,true 
+0x5871 015893 ncall tid_reply ,true 
+0x5872 015894 branch send_lmp_aurand_common 
+:      015895 send_lmp_aurand_notpairing:
+0x5873 015896 call tid_initiate 
+:      015897 send_lmp_aurand_common:
+0x5874 015898 call generate_random_number 
+0x5875 015899 branch send_lmp_rand 
+:      015901 send_lmp_sres:
+0x5876 015902 arg mem_lap ,rega 
+0x5877 015903 call function_e1 
+0x5878 015904 force 5 ,pdata 
+0x5879 015905 call msg_send_lmp 
+0x587a 015906 fetch 4 ,mem_input_store 
+0x587b 015907 istore 4 ,contw 
+0x587c 015908 arg mem_sres_tid ,temp 
+0x587d 015909 call special_tid_store 
+0x587e 015910 call copy_aco 
+0x587f 015911 call check_localsm 
+0x5880 015912 branch send_lmp_sres_master ,true 
+0x5881 015913 jam done_encryp ,mem_wait_encryption 
+0x5882 015914 fetch 1 ,mem_pairing_auth 
+0x5883 015915 rtn blank 
+0x5884 015916 jam lmp_au_rand ,mem_lmo_opcode2 
+:      015917 send_lmp_sres_master:
+0x5885 015918 fetch 1 ,mem_link_key_exists 
+0x5886 015919 rtn blank 
+:      015920 send_lmp_sres_startenc:
+0x5887 015921 call check_localsm 
+0x5888 015922 nbranch send_lmp_sres_startenc_slave ,true 
+0x5889 015923 fetch 1 ,mem_auth_enable 
+0x588a 015924 rtn blank 
+0x588b 015925 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x588c 015926 rtn 
+:      015927 send_lmp_sres_startenc_slave:
+0x588d 015928 rtnmark0 mark_slave_in_rand_accepted 
+0x588e 015929 set0 mark_slave_in_rand_accepted ,mark 
+0x588f 015930 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x5890 015931 rtn 
+:      015935 send_lmp_start_encryption:
+0x5891 015936 call generate_random_number 
+0x5892 015937 call function_e3 
+0x5893 015938 force 17 ,pdata 
+0x5894 015939 call msg_send_lmp 
+0x5895 015940 arg mem_random_number ,contr 
+0x5896 015941 call memcpy16 
+0x5897 015942 branch send_lmp_tid 
+:      015944 send_lmp_stop_encryption_req:
+0x5898 015945 force 1 ,pdata 
+0x5899 015946 call msg_send_lmp 
+0x589a 015947 branch send_lmp_tid 
+:      015949 send_lmp_encryption_key_size_req:
+0x589b 015950 force 2 ,pdata 
+0x589c 015951 call msg_send_lmp 
+0x589d 015952 force 16 ,pdata 
+0x589e 015953 istore 1 ,contw 
+0x589f 015954 store 1 ,mem_key_size 
+0x58a0 015955 branch send_lmp_tid 
+:      015957 msg_send_lmp:
+0x58a1 015959 lshift3 pdata ,pdata 
+0x58a2 015960 or_into 0x07 ,pdata 
+0x58a3 015961 store 1 ,mem_lmo_header_length 
+0x58a4 015962 arg 17 ,loopcnt 
+0x58a5 015963 arg mem_lmo_payload ,contw 
+0x58a6 015964 call clear_mem 
+0x58a7 015965 arg mem_lmo_payload ,contw 
+0x58a8 015966 rtn 
+:      015968 send_lmpext:
+0x58a9 015969 and pdata ,0x7f ,rega 
+0x58aa 015970 jam lmp_escape ,mem_lmp_to_send 
+0x58ab 015971 deposit queue 
+0x58ac 015972 call msg_send_lmp 
+0x58ad 015973 deposit rega 
+0x58ae 015974 istore 1 ,contw 
+0x58af 015975 rtn 
+:      015977 send_lmp_follow:
+0x58b0 015978 fetch 1 ,mem_lmp_to_send 
+0x58b1 015979 lshift pdata ,pdata 
+0x58b2 015980 fetcht 1 ,mem_state_map 
+0x58b3 015981 isolate1 smap_lmptid ,temp 
+0x58b4 015982 setflag true ,0 ,pdata 
+0x58b5 015983 branch send_lmp_exit 
+:      015986 send_lmp_tid:
+0x58b6 015987 fetcht 1 ,mem_state_map 
+0x58b7 015988 and_into 1 ,temp 
+0x58b8 015989 branch send_lmp_end 
+:      015991 send_lmp_reply:
+0x58b9 015992 force 0 ,temp 
+0x58ba 015993 branch send_lmp_end 
+:      015995 send_lmp_request:
+0x58bb 015996 force 1 ,temp 
+:      015997 send_lmp_end:
+0x58bc 015998 fetch 1 ,mem_lmp_to_send 
+0x58bd 015999 lshift pdata ,pdata 
+0x58be 016000 setflag master ,0 ,pdata 
+0x58bf 016001 ixor temp ,pdata 
+:      016002 send_lmp_exit:
+0x58c0 016003 store 1 ,mem_lmo_header_opcode 
+0x58c1 016004 jam 0 ,mem_lmp_to_send 
+0x58c2 016005 call lmo_fifo_process_lmo0empty 
+0x58c3 016006 enable user 
+0x58c4 016007 rtn 
+:      016010 lmo_fifo_check:
+0x58c5 016011 fetch 1 ,mem_lmo_opcode2 
+0x58c6 016012 rtn blank 
+0x58c7 016013 call lmo_fifo_process 
+0x58c8 016014 fetch 1 ,mem_lmo_opcode2 
+0x58c9 016015 rtn 
+:      016017 lmo_fifo_process:
+0x58ca 016018 set1 mark_ext_patch ,mark 
+0x58cb 016019 bpatch patch2b_4 ,mem_patch2b 
+0x58cc 016020 fetch 1 ,mem_lmp_to_send 
+0x58cd 016021 branch lmo_fifo_process_lmo0empty ,blank 
+0x58ce 016022 fetch 1 ,mem_lmo_opcode1 
+0x58cf 016023 nrtn blank 
+0x58d0 016024 branch lmo_fifo_process_lmo2to1 
+:      016025 lmo_fifo_process_lmo0empty:
+0x58d1 016026 fetch 1 ,mem_lmo_opcode1 
+0x58d2 016027 branch lmo_fifo_process_lmo1_empty ,blank 
+0x58d3 016028 fetch 3 ,mem_lmo_opcode1 
+0x58d4 016029 store 3 ,mem_lmp_to_send 
+0x58d5 016030 fetcht 1 ,mem_lmo_tid1 
+0x58d6 016031 fetch 1 ,mem_state_map 
+0x58d7 016032 set0 smap_lmptid ,pdata 
+0x58d8 016033 ior temp ,pdata 
+0x58d9 016034 store 1 ,mem_state_map 
+0x58da 016035 jam 0 ,mem_lmo_opcode1 
+:      016036 lmo_fifo_process_lmo2to1:
+0x58db 016037 fetch 1 ,mem_lmo_opcode2 
+0x58dc 016038 rtn blank 
+0x58dd 016039 fetch 4 ,mem_lmo_opcode2 
+0x58de 016040 store 4 ,mem_lmo_opcode1 
+0x58df 016041 jam 0 ,mem_lmo_opcode2 
+0x58e0 016042 rtn 
+:      016043 lmo_fifo_process_lmo1_empty:
+0x58e1 016044 fetch 1 ,mem_lmo_opcode2 
+0x58e2 016045 rtn blank 
+0x58e3 016046 fetch 3 ,mem_lmo_opcode2 
+0x58e4 016047 store 3 ,mem_lmp_to_send 
+0x58e5 016048 fetcht 1 ,mem_lmo_tid2 
+0x58e6 016049 fetch 1 ,mem_state_map 
+0x58e7 016050 set0 smap_lmptid ,pdata 
+0x58e8 016051 ior temp ,pdata 
+0x58e9 016052 store 1 ,mem_state_map 
+0x58ea 016053 jam 0 ,mem_lmo_opcode2 
+0x58eb 016054 rtn 
+:      016057 special_tid_store:
+0x58ec 016058 set1 mark_ext_patch ,mark 
+0x58ed 016059 bpatch patch2b_5 ,mem_patch2b 
+0x58ee 016060 fetch 1 ,mem_state_map 
+0x58ef 016061 copy pdata ,regc 
+0x58f0 016062 ifetch 1 ,temp 
+0x58f1 016063 call pop_tid_follow 
+0x58f2 016064 call send_lmp_follow 
+0x58f3 016065 copy regc ,pdata 
+0x58f4 016066 store 1 ,mem_state_map 
+0x58f5 016067 rtn 
+:      016069 tid_reply:
+0x58f6 016070 fetcht 1 ,mem_state_map 
+0x58f7 016071 set0 smap_lmptidinit ,temp 
+0x58f8 016072 storet 1 ,mem_state_map 
+0x58f9 016073 rtn 
+:      016075 tid_initiate:
+0x58fa 016076 fetcht 1 ,mem_state_map 
+0x58fb 016077 set1 smap_lmptidinit ,temp 
+0x58fc 016078 storet 1 ,mem_state_map 
+0x58fd 016079 rtn 
+:      016082 tid_check:
+0x58fe 016083 nsetflag master ,smap_lmptid ,pdata 
+0x58ff 016084 fetcht 1 ,mem_state_map 
+0x5900 016085 ixor temp ,pdata 
+0x5901 016086 isolate1 smap_lmptid ,pdata 
+0x5902 016087 rtn 
+:      016090 tid_set_reply:
+0x5903 016091 fetch 1 ,mem_state_map 
+0x5904 016092 setflag master ,smap_lmptid ,pdata 
+0x5905 016093 store 1 ,mem_state_map 
+0x5906 016094 rtn 
+:      016097 check_localsm:
+0x5907 016098 fetch 1 ,mem_sp_localsm 
+0x5908 016099 compare local_statemachine ,pdata ,0x7f 
+0x5909 016100 rtn 
+:      016101 setlocalsm_master:
+0x590a 016102 fetch 1 ,mem_sp_localsm 
+0x590b 016103 set1 7 ,pdata 
+0x590c 016104 store 1 ,mem_sp_localsm 
+0x590d 016105 rtn 
+:      016106 setlocalsm_slave:
+0x590e 016107 fetch 1 ,mem_sp_localsm 
+0x590f 016108 set0 7 ,pdata 
+0x5910 016109 store 1 ,mem_sp_localsm 
+0x5911 016110 rtn 
+:      016111 check_localsm_master:
+0x5912 016112 fetch 1 ,mem_sp_localsm 
+0x5913 016113 isolate1 7 ,pdata 
+0x5914 016114 store 1 ,mem_sp_localsm 
+0x5915 016115 rtn 
+:      016117 generate_random_number:
+0x5916 016119 arg mem_random_number ,contw 
+:      016120 generate_random:
+0x5917 016121 force 16 ,loopcnt 
+:      016122 generate_random_another:
+:      016123 generate_random_loop:
+0x5918 016124 random pdata 
+0x5919 016125 istore 1 ,contw 
+0x591a 016126 loop generate_random_another 
+0x591b 016127 rtn 
+:      016129 generate_linkkey:
+0x591c 016130 call function_e21 
+0x591d 016131 arg mem_link_key ,rega 
+0x591e 016132 arg mem_input_store ,regb 
+0x591f 016133 ifetch 8 ,rega 
+0x5920 016134 fetcht 1 ,mem_state 
+0x5921 016135 nsetflag blank ,state_combkey ,temp 
+0x5922 016136 storet 1 ,mem_state 
+0x5923 016137 copy rega ,contw 
+0x5924 016138 call xor16 
+0x5925 016139 branch generate_linkkey_continue 
+:      016145 process_conn_sm:
+0x5926 016147 set1 mark_ext_patch ,mark 
+0x5927 016148 bpatch patch2b_6 ,mem_patch2b 
+0x5928 016150 call lmo_fifo_check 
+0x5929 016151 nrtn blank 
+:      016152 process_conn_sm_continue:
+0x592a 016153 fetch 1 ,mem_conn_sm 
+0x592b 016154 rtn blank 
+0x592c 016158 beq conn_sm_send_conn_req ,host_create_conn_send_conn_req 
+0x592d 016159 beq conn_sm_wait_conn_accept ,host_create_conn_wait_accept 
+0x592e 016160 beq conn_sm_send_features ,host_create_conn_send_features 
+0x592f 016161 beq conn_sm_wait_features_res ,host_create_conn_waiting 
+0x5930 016162 beq conn_sm_send_switch ,host_create_conn_send_switch 
+0x5931 016163 beq conn_sm_auth_pair ,host_create_conn_auth_pair 
+0x5932 016164 beq conn_sm_auth_pair_wait ,host_create_conn_auth_pair_wait 
+0x5933 016165 beq conn_sm_encrypt ,host_create_conn_encrypt 
+0x5934 016166 beq conn_sm_encrypt_wait ,host_create_conn_encrypt_wait 
+0x5935 016167 beq conn_sm_encrypt_wait_clear ,host_create_conn_encrypt_wait_clear 
+0x5936 016168 beq conn_sm_send_setup_complete ,host_create_conn_send_setup_complete 
+0x5937 016169 beq conn_sm_wait_setup_complete ,host_create_conn_wait_setup_complete 
+0x5938 016170 beq conn_sm_detach_delay ,host_create_conn_master_detach 
+0x5939 016171 beq conn_sm_send_version ,host_create_conn_send_version 
+0x593a 016172 beq conn_sm_wait_version ,host_create_conn_waiting 
+0x593b 016173 beq conn_sm_wait_switch_after_host_connection ,host_creat_conn_wait_switch 
+0x593c 016174 beq conn_sm_send_features_ext ,host_creat_conn_send_feat_ext 
+0x593d 016175 beq conn_sm_wait_features_ext ,host_create_conn_waiting 
+0x593e 016176 beq conn_sm_pairing ,host_create_conn_pairing 
+0x593f 016177 beq conn_sm_pairing_wait ,host_create_conn_pairing_wait 
+0x5940 016178 beq conn_sm_auth ,host_create_conn_auth 
+0x5941 016179 beq conn_sm_auth_wait ,host_create_conn_auth_wait 
+0x5942 016180 beq conn_sm_done ,host_create_conn_done 
+0x5943 016181 beq conn_sm_wait_done ,host_create_conn_done_wait 
+0x5944 016182 jam conn_sm_standby ,mem_conn_sm 
+0x5945 016184 rtn 
+:      016185 host_create_conn_done:
+0x5946 016186 fetch 1 ,mem_lmp_conn_state 
+0x5947 016187 rtnbit0 received_setup_complete 
+0x5948 016188 rtnbit0 sent_setup_complete 
+0x5949 016189 jam conn_sm_standby ,mem_conn_sm 
+0x594a 016190 call host_conn_judge_encrypt 
+0x594b 016191 branch scheduler_start_upper_sm 
+:      016193 host_conn_judge_encrypt:
+0x594c 016194 fetch 1 ,mem_connection_options 
+0x594d 016195 rtnbit0 connection_encrypt 
+0x594e 016196 jam conn_sm_encrypt_wait ,mem_conn_sm 
+0x594f 016197 rtn 
+:      016199 host_create_conn_done_wait:
+0x5950 016200 arg enpt_delay_timer ,queue 
+0x5951 016201 call timer_check 
+0x5952 016202 nrtn blank 
+0x5953 016203 jam conn_sm_done ,mem_conn_sm 
+0x5954 016204 rtn 
+:      016206 host_create_conn_auth:
+0x5955 016207 fetch 1 ,mem_connection_options 
+0x5956 016208 set0 connection_auth ,pdata 
+0x5957 016209 store 1 ,mem_connection_options 
+0x5958 016210 jam conn_sm_auth_wait ,mem_conn_sm 
+0x5959 016211 jam lmp_au_rand ,mem_lmo_opcode2 
+0x595a 016212 rtn 
+:      016213 host_create_conn_auth_wait:
+0x595b 016214 rtn 
+:      016215 host_create_conn_pairing:
+0x595c 016216 fetch 1 ,mem_pincode_state 
+0x595d 016217 rtnne pincode_state_pincode_ready 
+0x595e 016218 call host_auth 
+0x595f 016219 jam conn_sm_pairing_wait ,mem_conn_sm 
+0x5960 016220 rtn 
+:      016222 host_create_conn_pairing_wait:
+0x5961 016223 rtn 
+:      016224 host_creat_conn_send_feat_ext:
+0x5962 016225 jam conn_sm_wait_features_ext ,mem_conn_sm 
+0x5963 016226 jam lmp_ext_features_req ,mem_lmo_opcode2 
+0x5964 016227 rtn 
+:      016228 host_create_conn_send_version:
+0x5965 016229 jam conn_sm_wait_version ,mem_conn_sm 
+0x5966 016230 jam lmp_version_req ,mem_lmo_opcode2 
+0x5967 016231 rtn 
+:      016233 host_creat_conn_wait_switch:
+0x5968 016234 fetch 1 ,mem_switch_flag 
+0x5969 016235 rtneq switch_flag_init 
+0x596a 016236 beq switch_flag_accept ,host_create_conn_switch_accept 
+0x596b 016237 arg switch_wait_timer ,queue 
+0x596c 016238 call timer_check 
+0x596d 016239 nrtn blank 
+0x596e 016240 jam switch_flag_init ,mem_switch_flag 
+0x596f 016241 branch host_create_conn_switch 
+:      016242 host_create_conn_switch_accept:
+0x5970 016243 rtn master 
+0x5971 016244 branch host_create_conn_auth_pair 
+:      016246 host_create_conn_send_features:
+0x5972 016247 jam conn_sm_wait_features_res ,mem_conn_sm 
+0x5973 016248 jam lmp_features_req ,mem_lmo_opcode2 
+0x5974 016249 rtn 
+:      016250 host_create_conn_send_switch:
+0x5975 016251 jam lmp_switch_req ,mem_lmo_opcode2 
+0x5976 016252 set1 mark_switch_initiated ,mark 
+0x5977 016253 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+0x5978 016254 setarg 0x1ff 
+0x5979 016255 store 2 ,mem_soft_timer 
+0x597a 016256 rtn 
+:      016257 host_create_conn_send_conn_req:
+0x597b 016258 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+0x597c 016259 jam 0xff ,mem_soft_timer 
+0x597d 016260 set0 mark_reconn_recieve_switch ,mark 
+0x597e 016261 jam lmp_host_connection_req ,mem_lmo_opcode2 
+0x597f 016262 branch init_lmp_reinit 
+:      016263 host_create_conn_wait_accept:
+0x5980 016264 rtnmark1 mark_reconn_recieve_switch 
+0x5981 016265 fetch 2 ,mem_soft_timer 
+0x5982 016266 sub pdata ,1 ,pdata 
+0x5983 016267 branch host_create_conn_resend ,zero 
+0x5984 016268 store 2 ,mem_soft_timer 
+0x5985 016269 rtn 
+:      016270 host_create_conn_resend:
+0x5986 016271 jam conn_sm_send_switch ,mem_conn_sm 
+0x5987 016272 rtn 
+:      016273 host_create_conn_waiting:
+0x5988 016275 rtn 
+:      016277 host_create_conn_switch:
+0x5989 016278 fetch 1 ,mem_lmp_conn_state 
+0x598a 016279 rtnbit0 sent_setup_complete 
+0x598b 016280 rtnbit0 received_setup_complete 
+0x598c 016281 fetch 1 ,mem_connection_options 
+0x598d 016282 set0 connection_switch ,pdata 
+0x598e 016283 store 1 ,mem_connection_options 
+0x598f 016284 jam lmp_switch_req ,mem_lmo_opcode2 
+0x5990 016285 jam conn_sm_wait_switch_after_host_connection ,mem_conn_sm 
+0x5991 016286 rtn 
+:      016288 host_create_conn_send_setup_complete:
+0x5992 016289 jam conn_sm_wait_setup_complete ,mem_conn_sm 
+0x5993 016290 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5994 016291 rtn 
+:      016293 host_create_conn_wait_setup_complete:
+0x5995 016294 fetch 1 ,mem_lmp_conn_state 
+0x5996 016295 rtnbit0 received_setup_complete 
+0x5997 016296 jam conn_sm_standby ,mem_conn_sm 
+0x5998 016298 rtn 
+:      016299 host_create_conn_wait_setup_complete_rtn:
+0x5999 016300 jam conn_sm_auth_pair ,mem_conn_sm 
+0x599a 016301 rtn 
+:      016303 host_create_conn_master_detach:
+0x599b 016304 fetch 1 ,mem_soft_timer 
+0x599c 016305 increase -1 ,pdata 
+0x599d 016306 branch host_create_conn_send_detach ,blank 
+0x599e 016307 store 1 ,mem_soft_timer 
+0x599f 016308 rtn 
+:      016309 host_create_conn_send_detach:
+0x59a0 016310 jam lmp_detach ,mem_lmo_opcode2 
+0x59a1 016311 jam local_host ,mem_disconn_reason_send 
+0x59a2 016312 jam 0 ,mem_conn_sm 
+0x59a3 016313 rtn 
+:      016314 host_create_conn_auth_pair:
+0x59a4 016316 fetch 1 ,mem_connection_options 
+0x59a5 016317 bbit1 connection_switch ,host_create_conn_switch 
+0x59a6 016318 bbit1 connection_auth ,host_create_conn_auth_pair_true 
+:      016319 host_create_conn_sm_done:
+0x59a7 016320 jam conn_sm_done ,mem_conn_sm 
+0x59a8 016321 rtn 
+:      016322 host_create_conn_auth_pair_true:
+0x59a9 016323 fetch 1 ,mem_link_key_exists 
+0x59aa 016324 branch host_create_conn_auth_pair_nokey ,blank 
+0x59ab 016325 fetch 1 ,mem_lmp_conn_state 
+0x59ac 016326 rtnbit0 sent_setup_complete 
+0x59ad 016327 rtnbit0 received_setup_complete 
+0x59ae 016328 fetch 4 ,mem_aurand_send_delay_time 
+0x59af 016329 arg 100 ,temp 
+0x59b0 016330 iadd temp ,temp 
+0x59b1 016331 copy clkn_bt ,pdata 
+0x59b2 016332 isub temp ,null 
+0x59b3 016333 nrtn positive 
+0x59b4 016334 branch host_create_conn_auth 
+:      016338 host_create_conn_auth_pair_nokey:
+0x59b5 016339 jam conn_sm_pairing ,mem_conn_sm 
+0x59b6 016340 jam 4 ,mem_pin_length 
+0x59b7 016341 setarg 0x3030 
+0x59b8 016342 store 2 ,mem_pin 
+0x59b9 016343 istore 2 ,contw 
+0x59ba 016344 jam pincode_state_pincode_ready ,mem_pincode_state 
+0x59bb 016345 branch host_create_conn_pairing 
+:      016347 host_create_conn_auth_pair_wait:
+0x59bc 016348 rtn 
+:      016349 host_create_conn_encrypt:
+0x59bd 016350 fetch 1 ,mem_connection_options 
+0x59be 016351 bbit1 connection_encrypt ,host_create_conn_encrypt_start 
+0x59bf 016352 jam conn_sm_done ,mem_conn_sm 
+0x59c0 016353 rtn 
+:      016355 host_create_conn_encrypt_start:
+0x59c1 016356 fetch 1 ,mem_connection_options 
+0x59c2 016357 set0 connection_encrypt ,pdata 
+0x59c3 016358 store 1 ,mem_connection_options 
+0x59c4 016359 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x59c5 016360 rtn 
+:      016362 host_create_conn_encrypt_wait:
+0x59c6 016363 fetch 1 ,mem_wait_encryption 
+0x59c7 016364 rtn blank 
+0x59c8 016365 jam conn_sm_standby ,mem_conn_sm 
+0x59c9 016366 branch host_create_conn_encrypt_start 
+:      016368 host_create_conn_encrypt_wait_clear:
+0x59ca 016369 jam conn_sm_send_setup_complete ,mem_conn_sm 
+0x59cb 016370 rtn 
+:      016372 host_auth:
+0x59cc 016373 fetch 1 ,mem_op 
+0x59cd 016374 bbit1 op_inrand_req ,remote_auth 
+0x59ce 016375 call tid_initiate 
+0x59cf 016376 jam lmp_in_rand ,mem_lmo_opcode2 
+0x59d0 016377 branch cmd_exit 
+:      016378 remote_auth:
+0x59d1 016379 fetch 1 ,mem_op 
+0x59d2 016380 set0 op_inrand_req ,pdata 
+0x59d3 016381 store 1 ,mem_op 
+0x59d4 016382 call lmp_accept_inrand 
+0x59d5 016383 call tid_set_reply 
+0x59d6 016384 branch cmd_exit 
+:      016386 pincode_reinit:
+0x59d7 016387 setarg 4 
+0x59d8 016388 store 1 ,mem_pin_length 
+0x59d9 016389 setarg 0x3030 
+0x59da 016390 istore 2 ,contw 
+0x59db 016391 istore 2 ,contw 
+0x59dc 016392 rtn 
+:      016400 module_init:
+0x59dd 016401 rtn wake 
+0x59de 016402 jam 0 ,mem_module_task 
+0x59df 016403 call le_modified_name 
+0x59e0 016404 call adc_init_data 
+0x59e1 016405 setarg module_process_idle 
+0x59e2 016406 store 2 ,mem_cb_idle_process 
+0x59e3 016407 setarg module_conn_process 
+0x59e4 016408 store 2 ,mem_cb_bt_process 
+0x59e5 016409 setarg module_process_bb_event 
+0x59e6 016410 store 2 ,mem_cb_bb_event_process 
+0x59e7 016411 setarg module_conn_process 
+0x59e8 016412 store 2 ,mem_cb_le_process 
+0x59e9 016413 setarg module_lpm_lock 
+0x59ea 016414 store 2 ,mem_cb_check_wakelock 
+0x59eb 016415 setarg module_le_tx_update_data 
+0x59ec 016416 store 2 ,mem_cb_update_notify_value 
+0x59ed 016417 setarg module_le_tx_update_notify_continue 
+0x59ee 016418 store 2 ,mem_cb_update_notify_continue 
+0x59ef 016419 setarg module_hci_event_receive_spp_data 
+0x59f0 016420 store 2 ,mem_cb_receive_spp_data 
+0x59f1 016421 setarg module_le_receive_data 
+0x59f2 016422 store 2 ,mem_cb_att_write 
+0x59f3 016423 set1 mark_ext_patch ,mark 
+0x59f4 016424 bpatch patch2b_7 ,mem_patch2b 
+0x59f5 016425 call module_lpm_uart_init 
+0x59f6 016426 call module_gpio_init 
+0x59f7 016427 call check_module_disabled 
+0x59f8 016428 call eeprom_load_reconn_info 
+0x59f9 016429 branch module_hci_event_enter_standby_mode 
+:      016432 module_lpm_uart_init:
+0x59fa 016433 fetch 4 ,mem_module_uart_rx_buffer 
+0x59fb 016434 hstore 4 ,core_uart_rsaddr 
+0x59fc 016436 fetch 4 ,mem_module_uart_tx_buffer 
+0x59fd 016437 hstore 4 ,core_uart_tsaddr 
+0x59fe 016439 hfetch 1 ,core_gpio_sel1 
+0x59ff 016440 or_into 0x04 ,pdata 
+0x5a00 016441 hstore 1 ,core_gpio_sel1 
+0x5a01 016442 jam 0xff ,mem_ucode_id_local 
+0x5a02 016443 hjam 0x0 ,core_uart_ctrl 
+0x5a03 016445 fetch 2 ,mem_module_uart_rx_buffer 
+0x5a04 016446 hstore 2 ,core_uart_rrptr 
+0x5a05 016447 fetch 2 ,mem_module_uart_tx_buffer 
+0x5a06 016448 hstore 2 ,core_uart_twptr 
+0x5a07 016449 hstore 2 ,core_uart_trptrp 
+0x5a08 016451 hfetch 4 ,core_gpio_pu0 
+0x5a09 016452 set1 7 ,pdata 
+0x5a0a 016453 hstore 4 ,core_gpio_pu0 
+0x5a0b 016455 call hci_init_common 
+0x5a0c 016456 fetch 1 ,mem_module_flag 
+0x5a0d 016457 isolate1 module_flag_uart_flow_control ,pdata 
+0x5a0e 016458 hfetcht 1 ,core_uart_ctrl 
+0x5a0f 016459 setflag true ,4 ,temp 
+0x5a10 016460 hstoret 1 ,core_uart_ctrl 
+0x5a11 016461 rtn 
+:      016465 module_lpm_init:
+0x5a12 016466 call module_lpm_uart_init 
+:      016469 module_gpio_init:
+0x5a13 016474 fetcht 1 ,mem_module_connect_state_gpio 
+0x5a14 016475 call gpio_config_output 
+0x5a15 016476 call module_set_conn_pin_low 
+0x5a16 016478 fetcht 1 ,mem_module_wake_up_gpio 
+0x5a17 016479 branch gpio_config_input 
+:      016481 module_lpm_lock:
+0x5a18 016482 fetcht 1 ,mem_module_wake_up_gpio 
+0x5a19 016483 call gpio_get_bit 
+0x5a1a 016484 nbranch app_put_lpm_wake_lock ,true 
+0x5a1b 016485 branch app_get_lpm_wake_lock 
+:      016489 module_process_idle:
+:      016490 module_conn_process:
+:      016491 module_app_dispatch:
+0x5a1c 016492 set1 mark_ext_patch ,mark 
+0x5a1d 016493 bpatch patch2c_0 ,mem_patch2c 
+0x5a1e 016494 call module_control_air_flow 
+0x5a1f 016495 call l2cap_malloc_is_fifo_full 
+0x5a20 016496 nrtn blank 
+0x5a21 016497 branch module_process 
+:      016498 module_process_bb_event:
+0x5a22 016499 copy regc ,pdata 
+0x5a23 016500 beq bt_evt_bb_connected ,module_process_bb_conn 
+0x5a24 016501 beq bt_evt_bb_disconnected ,module_process_bb_event_disconned 
+0x5a25 016502 beq bt_evt_reconn_failed ,module_process_reconn_fail 
+0x5a26 016503 beq bt_evt_setup_complete ,module_process_setup_complete 
+0x5a27 016504 beq bt_evt_spp_connected ,module_process_spp_connected 
+0x5a28 016505 beq bt_evt_spp_disconnected ,module_process_spp_disconnected 
+0x5a29 016506 beq bt_evt_pincode_req ,module_process_evt_pincode_req 
+0x5a2a 016507 beq bt_evt_enter_sniff ,module_process_enter_sniff 
+0x5a2b 016508 beq bt_evt_exit_sniff ,module_process_exit_sniff 
+0x5a2c 016509 beq bt_evt_reconn_page_timeout ,module_process_page_time_out 
+0x5a2d 016510 beq bt_evt_le_connected ,module_process_le_conn 
+0x5a2e 016511 beq bt_evt_le_disconnected ,module_process_bb_even_le_disconn 
+0x5a2f 016512 beq bt_evt_unsniff_accept ,module_process_unsniff_accept 
+0x5a30 016513 beq bt_evt_unsniff_not_accept ,module_process_unsniff_not_accept 
+0x5a31 016514 beq bt_evt_le_pairing_fail ,module_hci_event_le_pairing_fail 
+0x5a32 016515 beq bt_evt_le_pairing_success ,module_hci_event_le_pairing_success 
+0x5a33 016516 beq bt_evt_le_start_enc ,module_hci_event_start_enc 
+0x5a34 016517 beq bt_evt_le_pause_enc ,module_hci_event_pause_enc 
+0x5a35 016518 beq bt_evt_le_tk_generate ,module_hci_event_le_tk 
+0x5a36 016519 beq bt_evt_bt_gkey_generate ,module_hci_event_gkey_generate 
+0x5a37 016520 beq bt_evt_bt_get_passkey ,module_hci_event_passkey_entry_mode 
+0x5a38 016521 beq bt_evt_bt_pairing_fail ,module_hci_event_bt_pairing_fail 
+0x5a39 016522 beq bt_evt_bt_pairing_success ,module_hci_event_bt_pairing_success 
+0x5a3a 016523 and pdata ,0x0f ,temp 
+0x5a3b 016524 and_into bt_evt_timer_mask ,pdata 
+0x5a3c 016525 beq bt_evt_timer_init ,module_bb_event_timer 
+0x5a3d 016526 rtn 
+:      016529 module_process_bb_event_disconned:
+0x5a3e 016530 fetch 1 ,mem_flag_pairing_state 
+0x5a3f 016531 ncall module_hci_event_bt_pairing_fail ,blank 
+0x5a40 016532 call module_disconn_start 
+0x5a41 016533 fetch 2 ,mem_ui_state_map 
+0x5a42 016534 rtnbit0 ui_state_bt_spp_conn 
+0x5a43 016535 branch module_spp_disconnected 
+:      016537 module_process_spp_connected:
+0x5a44 016538 fetch 2 ,mem_ui_state_map 
+0x5a45 016539 set1 ui_state_bt_spp_conn ,pdata 
+0x5a46 016541 store 2 ,mem_ui_state_map 
+0x5a47 016542 fetch 1 ,mem_module_spp_lpm_mult 
+0x5a48 016543 store 1 ,mem_lpm_mult 
+0x5a49 016544 call module_set_conn_pin_low 
+0x5a4a 016545 branch module_hci_event_spp_connect 
+:      016547 module_process_spp_disconnected:
+:      016549 module_spp_disconnected:
+0x5a4b 016550 fetch 2 ,mem_ui_state_map 
+0x5a4c 016551 set0 ui_state_bt_spp_conn ,pdata 
+0x5a4d 016552 store 2 ,mem_ui_state_map 
+0x5a4e 016553 branch module_hci_event_spp_disconnect 
+:      016556 module_process_enter_sniff:
+:      016558 module_sniff_param_check:
+0x5a4f 016561 fetch 2 ,mem_context + coffset_tsniff 
+0x5a50 016562 rshift pdata ,pdata 
+0x5a51 016563 fetcht 2 ,mem_sniff_param_interval 
+0x5a52 016564 isub temp ,null 
+0x5a53 016565 nbranch module_sniff_param_check_unsniff ,zero 
+0x5a54 016566 branch app_lpm_mult_enable 
+:      016567 module_sniff_param_check_unsniff:
+0x5a55 016568 fetch 1 ,mem_module_task 
+0x5a56 016569 rtnbit1 moudle_task_unsinff 
+0x5a57 016570 hfetch 2 ,core_uart_rxitems 
+0x5a58 016571 ncall module_set_unsniff_task_flag ,blank 
+0x5a59 016572 branch app_bt_sniff_exit 
+:      016574 module_process_exit_sniff:
+0x5a5a 016575 branch app_lpm_mult_disable 
+:      016577 module_process_setup_complete:
+0x5a5b 016578 branch module_conn_start 
+:      016580 module_process_bb_even_le_disconn:
+0x5a5c 016581 call module_disconn_start 
+0x5a5d 016582 branch module_hci_event_le_disconnect 
+:      016584 module_process_evt_pincode_req:
+0x5a5e 016585 branch app_bt_set_pincode 
+:      016589 module_process_unsniff_accept:
+0x5a5f 016590 fetch 1 ,mem_module_task 
+0x5a60 016591 bbit0 moudle_task_unsinff ,app_bt_enter_sniff 
+0x5a61 016592 branch module_clear_unsniff_task_flag 
+:      016594 module_process_unsniff_not_accept:
+0x5a62 016595 branch module_clear_unsniff_task_flag 
+:      016598 module_process_le_conn:
+0x5a63 016599 call module_conn_start 
+0x5a64 016600 fetch 1 ,mem_module_le_lpm_mult 
+0x5a65 016601 store 1 ,mem_lpm_mult 
+0x5a66 016602 branch module_hci_event_le_connect 
+:      016605 module_process_bb_conn:
+0x5a67 016606 jam 0 ,mem_flag_mode_ssp_pin 
+0x5a68 016607 rtn 
+:      016609 module_process_page_time_out:
+:      016610 module_process_reconn_fail:
+:      016611 module_disconn_start:
+0x5a69 016612 call module_start_adv_discovery_by_command 
+0x5a6a 016613 branch module_set_conn_pin_high 
+:      016616 module_set_conn_pin_high:
+0x5a6b 016617 fetcht 1 ,mem_module_connect_state_gpio 
+0x5a6c 016618 branch gpio_out_active 
+:      016620 module_conn_start:
+0x5a6d 016621 call module_stop_adv_discovery 
+0x5a6e 016622 branch module_set_conn_pin_low 
+:      016624 module_stop_adv_discovery:
+0x5a6f 016625 fetch 1 ,mem_module_state 
+0x5a70 016626 isolate1 moudle_state_bt_bit ,pdata 
+0x5a71 016627 call app_bt_stop_discovery ,true 
+0x5a72 016628 fetch 1 ,mem_module_state 
+0x5a73 016629 isolate1 moudle_state_ble_bit ,pdata 
+0x5a74 016630 call app_ble_stop_adv ,true 
+0x5a75 016631 rtn 
+:      016632 module_set_conn_pin_low:
+0x5a76 016633 fetcht 1 ,mem_module_connect_state_gpio 
+0x5a77 016634 branch gpio_out_inactive 
+:      016636 module_process_with_credit:
+0x5a78 016637 fetch 1 ,mem_credit_flag 
+0x5a79 016638 rtneq credit_disable 
+0x5a7a 016639 branch rfcomm_send_uih_without_payload 
+:      016641 module_process:
+0x5a7b 016642 set1 mark_ext_patch ,mark 
+0x5a7c 016643 bpatch patch2c_1 ,mem_patch2c 
+0x5a7d 016644 hfetch 1 ,core_uart_status 
+0x5a7e 016645 bbit1 uart_status_rx_fifo_empty ,module_process_with_credit 
+0x5a7f 016646 call get_uart_rrptr 
+0x5a80 016647 ifetch 1 ,contru 
+0x5a81 016648 bne 0x01 ,module_hci_in_excp 
+0x5a82 016649 hfetch 2 ,core_uart_rxitems 
+0x5a83 016650 sub pdata ,2 ,null 
+0x5a84 016651 rtn positive 
+0x5a85 016652 ifetch 1 ,contru 
+0x5a86 016653 store 1 ,mem_uart_opcode 
+0x5a87 016654 ifetcht 1 ,contru 
+0x5a88 016655 copy contru ,rega 
+0x5a89 016656 storet 1 ,mem_uart_len 
+0x5a8a 016657 add temp ,3 ,temp 
+0x5a8b 016658 hfetch 2 ,core_uart_rxitems 
+0x5a8c 016659 isub temp ,temp 
+0x5a8d 016660 nrtn positive 
+0x5a8e 016661 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5a8f 016662 call module_hci_cmd_control 
+0x5a90 016663 fetch 1 ,mem_module_temp_nl_discard_packet 
+0x5a91 016664 rtneq hci_not_discard_packet 
+0x5a92 016665 branch module_hci_dicard_packet 
+:      016667 module_hci_in_excp:
+0x5a93 016668 call module_hci_event_invalid_packet 
+0x5a94 016669 call wait_uarttx 
+0x5a95 016670 branch module_hci_release_except 
+:      016673 module_hci_release_except:
+0x5a96 016674 set1 mark_ext_patch ,mark 
+0x5a97 016675 bpatch patch2c_2 ,mem_patch2c 
+0x5a98 016676 hfetch 2 ,core_uart_rxitems 
+0x5a99 016677 rtn blank 
+0x5a9a 016678 call get_uart_rrptr 
+0x5a9b 016679 ifetch 1 ,contru 
+0x5a9c 016680 sub pdata ,0x01 ,null 
+0x5a9d 016681 ncall module_hci_dicard_bytes ,zero 
+0x5a9e 016682 nbranch module_hci_release_except ,zero 
+0x5a9f 016683 ifetch 1 ,contru 
+0x5aa0 016684 rtneq hci_cmd_spp_data_req 
+0x5aa1 016685 rtneq hci_cmd_set_credit_given 
+0x5aa2 016686 increase -1 ,contru 
+0x5aa3 016687 call module_hci_dicard_bytes 
+0x5aa4 016688 branch module_hci_release_except 
+:      016690 module_hci_dicard_packet:
+0x5aa5 016691 call get_uart_rrptr 
+0x5aa6 016692 increase 2 ,contru 
+0x5aa7 016693 ifetch 1 ,contru 
+0x5aa8 016694 iadd contru ,contru 
+:      016695 module_hci_dicard_bytes:
+0x5aa9 016696 branch uartd_rxdone 
+:      016700 module_hci_cmd_control:
+0x5aaa 016701 set1 mark_ext_patch ,mark 
+0x5aab 016702 bpatch patch2c_3 ,mem_patch2c 
+0x5aac 016703 fetch 1 ,mem_uart_opcode 
+0x5aad 016704 beq hci_cmd_set_bt_addr_req ,module_hci_cmd_set_bt_addr 
+0x5aae 016705 beq hci_cmd_set_le_addr_req ,module_hci_cmd_set_le_addr 
+0x5aaf 016706 beq hci_cmd_set_visibility_req ,module_hci_cmd_set_visibility 
+0x5ab0 016707 beq hci_cmd_set_bt_name_req ,module_hci_cmd_set_bt_name 
+0x5ab1 016708 beq hci_cmd_set_le_name_req ,module_hci_cmd_set_le_name 
+0x5ab2 016709 beq hci_cmd_spp_data_req ,module_hci_cmd_receive_spp_data 
+0x5ab3 016710 beq hci_cmd_le_data_req ,module_hci_cmd_receive_le_data 
+0x5ab4 016711 beq hci_cmd_status_irq ,module_hci_cmd_inquire_status 
+0x5ab5 016712 beq hci_cmd_set_pairing_req ,module_hci_cmd_set_pairing_mode 
+0x5ab6 016713 beq hci_cmd_set_pincode_req ,module_hci_cmd_set_pincode 
+0x5ab7 016714 beq hci_cmd_set_uartcontrol_req ,module_hci_cmd_set_uart_control_mode 
+0x5ab8 016715 beq hci_cmd_set_uart_baud_req ,module_hci_cmd_set_uart_baud 
+0x5ab9 016716 beq hci_cmd_version_req ,module_hci_cmd_version_request 
+0x5aba 016717 beq hci_cmd_bt_disconnect ,module_hci_cmd_bt_disconnect 
+0x5abb 016718 beq hci_cmd_ble_disconnect ,module_hci_cmd_ble_disconnect 
+0x5abc 016719 beq hci_cmd_set_nvram_req ,module_hci_cmd_set_nvram 
+0x5abd 016720 beq hci_cmd_confirm_gkey ,module_hci_cmd_confirm_gkey 
+0x5abe 016721 beq hci_cmd_set_credit_given ,module_hci_cmd_set_credit_given 
+0x5abf 016722 beq hci_cmd_auto_adv_scan ,module_hci_cmd_auto_adv 
+0x5ac0 016723 beq hci_cmd_power_req ,module_hci_cmd_power_request 
+0x5ac1 016724 beq hci_cmd_power_set ,module_hci_cmd_power_set 
+0x5ac2 016725 beq hci_cmd_passkey_entry ,module_hci_cmd_passkey_entry 
+0x5ac3 016726 beq hci_cmd_set_gpio ,module_hci_cmd_set_gpio 
+0x5ac4 016727 beq hci_cmd_read_gpio ,module_hci_cmd_read_gpio 
+0x5ac5 016728 beq hci_cmd_le_set_pairing ,module_hci_cmd_le_set_pairing_mode 
+0x5ac6 016729 beq hci_cmd_le_set_adv_data ,module_hci_cmd_le_set_adv_data 
+0x5ac7 016730 beq hci_cmd_le_set_scan_data ,module_hci_cmd_le_set_scan_data 
+0x5ac8 016731 beq hci_cmd_le_send_conn_update_req ,module_hci_cmd_le_send_conn_update_req 
+0x5ac9 016732 beq hci_cmd_le_start_pairing ,module_hci_cmd_le_start_pairing 
+0x5aca 016733 beq hci_cmd_le_confirm_gkey ,module_hci_cmd_le_confirm_gkey 
+0x5acb 016734 branch module_hci_event_receive_invalid_cmd 
+:      016739 module_hci_cmd_set_bt_addr:
+0x5acc 016740 fetch 1 ,mem_uart_len 
+0x5acd 016741 bne 6 ,module_hci_event_receive_invalid_cmd 
+0x5ace 016742 ifetch 6 ,contru 
+0x5acf 016743 store 6 ,mem_lap 
+0x5ad0 016744 branch module_hci_event_receive_valid_cmd 
+:      016747 module_hci_cmd_set_le_addr:
+0x5ad1 016748 fetch 1 ,mem_uart_len 
+0x5ad2 016749 bne 6 ,module_hci_event_receive_invalid_cmd 
+0x5ad3 016750 ifetch 6 ,contru 
+0x5ad4 016751 store 6 ,mem_le_lap 
+0x5ad5 016752 branch module_hci_event_receive_valid_cmd 
+:      016756 module_hci_cmd_set_visibility:
+0x5ad6 016757 fetch 1 ,mem_uart_len 
+0x5ad7 016758 bne 1 ,module_hci_event_receive_invalid_cmd 
+0x5ad8 016759 copy rega ,contru 
+0x5ad9 016760 call module_hci_event_receive_valid_cmd 
+0x5ada 016761 ifetcht 1 ,contru 
+0x5adb 016762 storet 1 ,mem_module_bluetooth_stauts_by_command 
+0x5adc 016763 fetch 2 ,mem_ui_state_map 
+0x5add 016764 rtnbit1 ui_state_ble_connected 
+0x5ade 016765 rtnbit1 ui_state_bt_connected 
+:      016766 module_start_adv_discovery_by_command:
+0x5adf 016767 fetch 1 ,mem_module_state 
+0x5ae0 016768 isolate1 moudle_state_bt_bit ,pdata 
+0x5ae1 016769 nbranch moudle_start_adv_by_command ,true 
+0x5ae2 016770 fetcht 1 ,mem_module_bluetooth_stauts_by_command 
+0x5ae3 016771 and temp ,0x03 ,pdata 
+0x5ae4 016772 store 1 ,mem_scan_mode 
+:      016773 moudle_start_adv_by_command:
+0x5ae5 016774 fetch 1 ,mem_module_state 
+0x5ae6 016775 isolate1 moudle_state_ble_bit ,pdata 
+0x5ae7 016776 nrtn true 
+0x5ae8 016777 fetcht 1 ,mem_module_bluetooth_stauts_by_command 
+0x5ae9 016778 isolate1 2 ,temp 
+0x5aea 016779 branch app_ble_start_adv ,true 
+0x5aeb 016780 branch app_ble_stop_adv 
+:      016783 module_hci_cmd_set_bt_name:
+0x5aec 016784 fetch 1 ,mem_uart_len 
+0x5aed 016785 sub pdata ,32 ,null 
+0x5aee 016786 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5aef 016787 store 1 ,mem_local_name_length 
+0x5af0 016788 copy pdata ,loopcnt 
+0x5af1 016789 copy rega ,contru 
+0x5af2 016790 arg mem_local_name ,contw 
+0x5af3 016791 call uart_copy_rx_bytes_fast 
+0x5af4 016792 branch module_hci_event_receive_valid_cmd 
+:      016796 module_hci_cmd_set_le_name:
+0x5af5 016797 fetch 1 ,mem_uart_len 
+0x5af6 016798 sub pdata ,0x13 ,null 
+0x5af7 016799 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5af8 016800 store 1 ,mem_le_name_len 
+0x5af9 016801 copy pdata ,loopcnt 
+0x5afa 016802 copy rega ,contru 
+0x5afb 016803 arg mem_le_name ,contw 
+0x5afc 016804 call uart_copy_rx_bytes_fast 
+0x5afd 016805 call le_modified_name 
+0x5afe 016806 branch module_hci_event_receive_valid_cmd 
+:      016810 module_hci_cmd_receive_spp_data:
+0x5aff 016811 fetch 1 ,mem_ui_state_map 
+0x5b00 016812 bbit0 ui_state_bt_spp_conn ,module_hci_event_receive_invalid_cmd 
+0x5b01 016813 call app_check_sniff 
+0x5b02 016814 branch module_hci_cmd_spp_exut_sniff ,true 
+0x5b03 016815 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b04 016817 fetch 1 ,mem_remote_credits 
+0x5b05 016818 rtn blank 
+0x5b06 016819 fetch 2 ,mem_nl_rx_len_all 
+0x5b07 016820 bne 0 ,module_hci_cmd_pass_init_ng_rx_len_all 
+0x5b08 016821 fetch 1 ,mem_uart_len 
+0x5b09 016822 store 2 ,mem_nl_rx_len_all 
+0x5b0a 016824 copy rega ,contru 
+0x5b0b 016827 copy contru ,pdata 
+0x5b0c 016828 store 2 ,mem_nl_rx_data_src 
+:      016829 module_hci_cmd_pass_init_ng_rx_len_all:
+0x5b0d 016830 call module_hci_cmd_get_current_packet_len_and_remain_len 
+0x5b0e 016831 branch spp_tx_rfcomm_packet 
+:      016832 module_hci_cmd_spp_exut_sniff:
+0x5b0f 016833 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b10 016834 branch module_exit_sniff 
+:      016836 module_hci_cmd_get_current_packet_len_and_remain_len:
+0x5b11 016837 call module_hci_cmd_get_current_patcket_len 
+0x5b12 016838 fetch 2 ,mem_nl_rx_len_all 
+0x5b13 016839 fetcht 2 ,mem_current_packet_length 
+0x5b14 016840 isub temp ,pdata 
+0x5b15 016841 store 2 ,mem_nl_rx_len_all 
+0x5b16 016842 rtn 
+:      016844 module_hci_cmd_get_current_patcket_len:
+0x5b17 016845 fetch 2 ,mem_nl_rx_len_all 
+0x5b18 016846 arg dm_refcom_buff_len ,temp 
+0x5b19 016847 call not_greater_than 
+0x5b1a 016848 fetcht 2 ,mem_rfcomm_max_frame_size 
+0x5b1b 016849 call not_greater_than 
+0x5b1c 016850 fetcht 2 ,mem_pn_max_frame_size 
+0x5b1d 016851 call not_greater_than 
+0x5b1e 016852 store 2 ,mem_current_packet_length 
+0x5b1f 016853 rtn 
+:      016856 module_hci_command_tx_spp_tx_complete:
+0x5b20 016857 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b21 016858 jam hci_cmd_spp_data_req ,mem_uart_opcode 
+0x5b22 016859 branch module_hci_event_receive_valid_cmd 
+:      016862 module_hci_cmd_receive_le_data:
+0x5b23 016863 fetch 2 ,mem_ui_state_map 
+0x5b24 016864 rtnbit0 ui_state_ble_connected 
+0x5b25 016866 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b26 016867 fetch 1 ,mem_le_continue_flag 
+0x5b27 016868 nrtn blank 
+0x5b28 016869 fetch 2 ,mem_module_hci_notify_len 
+0x5b29 016870 branch module_hci_cmd_gatt_notify_start_packet ,blank 
+0x5b2a 016871 fetcht 2 ,mem_module_hci_notify_offset 
+0x5b2b 016872 isub temp ,null 
+0x5b2c 016873 nrtn zero 
+0x5b2d 016874 set1 mark_ext_patch ,mark 
+0x5b2e 016875 bpatch patch2c_4 ,mem_patch2c 
+0x5b2f 016876 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b30 016877 fetch 2 ,mem_module_hci_notify_original_len 
+0x5b31 016878 fetcht 2 ,mem_module_hci_notify_len 
+0x5b32 016879 isub temp ,regb 
+0x5b33 016880 nbranch assert ,positive 
+0x5b34 016881 nbranch module_hci_cmd_gatt_notify_seperate ,zero 
+0x5b35 016882 call module_hci_cmd_gatt_notify_clear_len 
+0x5b36 016883 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b37 016884 branch module_set_le_tx_data_flag 
+:      016888 module_hci_cmd_gatt_notify_seperate:
+0x5b38 016889 fetch 1 ,mem_module_flag 
+0x5b39 016890 rtnbit1 module_flag_ble_send_mtu23 
+0x5b3a 016891 hfetch 2 ,core_uart_rrptr 
+0x5b3b 016892 iforce contru 
+0x5b3c 016893 fetch 2 ,mem_module_hci_notify_len 
+0x5b3d 016894 iadd contru ,contru 
+0x5b3e 016895 copy contru ,rega 
+0x5b3f 016896 setarg 0x0901 
+0x5b40 016897 istore 2 ,contru 
+0x5b41 016898 add regb ,2 ,pdata 
+0x5b42 016899 istore 1 ,contru 
+0x5b43 016900 fetch 2 ,mem_module_hci_notify_att 
+0x5b44 016901 istore 2 ,contru 
+0x5b45 016902 copy rega ,pdata 
+0x5b46 016903 hstore 2 ,core_uart_rrptr 
+:      016904 module_hci_cmd_gatt_notify_clear_len:
+0x5b47 016905 setarg 0 
+0x5b48 016906 store 2 ,mem_module_hci_notify_len 
+0x5b49 016907 rtn 
+:      016909 module_hci_cmd_gatt_notify_start_packet:
+0x5b4a 016910 copy rega ,contru 
+0x5b4b 016911 ifetch 2 ,contru 
+0x5b4c 016912 store 2 ,mem_module_hci_notify_att 
+0x5b4d 016913 fetch 1 ,mem_uart_len 
+0x5b4e 016914 increase -2 ,pdata 
+0x5b4f 016916 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5b50 016917 branch module_hci_event_receive_invalid_cmd ,blank 
+0x5b51 016918 store 2 ,mem_module_hci_notify_original_len 
+0x5b52 016920 fetch 1 ,mem_module_flag 
+0x5b53 016921 bbit1 module_flag_ble_send_mtu23 ,module_hci_cmd_notify_start_packet_mtu23 
+0x5b54 016923 fetcht 2 ,mem_le_remote_mtu 
+:      016924 module_hci_cmd_gatt_notify_start_packet1:
+0x5b55 016925 fetch 2 ,mem_module_hci_notify_original_len 
+0x5b56 016926 call not_greater_than 
+0x5b57 016928 store 2 ,mem_module_hci_notify_len 
+0x5b58 016929 copy contru ,pdata 
+0x5b59 016930 store 2 ,mem_module_hci_notify_start 
+0x5b5a 016931 setarg 0 
+0x5b5b 016932 store 2 ,mem_module_hci_notify_offset 
+0x5b5c 016933 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5b5d 016934 branch le_xtype_fifo_in 
+:      016936 module_hci_cmd_notify_start_packet_mtu23:
+0x5b5e 016937 arg 20 ,temp 
+0x5b5f 016938 branch module_hci_cmd_gatt_notify_start_packet1 
+:      016941 module_le_tx_update_data:
+0x5b60 016942 fetch 1 ,mem_le_notify_type 
+0x5b61 016943 jam 0 ,mem_le_notify_type 
+0x5b62 016944 nbranch module_le_send_md_notify ,blank 
+0x5b63 016946 fetch 2 ,mem_module_hci_notify_len 
+0x5b64 016947 branch assert ,blank 
+0x5b65 016948 add pdata ,3 ,temp 
+0x5b66 016949 storet 2 ,mem_le_txpayload 
+0x5b67 016950 arg 20 ,temp 
+0x5b68 016951 call not_greater_than 
+0x5b69 016952 copy pdata ,loopcnt 
+0x5b6a 016953 store 2 ,mem_module_hci_notify_offset 
+0x5b6b 016956 fetcht 2 ,mem_module_hci_notify_len 
+0x5b6c 016957 isub temp ,temp 
+0x5b6d 016958 fetch 1 ,mem_module_flag 
+0x5b6e 016959 bbit1 module_flag_ble_send_mtu23 ,module_le_tx_no_continue 
+0x5b6f 016960 ncall module_le_send_att_insert_continue ,zero 
+0x5b70 016961 jam le_continue_type_notification ,mem_le_continue_type 
+:      016962 module_le_tx_no_continue:
+0x5b71 016963 set1 mark_ext_patch ,mark 
+0x5b72 016964 bpatch patch2c_5 ,mem_patch2c 
+0x5b73 016965 arg 0x02 ,type 
+0x5b74 016966 fetch 2 ,mem_module_hci_notify_att 
+0x5b75 016967 store 2 ,mem_le_l2cap + 1 
+0x5b76 016968 fetch 2 ,mem_module_hci_notify_start 
+0x5b77 016969 copy pdata ,contru 
+:      016970 module_le_send_att_notify_common:
+0x5b78 016973 call uart_copy_rx_bytes_fast 
+0x5b79 016974 fetch 1 ,mem_module_flag 
+0x5b7a 016975 bbit0 module_flag_ble_send_mtu23 ,module_le_send_not_fill_l2cap_len 
+0x5b7b 016976 setarg mem_le_txpayload 
+0x5b7c 016977 isub contw ,pdata 
+0x5b7d 016978 sub pdata ,0 ,temp 
+0x5b7e 016979 storet 1 ,mem_le_txlen 
+0x5b7f 016980 fetch 2 ,mem_module_hci_notify_original_len 
+0x5b80 016981 fetcht 2 ,mem_module_hci_notify_len 
+0x5b81 016982 call module_le_check_if_send_once_more 
+0x5b82 016983 fetcht 1 ,mem_le_arq 
+0x5b83 016984 fetch 1 ,mem_module_le_md_flag 
+0x5b84 016985 branch module_le_send_non_l2cap_last ,blank 
+0x5b85 016986 nsetflag blank ,md ,temp 
+0x5b86 016987 storet 1 ,mem_le_arq 
+0x5b87 016988 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5b88 016989 call le_xtype_fifo_in 
+0x5b89 016990 jam 1 ,mem_le_notify_type 
+0x5b8a 016991 fetcht 1 ,mem_le_arq 
+0x5b8b 016992 branch le_send_non_l2cap1 
+:      016994 module_le_send_non_l2cap_last:
+0x5b8c 016995 call module_set_le_tx_data_flag 
+0x5b8d 016996 branch le_send_non_l2cap 
+:      016998 module_set_le_tx_data_flag:
+0x5b8e 016999 fetch 1 ,mem_module_flag 
+0x5b8f 017000 set1 module_flag_ble_send_data ,pdata 
+0x5b90 017001 branch module_store_moule_flag 
+:      017003 module_clear_le_tx_data_flag:
+0x5b91 017004 fetch 1 ,mem_module_flag 
+0x5b92 017005 set0 module_flag_ble_send_data ,pdata 
+0x5b93 017006 branch module_store_moule_flag 
+:      017008 module_le_check_if_send_once_more:
+0x5b94 017009 jam 0 ,mem_module_le_md_flag 
+0x5b95 017010 isub temp ,null 
+0x5b96 017011 rtn zero 
+0x5b97 017012 nrtn positive 
+0x5b98 017013 jam 1 ,mem_module_le_md_flag 
+0x5b99 017014 rtn 
+:      017016 module_le_send_att_insert_continue:
+0x5b9a 017017 fetch 3 ,mem_le_xtype_fifo 
+0x5b9b 017018 nbranch module_le_send_att_insert_cont_next ,blank 
+0x5b9c 017019 jam attop_continue ,mem_le_xtype_fifo + 2 
+0x5b9d 017020 rtn 
+:      017021 module_le_send_att_insert_cont_next:
+0x5b9e 017022 call le_xtype_fifo_is_near_full 
+0x5b9f 017023 nbranch assert ,blank 
+0x5ba0 017024 jam attop_continue ,mem_le_xtype_fifo + 1 
+0x5ba1 017025 rtn 
+:      017028 module_le_tx_update_notify_continue:
+0x5ba2 017029 set1 mark_ext_patch ,mark 
+0x5ba3 017030 bpatch patch2c_6 ,mem_patch2c 
+0x5ba4 017031 fetch 2 ,mem_module_hci_notify_len 
+0x5ba5 017032 branch assert ,blank 
+0x5ba6 017033 fetcht 2 ,mem_module_hci_notify_offset 
+0x5ba7 017034 branch assert ,blank 
+0x5ba8 017035 isub temp ,pdata 
+0x5ba9 017036 arg 27 ,temp 
+0x5baa 017037 call not_greater_than 
+0x5bab 017038 copy pdata ,loopcnt 
+0x5bac 017039 fetch 2 ,mem_module_hci_notify_start 
+0x5bad 017040 copy pdata ,contru 
+0x5bae 017041 fetch 2 ,mem_module_hci_notify_offset 
+0x5baf 017042 iadd contru ,contru 
+0x5bb0 017043 iadd loopcnt ,pdata 
+0x5bb1 017044 store 2 ,mem_module_hci_notify_offset 
+0x5bb2 017045 fetcht 2 ,mem_module_hci_notify_len 
+0x5bb3 017046 isub temp ,temp 
+0x5bb4 017047 ncall module_le_send_att_insert_continue ,zero 
+0x5bb5 017048 jam le_continue_type_notification ,mem_le_continue_type 
+0x5bb6 017049 arg mem_le_txpayload ,contw 
+0x5bb7 017050 call uart_copy_rx_bytes_fast 
+0x5bb8 017051 arg 1 ,type 
+:      017052 module_le_send_not_fill_l2cap_len:
+0x5bb9 017053 setarg mem_le_txpayload 
+0x5bba 017054 isub contw ,pdata 
+0x5bbb 017055 sub pdata ,0 ,temp 
+0x5bbc 017056 storet 1 ,mem_le_txlen 
+0x5bbd 017057 branch le_send_non_l2cap 
+:      017060 module_le_send_md_notify:
+0x5bbe 017061 fetch 2 ,mem_module_hci_notify_original_len 
+0x5bbf 017062 fetcht 2 ,mem_module_hci_notify_len 
+0x5bc0 017063 isub temp ,pdata 
+0x5bc1 017064 arg 20 ,temp 
+0x5bc2 017065 call not_greater_than 
+0x5bc3 017066 copy pdata ,loopcnt 
+0x5bc4 017067 add pdata ,3 ,temp 
+0x5bc5 017068 storet 2 ,mem_le_txpayload 
+0x5bc6 017070 fetcht 2 ,mem_module_hci_notify_len 
+0x5bc7 017071 iadd temp ,pdata 
+0x5bc8 017072 store 2 ,mem_module_hci_notify_len 
+0x5bc9 017074 fetch 2 ,mem_module_hci_notify_start 
+0x5bca 017075 copy pdata ,contru 
+0x5bcb 017076 fetch 2 ,mem_module_hci_notify_offset 
+0x5bcc 017077 iadd contru ,contru 
+0x5bcd 017078 iadd loopcnt ,pdata 
+0x5bce 017079 store 2 ,mem_module_hci_notify_offset 
+0x5bcf 017080 arg 0x02 ,type 
+0x5bd0 017081 fetch 2 ,mem_module_hci_notify_att 
+0x5bd1 017082 store 2 ,mem_le_l2cap + 1 
+0x5bd2 017083 branch module_le_send_att_notify_common 
+:      017086 module_hci_cmd_inquire_status:
+0x5bd3 017087 branch module_hci_event_status_res 
+:      017091 module_hci_cmd_set_pairing_mode:
+0x5bd4 017092 copy rega ,contru 
+0x5bd5 017093 ifetch 1 ,contru 
+0x5bd6 017094 beq pairing_pincode ,module_hci_pairing_pincode_mode 
+0x5bd7 017095 beq pairing_justwork ,module_hci_pairing_just_work_mode 
+0x5bd8 017096 beq pairing_passkey ,module_hci_pairing_passkey 
+0x5bd9 017097 beq pairing_confirm ,module_hci_pairing_numeric_comparison 
+0x5bda 017098 branch module_hci_event_receive_invalid_cmd 
+:      017099 module_hci_pairing_pincode_mode:
+0x5bdb 017100 call ssp_disable 
+0x5bdc 017101 jam 0 ,mem_ssp_enable 
+0x5bdd 017102 branch module_hci_event_receive_valid_cmd 
+:      017103 module_hci_pairing_just_work_mode:
+0x5bde 017104 setarg ssp_mode_just_work_io_cap_data 
+:      017105 module_hci_sspairing_mode:
+0x5bdf 017106 store 3 ,mem_sp_iocap_local 
+0x5be0 017107 store 1 ,mem_ssp_mode_flag 
+0x5be1 017108 call ssp_enable 
+0x5be2 017109 jam 1 ,mem_ssp_enable 
+0x5be3 017110 branch module_hci_event_receive_valid_cmd 
+:      017111 module_hci_pairing_passkey:
+0x5be4 017112 setarg ssp_mode_passkey_io_cap_data 
+0x5be5 017113 branch module_hci_sspairing_mode 
+:      017115 module_hci_pairing_numeric_comparison:
+0x5be6 017116 setarg ssp_mode_ssp_pin_io_cap_data 
+0x5be7 017117 branch module_hci_sspairing_mode 
+:      017120 module_hci_cmd_set_pincode:
+0x5be8 017121 fetch 1 ,mem_uart_len 
+0x5be9 017122 sub pdata ,16 ,null 
+0x5bea 017123 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5beb 017124 store 1 ,mem_pin_length 
+0x5bec 017125 copy pdata ,loopcnt 
+0x5bed 017126 arg mem_pin ,contw 
+0x5bee 017127 call uart_copy_rx_bytes 
+0x5bef 017128 branch module_hci_event_receive_valid_cmd 
+:      017132 module_hci_cmd_set_uart_control_mode:
+0x5bf0 017133 copy rega ,contru 
+0x5bf1 017134 ifetch 1 ,contru 
+0x5bf2 017135 hfetcht 1 ,core_uart_ctrl 
+0x5bf3 017136 nsetflag blank ,4 ,temp 
+0x5bf4 017137 hstoret 1 ,core_uart_ctrl 
+0x5bf5 017138 branch module_hci_event_receive_valid_cmd 
+:      017142 module_hci_cmd_set_uart_baud:
+0x5bf6 017143 fetch 1 ,mem_uart_len 
+0x5bf7 017144 copy pdata ,loopcnt 
+0x5bf8 017145 copy rega ,contru 
+0x5bf9 017146 call string2dec_from_uart 
+0x5bfa 017147 setarg uart_clk 
+0x5bfb 017148 idiv temp 
+0x5bfc 017149 call wait_div_end 
+0x5bfd 017150 quotient pdata 
+:      017151 module_hci_cmd_set_uart_baud_ok:
+0x5bfe 017152 store uart_baud_len ,mem_baud 
+0x5bff 017153 call module_hci_event_receive_valid_cmd 
+0x5c00 017154 call wait_uarttx 
+0x5c01 017155 branch uart_set_baud_by_mem 
+:      017159 module_hci_cmd_version_request:
+0x5c02 017160 arg 2 ,rega 
+0x5c03 017161 arg mem_soft_version_num ,regb 
+0x5c04 017162 arg 0 ,temp 
+0x5c05 017163 branch module_hci_event_set_cmd 
+:      017164 module_hci_event_set_cmd_send_response:
+0x5c06 017165 store 2 ,mem_event_cmd_response_content 
+0x5c07 017166 arg mem_event_cmd_response_content ,regb 
+0x5c08 017167 arg 0 ,temp 
+0x5c09 017168 branch module_hci_event_set_cmd 
+:      017172 module_hci_cmd_bt_disconnect:
+0x5c0a 017173 fetch 2 ,mem_ui_state_map 
+0x5c0b 017174 bbit0 ui_state_bt_connected ,module_hci_event_receive_invalid_cmd 
+:      017175 module_hci_cmd_bt_disconnect_doing:
+0x5c0c 017176 call module_hci_event_receive_valid_cmd 
+0x5c0d 017177 branch app_bt_disconnect 
+:      017181 module_hci_cmd_ble_disconnect:
+0x5c0e 017182 fetch 2 ,mem_ui_state_map 
+0x5c0f 017183 bbit0 ui_state_ble_connected ,module_hci_event_receive_invalid_cmd 
+:      017184 module_hci_cmd_ble_disconnect_doing:
+0x5c10 017185 call module_hci_event_receive_valid_cmd 
+0x5c11 017186 branch app_ble_disconnect 
+:      017192 module_hci_cmd_set_nvram:
+0x5c12 017193 fetch 1 ,mem_uart_len 
+0x5c13 017194 copy pdata ,loopcnt 
+0x5c14 017195 copy rega ,contru 
+0x5c15 017196 fetch 2 ,mem_nv_data_ptr 
+0x5c16 017197 icopy contw 
+0x5c17 017198 call uart_copy_rx_bytes_fast 
+0x5c18 017199 branch module_hci_event_receive_valid_cmd 
+:      017203 module_hci_cmd_confirm_gkey:
+0x5c19 017204 fetch 1 ,mem_ui_state_map 
+0x5c1a 017205 bbit0 ui_state_bt_connected ,module_hci_event_receive_invalid_cmd 
+0x5c1b 017206 ifetch 1 ,contru 
+0x5c1c 017207 fetcht 1 ,mem_flag_mode_ssp_pin 
+0x5c1d 017208 setflag blank ,flag_mode_ssp_pin_comparison_result_bit ,temp 
+0x5c1e 017209 set1 flag_mode_ssp_pin_reviceve_comparison_bit ,temp 
+0x5c1f 017210 storet 1 ,mem_flag_mode_ssp_pin 
+0x5c20 017212 call module_hci_event_receive_valid_cmd 
+0x5c21 017214 fetch 1 ,mem_flag_mode_ssp_pin 
+0x5c22 017215 bbit1 flag_mode_ssp_pin_recieve_dhkey_bit ,module_hci_cmd_spp_number_comparison_result_is1 
+0x5c23 017216 rtn 
+:      017218 dhkey_not_accept:
+0x5c24 017219 jam 0 ,mem_flag_mode_ssp_pin 
+0x5c25 017220 jam bt_cmd_dhkey_not_accept ,mem_fifo_temp 
+0x5c26 017221 branch ui_ipc_send_cmd 
+:      017224 module_hci_cmd_spp_number_comparison_result_is1:
+0x5c27 017225 bbit1 flag_mode_ssp_pin_comparison_result_bit ,number_comparison_successed 
+0x5c28 017226 branch dhkey_not_accept 
+:      017230 module_hci_cmd_set_credit_given:
+0x5c29 017231 fetch 1 ,mem_ui_state_map 
+0x5c2a 017232 rtnbit0 ui_state_bt_spp_conn 
+0x5c2b 017233 fetch 1 ,mem_credit_flag 
+0x5c2c 017234 rtneq credit_disable 
+0x5c2d 017235 ifetch 1 ,contru 
+0x5c2e 017236 fetcht 1 ,mem_credit_given 
+0x5c2f 017237 iadd temp ,temp 
+0x5c30 017238 storet 1 ,mem_credit_given 
+0x5c31 017239 rtn 
+:      017243 module_hci_cmd_auto_adv:
+0x5c32 017244 arg 0x40 ,loopcnt 
+0x5c33 017245 arg mem_le_adv_data_len ,contw 
+0x5c34 017246 call clear_mem 
+0x5c35 017247 setarg 0 
+0x5c36 017248 store 1 ,mem_regb 
+0x5c37 017249 copy rega ,contru 
+:      017250 module_hci_cmd_auto_adv_loop:
+0x5c38 017251 copy contru ,pdata 
+0x5c39 017252 store 2 ,mem_regc 
+0x5c3a 017253 call module_hci_cmd_auto_adv_adv_analys 
+0x5c3b 017255 fetch 1 ,mem_regb 
+0x5c3c 017256 fetcht 1 ,mem_temp 
+0x5c3d 017257 increase 1 ,temp 
+0x5c3e 017258 iadd temp ,pdata 
+0x5c3f 017259 store 1 ,mem_regb 
+0x5c40 017261 sub pdata ,32 ,null 
+0x5c41 017262 nbranch module_hci_cmd_auto_adv_store_scan ,positive 
+:      017263 module_hci_cmd_auto_adv_store_adv:
+0x5c42 017264 fetcht 1 ,mem_le_adv_data_len 
+0x5c43 017265 setarg mem_le_adv_data 
+0x5c44 017266 iadd temp ,pdata 
+0x5c45 017267 store 2 ,mem_contw 
+0x5c46 017268 fetcht 1 ,mem_temp 
+0x5c47 017269 increase 1 ,temp 
+0x5c48 017270 fetch 1 ,mem_le_adv_data_len 
+0x5c49 017271 iadd temp ,pdata 
+0x5c4a 017272 store 1 ,mem_le_adv_data_len 
+0x5c4b 017273 branch module_hci_cmd_auto_adv_store_common 
+:      017274 module_hci_cmd_auto_adv_store_scan:
+0x5c4c 017275 fetcht 1 ,mem_le_scan_data_len 
+0x5c4d 017276 setarg mem_le_scan_data 
+0x5c4e 017277 iadd temp ,pdata 
+0x5c4f 017278 store 2 ,mem_contw 
+0x5c50 017279 fetcht 1 ,mem_temp 
+0x5c51 017280 increase 1 ,temp 
+0x5c52 017281 fetch 1 ,mem_le_scan_data_len 
+0x5c53 017282 iadd temp ,pdata 
+0x5c54 017283 store 1 ,mem_le_scan_data_len 
+:      017284 module_hci_cmd_auto_adv_store_common:
+0x5c55 017285 fetch 2 ,mem_contw 
+0x5c56 017286 copy pdata ,contw 
+0x5c57 017287 fetch 2 ,mem_regc 
+0x5c58 017288 copy pdata ,contru 
+0x5c59 017290 copy temp ,loopcnt 
+0x5c5a 017291 call uart_copy_rx_bytes_fast 
+0x5c5b 017293 fetch 1 ,mem_uart_len 
+0x5c5c 017294 fetcht 1 ,mem_regb 
+0x5c5d 017295 isub temp ,null 
+0x5c5e 017296 nbranch module_hci_cmd_auto_adv_loop ,zero 
+0x5c5f 017297 jam 0x1f ,mem_le_adv_data_len 
+0x5c60 017298 jam 0x1f ,mem_le_scan_data_len 
+0x5c61 017299 branch module_hci_event_receive_valid_cmd 
+:      017302 module_hci_cmd_auto_adv_adv_analys:
+0x5c62 017303 ifetch 1 ,contru 
+0x5c63 017304 store 1 ,mem_temp 
+0x5c64 017305 ifetch 1 ,contru 
+0x5c65 017306 store 1 ,mem_rega 
+0x5c66 017307 rtn 
+:      017311 module_hci_cmd_power_request:
+0x5c67 017312 arg 0 ,temp 
+0x5c68 017313 arg 2 ,rega 
+0x5c69 017314 fetch 2 ,mem_module_vdd_quotient 
+0x5c6a 017315 store 2 ,mem_event_cmd_response_content 
+0x5c6b 017316 arg mem_event_cmd_response_content ,regb 
+0x5c6c 017317 branch module_hci_event_set_cmd 
+:      017321 module_hci_cmd_power_set:
+0x5c6d 017322 fetch 1 ,mem_uart_len 
+0x5c6e 017323 bne 1 ,module_hci_event_receive_invalid_cmd 
+0x5c6f 017324 ifetch 1 ,contru 
+0x5c70 017325 store 1 ,mem_module_read_vdd_flag 
+0x5c71 017326 setarg 0x00 
+0x5c72 017327 store 2 ,mem_module_vdd_quotient 
+0x5c73 017328 branch module_hci_event_receive_valid_cmd 
+:      017332 module_hci_cmd_passkey_entry:
+0x5c74 017333 ifetch 4 ,contru 
+0x5c75 017334 store 4 ,mem_pin 
+0x5c76 017335 jam 4 ,mem_pin_length 
+0x5c77 017336 jam 0 ,mem_authentication_passkey_times 
+0x5c78 017337 call module_hci_event_receive_valid_cmd 
+0x5c79 017338 branch authentication_passkey 
+:      017342 module_hci_cmd_set_gpio:
+0x5c7a 017343 fetch 1 ,mem_uart_len 
+0x5c7b 017344 bne 3 ,module_hci_event_receive_invalid_cmd 
+0x5c7c 017345 ifetch 1 ,contru 
+0x5c7d 017346 beq 0x00 ,module_set_gpio_input 
+0x5c7e 017347 beq 0x01 ,module_set_gpio_output 
+0x5c7f 017348 branch module_hci_event_receive_invalid_cmd 
+:      017349 module_set_gpio_input:
+0x5c80 017350 ifetcht 1 ,contru 
+0x5c81 017351 ifetch 1 ,contru 
+0x5c82 017352 nsetflag blank ,7 ,temp 
+0x5c83 017353 call gpio_config_input 
+0x5c84 017354 branch module_hci_event_receive_valid_cmd 
+:      017356 module_set_gpio_output:
+0x5c85 017357 ifetcht 1 ,contru 
+0x5c86 017358 call gpio_config_output0 
+0x5c87 017359 ifetch 1 ,contru 
+0x5c88 017360 isolate1 0 ,pdata 
+0x5c89 017361 call gpio_out_flag 
+0x5c8a 017362 branch module_hci_event_receive_valid_cmd 
+:      017366 module_hci_cmd_read_gpio:
+0x5c8b 017367 fetch 1 ,mem_uart_len 
+0x5c8c 017368 bne 1 ,module_hci_event_receive_invalid_cmd 
+0x5c8d 017369 ifetcht 1 ,contru 
+0x5c8e 017370 call gpio_get_bit 
+0x5c8f 017371 setarg 0x0 
+0x5c90 017372 nsetflag true ,0 ,pdata 
+0x5c91 017373 arg 1 ,rega 
+0x5c92 017374 branch module_hci_event_set_cmd_send_response 
+:      017378 module_hci_cmd_le_set_pairing_mode:
+0x5c93 017379 copy rega ,contru 
+0x5c94 017380 ifetch 1 ,contru 
+0x5c95 017381 store 1 ,mem_le_pairing_mode 
+0x5c96 017382 arg 0 ,temp 
+0x5c97 017383 isolate1 le_pairing_mode_secure_connect_bit ,pdata 
+0x5c98 017384 setflag true ,0 ,temp 
+0x5c99 017385 storet 1 ,mem_le_secure_connect_enable 
+0x5c9a 017386 beq le_pairing_mode_none ,module_le_set_no_pairing 
+0x5c9b 017387 beq le_pairing_mode_lagacy_justwork ,module_le_set_pairing_mode_lagacy_just_work 
+0x5c9c 017388 beq le_pairing_mode_lagacy_passkey ,module_le_set_pairing_mode_lagacy_passkey 
+0x5c9d 017389 beq le_pairing_mode_secure_connect_justwork ,module_le_set_pairing_mode_secure_justwork 
+0x5c9e 017390 beq le_pairing_mode_secure_connect_numeric ,module_le_set_pairing_mode_secure_numeric 
+0x5c9f 017391 beq le_pairing_mode_secure_connect_passkey ,module_le_set_pairing_mode_secure_passkey 
+0x5ca0 017392 jam 0 ,mem_le_secure_connect_enable 
+0x5ca1 017393 branch module_hci_event_receive_invalid_cmd 
+:      017395 module_le_set_pairing_mode_secure_justwork:
+0x5ca2 017396 jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+0x5ca3 017397 branch module_le_set_noinputnooutput 
+:      017398 module_le_set_pairing_mode_secure_numeric:
+0x5ca4 017399 jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+0x5ca5 017400 jam flag_iocap_displayyesno ,mem_le_pres_iocap 
+0x5ca6 017401 branch module_hci_event_receive_valid_cmd 
+:      017402 module_le_set_pairing_mode_secure_passkey:
+0x5ca7 017403 jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+0x5ca8 017404 branch module_le_set_displayonly 
+:      017405 module_le_set_no_pairing:
+0x5ca9 017406 jam flag_le_no_bonding_no_mitm ,mem_le_pres_auth 
+:      017407 module_le_set_noinputnooutput:
+0x5caa 017408 jam flag_iocap_noinputnooutput ,mem_le_pres_iocap 
+0x5cab 017409 branch module_hci_event_receive_valid_cmd 
+:      017410 module_le_set_pairing_mode_lagacy_just_work:
+0x5cac 017411 jam flag_le_bonding_mitm ,mem_le_pres_auth 
+0x5cad 017412 branch module_le_set_noinputnooutput 
+:      017413 module_le_set_pairing_mode_lagacy_passkey:
+0x5cae 017414 jam flag_le_bonding_mitm ,mem_le_pres_auth 
+:      017415 module_le_set_displayonly:
+0x5caf 017416 jam flag_iocap_displayonly ,mem_le_pres_iocap 
+0x5cb0 017417 branch module_hci_event_receive_valid_cmd 
+:      017421 module_hci_cmd_le_set_adv_data:
+0x5cb1 017422 fetch 1 ,mem_uart_len 
+0x5cb2 017423 sub pdata ,31 ,null 
+0x5cb3 017424 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5cb4 017425 copy pdata ,loopcnt 
+0x5cb5 017426 copy rega ,contru 
+0x5cb6 017427 arg mem_le_adv_data ,contw 
+0x5cb7 017428 call uart_copy_rx_bytes_fast 
+0x5cb8 017429 branch module_hci_event_receive_valid_cmd 
+:      017433 module_hci_cmd_le_set_scan_data:
+0x5cb9 017434 fetch 1 ,mem_uart_len 
+0x5cba 017435 sub pdata ,31 ,null 
+0x5cbb 017436 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5cbc 017437 copy pdata ,loopcnt 
+0x5cbd 017438 copy rega ,contru 
+0x5cbe 017439 arg mem_le_scan_data ,contw 
+0x5cbf 017440 call uart_copy_rx_bytes_fast 
+0x5cc0 017441 branch module_hci_event_receive_valid_cmd 
+:      017445 module_hci_cmd_le_send_conn_update_req:
+0x5cc1 017446 fetch 2 ,mem_ui_state_map 
+0x5cc2 017447 bbit0 ui_state_ble_connected ,module_hci_event_receive_invalid_cmd 
+0x5cc3 017448 fetch 1 ,mem_uart_len 
+0x5cc4 017449 bne 0x08 ,module_hci_event_receive_invalid_cmd 
+0x5cc5 017450 copy rega ,contru 
+0x5cc6 017451 ifetch 8 ,contru 
+0x5cc7 017452 store 8 ,mem_le_interal_min 
+0x5cc8 017453 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+0x5cc9 017454 call ui_ipc_send_cmd 
+0x5cca 017455 branch module_hci_event_receive_valid_cmd 
+:      017459 module_hci_cmd_le_start_pairing:
+0x5ccb 017460 fetch 1 ,mem_le_pairing_mode 
+0x5ccc 017461 branch module_hci_event_receive_invalid_cmd ,blank 
+0x5ccd 017462 fetch 1 ,mem_le_pairing_state 
+0x5cce 017463 bne flag_le_pairing_null ,module_hci_event_receive_invalid_cmd 
+0x5ccf 017464 fetch 1 ,mem_le_enc_state 
+0x5cd0 017465 bne flag_le_enc_null ,module_hci_event_receive_invalid_cmd 
+0x5cd1 017466 call check_51cmd_le_smp_sec_req 
+0x5cd2 017467 branch module_hci_event_receive_valid_cmd 
+:      017471 module_hci_cmd_le_confirm_gkey:
+0x5cd3 017472 ifetch 1 ,contru 
+0x5cd4 017473 beq 0x01 ,module_hci_cmd_le_confirm_gkey_fail 
+0x5cd5 017474 fetch 1 ,mem_le_secure_connect_state 
+0x5cd6 017475 beq le_sc_stat_send_public_key ,module_hci_cmd_le_confirm_gkey_ok 
+0x5cd7 017476 beq le_sc_stat_receive_dhkey ,module_hci_cmd_le_confirm_gkey_ok 
+0x5cd8 017477 beq le_sc_stat_wait_confirm_gkey ,module_hci_cmd_le_confirm_gkey_ok 
+0x5cd9 017478 branch module_hci_event_receive_invalid_cmd 
+:      017479 module_hci_cmd_le_confirm_gkey_ok:
+0x5cda 017480 jam flag_le_sc_confrim_gkey_ok ,mem_le_sc_confirm_gkey_flag 
+0x5cdb 017481 branch module_hci_event_receive_valid_cmd 
+:      017483 module_hci_cmd_le_confirm_gkey_fail:
+0x5cdc 017484 call le_pairing_failed 
+0x5cdd 017485 branch module_hci_event_receive_valid_cmd 
+:      017488 module_hci_event_receive_invalid_cmd:
+0x5cde 017489 arg 1 ,temp 
+0x5cdf 017490 arg 0 ,rega 
+0x5ce0 017491 branch module_hci_event_set_cmd 
+:      017493 module_hci_event_receive_valid_cmd:
+0x5ce1 017494 arg 0 ,temp 
+0x5ce2 017495 arg 0 ,rega 
+0x5ce3 017496 branch module_hci_event_set_cmd 
+:      017500 module_hci_event_spp_connect:
+0x5ce4 017501 jam hci_event_spp_conn_rep ,mem_uart_opcode 
+0x5ce5 017502 branch module_hci_event_enter_standby_mode_len0 
+:      017505 module_hci_event_le_connect:
+0x5ce6 017506 jam hci_event_le_conn_rep ,mem_uart_opcode 
+0x5ce7 017507 branch module_hci_event_enter_standby_mode_len0 
+:      017510 module_hci_event_spp_disconnect:
+0x5ce8 017511 jam hci_event_spp_dis_rep ,mem_uart_opcode 
+0x5ce9 017512 branch module_hci_event_enter_standby_mode_len0 
+:      017514 module_hci_event_le_disconnect:
+0x5cea 017515 jam hci_event_le_dis_rep ,mem_uart_opcode 
+0x5ceb 017516 branch module_hci_event_enter_standby_mode_len0 
+:      017526 module_hci_event_set_cmd:
+0x5cec 017527 fetch 1 ,mem_uart_opcode 
+0x5ced 017528 copy pdata ,regc 
+0x5cee 017529 jam hci_event_cmd_res ,mem_uart_opcode 
+0x5cef 017530 setarg 2 
+0x5cf0 017531 iadd rega ,pdata 
+0x5cf1 017532 call module_hci_prepare_tx 
+0x5cf2 017533 copy regc ,pdata 
+0x5cf3 017534 istore 1 ,contwu 
+0x5cf4 017535 istoret 1 ,contwu 
+0x5cf5 017536 copy rega ,loopcnt 
+0x5cf6 017537 copy regb ,contr 
+0x5cf7 017538 call uart_copy_tx_bytes 
+0x5cf8 017539 branch uartd_send 
+:      017542 module_hci_event_receive_spp_data:
+0x5cf9 017544 jam hci_event_spp_data_rep ,mem_uart_opcode 
+0x5cfa 017545 fetch 1 ,mem_current_length 
+0x5cfb 017546 rtn blank 
+0x5cfc 017547 call module_hci_prepare_tx 
+0x5cfd 017548 fetch 1 ,mem_current_length 
+0x5cfe 017549 copy pdata ,loopcnt 
+0x5cff 017550 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x5d00 017551 copy pdata ,contr 
+0x5d01 017552 call uart_copy_tx_bytes_fast 
+0x5d02 017553 branch uartd_send 
+:      017557 module_hci_event_receive_le_data:
+0x5d03 017558 jam hci_event_le_data_rep ,mem_uart_opcode 
+0x5d04 017559 fetch 1 ,mem_module_le_rx_data_len 
+0x5d05 017560 icopy loopcnt 
+0x5d06 017561 increase 2 ,pdata 
+0x5d07 017562 call module_hci_prepare_tx 
+0x5d08 017563 fetch 2 ,mem_module_le_rx_data_handle 
+0x5d09 017564 istore 2 ,contwu 
+0x5d0a 017565 fetch 2 ,mem_module_le_rx_data_address 
+0x5d0b 017566 icopy contr 
+0x5d0c 017567 call uart_copy_tx_bytes_fast 
+0x5d0d 017568 branch uartd_send 
+:      017572 module_hci_event_enter_standby_mode:
+0x5d0e 017573 jam hci_event_standby_rep ,mem_uart_opcode 
+:      017574 module_hci_event_enter_standby_mode_len0:
+0x5d0f 017575 setarg 0 
+0x5d10 017576 call module_hci_prepare_tx 
+0x5d11 017577 branch uartd_send 
+:      017581 module_hci_event_status_res:
+0x5d12 017582 jam hci_event_status_res ,mem_uart_opcode 
+0x5d13 017583 setarg 1 
+0x5d14 017584 call module_hci_prepare_tx 
+0x5d15 017586 call module_hci_read_bt_status 
+0x5d16 017588 fetch 2 ,mem_ui_state_map 
+0x5d17 017589 arg ui_state_bt_hid_conn ,queue 
+0x5d18 017590 qisolate1 pdata 
+0x5d19 017591 setflag true ,3 ,temp 
+0x5d1a 017593 arg ui_state_ble_connected ,queue 
+0x5d1b 017594 qisolate1 pdata 
+0x5d1c 017595 setflag true ,5 ,temp 
+0x5d1d 017597 fetch 1 ,mem_ui_state_map 
+0x5d1e 017598 arg ui_state_bt_spp_conn ,queue 
+0x5d1f 017599 qisolate1 pdata 
+0x5d20 017600 setflag true ,4 ,temp 
+0x5d21 017602 istoret 1 ,contwu 
+0x5d22 017603 branch uartd_send 
+:      017607 module_hci_read_bt_status:
+0x5d23 017608 arg 0 ,temp 
+0x5d24 017609 fetch 1 ,mem_scan_mode 
+0x5d25 017610 arg inq_scan_mode ,queue 
+0x5d26 017611 qisolate1 pdata 
+0x5d27 017612 setflag true ,0 ,temp 
+0x5d28 017613 arg page_scan_mode ,queue 
+0x5d29 017614 qisolate1 pdata 
+0x5d2a 017615 setflag true ,1 ,temp 
+0x5d2b 017617 fetch 1 ,mem_le_adv_enable 
+0x5d2c 017618 arg 0 ,queue 
+0x5d2d 017619 qisolate1 pdata 
+0x5d2e 017620 setflag true ,2 ,temp 
+0x5d2f 017621 rtn 
+:      017626 module_hci_event_store_device:
+0x5d30 017627 jam hci_event_nvram_rep ,mem_uart_opcode 
+0x5d31 017628 fetch 1 ,mem_nv_data_number 
+0x5d32 017629 mul32 pdata ,34 ,pdata 
+0x5d33 017630 icopy loopcnt 
+0x5d34 017631 call module_hci_prepare_tx 
+0x5d35 017632 fetch 2 ,mem_nv_data_ptr 
+0x5d36 017633 icopy contr 
+0x5d37 017634 call uart_copy_tx_bytes_fast 
+0x5d38 017635 branch uartd_send 
+:      017640 module_hci_event_gkey_generate:
+0x5d39 017641 jam hci_event_gkey ,mem_uart_opcode 
+0x5d3a 017642 setarg 4 
+0x5d3b 017643 call module_hci_prepare_tx 
+0x5d3c 017644 fetch 4 ,mem_gkey 
+0x5d3d 017645 istore 4 ,contwu 
+0x5d3e 017646 branch uartd_send 
+:      017649 module_hci_event_invalid_packet:
+0x5d3f 017650 jam hci_event_invalid_packet ,mem_uart_opcode 
+0x5d40 017651 branch module_hci_event_enter_standby_mode_len0 
+:      017655 module_hci_event_passkey_entry_mode:
+0x5d41 017656 jam hci_event_get_passkey ,mem_uart_opcode 
+0x5d42 017657 branch module_hci_event_enter_standby_mode_len0 
+:      017660 module_hci_event_le_tk:
+0x5d43 017661 jam hci_event_le_tk ,mem_uart_opcode 
+0x5d44 017662 setarg 4 
+0x5d45 017663 call module_hci_prepare_tx 
+0x5d46 017664 fetch 4 ,mem_le_tk 
+0x5d47 017665 istore 4 ,contwu 
+0x5d48 017666 branch uartd_send 
+:      017669 module_hci_event_le_pairing_fail:
+0x5d49 017670 arg flag_ble_pairing_fail ,rega 
+0x5d4a 017671 branch module_hci_event_pairing_completed 
+:      017672 module_hci_event_le_pairing_success:
+0x5d4b 017673 arg flag_ble_pairing_success ,rega 
+0x5d4c 017674 branch module_hci_event_pairing_completed 
+:      017675 module_hci_event_bt_pairing_fail:
+0x5d4d 017676 arg flag_bt_pairing_fail ,rega 
+0x5d4e 017677 branch module_hci_event_pairing_completed 
+:      017678 module_hci_event_bt_pairing_success:
+0x5d4f 017679 arg flag_bt_pairing_success ,rega 
+:      017680 module_hci_event_pairing_completed:
+0x5d50 017681 jam 0 ,mem_flag_mode_ssp_pin 
+0x5d51 017682 jam hci_event_le_pairing_state ,mem_uart_opcode 
+0x5d52 017683 setarg 2 
+0x5d53 017684 call module_hci_prepare_tx 
+0x5d54 017685 copy rega ,pdata 
+0x5d55 017686 istore 2 ,contwu 
+0x5d56 017687 branch uartd_send 
+:      017690 module_hci_event_pause_enc:
+0x5d57 017691 arg flag_event_pause_enc ,regc 
+0x5d58 017692 branch module_hci_event_enc 
+:      017693 module_hci_event_start_enc:
+0x5d59 017694 arg flag_event_start_enc ,regc 
+:      017695 module_hci_event_enc:
+0x5d5a 017696 jam hci_event_le_encryption_state ,mem_uart_opcode 
+0x5d5b 017697 setarg 1 
+0x5d5c 017698 call module_hci_prepare_tx 
+0x5d5d 017699 copy regc ,pdata 
+0x5d5e 017700 istore 1 ,contwu 
+0x5d5f 017701 branch uartd_send 
+:      017704 module_hci_event_le_gkey:
+0x5d60 017705 jam hci_event_le_gkey ,mem_uart_opcode 
+0x5d61 017706 setarg 4 
+0x5d62 017707 call module_hci_prepare_tx 
+0x5d63 017708 fetch 4 ,mem_gkey 
+0x5d64 017709 istore 4 ,contwu 
+0x5d65 017710 branch uartd_send 
+:      017721 module_hci_prepare_tx:
+0x5d66 017722 jam 0x02 ,mem_uart_cmd 
+0x5d67 017723 store 1 ,mem_uart_len 
+0x5d68 017724 storet 8 ,mem_temp 
+0x5d69 017725 set1 mark_ext_patch ,mark 
+0x5d6a 017726 bpatch patch2c_7 ,mem_patch2c 
+0x5d6b 017727 call module_set_mcu_wake_pin_high_delay 
+0x5d6c 017728 fetcht 8 ,mem_temp 
+0x5d6d 017729 call uartd_prepare_tx 
+0x5d6e 017730 fetch 3 ,mem_uart_cmd 
+0x5d6f 017731 istore 3 ,contwu 
+0x5d70 017732 rtn 
+:      017736 module_set_mcu_wake_pin_high_delay:
+0x5d71 017737 call module_check_mcu_wake_pin_high 
+0x5d72 017738 rtn true 
+:      017739 module_set_mcu_wake_pin_h_delay:
+0x5d73 017740 call module_set_mcu_wake_pin_high 
+0x5d74 017741 fetch 4 ,mem_module_mcu_wake_delay_us 
+0x5d75 017742 rshift2 pdata ,pdata 
+0x5d76 017743 rtn blank 
+0x5d77 017744 branch delay 
+:      017745 module_set_mcu_wake_pin_high:
+0x5d78 017747 fetcht 1 ,mem_module_mcu_wake_pin 
+0x5d79 017748 branch gpio_out_active 
+:      017749 module_check_mcu_wake_pin_high:
+0x5d7a 017750 fetcht 1 ,mem_module_mcu_wake_pin 
+0x5d7b 017751 branch gpio_check_active 
+:      017752 module_set_mcu_wake_pin_low:
+0x5d7c 017753 fetcht 1 ,mem_module_mcu_wake_pin 
+0x5d7d 017754 branch gpio_out_inactive 
+:      017757 delay:
+0x5d7e 017758 increase -1 ,pdata 
+0x5d7f 017759 nbranch delay ,blank 
+0x5d80 017760 rtn 
+:      017770 module_le_receive_data:
+0x5d81 017771 copy rega ,pdata 
+0x5d82 017772 store 2 ,mem_module_le_rx_data_address 
+0x5d83 017773 copy regb ,pdata 
+0x5d84 017774 store 1 ,mem_module_le_rx_data_len 
+0x5d85 017775 fetch 2 ,mem_le_att_handle 
+0x5d86 017776 fetcht 2 ,mem_module_data_write_handle 
+0x5d87 017777 isub temp ,null 
+0x5d88 017778 branch module_le_receive_data_ok ,zero 
+0x5d89 017779 fetcht 2 ,mem_module_data_write_handle2 
+0x5d8a 017780 isub temp ,null 
+0x5d8b 017781 nrtn zero 
+:      017782 module_le_receive_data_ok:
+0x5d8c 017783 store 2 ,mem_module_le_rx_data_handle 
+0x5d8d 017784 branch module_set_le_rx_data_flag 
+:      017787 module_le_transmit:
+0x5d8e 017788 fetch 1 ,mem_module_flag 
+0x5d8f 017789 bbit1 module_flag_ble_send_data ,module_hci_event_send_le_data 
+:      017790 module_le_transmit1:
+0x5d90 017791 fetch 1 ,mem_module_flag 
+0x5d91 017792 rtnbit0 module_flag_ble_received_data 
+0x5d92 017793 call module_hci_event_receive_le_data 
+0x5d93 017794 branch module_clear_le_rx_data_flag 
+:      017796 module_hci_event_send_le_data:
+0x5d94 017797 jam hci_cmd_le_data_req ,mem_uart_opcode 
+0x5d95 017798 call module_hci_event_receive_valid_cmd 
+0x5d96 017799 call module_clear_le_tx_data_flag 
+0x5d97 017800 branch module_le_transmit1 
+:      017803 module_set_le_rx_data_flag:
+0x5d98 017804 fetch 1 ,mem_module_flag 
+0x5d99 017805 set1 module_flag_ble_received_data ,pdata 
+:      017806 module_store_moule_flag:
+0x5d9a 017807 store 1 ,mem_module_flag 
+0x5d9b 017808 rtn 
+:      017810 module_clear_le_rx_data_flag:
+0x5d9c 017811 fetch 1 ,mem_module_flag 
+0x5d9d 017812 set0 module_flag_ble_received_data ,pdata 
+0x5d9e 017813 branch module_store_moule_flag 
+:      017818 module_exit_sniff:
+0x5d9f 017819 fetch 1 ,mem_module_task 
+0x5da0 017820 rtnbit1 moudle_task_unsinff 
+0x5da1 017821 call module_set_unsniff_task_flag 
+0x5da2 017822 branch app_bt_sniff_exit 
+:      017827 module_bb_event_timer:
+0x5da3 017828 storet 1 ,mem_app_evt_timer_count 
+:      017829 module_bb_event_100ms_loop:
+0x5da4 017830 fetch 1 ,mem_app_evt_timer_count 
+0x5da5 017831 rtn blank 
+0x5da6 017832 increase -1 ,pdata 
+0x5da7 017833 store 1 ,mem_app_evt_timer_count 
+0x5da8 017834 set1 mark_ext_patch ,mark 
+0x5da9 017835 bpatch patch2d_0 ,mem_patch2d 
+0x5daa 017836 call module_read_vdd_timer 
+0x5dab 017837 branch module_bb_event_100ms_loop 
+:      017839 module_read_vdd_timer:
+0x5dac 017840 fetch 1 ,mem_module_read_vdd_flag 
+0x5dad 017841 rtn blank 
+0x5dae 017842 fetch 1 ,mem_module_read_vdd_count 
+0x5daf 017843 rtn blank 
+0x5db0 017844 increase -1 ,pdata 
+0x5db1 017845 store 1 ,mem_module_read_vdd_count 
+0x5db2 017846 nrtn blank 
+0x5db3 017847 jam flag_module_read_vdd_count ,mem_module_read_vdd_count 
+0x5db4 017848 call adc_set_mode 
+0x5db5 017849 call vdd_calculate_by_mode 
+0x5db6 017850 div pdata ,0x64 
+0x5db7 017851 call wait_div_end 
+0x5db8 017852 quotient pdata 
+0x5db9 017853 remainder temp 
+0x5dba 017854 store 1 ,mem_module_vdd_quotient 
+0x5dbb 017855 storet 1 ,mem_module_vdd_remainder 
+0x5dbc 017856 rtn 
+:      017860 module_set_unsniff_task_flag:
+0x5dbd 017861 fetch 1 ,mem_module_task 
+0x5dbe 017862 set1 moudle_task_unsinff ,pdata 
+0x5dbf 017863 store 1 ,mem_module_task 
+0x5dc0 017864 rtn 
+:      017866 module_clear_unsniff_task_flag:
+0x5dc1 017867 fetch 1 ,mem_module_task 
+0x5dc2 017868 set0 moudle_task_unsinff ,pdata 
+0x5dc3 017869 store 1 ,mem_module_task 
+0x5dc4 017870 rtn 
+:      017872 module_control_air_flow:
+0x5dc5 017873 set1 mark_ext_patch ,mark 
+0x5dc6 017874 bpatch patch2d_1 ,mem_patch2d 
+0x5dc7 017875 call check_uart_tx_buff 
+0x5dc8 017876 branch app_l2cap_flow_control_enable ,positive 
+0x5dc9 017877 branch app_l2cap_flow_control_disable 
+:      017884 mouse_init:
+0x5dca 017885 set1 mark_ext_patch ,mark 
+0x5dcb 017886 bpatch patch2d_2 ,mem_patch2d 
+0x5dcc 017887 setarg le_mouse 
+0x5dcd 017888 store 2 ,mem_cb_le_process 
+0x5dce 017889 setarg mouse_send_process 
+0x5dcf 017890 store 2 ,mem_cb_bt_process 
+0x5dd0 017891 setarg mouse_process_lpm_before 
+0x5dd1 017892 store 2 ,mem_cb_before_lpm 
+0x5dd2 017893 setarg mouse_priority_bb_event 
+0x5dd3 017894 store 2 ,mem_cb_bb_event_process 
+0x5dd4 017895 setarg mouse_idle 
+0x5dd5 017896 store 2 ,mem_cb_idle_process 
+0x5dd6 017897 setarg mouse_le_notify_update_data 
+0x5dd7 017898 store 2 ,mem_cb_update_notify_value 
+0x5dd8 017899 jam 0 ,mem_sp_flag 
+0x5dd9 017900 jam 0 ,mem_master_sp_flag 
+0x5dda 017901 set1 mark_ext_patch ,mark 
+0x5ddb 017902 bpatch patch2d_3 ,mem_patch2d 
+0x5ddc 017903 call mouse_init_common 
+0x5ddd 017904 rtn wake 
+0x5dde 017905 call mouse_init_environment 
+0x5ddf 017906 call mouse_dpi_init 
+0x5de0 017907 setarg mouse_before_hibernate 
+0x5de1 017908 store 2 ,mem_cb_before_hibernate 
+0x5de2 017909 fetch 2 ,mem_ui_state_map 
+0x5de3 017910 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x5de4 017911 branch mouse_check_reconn_target 
+:      017913 mouse_init_environment:
+0x5de5 017914 call app_initflag_check 
+0x5de6 017915 branch mouse_load_eeprom_param ,zero 
+0x5de7 017916 call eeprom_store_le_local_addr 
+0x5de8 017917 call eeprom_store_mouse_dpi 
+0x5de9 017918 branch app_initflag_store 
+:      017919 mouse_load_eeprom_param:
+0x5dea 017920 call eeprom_load_reconn_info 
+0x5deb 017921 call eeprom_load_le_loacal_addr 
+0x5dec 017922 branch eeprom_load_mouse_dpi 
+:      017924 mouse_dpi_init:
+0x5ded 017925 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+0x5dee 017926 branch mouse_modified_dpi 
+:      017928 mouse_idle:
+0x5def 017929 call ui_check_paring_button 
+0x5df0 017930 call mouse_check_dpi 
+0x5df1 017931 branch mouse_wheel_check 
+:      017933 mouse_check_dpi:
+0x5df2 017934 fetcht 1 ,mem_dpi_button_gpio 
+0x5df3 017935 call gpio_get_bit 
+0x5df4 017936 nbranch mouse_dpi_up ,true 
+:      017937 mouse_dpi_down:
+0x5df5 017938 fetch 1 ,mem_mouse_dpi_button_state 
+0x5df6 017939 rtneq dpi_button_state_down 
+0x5df7 017940 jam dpi_button_state_down ,mem_mouse_dpi_button_state 
+0x5df8 017941 rtn 
+:      017942 mouse_dpi_up:
+0x5df9 017943 fetch 1 ,mem_mouse_dpi_button_state 
+0x5dfa 017944 rtneq dpi_button_state_up 
+0x5dfb 017945 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+0x5dfc 017946 fetch 1 ,mem_mouse_dpi 
+0x5dfd 017947 increase 1 ,pdata 
+0x5dfe 017948 and pdata ,0x03 ,pdata 
+0x5dff 017949 store 1 ,mem_mouse_dpi 
+0x5e00 017950 branch mouse_modified_dpi 
+:      017951 mouse_modified_dpi:
+0x5e01 017952 setarg mouse_dpi_address 
+0x5e02 017953 call twspi_read 
+0x5e03 017954 and pdata ,0xfc ,temp 
+0x5e04 017955 fetch 1 ,mem_mouse_dpi 
+0x5e05 017956 iadd temp ,pdata 
+0x5e06 017957 lshift8 pdata ,pdata 
+0x5e07 017958 add pdata ,mouse_dpi_address ,pdata 
+0x5e08 017959 call twspi_write 
+0x5e09 017960 branch eeprom_store_mouse_dpi 
+:      017962 mouse_init_common:
+0x5e0a 017963 call mouse_init_sunt 
+0x5e0b 017964 call mouse_gpio_init 
+0x5e0c 017965 hfetch 2 ,core_clkoff 
+0x5e0d 017966 set0 clock_off_qdecoder ,pdata 
+0x5e0e 017967 hstore 2 ,core_clkoff 
+0x5e0f 017968 rtn 
+:      017970 mouse_gpio_init:
+0x5e10 017971 rtn wake 
+0x5e11 017972 call lpm_disable_exen_output 
+0x5e12 017973 fetcht 1 ,mem_mwhee_a_data_gpio 
+0x5e13 017974 call gpio_config_input 
+0x5e14 017975 fetcht 1 ,mem_mwhee_b_data_gpio 
+0x5e15 017976 call gpio_config_input 
+0x5e16 017977 fetcht 1 ,mem_lbutton_gpio 
+0x5e17 017978 call gpio_config_input 
+0x5e18 017979 fetcht 1 ,mem_rbutton_gpio 
+0x5e19 017980 call gpio_config_input 
+0x5e1a 017981 fetcht 1 ,mem_mbutton_gpio 
+0x5e1b 017982 call gpio_config_input 
+0x5e1c 017983 fetcht 1 ,mem_sbutton1_gpio 
+0x5e1d 017984 call gpio_config_input 
+0x5e1e 017985 fetcht 1 ,mem_sbutton2_gpio 
+0x5e1f 017986 call gpio_config_input 
+0x5e20 017987 fetcht 1 ,mem_sensor_data_gpio 
+0x5e21 017988 call gpio_config_input 
+0x5e22 017989 fetcht 1 ,mem_dpi_button_gpio 
+0x5e23 017990 branch gpio_config_input 
+:      017993 mouse_before_hibernate:
+0x5e24 017994 setarg 0xbc05 
+0x5e25 017995 call twspi_write 
+0x5e26 017996 jam 1 ,mem_lpm_current_mult 
+:      017998 mouse_process_lpm_before:
+0x5e27 017999 call mouse_wheel_check 
+0x5e28 018000 arg 25 ,temp 
+0x5e29 018001 call gpio_config_output 
+0x5e2a 018002 hjam 0 ,core_gpio_sel1 
+0x5e2b 018003 fetcht 1 ,mem_mwhee_a_data_gpio 
+0x5e2c 018004 call gpio_set_wake_by_current_state 
+0x5e2d 018005 fetcht 1 ,mem_mwhee_b_data_gpio 
+0x5e2e 018006 call gpio_set_wake_by_current_state 
+0x5e2f 018007 fetcht 1 ,mem_lbutton_gpio 
+0x5e30 018008 call gpio_set_wake_by_current_state 
+0x5e31 018009 fetcht 1 ,mem_rbutton_gpio 
+0x5e32 018010 call gpio_set_wake_by_current_state 
+0x5e33 018011 fetcht 1 ,mem_mbutton_gpio 
+0x5e34 018012 call gpio_set_wake_by_current_state 
+0x5e35 018013 fetcht 1 ,mem_sbutton1_gpio 
+0x5e36 018014 call gpio_set_wake_by_current_state 
+0x5e37 018015 fetcht 1 ,mem_sbutton2_gpio 
+0x5e38 018016 call gpio_set_wake_by_current_state 
+0x5e39 018017 fetcht 1 ,mem_sensor_data_gpio 
+0x5e3a 018018 call gpio_set_wake 
+0x5e3b 018019 fetch 1 ,mem_lpm_current_mult 
+0x5e3c 018020 nrtn blank 
+0x5e3d 018021 branch gpio_clr_wake 
+:      018023 mouse_wheel_check:
+0x5e3e 018024 set1 mark_ext_patch ,mark 
+0x5e3f 018025 bpatch patch2d_4 ,mem_patch2d 
+0x5e40 018026 call mouse_t_wheel_scan 
+0x5e41 018027 call mouse_wheel_scan 
+0x5e42 018028 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e43 018029 fetcht 1 ,mem_wheel_tb_old_pinlevel 
+0x5e44 018030 store 1 ,mem_wheel_tb_old_pinlevel 
+0x5e45 018031 isub temp ,null 
+0x5e46 018032 nbranch app_lpm_wake_auto_lock ,zero 
+0x5e47 018033 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5e48 018034 fetcht 1 ,mem_mwheel_b_old_pinlevel 
+0x5e49 018035 store 1 ,mem_mwheel_b_old_pinlevel 
+0x5e4a 018036 isub temp ,null 
+0x5e4b 018037 nbranch app_lpm_wake_auto_lock ,zero 
+0x5e4c 018038 rtn 
+:      018039 mouse_t_wheel_scan:
+0x5e4d 018040 arg 0 ,rega 
+0x5e4e 018041 fetcht 1 ,mem_whee_ta_data_gpio 
+0x5e4f 018042 call gpio_get_bit 
+0x5e50 018043 setflag true ,0 ,rega 
+0x5e51 018044 fetcht 1 ,mem_whee_tb_data_gpio 
+0x5e52 018045 call gpio_get_bit 
+0x5e53 018046 setflag true ,1 ,rega 
+0x5e54 018047 copy rega ,pdata 
+0x5e55 018048 store 1 ,mem_wheel_tb_new_pinlevel 
+0x5e56 018049 beq 0x01 ,p_mouse_t_wheel_scan_judge1 
+0x5e57 018050 beq 0x02 ,p_mouse_t_wheel_scan_judge2 
+0x5e58 018051 fetch 1 ,mem_wheel_tog 
+0x5e59 018052 bbit1 7 ,p_mouse_t_wheel_scan_judge3 
+0x5e5a 018053 rtn 
+:      018055 p_mouse_t_wheel_scan_judge1:
+0x5e5b 018056 fetch 1 ,mem_wheel_tb_old_pinlevel 
+0x5e5c 018057 beq 0 ,p_mouse_t_wheel_scan_judge11 
+0x5e5d 018058 beq 3 ,p_mouse_t_wheel_scan_judge12 
+0x5e5e 018059 rtn 
+:      018060 p_mouse_t_wheel_scan_judge2:
+0x5e5f 018061 fetch 1 ,mem_wheel_tb_old_pinlevel 
+0x5e60 018062 beq 0 ,p_mouse_t_wheel_scan_judge21 
+0x5e61 018063 beq 3 ,p_mouse_t_wheel_scan_judge22 
+0x5e62 018064 rtn 
+:      018065 p_mouse_t_wheel_scan_judge11:
+0x5e63 018066 jam 0x82 ,mem_wheel_tog 
+0x5e64 018067 rtn 
+:      018068 p_mouse_t_wheel_scan_judge12:
+0x5e65 018069 jam 0x81 ,mem_wheel_tog 
+0x5e66 018070 rtn 
+:      018071 p_mouse_t_wheel_scan_judge21:
+0x5e67 018072 jam 0x80 ,mem_wheel_tog 
+0x5e68 018073 rtn 
+:      018074 p_mouse_t_wheel_scan_judge22:
+0x5e69 018075 jam 0x83 ,mem_wheel_tog 
+0x5e6a 018076 rtn 
+:      018077 p_mouse_t_wheel_scan_judge3:
+0x5e6b 018078 fetch 1 ,mem_wheel_tog 
+0x5e6c 018079 set0 7 ,pdata 
+0x5e6d 018080 store 1 ,mem_wheel_tog 
+0x5e6e 018081 fetch 1 ,mem_wheel_tog 
+0x5e6f 018082 beq 0 ,p_mouse_t_wheel_scan_judge30 
+0x5e70 018083 beq 1 ,p_mouse_t_wheel_scan_judge31 
+0x5e71 018084 beq 2 ,p_mouse_t_wheel_scan_judge32 
+0x5e72 018085 beq 3 ,p_mouse_t_wheel_scan_judge33 
+0x5e73 018086 rtn 
+:      018087 p_mouse_t_wheel_scan_judge30:
+0x5e74 018088 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e75 018089 beq 3 ,p_mouse_wheel_t_forward 
+0x5e76 018090 rtn 
+:      018091 p_mouse_t_wheel_scan_judge31:
+0x5e77 018092 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e78 018093 beq 0 ,p_mouse_wheel_t_forward 
+0x5e79 018094 rtn 
+:      018095 p_mouse_t_wheel_scan_judge32:
+0x5e7a 018096 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e7b 018097 beq 3 ,p_mouse_wheel_t_back 
+0x5e7c 018098 rtn 
+:      018099 p_mouse_t_wheel_scan_judge33:
+0x5e7d 018100 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e7e 018101 beq 0 ,p_mouse_wheel_t_back 
+0x5e7f 018102 rtn 
+:      018103 p_mouse_wheel_t_forward:
+0x5e80 018104 fetch 1 ,mem_mouse_tz_data_count1 
+0x5e81 018105 increase 1 ,pdata 
+0x5e82 018106 store 1 ,mem_mouse_tz_data_count1 
+0x5e83 018107 sub pdata ,1 ,null 
+0x5e84 018108 rtn positive 
+0x5e85 018109 jam 0 ,mem_mouse_tz_data_count1 
+0x5e86 018110 fetch 1 ,mem_mouse_tz_data 
+0x5e87 018111 increase 1 ,pdata 
+0x5e88 018112 store 1 ,mem_mouse_tz_data 
+0x5e89 018113 rtn 
+:      018114 p_mouse_wheel_t_back:
+0x5e8a 018115 fetch 1 ,mem_mouse_tz_data_count 
+0x5e8b 018116 increase 1 ,pdata 
+0x5e8c 018117 store 1 ,mem_mouse_tz_data_count 
+0x5e8d 018118 sub pdata ,1 ,null 
+0x5e8e 018119 rtn positive 
+0x5e8f 018120 jam 0 ,mem_mouse_tz_data_count 
+0x5e90 018121 fetch 1 ,mem_mouse_tz_data 
+0x5e91 018122 increase -1 ,pdata 
+0x5e92 018123 store 1 ,mem_mouse_tz_data 
+0x5e93 018124 rtn 
+:      018127 mouse_wheel_scan:
+0x5e94 018128 arg 0 ,rega 
+0x5e95 018129 fetcht 1 ,mem_mwhee_a_data_gpio 
+0x5e96 018130 call gpio_get_bit 
+0x5e97 018131 setflag true ,0 ,rega 
+0x5e98 018132 fetcht 1 ,mem_mwhee_b_data_gpio 
+0x5e99 018133 call gpio_get_bit 
+0x5e9a 018134 setflag true ,1 ,rega 
+0x5e9b 018135 copy rega ,pdata 
+0x5e9c 018136 store 1 ,mem_mwheel_b_new_pinlevel 
+0x5e9d 018137 beq 0x01 ,mouse_wheel_scan_judge1 
+0x5e9e 018138 beq 0x02 ,mouse_wheel_scan_judge2 
+0x5e9f 018139 fetch 1 ,mem_mwheel_tog 
+0x5ea0 018140 bbit1 7 ,mouse_wheel_scan_judge3 
+0x5ea1 018141 rtn 
+:      018143 mouse_wheel_scan_judge1:
+0x5ea2 018144 fetch 1 ,mem_mwheel_b_old_pinlevel 
+0x5ea3 018145 beq 0 ,mouse_wheel_scan_judge11 
+0x5ea4 018146 beq 3 ,mouse_wheel_scan_judge12 
+0x5ea5 018147 rtn 
+:      018148 mouse_wheel_scan_judge2:
+0x5ea6 018149 fetch 1 ,mem_mwheel_b_old_pinlevel 
+0x5ea7 018150 beq 0 ,mouse_wheel_scan_judge21 
+0x5ea8 018151 beq 3 ,mouse_wheel_scan_judge22 
+0x5ea9 018152 rtn 
+:      018153 mouse_wheel_scan_judge11:
+0x5eaa 018154 jam 0x82 ,mem_mwheel_tog 
+0x5eab 018155 rtn 
+:      018156 mouse_wheel_scan_judge12:
+0x5eac 018157 jam 0x81 ,mem_mwheel_tog 
+0x5ead 018158 rtn 
+:      018159 mouse_wheel_scan_judge21:
+0x5eae 018160 jam 0x80 ,mem_mwheel_tog 
+0x5eaf 018161 rtn 
+:      018162 mouse_wheel_scan_judge22:
+0x5eb0 018163 jam 0x83 ,mem_mwheel_tog 
+0x5eb1 018164 rtn 
+:      018165 mouse_wheel_scan_judge3:
+0x5eb2 018166 fetch 1 ,mem_mwheel_tog 
+0x5eb3 018167 set0 7 ,pdata 
+0x5eb4 018168 store 1 ,mem_mwheel_tog 
+0x5eb5 018169 fetch 1 ,mem_mwheel_tog 
+0x5eb6 018170 beq 0 ,mouse_wheel_scan_judge30 
+0x5eb7 018171 beq 1 ,mouse_wheel_scan_judge31 
+0x5eb8 018172 beq 2 ,mouse_wheel_scan_judge32 
+0x5eb9 018173 beq 3 ,mouse_wheel_scan_judge33 
+0x5eba 018174 rtn 
+:      018175 mouse_wheel_scan_judge30:
+0x5ebb 018176 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5ebc 018177 beq 3 ,mouse_wheel_forward 
+0x5ebd 018178 rtn 
+:      018179 mouse_wheel_scan_judge31:
+0x5ebe 018180 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5ebf 018181 beq 0 ,mouse_wheel_forward 
+0x5ec0 018182 rtn 
+:      018183 mouse_wheel_scan_judge32:
+0x5ec1 018184 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5ec2 018185 beq 3 ,mouse_wheel_back 
+0x5ec3 018186 rtn 
+:      018187 mouse_wheel_scan_judge33:
+0x5ec4 018188 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5ec5 018189 beq 0 ,mouse_wheel_back 
+0x5ec6 018190 rtn 
+:      018191 mouse_wheel_forward:
+0x5ec7 018192 fetch 1 ,mem_mouse_z_data_count1 
+0x5ec8 018193 increase 1 ,pdata 
+0x5ec9 018194 store 1 ,mem_mouse_z_data_count1 
+0x5eca 018195 sub pdata ,1 ,null 
+0x5ecb 018196 rtn positive 
+0x5ecc 018197 jam 0 ,mem_mouse_z_data_count1 
+0x5ecd 018198 fetch 1 ,mem_mouse_z_data 
+0x5ece 018199 increase 1 ,pdata 
+0x5ecf 018200 store 1 ,mem_mouse_z_data 
+0x5ed0 018201 rtn 
+:      018202 mouse_wheel_back:
+0x5ed1 018203 fetch 1 ,mem_mouse_z_data_count 
+0x5ed2 018204 increase 1 ,pdata 
+0x5ed3 018205 store 1 ,mem_mouse_z_data_count 
+0x5ed4 018206 sub pdata ,1 ,null 
+0x5ed5 018207 rtn positive 
+0x5ed6 018208 jam 0 ,mem_mouse_z_data_count 
+0x5ed7 018209 fetch 1 ,mem_mouse_z_data 
+0x5ed8 018210 increase -1 ,pdata 
+0x5ed9 018211 store 1 ,mem_mouse_z_data 
+0x5eda 018212 rtn 
+:      018215 le_mouse_bb_event_write_request:
+0x5edb 018216 call app_ble_store_reconn_info 
+0x5edc 018217 jam mouse_mode_state_ble ,mem_mouse_mode_state 
+0x5edd 018218 call app_lpm_mult_enable 
+:      018219 le_mouse_bb_event_enc_info:
+0x5ede 018220 branch app_ble_start_write 
+:      018223 mouse_hid_connected:
+0x5edf 018224 setarg hid_handshake_timeout 
+0x5ee0 018225 store 1 ,mem_hid_handshake_timer_count 
+0x5ee1 018226 rtn 
+:      018228 mouse_send_process:
+0x5ee2 018229 fetch 1 ,mem_app_handshake_flag 
+0x5ee3 018230 rtn blank 
+0x5ee4 018231 call l2cap_malloc_is_fifo_nearly_full 
+0x5ee5 018232 nrtn blank 
+0x5ee6 018233 call mouse_motion 
+0x5ee7 018234 nrtn user 
+0x5ee8 018235 call mouse_no_data_timer_init 
+:      018236 mouse_send_data:
+0x5ee9 018237 arg 9 ,rega 
+0x5eea 018238 call hid_malloc_tx_buff 
+0x5eeb 018239 fetch 2 ,mem_hid_int_remote_cid 
+0x5eec 018240 istore 2 ,contw 
+0x5eed 018241 setarg 0x02a1 
+0x5eee 018242 istore 2 ,contw 
+0x5eef 018243 fetch 7 ,mem_mouse_key 
+0x5ef0 018244 istore 7 ,contw 
+0x5ef1 018245 rtn 
+:      018246 bt_send_empty_data:
+0x5ef2 018247 setarg 0 
+0x5ef3 018248 store 6 ,mem_mouse_x 
+0x5ef4 018249 store 1 ,mem_mouse_tz 
+0x5ef5 018250 branch mouse_send_data 
+:      018251 p_le_send_empty_data:
+0x5ef6 018252 setarg 0 
+0x5ef7 018253 store 6 ,mem_mouse_x 
+0x5ef8 018254 store 1 ,mem_mouse_tz 
+0x5ef9 018255 branch mouse_fill_data_le 
+:      018257 mouse_no_data_timer_init:
+0x5efa 018258 fetch 2 ,mem_mouse_no_data_timeout 
+0x5efb 018259 store 2 ,mem_mouse_no_data_timer 
+0x5efc 018260 rtn 
+:      018263 mouse_le_notify_update_data:
+0x5efd 018264 fetcht 2 ,mem_le_notify_handle 
+0x5efe 018265 call le_att_get_handle_ptr 
+0x5eff 018266 ifetch 1 ,contr 
+0x5f00 018267 store 1 ,mem_le_notify_len 
+0x5f01 018268 arg mem_le_l2cap ,contw 
+0x5f02 018269 increase 1 ,contw 
+0x5f03 018270 fetcht 2 ,mem_le_notify_handle 
+0x5f04 018271 istoret 2 ,contw 
+0x5f05 018272 call le_att_get_handle_ptr 
+0x5f06 018273 ifetch 1 ,contr 
+0x5f07 018274 icopy loopcnt 
+0x5f08 018275 call memcpy 
+0x5f09 018276 fetcht 1 ,mem_le_notify_len 
+0x5f0a 018277 increase 7 ,temp 
+0x5f0b 018278 branch le_send_packet 
+:      018281 mouse_fill_data_le:
+0x5f0c 018282 set1 mark_ext_patch ,mark 
+0x5f0d 018283 bpatch patch2d_5 ,mem_patch2d 
+0x5f0e 018284 fetcht 2 ,mem_le_notify_handle 
+0x5f0f 018285 call le_att_get_handle_ptr 
+0x5f10 018286 add contr ,1 ,contw 
+:      018287 mouse_fill_data:
+0x5f11 018288 fetch 7 ,mem_mouse_key 
+0x5f12 018289 istore 7 ,contw 
+0x5f13 018290 rtn 
+:      018292 mouse_motion:
+0x5f14 018293 set1 mark_ext_patch ,mark 
+0x5f15 018294 bpatch patch2d_6 ,mem_patch2d 
+0x5f16 018295 disable user 
+0x5f17 018296 setarg 0 
+0x5f18 018297 store 6 ,mem_mouse_x 
+0x5f19 018298 call sensor_motion 
+0x5f1a 018299 call mouse_sensor_sdio_low 
+0x5f1b 018300 call mouse_zwheel 
+0x5f1c 018301 call mouse_t_zwheel 
+0x5f1d 018302 branch mouse_key 
+:      018304 sensor_motion:
+0x5f1e 018305 fetch 1 ,mem_mouse_move_flag 
+0x5f1f 018306 call mouse_read_sensor_common ,blank 
+0x5f20 018307 jam 1 ,mem_mouse_move_flag 
+0x5f21 018308 disable user 
+0x5f22 018309 fetcht 1 ,mem_sensor_data_gpio 
+0x5f23 018310 call gpio_get_bit 
+0x5f24 018311 nrtn true 
+0x5f25 018312 setarg 0 
+0x5f26 018313 call twspi_read 
+0x5f27 018315 setarg 2 
+0x5f28 018316 call twspi_read 
+0x5f29 018317 rtnbit0 7 
+0x5f2a 018318 setarg 3 
+0x5f2b 018319 call twspi_read 
+0x5f2c 018320 call extsign 
+0x5f2d 018321 store 2 ,mem_mouse_x 
+0x5f2e 018322 setarg 4 
+0x5f2f 018323 call twspi_read 
+0x5f30 018324 call extsign 
+0x5f31 018325 sub pdata ,0 ,pdata 
+0x5f32 018326 store 2 ,mem_mouse_y 
+0x5f33 018327 fetch 4 ,mem_mouse_x 
+0x5f34 018328 enable user 
+0x5f35 018329 rtn 
+:      018331 mouse_read_sensor3610_data:
+0x5f36 018332 call spi_ncs_enable 
+0x5f37 018333 call mouse_read_sensor_common 
+0x5f38 018334 arg 5 ,pdata 
+0x5f39 018335 call twspi_read 
+0x5f3a 018336 store 1 ,mem_mouse_xy_h 
+0x5f3b 018337 arg 7 ,pdata 
+0x5f3c 018338 call twspi_read 
+0x5f3d 018339 store 1 ,mem_sensor_shutter_hi 
+0x5f3e 018340 arg 8 ,pdata 
+0x5f3f 018341 call twspi_read 
+0x5f40 018342 store 1 ,mem_sensor_shutter_lo 
+0x5f41 018343 branch spi_ncs_disable 
+:      018346 mouse_3610_smart_enable:
+0x5f42 018347 fetch 1 ,mem_sensor_shutter_hi 
+0x5f43 018348 rtnne 0 
+0x5f44 018349 fetch 1 ,mem_sensor_shutter_lo 
+0x5f45 018350 sub pdata ,45 ,null 
+0x5f46 018351 rtn positive 
+0x5f47 018352 jam 0 ,mem_sensor_smart_flag 
+0x5f48 018353 setarg 0xba41 
+0x5f49 018354 call sensor_write 
+0x5f4a 018355 setarg 0x0032 
+0x5f4b 018356 call sensor_write 
+0x5f4c 018357 setarg 0xb541 
+0x5f4d 018358 branch sensor_write 
+:      018359 mouse_3610_smart_disable:
+0x5f4e 018360 fetch 1 ,mem_sensor_shutter_hi 
+0x5f4f 018361 rtnne 0 
+0x5f50 018362 fetch 1 ,mem_sensor_shutter_lo 
+0x5f51 018363 sub pdata ,45 ,null 
+0x5f52 018364 nrtn positive 
+0x5f53 018365 jam 1 ,mem_sensor_smart_flag 
+0x5f54 018366 setarg 0xba41 
+0x5f55 018367 call sensor_write 
+0x5f56 018368 setarg 0x8032 
+0x5f57 018369 call sensor_write 
+0x5f58 018370 setarg 0xb541 
+0x5f59 018371 branch sensor_write 
+:      018375 mouse_read_sensor_common:
+0x5f5a 018376 arg 3 ,pdata 
+0x5f5b 018377 call twspi_read 
+0x5f5c 018378 store 2 ,mem_mouse_x 
+0x5f5d 018379 arg 4 ,pdata 
+0x5f5e 018380 call twspi_read 
+0x5f5f 018381 store 2 ,mem_mouse_y 
+0x5f60 018382 rtn 
+:      018384 mouse_zwheel:
+0x5f61 018385 fetch 1 ,mem_mouse_z_data 
+0x5f62 018386 rtn blank 
+0x5f63 018387 store 1 ,mem_mouse_z 
+0x5f64 018388 jam 0 ,mem_mouse_z_data 
+0x5f65 018389 enable user 
+0x5f66 018390 rtn 
+:      018391 mouse_t_zwheel:
+0x5f67 018392 fetch 1 ,mem_mouse_tz_data 
+0x5f68 018393 rtn blank 
+0x5f69 018394 store 1 ,mem_mouse_tz 
+0x5f6a 018395 jam 0 ,mem_mouse_tz_data 
+0x5f6b 018396 enable user 
+0x5f6c 018397 rtn 
+:      018398 mouse_check_key_gpio:
+0x5f6d 018399 arg 0 ,rega 
+0x5f6e 018400 fetcht 1 ,mem_lbutton_gpio 
+0x5f6f 018401 call gpio_get_bit 
+0x5f70 018402 setflag true ,0 ,rega 
+0x5f71 018403 fetcht 1 ,mem_rbutton_gpio 
+0x5f72 018404 call gpio_get_bit 
+0x5f73 018405 setflag true ,1 ,rega 
+0x5f74 018406 fetcht 1 ,mem_mbutton_gpio 
+0x5f75 018407 call gpio_get_bit 
+0x5f76 018408 setflag true ,2 ,rega 
+0x5f77 018409 fetcht 1 ,mem_sbutton1_gpio 
+0x5f78 018410 call gpio_get_bit 
+0x5f79 018411 setflag true ,3 ,rega 
+0x5f7a 018412 fetcht 1 ,mem_sbutton2_gpio 
+0x5f7b 018413 call gpio_get_bit 
+0x5f7c 018414 setflag true ,4 ,rega 
+0x5f7d 018415 copy rega ,pdata 
+0x5f7e 018416 rtn 
+:      018417 mouse_key:
+0x5f7f 018418 call mouse_check_key_gpio 
+0x5f80 018419 fetcht 1 ,mem_mouse_key 
+0x5f81 018420 store 1 ,mem_mouse_key 
+0x5f82 018421 ixor temp ,pdata 
+0x5f83 018422 sub pdata ,0 ,null 
+0x5f84 018423 rtn zero 
+0x5f85 018424 enable user 
+0x5f86 018425 rtn 
+:      018430 mouse_sensor_sdio_low:
+0x5f87 018431 arg 26 ,temp 
+0x5f88 018432 call gpio_get_bit 
+0x5f89 018433 rtn true 
+0x5f8a 018434 setarg 0x0a 
+0x5f8b 018435 call twspi_read 
+0x5f8c 018436 nop 1000 
+0x5f8d 018437 branch mouse_sensor_sdio_low 
+:      018439 mouse_init_sunt:
+0x5f8e 018440 call spid_init 
+0x5f8f 018441 rtn wake 
+:      018442 mouse_init_p3204:
+0x5f90 018443 setarg 0 
+0x5f91 018444 call twspi_read 
+0x5f92 018445 store 1 ,mem_sensor_id 
+0x5f93 018446 beq p3204_id ,mouse_init_p3204_cont 
+0x5f94 018448 beq p3065_id ,mouse_init_p3204_cont 
+0x5f95 018449 call twspi_reset 
+0x5f96 018450 nop 1000 
+0x5f97 018451 branch mouse_init_p3204 
+:      018452 mouse_init_p3204_cont:
+0x5f98 018453 setarg 0x8006 
+0x5f99 018454 call twspi_write 
+0x5f9a 018455 nop 1000 
+0x5f9b 018456 rtn 
+:      018458 mouse_init_sensor_reset:
+0x5f9c 018459 fetcht 1 ,mem_sensor_reset_gpio 
+0x5f9d 018460 call gpio_out_active 
+0x5f9e 018461 call delay_10ms 
+0x5f9f 018462 fetcht 1 ,mem_sensor_reset_gpio 
+0x5fa0 018463 call gpio_out_inactive 
+0x5fa1 018464 branch delay_10ms 
+:      018466 mouse_init_p3610:
+0x5fa2 018467 setarg 0xba41 
+0x5fa3 018468 call sensor_write 
+0x5fa4 018469 setarg 0x0d11 
+0x5fa5 018470 call sensor_write 
+0x5fa6 018471 setarg 0x041b 
+0x5fa7 018472 call sensor_write 
+0x5fa8 018473 setarg 0x041c 
+0x5fa9 018474 call sensor_write 
+0x5faa 018475 setarg 0x0f1d 
+0x5fab 018476 call sensor_write 
+0x5fac 018477 setarg 0x0032 
+0x5fad 018478 call sensor_write 
+0x5fae 018479 setarg 0xb541 
+0x5faf 018480 branch sensor_write 
+:      018484 set_sensor_reg:
+0x5fb0 018485 setarg 0xba41 
+0x5fb1 018486 call sensor_write 
+0x5fb2 018487 nop 4000 
+0x5fb3 018488 setarg 0xff7f 
+0x5fb4 018489 call sensor_write 
+0x5fb5 018490 copy rega ,pdata 
+0x5fb6 018491 call sensor_write 
+0x5fb7 018492 setarg 0x007f 
+0x5fb8 018493 call sensor_write 
+0x5fb9 018494 setarg 0xb541 
+0x5fba 018495 branch sensor_write 
+:      018497 extsign:
+0x5fbb 018498 rtnbit0 7 
+0x5fbc 018499 arg 0xff00 ,temp 
+0x5fbd 018500 ior temp ,pdata 
+0x5fbe 018501 rtn 
+:      018503 extsign_bit3:
+0x5fbf 018504 rtnbit0 3 
+0x5fc0 018505 arg 0xf0 ,temp 
+0x5fc1 018506 ior temp ,pdata 
+0x5fc2 018507 rtn 
+:      018509 le_mouse:
+0x5fc3 018510 call le_xtype_fifo_is_near_full 
+0x5fc4 018511 nrtn blank 
+0x5fc5 018512 fetch 1 ,mem_mouse_le_notify_handle 
+0x5fc6 018513 store 1 ,mem_le_notify_handle 
+0x5fc7 018514 fetcht 2 ,mem_le_notify_handle 
+0x5fc8 018515 call le_att_check_notification_enable 
+0x5fc9 018516 rtnbit0 0 
+0x5fca 018517 fetch 1 ,mem_le_switch_send_data 
+0x5fcb 018518 rtnbit0 0 
+0x5fcc 018519 call mouse_motion 
+0x5fcd 018520 nrtn user 
+0x5fce 018521 call mouse_no_data_timer_init 
+0x5fcf 018522 fetch 1 ,mem_mouse_le_notify_handle 
+0x5fd0 018523 store 1 ,mem_le_notify_handle 
+0x5fd1 018524 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5fd2 018525 call le_xtype_fifo_in 
+0x5fd3 018526 branch mouse_fill_data_le 
+:      018528 mouse_priority_bb_event:
+0x5fd4 018529 copy regc ,pdata 
+0x5fd5 018530 beq bt_evt_le_connected ,le_mouse_bb_event_connected 
+0x5fd6 018531 beq bt_evt_bb_connected ,mouse_stop_discovery 
+0x5fd7 018532 beq bt_evt_le_disconnected ,mouse_bb_disconnected 
+0x5fd8 018533 beq bt_evt_bb_disconnected ,mouse_bb_disconnected 
+0x5fd9 018534 beq bt_evt_setup_complete ,mouse_bt_event_setup_complete 
+0x5fda 018535 beq bt_evt_button_long_pressed ,mouse_bb_event_discovery_btn 
+0x5fdb 018536 beq bt_evt_hid_handshake ,mouse_bt_hid_handshake 
+0x5fdc 018537 beq bt_evt_hid_connected ,mouse_bt_hid_connected 
+0x5fdd 018538 beq bt_evt_le_write_request ,le_mouse_bb_event_write_request 
+0x5fde 018539 beq bt_evt_le_enc_info ,le_mouse_bb_event_enc_info 
+0x5fdf 018540 beq bt_evt_reconn_failed ,mouse_bb_event_reconn_failed 
+0x5fe0 018541 beq bt_evt_reconn_page_timeout ,mouse_bb_event_reconn_failed 
+0x5fe1 018542 beq bt_evt_pincode_req ,mouse_bb_event_pincode 
+0x5fe2 018543 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x5fe3 018544 and pdata ,0x0f ,temp 
+0x5fe4 018545 and_into bt_evt_timer_mask ,pdata 
+0x5fe5 018546 beq bt_evt_timer_init ,mouse_bb_event_timer 
+0x5fe6 018547 rtn 
+:      018549 le_mouse_bb_event_connected:
+0x5fe7 018550 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x5fe8 018551 set0 app_disc_by_button ,pdata 
+0x5fe9 018552 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x5fea 018553 setarg 0 
+0x5feb 018554 store 2 ,mem_mouse_direct_timer 
+0x5fec 018555 call mouse_no_data_timer_init 
+0x5fed 018556 branch mouse_stop_discovery 
+:      018558 mouse_bb_event_pincode:
+0x5fee 018559 call pincode_reinit 
+0x5fef 018560 branch app_bt_set_pincode 
+:      018562 mouse_bb_event_reconn_failed:
+0x5ff0 018563 fetch 2 ,mem_ui_state_map 
+0x5ff1 018564 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x5ff2 018565 branch app_bb_hibernate 
+:      018568 mouse_bt_hid_connected:
+0x5ff3 018569 call mouse_hid_connected 
+0x5ff4 018570 rtn 
+:      018571 mouse_bt_event_setup_complete:
+0x5ff5 018572 rtn 
+:      018574 mouse_bb_disconnected:
+0x5ff6 018575 set1 mark_ext_patch ,mark 
+0x5ff7 018576 bpatch patch2d_7 ,mem_patch2d 
+0x5ff8 018577 call mouse_bb_discon_clear_stack 
+0x5ff9 018578 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x5ffa 018579 bbit1 app_disc_ble ,mouse4_0_event_bb_disconn 
+0x5ffb 018580 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x5ffc 018581 bbit1 app_disc_after_pairing ,mouse_event_light_state_pairing 
+0x5ffd 018582 bbit1 app_disc_after_reconn ,mouse_event_light_state_hibernate 
+0x5ffe 018583 bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+0x5fff 018584 branch mouse_start_discovery 
+:      018585 mouse_bb_discon_clear_stack:
+0x6000 018586 setarg 0 
+0x6001 018587 store 8 ,mem_whee_ta_data_gpio 
+0x6002 018588 istore 8 ,contw 
+0x6003 018589 jam 0 ,mem_mouse_send_blank_timer 
+0x6004 018590 jam 0 ,mem_mouse_move_flag 
+0x6005 018591 jam app_handshake_null ,mem_app_handshake_flag 
+0x6006 018592 jam 0 ,mem_ltk_exists 
+0x6007 018593 jam 0 ,mem_mouse_mode_state 
+0x6008 018594 jam 0 ,mem_reconnect_timeout 
+0x6009 018595 rtn 
+:      018597 mouse_event_light_state_pairing:
+0x600a 018598 bbit1 app_disc_after_handshake ,mouse_event_light_state_hibernate 
+0x600b 018599 bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+0x600c 018600 branch mouse_start_discovery 
+:      018601 mouse_event_light_state_hibernate:
+0x600d 018602 fetch 2 ,mem_ui_state_map 
+0x600e 018603 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x600f 018604 branch app_bb_hibernate 
+:      018606 mouse4_0_event_bb_disconn:
+0x6010 018607 call le_clean_att_list_handle_enable 
+0x6011 018608 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x6012 018609 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x6013 018610 branch app_bb_hibernate 
+:      018612 mouse_bb_event_timer:
+0x6014 018613 set1 mark_ext_patch ,mark 
+0x6015 018614 bpatch patch2e_0 ,mem_patch2e 
+0x6016 018615 storet 1 ,mem_app_evt_timer_count 
+:      018616 mouse_bb_event_100ms_loop:
+0x6017 018617 fetch 1 ,mem_app_evt_timer_count 
+0x6018 018618 rtn blank 
+0x6019 018619 increase -1 ,pdata 
+0x601a 018620 store 1 ,mem_app_evt_timer_count 
+0x601b 018621 call mouse_check_hid_handshake_timer 
+0x601c 018622 call mouse_check_discovery_timeout_timer 
+0x601d 018623 call mouse_check_direct_timeout_timer 
+0x601e 018624 call mouse_check_no_data_timeout_timer 
+0x601f 018625 call mouse_check_mouse_state_timer 
+0x6020 018626 branch mouse_bb_event_100ms_loop 
+:      018628 mouse_check_mouse_state_timer:
+0x6021 018629 fetch 1 ,mem_mouse_statue_led_timer 
+0x6022 018630 rtn blank 
+0x6023 018631 pincrease -1 
+0x6024 018632 store 1 ,mem_mouse_statue_led_timer 
+0x6025 018633 nrtn blank 
+0x6026 018634 branch mouse_devce_led_off 
+:      018637 mouse_check_hid_handshake_timer:
+0x6027 018638 fetch 1 ,mem_hid_handshake_timer_count 
+0x6028 018639 rtn blank 
+0x6029 018640 increase -1 ,pdata 
+0x602a 018641 store 1 ,mem_hid_handshake_timer_count 
+0x602b 018642 nrtn blank 
+0x602c 018643 branch mouse_bt_hid_handshake 
+:      018645 mouse_check_discovery_timeout_timer:
+0x602d 018646 fetch 2 ,mem_mouse_discovery_timer 
+0x602e 018647 rtn blank 
+0x602f 018648 increase -1 ,pdata 
+0x6030 018649 store 2 ,mem_mouse_discovery_timer 
+0x6031 018650 nrtn blank 
+0x6032 018651 call mouse_stop_discovery 
+0x6033 018652 branch app_enter_hibernate 
+:      018654 mouse_check_direct_timeout_timer:
+0x6034 018655 fetch 2 ,mem_mouse_direct_timer 
+0x6035 018656 rtn blank 
+0x6036 018657 increase -1 ,pdata 
+0x6037 018658 store 2 ,mem_mouse_direct_timer 
+0x6038 018659 nrtn blank 
+0x6039 018660 call app_ble_stop_direct_adv 
+0x603a 018661 branch app_enter_hibernate 
+:      018663 mouse_check_blank_data_timeout_timer:
+0x603b 018664 fetch 2 ,mem_mouse_blank_data_timer 
+0x603c 018665 rtn blank 
+0x603d 018666 increase -1 ,pdata 
+0x603e 018667 store 2 ,mem_mouse_blank_data_timer 
+0x603f 018668 nrtn blank 
+0x6040 018669 jam 0 ,mem_mouse_send_blank_timer 
+0x6041 018670 rtn 
+:      018672 mouse_check_no_data_timeout_timer:
+0x6042 018673 fetch 2 ,mem_mouse_no_data_timer 
+0x6043 018674 rtn blank 
+0x6044 018675 increase -1 ,pdata 
+0x6045 018676 store 2 ,mem_mouse_no_data_timer 
+0x6046 018677 nrtn blank 
+0x6047 018678 branch mouse_disconnect 
+:      018680 mouse_bb_event_discovery_btn:
+0x6048 018681 set1 mark_ext_patch ,mark 
+0x6049 018682 bpatch patch2e_1 ,mem_patch2e 
+0x604a 018683 jam 0 ,mem_mouse_send_blank_timer 
+0x604b 018684 jam 1 ,mem_reconnect_timeout 
+0x604c 018685 setarg 0 
+0x604d 018686 store 2 ,mem_mouse_direct_timer 
+0x604e 018687 call mouse_disconnect 
+0x604f 018688 fetch 1 ,mem_device_option 
+0x6050 018689 isolate1 mode_4_mouse ,pdata 
+0x6051 018690 call mouse4_0_bb_event_discovery_btn ,true 
+0x6052 018691 fetch 1 ,mem_device_option 
+0x6053 018692 isolate1 mode_3_mouse ,pdata 
+0x6054 018693 call mouse3_0_bb_event_discovery_btn ,true 
+0x6055 018694 call app_lpm_mult_disable 
+0x6056 018695 branch mouse_start_discovery 
+:      018699 mouse3_0_check_reconn_target:
+0x6057 018700 fetch 6 ,mem_hci_plap 
+0x6058 018701 branch app_bt_start_discovery_short ,blank 
+0x6059 018702 branch app_bt_start_reconnect 
+:      018704 mouse4_0_check_reconn_target:
+0x605a 018705 fetch 6 ,mem_hci_plap 
+0x605b 018706 branch mouse4_0_no_reconn_target ,blank 
+0x605c 018707 fetch 2 ,mem_mouse_direct_timeout 
+0x605d 018708 store 2 ,mem_mouse_direct_timer 
+0x605e 018709 call app_lpm_mult_enable 
+0x605f 018710 branch app_ble_start_direct_adv 
+:      018711 mouse4_0_no_reconn_target:
+0x6060 018712 call app_led_start_blink 
+0x6061 018713 branch app_ble_start_adv 
+:      018715 mouse3_0_bb_event_discovery_btn:
+0x6062 018716 fetch 2 ,mem_ui_state_map 
+0x6063 018717 isolate1 ui_state_bt_reconnect ,pdata 
+0x6064 018718 call app_bt_reconnect_cancel ,true 
+0x6065 018719 rtn 
+:      018720 mouse4_0_bb_event_discovery_btn:
+0x6066 018721 call le_clean_att_list_handle_enable 
+0x6067 018722 rtn 
+:      018724 mouse_bt_hid_handshake:
+0x6068 018725 jam app_handshake_done ,mem_app_handshake_flag 
+0x6069 018726 call app_lpm_mult_enable 
+0x606a 018727 call app_bt_store_reconn_info 
+0x606b 018728 jam mouse_mode_state_bt ,mem_mouse_mode_state 
+0x606c 018729 setarg 0 
+0x606d 018730 store 2 ,mem_discovery_timeout_timer_count 
+0x606e 018731 store 1 ,mem_hid_handshake_timer_count 
+0x606f 018732 branch app_bt_enter_sniff 
+:      018734 mouse_check_reconn_target:
+0x6070 018735 fetch 1 ,mem_xrecord_mode 
+0x6071 018736 beq rec_3_mode ,mouse3_0_check_reconn_target 
+0x6072 018737 beq rec_4_mode ,mouse4_0_check_reconn_target 
+0x6073 018738 branch mouse_start_discovery 
+:      018740 mouse_start_discovery:
+0x6074 018741 set1 mark_ext_patch ,mark 
+0x6075 018742 bpatch patch2e_2 ,mem_patch2e 
+0x6076 018743 fetch 2 ,mem_ui_state_map 
+0x6077 018744 bbit1 ui_state_ble_adv ,mouse_start_discovery_norandom 
+0x6078 018745 random pdata 
+0x6079 018746 store 1 ,mem_le_lap + 1 
+:      018747 mouse_start_discovery_norandom:
+0x607a 018748 call app_lpm_mult_disable 
+0x607b 018749 fetch 2 ,mem_discovery_timeout 
+0x607c 018750 store 2 ,mem_mouse_discovery_timer 
+0x607d 018751 fetch 1 ,mem_device_option 
+0x607e 018752 isolate1 mode_4_mouse ,pdata 
+0x607f 018753 call app_ble_start_adv ,true 
+0x6080 018754 fetch 1 ,mem_device_option 
+0x6081 018755 isolate1 mode_3_mouse ,pdata 
+0x6082 018756 call app_bt_start_discovery ,true 
+0x6083 018757 branch app_led_start_blink 
+:      018759 mouse_stop_discovery:
+0x6084 018760 set1 mark_ext_patch ,mark 
+0x6085 018761 bpatch patch2e_3 ,mem_patch2e 
+0x6086 018762 setarg 0 
+0x6087 018763 store 2 ,mem_mouse_discovery_timer 
+0x6088 018764 fetch 1 ,mem_device_option 
+0x6089 018765 isolate1 mode_4_mouse ,pdata 
+0x608a 018766 call app_ble_stop_adv ,true 
+0x608b 018767 fetch 1 ,mem_device_option 
+0x608c 018768 isolate1 mode_3_mouse ,pdata 
+0x608d 018769 call app_bt_stop_discovery ,true 
+0x608e 018770 branch app_led_stop_blink 
+:      018772 mouse_disconnect:
+0x608f 018773 set1 mark_ext_patch ,mark 
+0x6090 018774 bpatch patch2e_4 ,mem_patch2e 
+0x6091 018775 setarg 0 
+0x6092 018776 store 2 ,mem_mouse_no_data_timer 
+0x6093 018777 fetch 2 ,mem_ui_state_map 
+0x6094 018778 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+0x6095 018779 fetch 2 ,mem_ui_state_map 
+0x6096 018780 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x6097 018781 rtn 
+:      018783 eeprom_store_mouse_dpi:
+0x6098 018784 set1 mark_ext_patch ,mark 
+0x6099 018785 bpatch patch2e_5 ,mem_patch2e 
+0x609a 018786 arg 1 ,temp 
+0x609b 018787 arg mem_mouse_dpi ,rega 
+0x609c 018788 arg mouse_dpi_eeprom_addr ,regb 
+0x609d 018789 branch iicd_write_eep_data 
+:      018791 eeprom_load_mouse_dpi:
+0x609e 018792 set1 mark_ext_patch ,mark 
+0x609f 018793 bpatch patch2e_6 ,mem_patch2e 
+0x60a0 018794 arg 1 ,temp 
+0x60a1 018795 arg mem_mouse_dpi ,rega 
+0x60a2 018796 arg mouse_dpi_eeprom_addr ,regb 
+0x60a3 018797 branch iicd_read_eep_data 
+:      018801 mouse_check_mouse_statue:
+0x60a4 018802 set1 mark_ext_patch ,mark 
+0x60a5 018803 bpatch patch2e_7 ,mem_patch2e 
+0x60a6 018804 fetch 1 ,mem_sensor_squal_reg 
+0x60a7 018805 call sensor_read 
+0x60a8 018806 beq 0x0 ,mouse_statue_up 
+0x60a9 018807 rtn 
+:      018809 mouse_devce_led_off:
+0x60aa 018810 fetcht 1 ,mem_device1_led_gpio 
+0x60ab 018811 call gpio_out_inactive 
+0x60ac 018812 fetcht 1 ,mem_device2_led_gpio 
+0x60ad 018813 call gpio_out_inactive 
+0x60ae 018814 fetcht 1 ,mem_device3_led_gpio 
+0x60af 018815 branch gpio_out_inactive 
+:      018816 mouse_statue_up:
+0x60b0 018817 fetch 1 ,mem_reconn_mode 
+0x60b1 018818 rtn blank 
+0x60b2 018819 jam 0 ,mem_reconn_mode 
+0x60b3 018820 jam 60 ,mem_mouse_statue_led_timer 
+0x60b4 018821 call mouse_devce_led_off 
+0x60b5 018822 fetch 1 ,mem_device_flag 
+0x60b6 018823 beq 0x01 ,mouse_device1_led_on 
+0x60b7 018824 beq 0x02 ,mouse_device2_led_on 
+0x60b8 018825 beq 0x03 ,mouse_device3_led_on 
+0x60b9 018826 rtn 
+:      018827 mouse_device1_led_on:
+0x60ba 018828 fetcht 1 ,mem_device1_led_gpio 
+0x60bb 018829 branch gpio_out_active 
+:      018830 mouse_device2_led_on:
+0x60bc 018831 fetcht 1 ,mem_device2_led_gpio 
+0x60bd 018832 branch gpio_out_active 
+:      018833 mouse_device3_led_on:
+0x60be 018834 fetcht 1 ,mem_device3_led_gpio 
+0x60bf 018835 branch gpio_out_active 
+:      018845 twspi_reset:
+0x60c0 018846 set1 mark_ext_patch ,mark 
+0x60c1 018847 bpatch patch2f_0 ,mem_patch2f 
+0x60c2 018848 hfetch 1 ,core_gpio_oe3 
+0x60c3 018849 arg 0x06 ,temp 
+0x60c4 018850 ior temp ,pdata 
+0x60c5 018851 hstore 1 ,core_gpio_oe3 
+0x60c6 018852 hfetch 1 ,core_gpio_out3 
+0x60c7 018853 ior temp ,pdata 
+0x60c8 018854 hstore 1 ,core_gpio_out3 
+0x60c9 018855 hjam 0 ,core_gpio_sel1 
+0x60ca 018856 hfetch 1 ,core_gpio_out3 
+0x60cb 018857 set0 1 ,pdata 
+0x60cc 018858 set0 2 ,pdata 
+0x60cd 018859 hstore 1 ,core_gpio_out3 
+0x60ce 018860 nop 30 
+0x60cf 018861 hjam 1 ,core_gpio_sel1 
+0x60d0 018862 rtn 
+:      018866 sensor_read:
+0x60d1 018867 copy pdata ,regb 
+0x60d2 018868 call spi_ncs_enable 
+0x60d3 018869 nop 100 
+0x60d4 018870 copy regb ,pdata 
+0x60d5 018871 call twspi_read 
+0x60d6 018872 copy pdata ,regb 
+0x60d7 018873 call spi_ncs_disable 
+0x60d8 018874 nop 100 
+0x60d9 018875 copy regb ,pdata 
+0x60da 018876 rtn 
+:      018878 sensor_write:
+0x60db 018879 copy pdata ,regb 
+0x60dc 018880 call spi_ncs_enable 
+0x60dd 018881 nop 100 
+0x60de 018882 copy regb ,pdata 
+0x60df 018883 call twspi_write 
+0x60e0 018884 call spi_ncs_disable 
+0x60e1 018885 nop 100 
+0x60e2 018886 rtn 
+:      018889 spi_ncs_gpio_init:
+0x60e3 018890 fetch 1 ,mem_spi_ncs_gpio 
+0x60e4 018891 rtneq 0xff 
+0x60e5 018892 fetcht 1 ,mem_spi_ncs_gpio 
+0x60e6 018893 branch gpio_config_output 
+:      018896 spi_ncs_enable:
+0x60e7 018897 fetcht 1 ,mem_spi_ncs_gpio 
+0x60e8 018898 branch gpio_out_active 
+:      018901 spi_ncs_disable:
+0x60e9 018902 fetcht 1 ,mem_spi_ncs_gpio 
+0x60ea 018903 branch gpio_out_inactive 
+:      018906 twspi_write:
+0x60eb 018907 branch spid_write_reg 
+:      018911 twspi_read:
+0x60ec 018912 branch spid_read_reg 
+:      018919 read_function_aes:
+0x60ed 018920 nbranch read_function ,user 
+0x60ee 018921 hfetch 1 ,core_gpio_key2 
+0x60ef 018922 or_into 0x20 ,pdata 
+0x60f0 018923 hstore 1 ,core_gpio_key2 
+:      018924 read_function:
+0x60f1 018925 copy temp ,null 
+0x60f2 018926 branch read_fuction_zero ,zero 
+0x60f3 018927 copy regc ,pc 
+:      018928 read_fuction_zero:
+0x60f4 018929 isolate0 0 ,null 
+0x60f5 018930 branch set_ucode_status 
+:      018933 get_block_header:
+0x60f6 018934 force 4 ,temp 
+:      018935 get_block_header0:
+0x60f7 018936 arg mem_ucode_buf ,rega 
+0x60f8 018937 hfetch 1 ,core_gpio_key2 
+0x60f9 018938 and_into 0xdf ,pdata 
+0x60fa 018939 hstore 1 ,core_gpio_key2 
+0x60fb 018940 call read_function 
+0x60fc 018941 arg 0x55aa ,rega 
+0x60fd 018942 fetch 2 ,mem_ucode_buf 
+0x60fe 018943 ifetcht 2 ,contr 
+0x60ff 018944 isub rega ,null 
+0x6100 018945 rtn 
+:      018947 read_first_block:
+0x6101 018948 arg 2 ,temp 
+0x6102 018949 arg mem_ucode_ptr ,rega 
+0x6103 018950 call read_function 
+0x6104 018951 fetch 2 ,mem_ucode_ptr 
+0x6105 018952 store 2 ,mem_addr_mi 
+0x6106 018953 call get_iv ,user 
+0x6107 018954 rtn 
+:      018956 get_iv:
+0x6108 018957 arg 16 ,temp 
+0x6109 018958 arg mem_ucode_keybuf ,rega 
+0x610a 018959 hfetch 1 ,core_gpio_key2 
+0x610b 018960 and_into 0xdf ,pdata 
+0x610c 018961 hstore 1 ,core_gpio_key2 
+0x610d 018962 call read_function 
+0x610e 018963 arg mem_ucode_keybuf ,contr 
+0x610f 018964 arg 16 ,loopcnt 
+0x6110 018965 call aes_load_data 
+0x6111 018966 call aes_init 
+0x6112 018967 call aes_clear_data 
+0x6113 018968 branch do_aes_cbc 
+:      018970 load_storage:
+0x6114 018971 disable match 
+0x6115 018972 call get_block_header 
+0x6116 018973 nrtn zero 
+0x6117 018974 enable match 
+0x6118 018975 hjam 0x80 ,core_ucode_ctrl 
+0x6119 018976 hjam 0 ,core_ucode_hi 
+0x611a 018977 hjam 0 ,core_ucode_low 
+0x611b 018978 arg core_ucode_data ,rega 
+0x611c 018979 call read_function_aes 
+0x611d 018980 hjam 0x0 ,core_ucode_ctrl 
+0x611e 018981 call get_block_header 
+0x611f 018982 nrtn zero 
+0x6120 018983 force 0 ,pdata 
+0x6121 018984 hstore 2 ,core_docd_paddr 
+0x6122 018985 arg core_docd_pdata ,rega 
+0x6123 018986 call read_function_aes 
+:      018987 load_storage_loop:
+0x6124 018988 arg 6 ,temp 
+0x6125 018989 call get_block_header0 
+0x6126 018990 nrtn zero 
+0x6127 018991 ifetch 2 ,contr 
+0x6128 018992 iforce rega 
+0x6129 018993 call read_function 
+0x612a 018994 branch load_storage_loop 
+:      019000 reload_eeprom:
+0x612b 019001 set1 mark_ext_patch ,mark 
+0x612c 019002 bpatch patch2f_1 ,mem_patch2f 
+0x612d 019003 call clean_mem 
+0x612e 019004 setarg 0x1000 
+0x612f 019005 store 2 ,mem_addr_mi 
+0x6130 019006 arg iicd_read_eep ,regc 
+0x6131 019007 arg 2 ,loopcnt 
+:      019008 reload_eeprom_loop:
+0x6132 019009 call get_block_header 
+0x6133 019010 nrtn zero 
+0x6134 019011 fetch 2 ,mem_addr_mi 
+0x6135 019012 byteswap pdata ,pdata 
+0x6136 019013 iadd temp ,pdata 
+0x6137 019014 byteswap pdata ,pdata 
+0x6138 019015 store 2 ,mem_addr_mi 
+0x6139 019016 loop reload_eeprom_loop 
+0x613a 019017 branch load_storage_loop 
+:      019019 loadcode:
+0x613b 019020 hjam 0x25 ,core_clkoff 
+0x613c 019021 hjam 5 ,core_docd_ctrl 
+0x613d 019022 call clean_mem 
+0x613e 019023 set1 mark_ext_patch ,mark 
+0x613f 019024 bpatch patch2f_2 ,mem_patch2f 
+:      019025 loadcode_lpm:
+0x6140 019026 disable user 
+0x6141 019027 call otp_enable_chgpump 
+0x6142 019028 setarg otp_ucode_flag 
+0x6143 019029 arg mem_otp_ucode_flag ,rega 
+0x6144 019030 arg 2 ,temp 
+0x6145 019031 call otpd_read_data 
+0x6146 019032 fetch 2 ,mem_otp_ucode_flag 
+0x6147 019033 bbit0 otp_uflag_aes ,loadcode_otp 
+0x6148 019034 setarg otp_ucode_aeskey 
+0x6149 019035 arg mem_ucode_keybuf ,rega 
+0x614a 019036 arg 16 ,temp 
+0x614b 019037 call otpd_read_data 
+0x614c 019038 hjam lock_otp ,core_misc_ctrl 
+0x614d 019039 arg mem_ucode_keybuf ,contr 
+0x614e 019040 call load_key 
+0x614f 019041 enable user 
+:      019042 loadcode_otp:
+0x6150 019043 set1 mark_ext_patch ,mark 
+0x6151 019044 bpatch patch2f_3 ,mem_patch2f 
+0x6152 019045 fetch 2 ,mem_otp_ucode_flag 
+0x6153 019046 byteswap pdata ,pdata 
+0x6154 019047 arg 0x7ff ,temp 
+0x6155 019048 iand temp ,pdata 
+0x6156 019049 branch loadcode_spi ,zero 
+0x6157 019050 call otp_set_addr 
+0x6158 019051 arg otpd_read_code ,regc 
+0x6159 019052 call get_iv ,user 
+0x615a 019053 call load_storage 
+0x615b 019054 fetch 1 ,mem_ucode_status 
+0x615c 019055 compare 3 ,pdata ,3 
+0x615d 019056 nbranch loadcode_otp ,true 
+:      019057 loadcode_spi:
+0x615e 019058 set1 mark_ext_patch ,mark 
+0x615f 019059 bpatch patch2f_4 ,mem_patch2f 
+0x6160 019060 call otp_disable_chgpump 
+0x6161 019061 fetch 1 ,mem_otp_ucode_flag 
+0x6162 019062 bbit1 otp_uflag_skip_flash ,loadcode_iic 
+0x6163 019063 setarg 0x0 
+0x6164 019064 store 3 ,mem_addr_hi 
+0x6165 019065 call spid_init_flash 
+0x6166 019066 arg spid_read_flash ,regc 
+0x6167 019067 call read_first_block 
+0x6168 019068 call load_storage 
+0x6169 019069 nbranch loadcode_iic ,match 
+0x616a 019070 fetch 1 ,mem_ucode_status 
+0x616b 019071 compare 3 ,pdata ,3 
+0x616c 019072 nbranch loadcode_spi ,true 
+:      019073 loadcode_iic:
+0x616d 019074 set1 mark_ext_patch ,mark 
+0x616e 019075 bpatch patch2f_5 ,mem_patch2f 
+0x616f 019076 call clear_eeprom_size_2k 
+0x6170 019077 fetch 1 ,mem_otp_ucode_flag 
+0x6171 019078 bbit1 otp_uflag_skip_eep ,loadcode_hci 
+0x6172 019079 call loadcode_iic_by_eeprom 
+0x6173 019080 nbranch loadcode_iic_eeprom_2k ,match 
+0x6174 019081 fetch 1 ,mem_ucode_status 
+0x6175 019082 compare 3 ,pdata ,3 
+0x6176 019083 nbranch loadcode_iic ,true 
+0x6177 019084 branch loadcode_hci 
+:      019085 loadcode_iic_eeprom_2k:
+0x6178 019086 call set_eeprom_size_2k 
+0x6179 019087 fetch 1 ,mem_otp_ucode_flag 
+0x617a 019088 bbit1 otp_uflag_skip_eep ,loadcode_hci 
+0x617b 019089 call loadcode_iic_by_eeprom 
+0x617c 019090 nbranch loadcode_hci ,match 
+0x617d 019091 fetch 1 ,mem_ucode_status 
+0x617e 019092 compare 3 ,pdata ,3 
+0x617f 019093 nbranch loadcode_iic_eeprom_2k ,true 
+:      019094 loadcode_hci:
+0x6180 019095 force regidx_key ,regext_index 
+0x6181 019096 call aes_clear 
+0x6182 019097 hjam 0x21 ,core_clkoff 
+0x6183 019098 fetch 1 ,mem_otp_ucode_flag 
+0x6184 019099 rtnbit0 otp_uflag_hci 
+0x6185 019100 call hci_init 
+:      019101 loadcode_hci_loop:
+0x6186 019102 call hci_rx_packet 
+0x6187 019103 branch loadcode_hci_loop 
+:      019106 loadcode_iic_by_eeprom:
+0x6188 019107 setarg 0x0 
+0x6189 019108 store 2 ,mem_addr_mi 
+0x618a 019109 arg iicd_read_eep ,regc 
+0x618b 019110 call iicd_init_12m 
+0x618c 019111 call read_first_block 
+0x618d 019112 branch load_storage 
+:      019117 set_ucode_status:
+0x618e 019118 fetch 1 ,mem_ucode_status 
+0x618f 019119 lshift pdata ,pdata 
+0x6190 019120 setflag true ,0 ,pdata 
+0x6191 019121 isolate0 15 ,rega 
+0x6192 019122 rtn true 
+0x6193 019123 store 1 ,mem_ucode_status 
+0x6194 019124 rtn 
+:      019127 decrypt_code:
+0x6195 019128 hfetch 1 ,core_gpio_key2 
+0x6196 019129 rtnbit0 5 
+0x6197 019130 branch decrypt_code_skip 
+:      019131 decrypt_code_loop:
+0x6198 019132 hfetch 1 ,core_dma_status 
+0x6199 019133 qisolate1 pdata 
+0x619a 019134 rtn true 
+:      019135 decrypt_code_skip:
+0x619b 019136 hfetch 1 ,core_misc_status 
+0x619c 019137 bbit0 1 ,decrypt_code_loop 
+0x619d 019138 call do_aes_cbc 
+0x619e 019139 branch decrypt_code_loop 
+:      019143 load_ucode:
+0x619f 019144 fetch 2 ,mem_patch_ptr 
+0x61a0 019145 rtn blank 
+0x61a1 019146 hjam 0x80 ,core_ucode_ctrl 
+0x61a2 019147 hjam 0 ,core_ucode_hi 
+0x61a3 019148 hjam 0 ,core_ucode_low 
+0x61a4 019149 fetcht 2 ,mem_patch_len 
+0x61a5 019150 lshift2 temp ,loopcnt 
+0x61a6 019151 iforce contr 
+:      019152 load_ucode_loop:
+0x61a7 019153 ifetch 1 ,contr 
+0x61a8 019154 hstore 1 ,core_ucode_data 
+0x61a9 019155 loop load_ucode_loop 
+0x61aa 019156 hjam 0x0 ,core_ucode_ctrl 
+0x61ab 019157 rtn 
+:      019162 spid_init:
+0x61ac 019163 set1 mark_ext_patch ,mark 
+0x61ad 019164 bpatch patch2f_6 ,mem_patch2f 
+0x61ae 019165 fetch 1 ,mem_spi_init_clk 
+0x61af 019166 hstore 1 ,core_spid_ctrl 
+0x61b0 019167 fetch 1 ,mem_spi_init_delay_time 
+0x61b1 019168 hstore 1 ,core_spid_delay 
+0x61b2 019169 setarg mem_spid_tbuf 
+0x61b3 019170 hstore 2 ,core_spid_txaddr 
+0x61b4 019171 setarg mem_spid_rbuf 
+0x61b5 019172 hstore 2 ,core_spid_rxaddr 
+0x61b6 019173 hfetch 1 ,core_gpio_sel1 
+0x61b7 019174 set1 0 ,pdata 
+0x61b8 019175 set0 1 ,pdata 
+0x61b9 019176 hstore 1 ,core_gpio_sel1 
+0x61ba 019177 rtn 
+:      019179 spid_reset:
+0x61bb 019180 hfetch 1 ,core_spid_ctrl 
+0x61bc 019181 set1 7 ,pdata 
+0x61bd 019182 hstore 1 ,core_spid_ctrl 
+0x61be 019183 set0 7 ,pdata 
+0x61bf 019184 hstore 1 ,core_spid_ctrl 
+0x61c0 019185 rtn 
+:      019189 spid_write_reg:
+0x61c1 019190 set1 7 ,pdata 
+0x61c2 019191 store 2 ,mem_spid_tbuf 
+0x61c3 019192 set1 mark_ext_patch ,mark 
+0x61c4 019193 bpatch patch2f_7 ,mem_patch2f 
+0x61c5 019194 hjam 2 ,core_spid_txlen 
+0x61c6 019195 hjam 0 ,core_spid_rxlen 
+0x61c7 019196 hjam spid_start ,core_misc_ctrl 
+0x61c8 019197 branch wait_spid_done 
+:      019200 spid_read_reg:
+0x61c9 019201 force 1 ,temp 
+:      019203 spid_read_regs:
+0x61ca 019205 store 1 ,mem_spid_tbuf 
+0x61cb 019206 set1 mark_ext_patch ,mark 
+0x61cc 019207 bpatch patch30_0 ,mem_patch30 
+0x61cd 019208 hjam 1 ,core_spid_txlen 
+0x61ce 019209 hstoret 2 ,core_spid_rxlen 
+0x61cf 019210 hjam spid_start ,core_misc_ctrl 
+0x61d0 019211 call wait_spid_done 
+0x61d1 019212 fetch 1 ,mem_spid_rbuf 
+0x61d2 019213 rtn 
+:      019215 wait_spid_done:
+0x61d3 019216 fetch 2 ,mem_afh_error_total 
+0x61d4 019217 increase 1 ,pdata 
+0x61d5 019218 store 2 ,mem_afh_error_total 
+0x61d6 019219 hfetch 1 ,core_dma_status 
+0x61d7 019220 bbit0 spid_done ,wait_spid_done 
+0x61d8 019221 rtn 
+:      019223 spid_init_flash:
+0x61d9 019224 hjam 0x40 ,core_spid_ctrl 
+0x61da 019225 hjam 0x0 ,core_spid_delay 
+0x61db 019226 hfetch 1 ,core_gpio_sel1 
+0x61dc 019227 set0 0 ,pdata 
+0x61dd 019228 set1 1 ,pdata 
+0x61de 019229 hstore 1 ,core_gpio_sel1 
+0x61df 019230 setarg 0 
+0x61e0 019231 store 4 ,mem_spid_tbuf 
+0x61e1 019232 rtn 
+:      019234 spid_unlock_flash:
+0x61e2 019235 setarg 0 
+0x61e3 019236 hstore 2 ,core_spid_rxlen 
+0x61e4 019237 setarg 1 
+0x61e5 019238 hstore 1 ,core_spid_txlen 
+0x61e6 019239 setarg mem_spid_tbuf 
+0x61e7 019240 hstore 2 ,core_spid_txaddr 
+0x61e8 019241 jam 6 ,mem_spid_tbuf 
+0x61e9 019242 hjam spid_start ,core_misc_ctrl 
+0x61ea 019243 branch wait_spid_done 
+:      019247 spid_write_flash:
+0x61eb 019248 increase 4 ,temp 
+0x61ec 019249 hstoret 2 ,core_spid_txlen 
+0x61ed 019250 increase -4 ,rega 
+0x61ee 019251 arg 2 ,temp 
+0x61ef 019252 istoret 1 ,rega 
+0x61f0 019253 rshift16 pdata ,temp 
+0x61f1 019254 istoret 1 ,contw 
+0x61f2 019255 rshift8 pdata ,temp 
+0x61f3 019256 istoret 1 ,contw 
+0x61f4 019257 istore 1 ,contw 
+0x61f5 019258 deposit rega 
+0x61f6 019259 hstore 2 ,core_spid_txaddr 
+0x61f7 019260 setarg 0 
+0x61f8 019261 hstore 2 ,core_spid_rxlen 
+0x61f9 019262 hjam spid_start ,core_misc_ctrl 
+0x61fa 019263 branch wait_spid_done 
+:      019267 spid_read_flash:
+0x61fb 019268 hstoret 2 ,core_spid_rxlen 
+0x61fc 019269 setarg 4 
+0x61fd 019270 hstore 2 ,core_spid_txlen 
+0x61fe 019271 jam 3 ,mem_spid_tbuf 
+0x61ff 019272 setarg mem_spid_tbuf 
+0x6200 019273 hstore 2 ,core_spid_txaddr 
+0x6201 019274 deposit rega 
+0x6202 019275 hstore 2 ,core_spid_rxaddr 
+0x6203 019276 hfetch 1 ,core_spid_ctrl 
+0x6204 019277 isolate0 15 ,rega 
+0x6205 019278 setflag true ,6 ,pdata 
+0x6206 019279 hstore 1 ,core_spid_ctrl 
+0x6207 019280 hjam spid_start ,core_misc_ctrl 
+:      019281 spi_read_flash_wait:
+0x6208 019282 hfetch 1 ,core_dma_status 
+0x6209 019283 bbit1 7 ,spi_read_flash_wait 
+0x620a 019284 arg spid_done ,queue 
+0x620b 019285 call decrypt_code 
+0x620c 019286 call wait_spid_done 
+0x620d 019287 isolate1 spid_crcok ,pdata 
+0x620e 019288 call set_ucode_status 
+0x620f 019289 fetch 1 ,mem_addr_hi 
+0x6210 019290 lshift16 pdata ,regb 
+0x6211 019291 fetch 1 ,mem_addr_mi 
+0x6212 019292 lshift8 pdata ,pdata 
+0x6213 019293 ior regb ,regb 
+0x6214 019294 fetch 1 ,mem_addr_lo 
+0x6215 019295 ior regb ,pdata 
+0x6216 019296 iadd temp ,pdata 
+0x6217 019297 store 1 ,mem_addr_lo 
+0x6218 019298 rshift8 pdata ,pdata 
+0x6219 019299 store 1 ,mem_addr_mi 
+0x621a 019300 rshift8 pdata ,pdata 
+0x621b 019301 store 1 ,mem_addr_hi 
+0x621c 019302 rtn 
+:      019317 iicd_init_12m:
+0x621d 019318 hjam 5 ,core_iicd_scl_low 
+0x621e 019319 hjam 7 ,core_iicd_scl_high 
+0x621f 019320 hjam 7 ,core_iicd_start_setup 
+0x6220 019321 hjam 7 ,core_iicd_start_hold 
+0x6221 019322 hjam 7 ,core_iicd_stop_setup 
+0x6222 019323 hjam 5 ,core_iicd_data_setup 
+0x6223 019324 rtn 
+:      019328 wait_iicd_done:
+0x6224 019329 hfetch 1 ,core_dma_status 
+0x6225 019330 bbit0 iicd_done ,wait_iicd_done 
+0x6226 019331 rtn 
+:      019339 iicd_read_data:
+0x6227 019340 hstore 2 ,core_iicd_txlen 
+0x6228 019341 deposit rega 
+0x6229 019342 hstore 2 ,core_iicd_txaddr 
+0x622a 019343 deposit regb 
+0x622b 019344 hstore 2 ,core_iicd_rxaddr 
+0x622c 019345 deposit temp 
+0x622d 019346 hstore 2 ,core_iicd_rxlen 
+0x622e 019347 arg 1 ,temp 
+0x622f 019348 nsetflag blank ,1 ,temp 
+0x6230 019349 hstore 1 ,core_iicd_ctrl 
+0x6231 019350 hjam iicd_start ,core_misc_ctrl 
+0x6232 019351 branch wait_iicd_done 
+:      019354 set_eeprom_size_2k:
+0x6233 019355 set1 mark_eeprom_size ,mark 
+0x6234 019356 jam 0x08 ,mem_eeprom_block_size 
+0x6235 019357 rtn 
+:      019359 clear_eeprom_size_2k:
+0x6236 019360 set0 mark_eeprom_size ,mark 
+0x6237 019361 jam 0x20 ,mem_eeprom_block_size 
+0x6238 019362 rtn 
+:      019365 iicd_read_eep_data_size_2k:
+0x6239 019366 fetch 1 ,mem_eeprom_base 
+0x623a 019367 iadd regb ,pdata 
+0x623b 019368 store 1 ,mem_addr_mi 
+0x623c 019369 branch iicd_read_eep_size_2k 
+:      019371 iicd_read_eep_size_2k_lcadcode:
+0x623d 019372 fetch 2 ,mem_addr_mi 
+0x623e 019373 byteswap pdata ,pdata 
+0x623f 019374 store 1 ,mem_addr_mi 
+:      019379 iicd_read_eep_size_2k:
+0x6240 019380 setarg 3 
+0x6241 019381 hstore 2 ,core_iicd_txlen 
+0x6242 019382 jam 0xa0 ,mem_iicd_tbuf 
+0x6243 019383 jam 0xa1 ,mem_iicd_tbuf + 2 
+0x6244 019384 branch iicd_read_eep_common 
+:      019389 iicd_read_eep_data:
+0x6245 019390 set1 mark_ext_patch ,mark 
+0x6246 019391 bpatch patch30_1 ,mem_patch30 
+0x6247 019392 bmark1 mark_eeprom_size ,iicd_read_eep_data_size_2k 
+0x6248 019393 fetch 2 ,mem_eeprom_base 
+0x6249 019394 iadd regb ,pdata 
+0x624a 019395 byteswap pdata ,pdata 
+0x624b 019396 store 2 ,mem_addr_mi 
+:      019399 iicd_read_eep:
+0x624c 019400 set1 mark_ext_patch ,mark 
+0x624d 019401 bpatch patch30_2 ,mem_patch30 
+0x624e 019402 bmark1 mark_eeprom_size ,iicd_read_eep_size_2k_lcadcode 
+0x624f 019403 nop 30000 
+0x6250 019404 setarg 4 
+0x6251 019405 hstore 2 ,core_iicd_txlen 
+0x6252 019406 jam 0xa0 ,mem_iicd_tbuf 
+0x6253 019407 jam 0xa1 ,mem_iicd_tbuf + 3 
+:      019408 iicd_read_eep_common:
+0x6254 019409 setarg mem_iicd_tbuf 
+0x6255 019410 hstore 2 ,core_iicd_txaddr 
+0x6256 019411 hstoret 2 ,core_iicd_rxlen 
+0x6257 019412 deposit rega 
+0x6258 019413 hstore 2 ,core_iicd_rxaddr 
+0x6259 019414 setarg 2 
+0x625a 019415 isolate0 15 ,rega 
+0x625b 019416 setflag true ,0 ,pdata 
+0x625c 019417 hstore 1 ,core_iicd_ctrl 
+0x625d 019418 hjam iicd_start ,core_misc_ctrl 
+0x625e 019419 arg iicd_done ,queue 
+0x625f 019420 call decrypt_code 
+0x6260 019421 call wait_iicd_done 
+0x6261 019422 isolate1 iicd_crcok ,pdata 
+0x6262 019423 call set_ucode_status 
+0x6263 019424 bmark1 mark_eeprom_size ,iicd_read_eep_load_code_size_2k 
+0x6264 019425 fetch 2 ,mem_addr_mi 
+0x6265 019426 byteswap pdata ,pdata 
+0x6266 019427 iadd temp ,pdata 
+0x6267 019428 byteswap pdata ,pdata 
+0x6268 019429 store 2 ,mem_addr_mi 
+0x6269 019430 rtn 
+:      019432 iicd_read_eep_load_code_size_2k:
+0x626a 019433 fetch 1 ,mem_addr_mi 
+0x626b 019434 iadd temp ,pdata 
+0x626c 019435 byteswap pdata ,pdata 
+0x626d 019436 store 2 ,mem_addr_mi 
+0x626e 019437 rtn 
+:      019444 iicd_write_eep_data:
+0x626f 019445 fetch 2 ,mem_eeprom_base 
+0x6270 019446 iadd regb ,pdata 
+:      019449 iicd_write_ota_data:
+0x6271 019450 store 2 ,mem_pdatatemp 
+0x6272 019451 set1 mark_ext_patch ,mark 
+0x6273 019452 bpatch patch30_3 ,mem_patch30 
+0x6274 019453 storet 2 ,mem_temp 
+0x6275 019454 copy rega ,pdata 
+0x6276 019455 store 2 ,mem_contr 
+:      019456 iicd_write_eep_loop:
+0x6277 019457 call iicd_eep_transparency 
+0x6278 019459 fetcht 2 ,mem_regb 
+0x6279 019460 fetch 2 ,mem_contr 
+0x627a 019461 copy pdata ,rega 
+0x627b 019462 fetch 2 ,mem_pdatatemp 
+0x627c 019464 call iicd_write_eep 
+0x627d 019468 fetch 2 ,mem_regb 
+0x627e 019469 fetcht 2 ,mem_contr 
+0x627f 019470 iadd temp ,temp 
+0x6280 019471 storet 2 ,mem_contr 
+0x6281 019472 fetcht 2 ,mem_pdatatemp 
+0x6282 019473 iadd temp ,temp 
+0x6283 019474 storet 2 ,mem_pdatatemp 
+0x6284 019475 fetch 2 ,mem_temp 
+0x6285 019476 nbranch iicd_write_eep_loop ,blank 
+0x6286 019477 rtn 
+:      019485 iicd_eep_transparency:
+0x6287 019486 set1 mark_ext_patch ,mark 
+0x6288 019487 bpatch patch30_4 ,mem_patch30 
+0x6289 019488 fetch 2 ,mem_eeprom_block_size 
+0x628a 019489 increase -1 ,pdata 
+0x628b 019490 fetcht 2 ,mem_pdatatemp 
+0x628c 019491 ior temp ,pdata 
+0x628d 019492 increase 1 ,pdata 
+0x628e 019493 store 3 ,mem_regc 
+0x628f 019495 fetch 2 ,mem_temp 
+0x6290 019496 iadd temp ,pdata 
+0x6291 019498 fetcht 3 ,mem_regc 
+0x6292 019499 isub temp ,pdata 
+0x6293 019500 nbranch iicd_eep_deal_short_packet ,positive 
+0x6294 019501 store 2 ,mem_temp 
+0x6295 019502 fetch 3 ,mem_regc 
+0x6296 019503 fetcht 2 ,mem_pdatatemp 
+0x6297 019504 isub temp ,pdata 
+0x6298 019505 store 2 ,mem_regb 
+0x6299 019506 rtn 
+:      019507 iicd_eep_deal_short_packet:
+0x629a 019508 fetch 2 ,mem_temp 
+0x629b 019509 store 2 ,mem_regb 
+0x629c 019510 setarg 0 
+0x629d 019511 store 2 ,mem_temp 
+0x629e 019512 rtn 
+:      019514 iicd_write_eep_size_2k:
+0x629f 019515 increase 2 ,temp 
+0x62a0 019516 hstoret 2 ,core_iicd_txlen 
+0x62a1 019517 increase -2 ,rega 
+0x62a2 019518 ifetcht 3 ,rega 
+0x62a3 019519 copy temp ,regb 
+0x62a4 019520 arg 0xa0 ,temp 
+0x62a5 019521 istoret 1 ,rega 
+0x62a6 019523 istore 1 ,contw 
+0x62a7 019524 branch iicd_write_eep_common 
+:      019527 iicd_write_eep:
+0x62a8 019528 copy pdata ,regb 
+0x62a9 019529 set1 mark_ext_patch ,mark 
+0x62aa 019530 bpatch patch30_5 ,mem_patch30 
+0x62ab 019531 nop 30000 
+0x62ac 019532 bmark1 mark_eeprom_size ,iicd_write_eep_size_2k 
+0x62ad 019533 copy regb ,pdata 
+0x62ae 019534 increase 3 ,temp 
+0x62af 019535 hstoret 2 ,core_iicd_txlen 
+0x62b0 019536 increase -3 ,rega 
+0x62b1 019537 ifetcht 3 ,rega 
+0x62b2 019538 copy temp ,regb 
+0x62b3 019539 arg 0xa0 ,temp 
+0x62b4 019540 istoret 1 ,rega 
+0x62b5 019541 byteswap pdata ,pdata 
+0x62b6 019542 istore 2 ,contw 
+:      019543 iicd_write_eep_common:
+0x62b7 019544 deposit rega 
+0x62b8 019545 hstore 2 ,core_iicd_txaddr 
+0x62b9 019546 setarg 0 
+0x62ba 019547 hstore 2 ,core_iicd_rxlen 
+0x62bb 019548 hjam 1 ,core_iicd_ctrl 
+0x62bc 019549 hjam iicd_start ,core_misc_ctrl 
+0x62bd 019550 call wait_iicd_done 
+0x62be 019551 copy regb ,pdata 
+0x62bf 019552 istore 3 ,rega 
+0x62c0 019553 nop 10000 
+0x62c1 019554 nop 10000 
+0x62c2 019555 nop 10000 
+0x62c3 019556 rtn 
+:      019560 otp_enable_chgpump:
+0x62c4 019561 hjam 0x70 ,rfen_chgpump 
+0x62c5 019562 nop param_chgpump_delay 
+0x62c6 019563 rtn 
+:      019565 otp_disable_chgpump:
+0x62c7 019566 hjam 0x30 ,rfen_chgpump 
+0x62c8 019567 rtn 
+:      019569 otp_set_addr:
+0x62c9 019570 lshift3 pdata ,pdata 
+0x62ca 019571 hstore 2 ,core_otp_addr 
+0x62cb 019572 hjam 0 ,core_otpd_ctrl 
+0x62cc 019573 rtn 
+:      019576 otp_write:
+0x62cd 019577 call otp_set_addr 
+0x62ce 019578 call otp_ce 
+:      019579 otp_program:
+0x62cf 019580 ifetcht 1 ,rega 
+0x62d0 019581 increase 1 ,rega 
+0x62d1 019582 force 0 ,queue 
+:      019583 otp_program_bit:
+0x62d2 019584 qisolate0 temp 
+0x62d3 019585 branch otp_skip_0 ,true 
+0x62d4 019586 hfetch 1 ,core_otp_din 
+0x62d5 019587 set1 6 ,pdata 
+0x62d6 019588 set1 7 ,pdata 
+0x62d7 019589 hstore 1 ,core_otp_din 
+0x62d8 019590 hjam 0x02 ,core_otp_ctrl 
+0x62d9 019591 hjam 0x82 ,core_otp_ctrl 
+0x62da 019592 set0 7 ,pdata 
+0x62db 019593 hstore 1 ,core_otp_din 
+0x62dc 019594 hjam 0x8a ,core_otp_ctrl 
+0x62dd 019595 nop 11 
+0x62de 019596 hjam 0xca ,core_otp_ctrl 
+0x62df 019597 nop 33 
+0x62e0 019598 hjam 0x4a ,core_otp_ctrl 
+0x62e1 019599 nop 44 
+0x62e2 019600 hjam 0xca ,core_otp_ctrl 
+0x62e3 019601 nop 22 
+0x62e4 019602 hjam 0x8a ,core_otp_ctrl 
+0x62e5 019603 nop 33 
+0x62e6 019604 hjam 0x82 ,core_otp_ctrl 
+0x62e7 019605 nop 1 
+0x62e8 019606 hjam 0x92 ,core_otp_ctrl 
+0x62e9 019607 nop 10 
+0x62ea 019608 hjam 0xb2 ,core_otp_ctrl 
+0x62eb 019609 hfetch 1 ,core_otp_rdata 
+0x62ec 019610 hjam 0x92 ,core_otp_ctrl 
+0x62ed 019611 nop 1 
+0x62ee 019612 hjam 0x82 ,core_otp_ctrl 
+0x62ef 019613 qisolate0 pdata 
+0x62f0 019614 branch otp_program_bit ,true 
+:      019615 otp_skip_0:
+0x62f1 019616 hfetch 2 ,core_otp_addr 
+0x62f2 019617 increase 1 ,pdata 
+0x62f3 019618 hstore 2 ,core_otp_addr 
+0x62f4 019619 increase 1 ,queue 
+0x62f5 019620 compare 8 ,queue ,0xf 
+0x62f6 019621 nbranch otp_program_bit ,true 
+0x62f7 019622 loop otp_program 
+0x62f8 019623 hjam 0x83 ,core_otp_ctrl 
+0x62f9 019624 rtn 
+:      019626 otp_ce:
+0x62fa 019627 hjam 0x82 ,core_otp_ctrl 
+0x62fb 019628 nop 12 
+0x62fc 019629 hjam 0x80 ,core_otp_ctrl 
+0x62fd 019630 hjam 0x82 ,core_otp_ctrl 
+0x62fe 019631 nop 150 
+0x62ff 019632 rtn 
+:      019635 otpd_read_init:
+0x6300 019636 call otp_ce 
+0x6301 019637 hjam 0xa2 ,core_otp_ctrl 
+0x6302 019638 deposit rega 
+0x6303 019639 hstore 2 ,core_otpd_addr 
+0x6304 019640 set1 11 ,temp 
+0x6305 019641 isolate0 15 ,pdata 
+0x6306 019642 setflag true ,15 ,temp 
+0x6307 019643 hstoret 2 ,core_otpd_len 
+0x6308 019644 hjam otpd_start ,core_misc_ctrl 
+0x6309 019645 rtn 
+:      019647 otpd_wait_end:
+0x630a 019648 hfetch 1 ,core_dma_status 
+0x630b 019649 bbit0 otpd_done ,otpd_wait_end 
+0x630c 019650 rtn 
+:      019653 otpd_read_data:
+0x630d 019654 call otp_set_addr 
+0x630e 019655 call otpd_read_init 
+0x630f 019656 call otpd_wait_end 
+0x6310 019657 hjam 0x83 ,core_otp_ctrl 
+0x6311 019658 rtn 
+:      019663 otpd_read_code:
+0x6312 019664 hfetch 2 ,core_current_otp_addr 
+0x6313 019665 hstore 2 ,core_otp_addr 
+0x6314 019666 call otpd_read_init 
+0x6315 019667 arg otpd_done ,queue 
+0x6316 019668 call decrypt_code 
+0x6317 019669 call otpd_wait_end 
+0x6318 019670 isolate1 otpd_crcok ,pdata 
+0x6319 019671 call set_ucode_status 
+0x631a 019672 hjam 0x83 ,core_otp_ctrl 
+0x631b 019673 rtn 
+:      019676 uartd_prepare_tx:
+0x631c 019677 hfetch 2 ,core_uart_twptr 
+0x631d 019678 iforce contwu 
+0x631e 019679 rtn 
+:      019681 uartd_send:
+0x631f 019682 deposit contwu 
+0x6320 019683 hstore 2 ,core_uart_twptr 
+0x6321 019684 rtn 
+:      019686 uartd_rxdone:
+0x6322 019687 deposit contru 
+0x6323 019688 hstore 2 ,core_uart_rrptr 
+0x6324 019689 rtn 
+:      019691 uart_set_baud_by_mem:
+0x6325 019692 fetch uart_baud_len ,mem_baud 
+0x6326 019693 hstore uart_baud_len ,core_uart_baud 
+0x6327 019694 rtn 
+:      019696 uart_copy_tx_bytes_fast:
+0x6328 019697 deposit loopcnt 
+0x6329 019698 rtn blank 
+:      019699 uart_copy_tx_bytes_fast_loop:
+0x632a 019700 increase -8 ,loopcnt 
+0x632b 019701 call uart_tx_8_bytes ,positive 
+0x632c 019702 rtn zero 
+0x632d 019703 branch uart_copy_tx_bytes_fast_loop ,positive 
+0x632e 019704 increase 8 ,loopcnt 
+:      019705 uart_copy_tx_bytes_fast_loop_four:
+0x632f 019706 increase -4 ,loopcnt 
+0x6330 019707 call uart_tx_4_bytes ,positive 
+0x6331 019708 rtn zero 
+0x6332 019709 branch uart_copy_tx_bytes_fast_loop_four ,positive 
+0x6333 019710 increase 4 ,loopcnt 
+0x6334 019711 branch uart_copy_tx_bytes 
+:      019713 uart_tx_8_bytes:
+0x6335 019714 ifetch 8 ,contr 
+0x6336 019715 istore 8 ,contwu 
+0x6337 019716 rtn 
+:      019718 uart_tx_4_bytes:
+0x6338 019719 ifetch 4 ,contr 
+0x6339 019720 istore 4 ,contwu 
+0x633a 019721 rtn 
+:      019723 uart_copy_tx_bytes:
+0x633b 019724 deposit loopcnt 
+0x633c 019725 rtn blank 
+:      019726 uart_copy_tx_bytes_loop:
+0x633d 019727 ifetch 1 ,contr 
+0x633e 019728 istore 1 ,contwu 
+0x633f 019729 loop uart_copy_tx_bytes_loop 
+0x6340 019730 rtn 
+:      019732 uart_copy_rx_bytes_fast:
+0x6341 019733 deposit loopcnt 
+0x6342 019734 rtn blank 
+:      019735 uart_copy_rx_bytes_fast_loop:
+0x6343 019736 increase -8 ,loopcnt 
+0x6344 019737 call uart_rx_8_bytes ,positive 
+0x6345 019738 rtn zero 
+0x6346 019739 branch uart_copy_rx_bytes_fast_loop ,positive 
+0x6347 019740 increase 8 ,loopcnt 
+:      019741 uart_copy_rx_bytes_fast_loop_four:
+0x6348 019742 increase -4 ,loopcnt 
+0x6349 019743 call uart_rx_4_bytes ,positive 
+0x634a 019744 rtn zero 
+0x634b 019745 branch uart_copy_rx_bytes_fast_loop_four ,positive 
+0x634c 019746 increase 4 ,loopcnt 
+0x634d 019747 branch uart_copy_rx_bytes 
+:      019749 uart_rx_8_bytes:
+0x634e 019750 ifetch 8 ,contru 
+0x634f 019751 istore 8 ,contw 
+0x6350 019752 rtn 
+:      019754 uart_rx_4_bytes:
+0x6351 019755 ifetch 4 ,contru 
+0x6352 019756 istore 4 ,contw 
+0x6353 019757 rtn 
+:      019760 uart_copy_rx_bytes:
+0x6354 019761 deposit loopcnt 
+0x6355 019762 rtn blank 
+:      019763 uart_copy_rx_bytes_loop:
+0x6356 019764 ifetch 1 ,contru 
+0x6357 019765 istore 1 ,contw 
+0x6358 019766 loop uart_copy_rx_bytes_loop 
+0x6359 019767 rtn 
+:      019772 check_51cmd_update_device_record:
+0x635a 019773 set1 mark_ext_patch ,mark 
+0x635b 019774 bpatch patch30_6 ,mem_patch30 
+0x635c 019775 fetch 1 ,mem_nv_data_number 
+0x635d 019776 rtn blank 
+0x635e 019777 call check_nvram 
+0x635f 019778 call init_device_list ,zero 
+0x6360 019779 call nvram_find_addr_from_bd_list 
+:      019780 write_device_record:
+0x6361 019781 fetch 1 ,mem_nv_data_number 
+0x6362 019782 icopy regc 
+0x6363 019783 fetcht 2 ,mem_nv_data_ptr 
+0x6364 019784 storet 2 ,mem_list_item_ptr 
+:      019785 write_device_loop_find:
+0x6365 019786 copy regc ,pdata 
+0x6366 019787 branch module_hci_event_store_device ,blank 
+0x6367 019788 increase -1 ,regc 
+0x6368 019789 copy temp ,rega 
+0x6369 019790 ifetch 1 ,rega 
+0x636a 019791 fetcht 1 ,mem_select_list_item 
+0x636b 019792 isub temp ,null 
+0x636c 019793 call set_index_finded_device ,zero 
+0x636d 019794 branch write_device_loop_find0 ,positive 
+0x636e 019795 ifetch 1 ,rega 
+0x636f 019796 increase 1 ,pdata 
+0x6370 019797 istore 1 ,rega 
+:      019798 write_device_loop_find0:
+0x6371 019799 fetcht 2 ,mem_list_item_ptr 
+0x6372 019800 increase nv_data_len ,temp 
+0x6373 019801 storet 2 ,mem_list_item_ptr 
+0x6374 019802 branch write_device_loop_find 
+:      019804 set_index_finded_device:
+0x6375 019805 setarg 0 
+0x6376 019806 istore 1 ,rega 
+0x6377 019807 fetch 1 ,mem_temp_reconn_record 
+0x6378 019808 istore 1 ,contw 
+0x6379 019809 bne rec_3_mode ,set_index_finded_device_ble_mode 
+0x637a 019810 arg mem_link_key ,regb 
+:      019811 set_index_find_device_master_addr:
+0x637b 019812 ifetch 6 ,contr 
+0x637c 019813 istore 8 ,contw 
+0x637d 019814 setarg 0 
+0x637e 019815 istore 8 ,contw 
+0x637f 019816 copy regb ,contr 
+:      019817 store_rec_data_common:
+0x6380 019818 call memcpy16 
+0x6381 019819 force 1 ,null 
+0x6382 019820 rtn 
+:      019822 set_index_finded_device_ble_mode:
+0x6383 019823 beq rec_4_mode_random_resolvable_private_address ,set_index_finded_device_irk 
+0x6384 019824 beq rec_4_mode_random_non_resolvable_private_address ,set_index_finded_device_ediv 
+0x6385 019825 arg mem_le_ltk ,regb 
+0x6386 019826 branch set_index_find_device_master_addr 
+:      019828 set_index_finded_device_irk:
+0x6387 019829 arg mem_le_irk ,contr 
+0x6388 019830 call memcpy16 
+:      019831 store_ble_rec_data_common:
+0x6389 019832 arg mem_le_ltk ,contr 
+0x638a 019833 branch store_rec_data_common 
+:      019835 set_index_finded_device_ediv:
+0x638b 019836 arg mem_le_rand ,contr 
+0x638c 019837 call memcpy16 
+0x638d 019838 branch store_ble_rec_data_common 
+:      019841 nvram_find_addr_from_bd_list:
+0x638e 019842 call disable_usr 
+0x638f 019843 fetch 1 ,mem_nv_data_number 
+0x6390 019844 rtn blank 
+0x6391 019845 fetch 2 ,mem_ui_state_map 
+0x6392 019846 bbit1 ui_state_bt_connected ,find_addr_from_bd_list_spp_mode 
+:      019848 find_addr_from_bd_list_ble_mode:
+0x6393 019849 fetch 1 ,mem_le_conn_peer_addr_type 
+0x6394 019850 beq master_public_addr ,find_addr_from_bd_list_static_addr 
+0x6395 019851 fetch 1 ,mem_le_plap + 5 
+0x6396 019852 compare 0xc0 ,pdata ,0xc0 
+0x6397 019853 branch find_addr_from_bd_list_static_addr ,true 
+0x6398 019854 compare 0x40 ,pdata ,0xc0 
+0x6399 019855 branch find_addr_from_bd_list_random_addr ,true 
+0x639a 019856 compare 0x00 ,pdata ,0xc0 
+0x639b 019857 branch find_addr_from_bd_list_random_non_resolvable_private_address ,true 
+:      019858 find_addr_from_bd_list_static_addr:
+0x639c 019859 jam rec_4_mode_static_address ,mem_temp_reconn_record 
+0x639d 019860 fetch 6 ,mem_le_plap 
+0x639e 019861 branch find_addr_from_bd_list_common 
+:      019863 find_addr_from_bd_list_random_non_resolvable_private_address:
+0x639f 019864 jam rec_4_mode_random_non_resolvable_private_address ,mem_temp_reconn_record 
+0x63a0 019865 branch find_addr_from_bd_list_common 
+:      019868 find_addr_from_bd_list_random_addr:
+0x63a1 019869 jam rec_4_mode_random_resolvable_private_address ,mem_temp_reconn_record 
+0x63a2 019870 branch find_addr_from_bd_list_common 
+:      019873 find_addr_from_bd_list_spp_mode:
+0x63a3 019874 set1 mark_ext_patch ,mark 
+0x63a4 019875 bpatch patch30_7 ,mem_patch30 
+0x63a5 019876 jam rec_3_mode ,mem_temp_reconn_record 
+0x63a6 019877 fetch 6 ,mem_plap 
+:      019878 find_addr_from_bd_list_common:
+0x63a7 019879 store 6 ,mem_temp_reconn_record + 1 
+0x63a8 019880 fetch 2 ,mem_nv_data_ptr 
+0x63a9 019881 ifetcht 1 ,pdata 
+0x63aa 019882 pincrease 1 
+0x63ab 019883 store 2 ,mem_list_item_ptr 
+0x63ac 019884 storet 1 ,mem_select_list_item 
+0x63ad 019885 fetch 1 ,mem_nv_data_number 
+0x63ae 019886 icopy regc 
+:      019887 nvram_find_addr_from_list:
+0x63af 019888 fetch 2 ,mem_list_item_ptr 
+0x63b0 019889 copy pdata ,rega 
+0x63b1 019890 call nvram_find_addr_from_list_compare 
+0x63b2 019891 rtn user 
+0x63b3 019892 fetcht 2 ,mem_list_item_ptr 
+0x63b4 019893 increase nv_data_len ,temp 
+0x63b5 019894 storet 2 ,mem_list_item_ptr 
+0x63b6 019895 increase -1 ,temp 
+0x63b7 019896 ifetch 1 ,temp 
+0x63b8 019897 store 1 ,mem_select_list_item 
+0x63b9 019898 increase -1 ,regc 
+0x63ba 019899 nbranch nvram_find_addr_from_list ,zero 
+0x63bb 019900 fetch 1 ,mem_nv_data_number 
+0x63bc 019901 pincrease decreased_one 
+0x63bd 019902 store 1 ,mem_select_list_item 
+0x63be 019903 rtn 
+:      019904 nvram_find_addr_from_list_compare:
+0x63bf 019905 fetch 1 ,mem_temp_reconn_record 
+0x63c0 019906 bne rec_3_mode ,find_addr_from_list_compare_ble_mode 
+:      019907 find_master_addr_from_list_compare:
+0x63c1 019908 arg mem_temp_reconn_record ,regb 
+0x63c2 019909 arg 7 ,loopcnt 
+0x63c3 019910 call string_compare 
+0x63c4 019911 branch enable_usr ,zero 
+0x63c5 019912 rtn 
+:      019914 find_addr_from_list_compare_ble_mode:
+0x63c6 019915 beq rec_4_mode_random_resolvable_private_address ,find_irk_form_list_compare 
+0x63c7 019916 beq rec_4_mode_random_non_resolvable_private_address ,find_ediv_form_list_compare 
+0x63c8 019917 branch find_master_addr_from_list_compare 
+:      019919 find_irk_form_list_compare:
+0x63c9 019920 ifetcht 1 ,rega 
+0x63ca 019921 isub temp ,null 
+0x63cb 019922 nrtn zero 
+0x63cc 019923 arg mem_le_prand ,contw 
+0x63cd 019924 arg 16 ,loopcnt 
+0x63ce 019925 call clear_mem 
+0x63cf 019926 fetch 3 ,mem_le_plap + 3 
+0x63d0 019927 store 3 ,mem_le_prand 
+0x63d1 019928 call genernate_master_macaddress 
+0x63d2 019929 fetch 2 ,mem_le_aes_128 + 13 
+0x63d3 019930 byteswap pdata ,pdata 
+0x63d4 019931 lshift8 pdata ,temp 
+0x63d5 019932 ifetch 1 ,contr 
+0x63d6 019933 iadd temp ,pdata 
+0x63d7 019934 fetcht 3 ,mem_le_plap 
+0x63d8 019935 isub temp ,null 
+0x63d9 019936 branch enable_usr ,zero 
+0x63da 019937 rtn 
+:      019940 genernate_master_macaddress:
+0x63db 019941 arg mem_le_prand ,contr 
+0x63dc 019942 call load_data128 
+0x63dd 019944 ifetch 1 ,rega 
+0x63de 019945 call load_regext 
+0x63df 019946 force 0x38 ,aes_ctrl 
+0x63e0 019947 force 0x0 ,aes_ctrl 
+0x63e1 019948 call wait_aes 
+0x63e2 019949 arg mem_le_aes_128 ,contw 
+0x63e3 019950 branch store_aes_result 
+:      019952 find_ediv_form_list_compare:
+0x63e4 019953 ifetcht 1 ,rega 
+0x63e5 019954 isub temp ,null 
+0x63e6 019955 nrtn zero 
+0x63e7 019956 copy contr ,rega 
+0x63e8 019957 add contr ,8 ,regc 
+0x63e9 019958 arg mem_le_rand ,regb 
+0x63ea 019959 arg 8 ,loopcnt 
+0x63eb 019960 call string_compare 
+0x63ec 019961 branch enable_usr ,zero 
+0x63ed 019962 copy regc ,rega 
+0x63ee 019963 arg mem_le_irk ,regb 
+0x63ef 019964 arg 8 ,loopcnt 
+0x63f0 019965 call string_compare 
+0x63f1 019966 branch enable_usr ,zero 
+0x63f2 019967 rtn 
+:      019969 check_nvram:
+0x63f3 019970 fetch 2 ,mem_nv_data_ptr 
+0x63f4 019971 ifetcht 1 ,pdata 
+0x63f5 019972 pincrease nv_data_len 
+0x63f6 019973 ifetch 1 ,pdata 
+0x63f7 019974 isub temp ,null 
+0x63f8 019975 rtn 
+:      019977 init_device_list:
+0x63f9 019978 fetch 1 ,mem_nv_data_number 
+0x63fa 019979 icopy loopcnt 
+0x63fb 019980 fetcht 2 ,mem_nv_data_ptr 
+0x63fc 019981 setarg 0 
+:      019982 init_device_list_loop:
+0x63fd 019983 istore 1 ,temp 
+0x63fe 019984 increase nv_data_len ,temp 
+0x63ff 019985 pincrease 1 
+0x6400 019986 loop init_device_list_loop 
+0x6401 019987 rtn 
+:      019989 load_device_list:
+0x6402 019990 set1 mark_ext_patch ,mark 
+0x6403 019991 bpatch patch31_0 ,mem_patch31 
+0x6404 019992 call nvram_find_addr_from_bd_list 
+0x6405 019993 nbranch clear_key_exists ,user 
+0x6406 019994 add rega ,10 ,contr 
+0x6407 019996 arg mem_link_key ,contw 
+0x6408 019997 call memcpy16 
+0x6409 019998 branch check_link_key_load 
+:      019999 clear_key_exists:
+0x640a 020000 jam 0 ,mem_link_key_exists 
+0x640b 020001 rtn 
+:      020003 load_device_list_mode_4:
+0x640c 020004 fetch 9 ,mem_le_ediv 
+0x640d 020005 branch clear_ltk_exists ,blank 
+0x640e 020006 call nvram_find_addr_from_bd_list 
+0x640f 020007 nbranch clear_ltk_exists ,user 
+0x6410 020008 fetch 2 ,mem_list_item_ptr 
+0x6411 020009 add pdata ,1 ,contr 
+0x6412 020010 arg mem_le_irk ,contw 
+0x6413 020011 call memcpy16 
+0x6414 020012 arg mem_le_ltk ,contw 
+0x6415 020013 call memcpy16 
+0x6416 020014 jam 1 ,mem_ltk_exists 
+0x6417 020015 rtn 
+:      020017 load_device_list_mode_4_shutter:
+0x6418 020018 fetch 2 ,mem_le_ediv 
+0x6419 020019 nbranch load_device_list_mode_4_shutter_label ,blank 
+0x641a 020020 fetch 6 ,mem_le_rand 
+0x641b 020021 branch clear_ltk_exists_iphone_lost_ltk ,blank 
+:      020022 load_device_list_mode_4_shutter_label:
+0x641c 020023 jam ltk_not_lost ,mem_ltk_states 
+0x641d 020024 setarg 0x112233 
+0x641e 020025 store 3 ,mem_le_ltk 
+0x641f 020026 setarg 0x445566 
+0x6420 020027 istore 3 ,contw 
+0x6421 020028 setarg 0x778899 
+0x6422 020029 istore 3 ,contw 
+0x6423 020030 setarg 0x001122 
+0x6424 020031 istore 3 ,contw 
+0x6425 020032 setarg 0x334455 
+0x6426 020033 istore 3 ,contw 
+0x6427 020034 setarg 0x66 
+0x6428 020035 istore 1 ,contw 
+0x6429 020036 jam 1 ,mem_ltk_exists 
+0x642a 020037 rtn 
+:      020039 clear_ltk_exists_iphone_lost_ltk:
+0x642b 020040 jam iphone_lost_ltk ,mem_ltk_states 
+:      020041 clear_ltk_exists:
+0x642c 020042 jam 0 ,mem_ltk_exists 
+0x642d 020043 rtn 
+:      020046 eeprom_store_le_reconn_info:
+0x642e 020047 fetch 6 ,mem_le_plap 
+0x642f 020048 store 6 ,mem_temp_lap 
+0x6430 020049 jam rec_4_mode ,mem_record_bt_mode 
+0x6431 020050 branch eeprom_store_reconn_info 
+:      020051 eeprom_store_bd_reconn_info:
+0x6432 020052 fetch 6 ,mem_plap 
+0x6433 020053 store 6 ,mem_temp_lap 
+0x6434 020054 jam rec_3_mode ,mem_record_bt_mode 
+:      020055 eeprom_store_reconn_info:
+0x6435 020056 set1 mark_ext_patch ,mark 
+0x6436 020057 bpatch patch31_1 ,mem_patch31 
+0x6437 020058 fetch 1 ,mem_device_option 
+0x6438 020059 beq dvc_op_module ,check_51cmd_update_device_record 
+0x6439 020060 call eeprom_store_remote_bdaddr 
+0x643a 020061 call eeprom_store_last_record_index 
+0x643b 020062 fetch 1 ,mem_record_bt_mode 
+0x643c 020063 beq rec_4_mode ,eeprom_store_rec_4_mode 
+0x643d 020064 beq rec_3_mode ,eeprom_store_link_key 
+0x643e 020065 rtn 
+:      020066 eeprom_store_rec_4_mode:
+0x643f 020067 call eeprom_store_le_ltl 
+0x6440 020068 branch eeprom_store_le_local_addr 
+:      020071 eeprom_load_reconn_info:
+0x6441 020072 set1 mark_ext_patch ,mark 
+0x6442 020073 bpatch patch31_2 ,mem_patch31 
+0x6443 020074 call eeprom_load_reconn_bdaddr 
+0x6444 020075 fetch 1 ,mem_select_list_item 
+0x6445 020076 rtneq 0xff 
+0x6446 020077 fetch 6 ,mem_temp_lap 
+0x6447 020078 store 6 ,mem_hci_plap 
+0x6448 020079 fetch 1 ,mem_record_bt_mode 
+0x6449 020080 store 1 ,mem_xrecord_mode 
+0x644a 020081 beq rec_3_mode ,eeprom_load_rec_3_mode 
+0x644b 020082 beq rec_4_mode ,eeprom_load_rec_4_mode 
+0x644c 020083 rtn 
+:      020084 eeprom_load_reconn_bdaddr:
+0x644d 020085 call eeprom_load_last_record_index 
+0x644e 020086 fetch 1 ,mem_select_list_item 
+0x644f 020087 rtneq 0xff 
+0x6450 020088 branch eeprom_load_remote_bdaddr 
+:      020089 eeprom_load_rec_3_mode:
+0x6451 020090 call eeprom_load_link_key 
+0x6452 020091 branch check_link_key_load 
+:      020092 eeprom_load_rec_4_mode:
+0x6453 020093 call eeprom_load_ltk_key 
+0x6454 020094 branch check_ltk_load 
+:      020098 eeprom_erase_reconn_info:
+0x6455 020099 set1 mark_ext_patch ,mark 
+0x6456 020100 bpatch patch31_4 ,mem_patch31 
+0x6457 020101 setarg 0x0 
+0x6458 020102 store 3 ,mem_plap 
+0x6459 020103 istore 3 ,contw 
+0x645a 020104 branch eeprom_store_remote_bdaddr 
+:      020106 eeprom_load_last_record_index:
+0x645b 020107 arg 1 ,temp 
+0x645c 020108 arg mem_select_list_item ,rega 
+0x645d 020109 arg eeprom_last_record ,regb 
+0x645e 020110 branch iicd_read_eep_data 
+:      020112 eeprom_store_last_record_index:
+0x645f 020113 arg 1 ,temp 
+0x6460 020114 arg mem_select_list_item ,rega 
+0x6461 020115 arg eeprom_last_record ,regb 
+0x6462 020116 branch iicd_write_eep_data 
+:      020119 eeprom_store_remote_bdaddr:
+0x6463 020120 set1 mark_ext_patch ,mark 
+0x6464 020121 bpatch patch31_5 ,mem_patch31 
+0x6465 020122 call eeprom_load_bdaddr_list 
+0x6466 020123 disable user 
+0x6467 020124 call find_addr_from_bd_list 
+0x6468 020125 rtn user 
+:      020126 eeprom_store_remote_addr_unfind:
+0x6469 020127 jam 0 ,mem_select_list_item 
+0x646a 020128 fetch 6 ,mem_temp_lap 
+0x646b 020129 store 6 ,mem_bdaddr_list_buff + 1 
+0x646c 020130 fetch 1 ,mem_record_bt_mode 
+0x646d 020131 store 1 ,mem_bdaddr_list_buff 
+0x646e 020132 arg 28 ,temp 
+0x646f 020133 arg mem_bdaddr_list_buff ,rega 
+0x6470 020134 arg eeprom_bdaddr_list ,regb 
+0x6471 020135 branch iicd_write_eep_data 
+:      020138 eeprom_store_le_local_addr:
+0x6472 020139 arg 6 ,temp 
+0x6473 020140 arg mem_le_lap ,rega 
+0x6474 020141 arg eeprom_le_reconn_local_addr ,regb 
+0x6475 020142 branch iicd_write_eep_data 
+:      020144 eeprom_load_le_loacal_addr:
+0x6476 020145 arg 6 ,temp 
+0x6477 020146 arg mem_le_lap ,rega 
+0x6478 020147 arg eeprom_le_reconn_local_addr ,regb 
+0x6479 020148 branch iicd_read_eep_data 
+:      020151 eeprom_load_remote_bdaddr:
+0x647a 020152 set1 mark_ext_patch ,mark 
+0x647b 020153 bpatch patch31_6 ,mem_patch31 
+0x647c 020154 arg 7 ,temp 
+0x647d 020155 arg mem_temp_reconn_record ,rega 
+0x647e 020156 arg eeprom_bdaddr_list ,regb 
+0x647f 020157 fetch 1 ,mem_select_list_item 
+0x6480 020158 mul32 pdata ,7 ,pdata 
+0x6481 020159 iadd regb ,regb 
+0x6482 020160 branch iicd_read_eep_data 
+:      020162 eeprom_linkkey_addr:
+0x6483 020163 arg 0x10 ,temp 
+0x6484 020164 arg eeprom_linkkey_list ,regb 
+0x6485 020165 fetch 1 ,mem_select_list_item 
+0x6486 020166 lshift4 pdata ,pdata 
+0x6487 020167 iadd regb ,regb 
+0x6488 020168 rtn 
+:      020170 eeprom_store_le_ltl:
+0x6489 020171 arg mem_le_ltk ,rega 
+0x648a 020172 branch eeprom_store_link_key_common 
+:      020173 eeprom_store_link_key:
+0x648b 020174 arg mem_link_key ,rega 
+:      020175 eeprom_store_link_key_common:
+0x648c 020176 set1 mark_ext_patch ,mark 
+0x648d 020177 bpatch patch31_7 ,mem_patch31 
+0x648e 020178 call eeprom_linkkey_addr 
+0x648f 020179 branch iicd_write_eep_data 
+:      020181 eeprom_load_ltk_key:
+0x6490 020182 arg mem_le_ltk ,rega 
+0x6491 020183 branch eeprom_load_link_key_common 
+:      020184 eeprom_load_link_key:
+0x6492 020185 arg mem_link_key ,rega 
+:      020186 eeprom_load_link_key_common:
+0x6493 020187 set1 mark_ext_patch ,mark 
+0x6494 020188 bpatch patch32_0 ,mem_patch32 
+0x6495 020189 call eeprom_linkkey_addr 
+0x6496 020190 branch iicd_read_eep_data 
+:      020194 eeprom_load_bdaddr_list:
+0x6497 020195 arg 28 ,temp 
+0x6498 020196 arg mem_bdaddr_list_buff + 7 ,rega 
+0x6499 020197 arg eeprom_bdaddr_list ,regb 
+0x649a 020198 branch iicd_read_eep_data 
+:      020201 find_addr_from_bd_list:
+0x649b 020202 set1 mark_ext_patch ,mark 
+0x649c 020203 bpatch patch32_1 ,mem_patch32 
+0x649d 020204 setarg mem_bdaddr_list_buff + 7 
+0x649e 020205 store 2 ,mem_list_item_ptr 
+0x649f 020206 jam 0 ,mem_select_list_item 
+0x64a0 020207 arg 4 ,loopcnt 
+:      020208 find_addr_from_list:
+0x64a1 020209 copy loopcnt ,pdata 
+0x64a2 020210 store 1 ,mem_pdatatemp 
+0x64a3 020211 fetch 2 ,mem_list_item_ptr 
+0x64a4 020212 copy pdata ,rega 
+0x64a5 020213 call find_addr_from_list_compare 
+0x64a6 020214 rtn user 
+0x64a7 020215 fetch 2 ,mem_list_item_ptr 
+0x64a8 020216 increase 7 ,pdata 
+0x64a9 020217 store 2 ,mem_list_item_ptr 
+0x64aa 020218 fetch 1 ,mem_select_list_item 
+0x64ab 020219 increase 1 ,pdata 
+0x64ac 020220 store 1 ,mem_select_list_item 
+0x64ad 020221 fetch 1 ,mem_pdatatemp 
+0x64ae 020222 copy pdata ,loopcnt 
+0x64af 020223 loop find_addr_from_list 
+0x64b0 020224 rtn 
+:      020227 check_link_key_load:
+0x64b1 020228 fetch 8 ,mem_link_key 
+0x64b2 020229 fetcht 8 ,mem_link_key + 8 
+0x64b3 020230 ior temp ,pdata 
+0x64b4 020231 rtn blank 
+0x64b5 020232 jam 1 ,mem_link_key_exists 
+0x64b6 020233 rtn 
+:      020234 check_ltk_load:
+0x64b7 020235 fetch 6 ,mem_hci_plap 
+0x64b8 020236 rtn blank 
+0x64b9 020237 jam 1 ,mem_ltk_exists 
+0x64ba 020238 rtn 
+:      020240 find_addr_from_list_compare:
+0x64bb 020241 arg mem_temp_reconn_record ,regb 
+0x64bc 020242 arg 7 ,loopcnt 
+0x64bd 020243 call string_compare 
+0x64be 020244 branch enable_usr ,zero 
+0x64bf 020245 rtn 
+:      020246 enable_usr:
+0x64c0 020247 enable user 
+0x64c1 020248 rtn 
+:      020255 gpio_set_wake_by_current_state:
+0x64c2 020256 set1 mark_ext_patch ,mark 
+0x64c3 020257 bpatch patch32_2 ,mem_patch32 
+0x64c4 020258 set1 7 ,temp 
+0x64c5 020259 call gpio_get_bit 
+0x64c6 020260 nsetflag true ,7 ,temp 
+:      020265 gpio_set_wake:
+0x64c7 020266 set1 mark_ext_patch ,mark 
+0x64c8 020267 bpatch patch32_3 ,mem_patch32 
+0x64c9 020268 isolate0 7 ,temp 
+0x64ca 020269 and temp ,0x1f ,queue 
+0x64cb 020270 fetch 4 ,mem_gpio_wakeup_low 
+0x64cc 020271 qsetflag true ,pdata 
+0x64cd 020272 store 4 ,mem_gpio_wakeup_low 
+0x64ce 020273 fetch 4 ,mem_gpio_wakeup_high 
+0x64cf 020274 nqsetflag true ,pdata 
+0x64d0 020275 store 4 ,mem_gpio_wakeup_high 
+0x64d1 020276 rtn 
+:      020279 gpio_clr_wake:
+0x64d2 020280 set1 mark_ext_patch ,mark 
+0x64d3 020281 bpatch patch32_4 ,mem_patch32 
+0x64d4 020282 isolate0 7 ,temp 
+0x64d5 020283 and temp ,0x1f ,queue 
+0x64d6 020284 fetch 4 ,mem_gpio_wakeup_low 
+0x64d7 020285 qset0 pdata 
+0x64d8 020286 store 4 ,mem_gpio_wakeup_low 
+0x64d9 020287 fetch 4 ,mem_gpio_wakeup_high 
+0x64da 020288 qset0 pdata 
+0x64db 020289 store 4 ,mem_gpio_wakeup_high 
+0x64dc 020290 rtn 
+:      020293 gpio_config_input_nowake:
+0x64dd 020294 call gpio_clr_wake 
+0x64de 020295 branch gpio_config_input_without_wake 
+:      020298 gpio_config_input:
+0x64df 020299 ncall gpio_set_wake ,wake 
+:      020301 gpio_config_input_without_wake:
+0x64e0 020302 arg core_gpio_pd0 ,contw 
+0x64e1 020303 call gpio_set_bit 
+0x64e2 020304 setflip gpio_active_bit ,temp 
+0x64e3 020305 arg core_gpio_pu0 ,contw 
+0x64e4 020306 call gpio_set_bit 
+0x64e5 020307 set0 gpio_active_bit ,temp 
+0x64e6 020308 arg core_gpio_oe0 ,contw 
+0x64e7 020309 branch gpio_set_bit 
+:      020312 gpio_config_output:
+0x64e8 020313 setflip gpio_active_bit ,temp 
+0x64e9 020314 call gpio_out 
+:      020315 gpio_config_output0:
+0x64ea 020316 set1 gpio_active_bit ,temp 
+0x64eb 020317 arg core_gpio_oe0 ,contw 
+0x64ec 020318 branch gpio_set_bit 
+:      020320 gpio_common:
+0x64ed 020321 and temp ,0x07 ,queue 
+0x64ee 020322 rshift3 temp ,pdata 
+0x64ef 020323 and_into 3 ,pdata 
+0x64f0 020324 iadd contw ,contw 
+0x64f1 020325 ifetch 1 ,contw 
+0x64f2 020326 rtn 
+:      020328 gpio_check_active:
+0x64f3 020329 arg core_gpio_out0 ,contw 
+0x64f4 020330 branch get_bit_common 
+:      020334 gpio_get_bit:
+0x64f5 020335 arg core_gpio_in ,contw 
+:      020336 get_bit_common:
+0x64f6 020337 call gpio_common 
+0x64f7 020338 isolate1 gpio_active_bit ,temp 
+0x64f8 020339 branch gpio_get_bit_reverse ,true 
+0x64f9 020340 qisolate0 pdata 
+0x64fa 020341 rtn 
+:      020342 gpio_get_bit_reverse:
+0x64fb 020343 qisolate1 pdata 
+0x64fc 020344 rtn 
+:      020346 gpio_out_inactive:
+0x64fd 020347 isolate1 7 ,null 
+0x64fe 020348 branch gpio_out_flag 
+:      020350 gpio_out_active:
+0x64ff 020351 isolate0 7 ,null 
+:      020354 gpio_out_flag:
+0x6500 020355 setarg 0 
+0x6501 020356 nsetflag true ,gpio_active_bit ,pdata 
+0x6502 020357 ixor temp ,temp 
+:      020360 gpio_out:
+0x6503 020361 arg core_gpio_out0 ,contw 
+:      020364 gpio_set_bit:
+0x6504 020365 call gpio_common 
+0x6505 020366 isolate1 gpio_active_bit ,temp 
+0x6506 020367 qsetflag true ,pdata 
+0x6507 020368 istore 1 ,contw 
+0x6508 020369 rtn 
+:      020371 gpio_set_before_lpm_common:
+0x6509 020372 arg -1 ,rega 
+0x650a 020373 hfetch 1 ,core_gpio_sel1 
+0x650b 020374 isolate1 1 ,pdata 
+0x650c 020375 call neglact4_from_23_pin ,true 
+0x650d 020377 and pdata ,0x3 ,regb 
+0x650e 020378 sub regb ,1 ,null 
+0x650f 020379 call neglact2_form_25_pin ,zero 
+0x6510 020381 isolate1 2 ,pdata 
+0x6511 020382 call neglect2_from_6_pin ,true 
+0x6512 020384 isolate1 3 ,pdata 
+0x6513 020385 call neglect4_from_9_pin ,true 
+0x6514 020387 isolate1 5 ,pdata 
+0x6515 020388 call neglact2_form_27_pin ,true 
+0x6516 020390 isolate1 6 ,pdata 
+0x6517 020391 arg 4 ,queue 
+0x6518 020392 call neglact_1_pin ,true 
+0x6519 020393 nsetflag true ,4 ,rega 
+0x651a 020395 isolate1 7 ,pdata 
+0x651b 020396 arg 5 ,queue 
+0x651c 020397 call neglact_1_pin ,true 
+0x651d 020399 hfetch 1 ,core_gpio_sel2 
+0x651e 020400 isolate1 0 ,pdata 
+0x651f 020401 arg 3 ,queue 
+0x6520 020402 call neglact_1_pin ,true 
+0x6521 020404 hfetcht 1 ,core_gpio_sel 
+0x6522 020405 isolate1 0 ,temp 
+0x6523 020406 arg 5 ,queue 
+0x6524 020407 call neglact_1_pin ,true 
+0x6525 020409 ior temp ,pdata 
+0x6526 020411 isolate1 1 ,pdata 
+0x6527 020412 arg 6 ,queue 
+0x6528 020413 call neglact_1_pin ,true 
+0x6529 020415 isolate1 2 ,pdata 
+0x652a 020416 arg 7 ,queue 
+0x652b 020417 call neglact_1_pin ,true 
+0x652c 020419 isolate1 3 ,pdata 
+0x652d 020420 arg 18 ,queue 
+0x652e 020421 call neglact_1_pin ,true 
+0x652f 020423 isolate1 4 ,pdata 
+0x6530 020424 arg 19 ,queue 
+0x6531 020425 call neglact_1_pin ,true 
+0x6532 020427 isolate1 5 ,pdata 
+0x6533 020428 arg 20 ,queue 
+0x6534 020429 call neglact_1_pin ,true 
+0x6535 020431 isolate1 6 ,pdata 
+0x6536 020432 arg 21 ,queue 
+0x6537 020433 call neglact_1_pin ,true 
+0x6538 020435 isolate1 7 ,pdata 
+0x6539 020436 arg 22 ,queue 
+0x653a 020437 call neglact_1_pin ,true 
+0x653b 020439 hfetch 1 ,core_uart_ctrl 
+0x653c 020440 isolate1 4 ,pdata 
+0x653d 020441 call neglact2_form_2_pin ,true 
+0x653e 020442 set1 mark_ext_patch ,mark 
+0x653f 020443 bpatch patch32_5 ,mem_patch32 
+0x6540 020445 hfetch 4 ,core_gpio_pu0 
+0x6541 020446 hfetcht 4 ,core_gpio_pd0 
+0x6542 020447 ior temp ,pdata 
+0x6543 020448 invert pdata ,pdata 
+0x6544 020449 iand rega ,pdata 
+0x6545 020451 hfetcht 4 ,core_gpio_pd0 
+0x6546 020452 ior temp ,pdata 
+0x6547 020453 hstore 4 ,core_gpio_pd0 
+0x6548 020454 rtn 
+:      020455 neglect2_from_6_pin:
+0x6549 020456 arg 6 ,queue 
+0x654a 020457 branch neglect_2_pin 
+:      020458 neglect4_from_9_pin:
+0x654b 020459 arg 9 ,queue 
+0x654c 020460 branch neglact_4_pin 
+:      020461 neglact4_from_23_pin:
+0x654d 020462 arg 23 ,queue 
+0x654e 020463 branch neglact_4_pin 
+:      020464 neglact2_form_25_pin:
+0x654f 020465 arg 25 ,queue 
+0x6550 020466 branch neglect_2_pin 
+:      020467 neglact2_form_27_pin:
+0x6551 020468 arg 27 ,queue 
+0x6552 020469 branch neglect_2_pin 
+:      020470 neglact2_form_2_pin:
+0x6553 020471 arg 2 ,queue 
+0x6554 020472 branch neglect_2_pin 
+:      020473 neglact_1_pin:
+0x6555 020474 arg 1 ,loopcnt 
+0x6556 020475 branch neglect_pin_loop 
+:      020476 neglact_4_pin:
+0x6557 020477 arg 4 ,loopcnt 
+0x6558 020478 branch neglect_pin_loop 
+:      020479 neglect_2_pin:
+0x6559 020480 arg 2 ,loopcnt 
+:      020481 neglect_pin_loop:
+0x655a 020482 qset0 rega 
+0x655b 020483 increase 1 ,queue 
+0x655c 020484 loop neglect_pin_loop 
+0x655d 020485 rtn 
+:      020493 gpio_cfg_uart_tx_output:
+0x655e 020494 call gpio_uart2gpio 
+0x655f 020495 arg uart_wakeup_tx ,temp 
+0x6560 020496 branch gpio_config_output 
+:      020498 gpio_pu_uart_tx:
+0x6561 020499 call gpio_cfg_uart_tx_output 
+0x6562 020500 arg uart_wakeup_tx ,temp 
+0x6563 020501 branch gpio_out_inactive 
+:      020505 gpio_rx_config_input_with_pu:
+0x6564 020506 call gpio_uart2gpio 
+0x6565 020507 hfetch 1 ,core_gpio_pu0 
+0x6566 020508 set1 uart_wakeup_rx ,pdata 
+0x6567 020509 hstore 1 ,core_gpio_pu0 
+0x6568 020510 arg uart_wakeup_rx ,temp 
+0x6569 020511 branch gpio_config_input 
+:      020513 gpio_uart2gpio:
+0x656a 020514 hfetch 1 ,core_gpio_sel1 
+0x656b 020515 and_into 0xfb ,pdata 
+0x656c 020516 hstore 1 ,core_gpio_sel1 
+0x656d 020517 rtn 
+:      020519 gpio_check_uart_state:
+0x656e 020520 hfetch 1 ,core_gpio_sel1 
+0x656f 020521 isolate1 2 ,pdata 
+0x6570 020522 rtn 
+:      020524 load_chip_option:
+0x6571 020525 call otp_enable_chgpump 
+0x6572 020526 setarg otp_chip_functions 
+0x6573 020527 arg mem_chip_functions ,rega 
+0x6574 020528 arg 0x02 ,temp 
+0x6575 020529 call otpd_read_data 
+0x6576 020530 branch otp_disable_chgpump 
+:      020534 adc_init_data:
+0x6577 020535 set1 mark_ext_patch ,mark 
+0x6578 020536 bpatch patch32_6 ,mem_patch32 
+0x6579 020538 call otp_enable_chgpump 
+0x657a 020539 setarg otp_adc_io_0_5v_addr 
+0x657b 020540 arg mem_0_5_adc_io_data ,rega 
+0x657c 020541 arg 14 ,temp 
+0x657d 020542 call otpd_read_data 
+0x657e 020543 call otp_disable_chgpump 
+0x657f 020545 fetch 1 ,mem_adc_config_flag 
+0x6580 020546 bbit1 adc_config_vinlpm ,adc_init_data_vinlpm 
+0x6581 020547 bbit1 adc_config_hvin ,adc_init_data_hvin 
+0x6582 020548 bbit1 adc_config_gpio ,adc_init_data_io 
+0x6583 020549 rtn 
+:      020551 adc_init_data_vinlpm:
+0x6584 020552 fetcht 2 ,mem_otp_adc_flag 
+0x6585 020553 setarg otp_adc_flag 
+0x6586 020554 isub temp ,null 
+0x6587 020555 branch adc_check_data_vinlpm ,zero 
+0x6588 020556 setarg 0x4dfa 
+0x6589 020557 store 2 ,mem_3v_adc_vinlpm_data 
+0x658a 020558 setarg 0x4894 
+0x658b 020559 store 2 ,mem_2v_adc_vinlpm_data 
+0x658c 020560 branch set_vdd_reference_voltage_1v 
+:      020562 adc_check_data_vinlpm:
+0x658d 020563 fetch 2 ,mem_3v_adc_vinlpm_data 
+0x658e 020564 nbranch adc_check_2v_vinlpm ,blank 
+0x658f 020565 setarg 0x4dfa 
+0x6590 020566 store 2 ,mem_3v_adc_vinlpm_data 
+:      020567 adc_check_2v_vinlpm:
+0x6591 020568 fetch 2 ,mem_2v_adc_vinlpm_data 
+0x6592 020569 nbranch set_vdd_reference_voltage_1v ,blank 
+0x6593 020570 setarg 0x4894 
+0x6594 020571 store 2 ,mem_2v_adc_vinlpm_data 
+:      020572 set_vdd_reference_voltage_1v:
+0x6595 020573 setarg 100 
+0x6596 020574 store 2 ,mem_reference_voltage 
+0x6597 020575 rtn 
+:      020577 adc_init_data_hvin:
+0x6598 020578 fetcht 2 ,mem_otp_adc_flag 
+0x6599 020579 setarg otp_adc_flag 
+0x659a 020580 isub temp ,null 
+0x659b 020581 branch adc_check_data_hvin ,zero 
+0x659c 020582 setarg 0x5932 
+0x659d 020583 store 2 ,mem_5v_adc_hvin_data 
+0x659e 020584 setarg 0x4323 
+0x659f 020585 store 2 ,mem_1v_adc_hvin_data 
+0x65a0 020586 branch set_vdd_reference_voltage_4v 
+:      020588 adc_check_data_hvin:
+0x65a1 020589 fetch 2 ,mem_5v_adc_hvin_data 
+0x65a2 020590 nbranch adc_check_1v_hvin ,blank 
+0x65a3 020591 setarg 0x5932 
+0x65a4 020592 store 2 ,mem_5v_adc_hvin_data 
+:      020593 adc_check_1v_hvin:
+0x65a5 020594 fetch 2 ,mem_1v_adc_hvin_data 
+0x65a6 020595 nbranch set_vdd_reference_voltage_4v ,blank 
+0x65a7 020596 setarg 0x4323 
+0x65a8 020597 store 2 ,mem_1v_adc_hvin_data 
+:      020598 set_vdd_reference_voltage_4v:
+0x65a9 020599 setarg 400 
+0x65aa 020600 store 2 ,mem_reference_voltage 
+0x65ab 020601 rtn 
+:      020603 adc_init_data_io:
+0x65ac 020604 fetcht 2 ,mem_otp_adc_flag 
+0x65ad 020605 setarg otp_adc_flag 
+0x65ae 020606 isub temp ,null 
+0x65af 020607 branch adc_check_data_io ,zero 
+0x65b0 020608 setarg 0x6946 
+0x65b1 020609 store 2 ,mem_1v_adc_io_data 
+0x65b2 020610 setarg 0x5377 
+0x65b3 020611 store 2 ,mem_0_5_adc_io_data 
+0x65b4 020612 branch set_vdd_reference_voltage_0_5v 
+:      020614 adc_check_data_io:
+0x65b5 020615 fetch 2 ,mem_1v_adc_io_data 
+0x65b6 020616 nbranch adc_check_0_5v_io ,blank 
+0x65b7 020617 setarg 0x6946 
+0x65b8 020618 store 2 ,mem_1v_adc_io_data 
+:      020619 adc_check_0_5v_io:
+0x65b9 020620 fetch 2 ,mem_0_5_adc_io_data 
+0x65ba 020621 nbranch set_vdd_reference_voltage_0_5v ,blank 
+0x65bb 020622 setarg 0x5377 
+0x65bc 020623 store 2 ,mem_0_5_adc_io_data 
+:      020624 set_vdd_reference_voltage_0_5v:
+0x65bd 020625 setarg 50 
+0x65be 020626 store 2 ,mem_reference_voltage 
+0x65bf 020627 rtn 
+:      020630 adc_set_mode:
+0x65c0 020631 fetch 1 ,mem_adc_config_flag 
+0x65c1 020632 bbit1 adc_config_vinlpm ,adc_check_vinlpm 
+0x65c2 020633 bbit1 adc_config_hvin ,adc_check_hvin 
+0x65c3 020634 bbit1 adc_config_gpio ,adc_check_gpio 
+0x65c4 020635 rtn 
+:      020636 adc_check_vinlpm:
+0x65c5 020637 hjam 0xbf ,rf_adc_mode 
+0x65c6 020638 branch read_adc 
+:      020639 adc_check_hvin:
+0x65c7 020640 hjam 0xaf ,rf_adc_mode 
+0x65c8 020641 branch read_adc 
+:      020642 adc_check_gpio:
+0x65c9 020643 hjam 0x8f ,rf_adc_mode 
+0x65ca 020644 fetch 1 ,mem_adc_channel 
+0x65cb 020645 hstore 1 ,rf_adc_ch 
+0x65cc 020646 branch read_adc 
+:      020647 read_adc:
+0x65cd 020648 set1 mark_ext_patch ,mark 
+0x65ce 020649 bpatch patch32_7 ,mem_patch32 
+0x65cf 020650 hfetch 1 ,core_uart_baud + 1 
+0x65d0 020651 set1 7 ,pdata 
+0x65d1 020652 hstore 1 ,core_uart_baud + 1 
+0x65d2 020653 hfetch 1 ,rf_adc_ch 
+0x65d3 020654 or_into 0x30 ,pdata 
+0x65d4 020655 hstore 1 ,rf_adc_ch 
+0x65d5 020656 hjam 0x7c ,rfen_adc 
+0x65d6 020657 hjam 0xaa ,rf_adc_gc 
+0x65d7 020658 nop 5000 
+0x65d8 020659 hfetcht 2 ,core_adc_sum 
+0x65d9 020660 hfetch 1 ,core_uart_baud + 1 
+0x65da 020661 set0 7 ,pdata 
+0x65db 020662 hstore 1 ,core_uart_baud + 1 
+0x65dc 020663 storet 2 ,mem_adc_current_value 
+0x65dd 020664 rtn 
+:      020666 vdd_calculate_by_mode:
+0x65de 020667 set1 mark_ext_patch ,mark 
+0x65df 020668 bpatch patch33_0 ,mem_patch33 
+0x65e0 020669 fetch 1 ,mem_adc_config_flag 
+0x65e1 020670 bbit1 adc_config_vinlpm ,vdd_calculate_vinlpm 
+0x65e2 020671 bbit1 adc_config_hvin ,vdd_calculate_hvin 
+0x65e3 020672 bbit1 adc_config_gpio ,vdd_calculate_io 
+0x65e4 020673 rtn 
+:      020675 vdd_calculate_vinlpm:
+0x65e5 020676 fetch 2 ,mem_3v_adc_vinlpm_data 
+0x65e6 020677 fetcht 2 ,mem_2v_adc_vinlpm_data 
+0x65e7 020678 arg 200 ,regc 
+0x65e8 020679 branch vdd_calculate 
+:      020681 vdd_calculate_hvin:
+0x65e9 020682 fetch 2 ,mem_5v_adc_hvin_data 
+0x65ea 020683 fetcht 2 ,mem_1v_adc_hvin_data 
+0x65eb 020684 arg 100 ,regc 
+0x65ec 020685 branch vdd_calculate 
+:      020687 vdd_calculate_io:
+0x65ed 020688 fetch 2 ,mem_1v_adc_io_data 
+0x65ee 020689 fetcht 2 ,mem_0_5_adc_io_data 
+0x65ef 020690 arg 50 ,regc 
+0x65f0 020691 branch vdd_calculate 
+:      020693 vdd_calculate:
+0x65f1 020694 isub temp ,rega 
+0x65f2 020695 fetch 2 ,mem_adc_current_value 
+0x65f3 020696 isub temp ,pdata 
+0x65f4 020697 nbranch vdd_calculate1 ,positive 
+0x65f5 020698 fetcht 2 ,mem_reference_voltage 
+0x65f6 020699 imul32 temp ,regb 
+0x65f7 020700 copy regc ,pdata 
+0x65f8 020701 imul32 rega ,pdata 
+0x65f9 020702 iadd regb ,pdata 
+:      020703 vdd_calculate2:
+0x65fa 020704 idiv rega 
+0x65fb 020705 call wait_div_end 
+0x65fc 020706 quotient pdata 
+0x65fd 020707 rtn 
+:      020709 vdd_calculate1:
+0x65fe 020710 copy temp ,pdata 
+0x65ff 020711 fetcht 2 ,mem_adc_current_value 
+0x6600 020712 isub temp ,pdata 
+0x6601 020713 fetcht 2 ,mem_reference_voltage 
+0x6602 020714 imul32 temp ,regb 
+0x6603 020715 copy regc ,pdata 
+0x6604 020716 imul32 rega ,pdata 
+0x6605 020717 isub regb ,pdata 
+0x6606 020718 branch vdd_calculate2 
+:      020723 rfcomm_init:
+0x6607 020724 rtn wake 
+0x6608 020725 jam 0 ,mem_rfcomm_send_more_pkt 
+0x6609 020726 jam bits9600 ,memremoterpnbitrate 
+0x660a 020727 jam databits8 ,memremoteprndatabits 
+0x660b 020728 jam 0x11 ,memremoteprnxon 
+0x660c 020729 jam 0x13 ,memremoteprnxoff 
+0x660d 020730 setarg 0 
+0x660e 020731 store 3 ,memremoteprnstopbit 
+0x660f 020732 store 1 ,mem_spp_state 
+0x6610 020733 jam 0 ,memui_reconnect_mode 
+:      020735 rfcomm_init_spp:
+0x6611 020736 set1 mark_ext_patch ,mark 
+0x6612 020737 bpatch patch33_1 ,mem_patch33 
+0x6613 020738 setarg 0 
+0x6614 020739 store 1 ,mem_spp_state 
+0x6615 020740 store 1 ,mem_remote_spp_channel 
+0x6616 020741 store 1 ,mem_pn_dlci 
+0x6617 020742 fetch 1 ,mem_credit_flag 
+0x6618 020743 beq credit_enable ,rfcomm_init_spp_with_credit 
+0x6619 020744 jam 0x50 ,mem_credit_given 
+0x661a 020745 rtn 
+:      020747 rfcomm_init_spp_with_credit:
+0x661b 020748 jam 0x00 ,mem_credit_given 
+0x661c 020749 rtn 
+:      020751 set_cr_bit:
+0x661d 020752 or_into 0x02 ,temp 
+0x661e 020753 rtn 
+:      020765 rfcomm_calculate_fcs_sabm:
+0x661f 020766 copy temp ,pdata 
+0x6620 020767 reverse pdata ,pdata 
+0x6621 020768 store 1 ,memfcstemp3 
+0x6622 020769 force ini_tx_sabm ,pdata 
+0x6623 020770 reverse pdata ,pdata 
+0x6624 020771 store 1 ,memfcstemp2 
+0x6625 020772 force 0x01 ,pdata 
+0x6626 020773 reverse pdata ,pdata 
+0x6627 020774 store 1 ,memfcstemp1 
+0x6628 020775 call caculate_fcs 
+0x6629 020776 copy temp ,pdata 
+0x662a 020777 rtn 
+:      020778 rfcomm_calculate_fcs_ua:
+0x662b 020779 reverse pdata ,pdata 
+0x662c 020780 store 1 ,memfcstemp3 
+0x662d 020781 force rsp_tx_ua ,pdata 
+0x662e 020782 reverse pdata ,pdata 
+0x662f 020783 store 1 ,memfcstemp2 
+0x6630 020784 force 0x01 ,pdata 
+0x6631 020785 reverse pdata ,pdata 
+0x6632 020786 store 1 ,memfcstemp1 
+0x6633 020787 branch caculate_fcs 
+:      020789 rfcomm_calculate_fcs_dlci0:
+0x6634 020790 fetch 1 ,mem_rfcomm_initiator 
+0x6635 020791 branch rfcomm_calculate_fcs_dlci0_res ,blank 
+0x6636 020792 setarg 0x70 
+0x6637 020793 rtn 
+:      020794 rfcomm_calculate_fcs_dlci0_res:
+0x6638 020795 setarg 0xaa 
+0x6639 020796 rtn 
+:      020798 rfcomm_save_fcs_uih:
+0x663a 020799 reverse pdata ,pdata 
+0x663b 020800 store 1 ,memfcstemp3 
+0x663c 020801 force rsp_rx_uih ,pdata 
+0x663d 020802 call caculate_uihdata_fcs 
+0x663e 020803 fetcht 2 ,mem_contw_temp 
+0x663f 020804 copy temp ,contw 
+0x6640 020805 istore 1 ,contw 
+0x6641 020806 copy contw ,temp 
+0x6642 020807 storet 2 ,mem_contw_temp 
+0x6643 020808 force rsp_rx_uih_wdata ,pdata 
+0x6644 020809 call caculate_uihdata_fcs 
+0x6645 020810 fetcht 2 ,mem_contw_temp 
+0x6646 020811 copy temp ,contw 
+0x6647 020812 istore 1 ,contw 
+0x6648 020813 rtn 
+:      020822 caculate_uihdata_fcs:
+0x6649 020823 reverse pdata ,pdata 
+0x664a 020824 store 1 ,memfcstemp2 
+0x664b 020825 fetch 2 ,memfcstemp2 
+0x664c 020826 lshift8 pdata ,pdata 
+0x664d 020827 store 3 ,mem_mod2div_temp 
+0x664e 020828 arg 0x107 ,rega 
+0x664f 020829 arg 0xf ,regb 
+0x6650 020830 call mod2div 
+0x6651 020831 xor_into 0xd7 ,pdata 
+0x6652 020832 invert pdata ,pdata 
+0x6653 020833 reverse pdata ,pdata 
+0x6654 020834 rtn 
+:      020844 caculate_fcs:
+0x6655 020845 fetch 3 ,memfcstemp1 
+0x6656 020846 store 3 ,mem_mod2div_temp 
+0x6657 020847 arg 0x107 ,rega 
+0x6658 020848 arg 0xf ,regb 
+0x6659 020849 call mod2div 
+0x665a 020850 lshift8 pdata ,pdata 
+0x665b 020851 arg 0x7 ,regb 
+0x665c 020852 call mod2div 
+0x665d 020853 xor_into 0x2b ,pdata 
+0x665e 020854 invert pdata ,pdata 
+0x665f 020855 reverse pdata ,pdata 
+0x6660 020856 copy pdata ,temp 
+0x6661 020857 rtn 
+:      020859 mod2div:
+0x6662 020860 arg 0 ,regc 
+0x6663 020861 copy regb ,loopcnt 
+0x6664 020862 call right_shift_n 
+0x6665 020863 icopy temp 
+:      020864 mod2div_loop:
+0x6666 020869 copy temp ,pdata 
+0x6667 020870 lshift regc ,regc 
+0x6668 020871 bbit0 8 ,mod2div_not_enough_reduction 
+0x6669 020872 ixor rega ,temp 
+0x666a 020873 increase 1 ,regc 
+:      020874 mod2div_not_enough_reduction:
+0x666b 020875 lshift temp ,temp 
+0x666c 020876 fetch 3 ,mem_mod2div_temp 
+0x666d 020877 increase -1 ,regb 
+0x666e 020878 compare 0xff ,regb ,0xff 
+0x666f 020879 branch mod2div_end ,true 
+0x6670 020880 copy regb ,loopcnt 
+0x6671 020881 call right_shift_n 
+0x6672 020882 isolate1 0 ,pdata 
+0x6673 020883 setflag true ,0 ,temp 
+0x6674 020884 branch mod2div_loop 
+:      020885 mod2div_end:
+0x6675 020887 rshift temp ,pdata 
+0x6676 020888 rtn 
+:      020890 get_rfcomm_snd_adss:
+0x6677 020891 fetcht 1 ,mem_pn_dlci 
+:      020892 dlci_to_address_cmd:
+0x6678 020894 lshift2 temp ,temp 
+0x6679 020895 set1 rfcomm_address_ext_len ,temp 
+0x667a 020896 fetch 1 ,mem_rfcomm_initiator 
+0x667b 020897 ncall set_cr_bit ,blank 
+0x667c 020898 storet 1 ,mem_rfcomm_send_adss 
+0x667d 020899 rtn 
+:      020901 channel_to_dlci:
+0x667e 020903 lshift temp ,temp 
+0x667f 020904 fetch 1 ,mem_rfcomm_initiator 
+0x6680 020905 setflag blank ,0 ,temp 
+0x6681 020907 rtn 
+:      020908 rfcomm_rx_process_dlci0_sabm:
+0x6682 020909 fetcht 1 ,mem_current_channel 
+0x6683 020910 jam 0xd7 ,mem_current_fcs 
+0x6684 020911 call rfcomm_send_ua 
+0x6685 020912 fetch 1 ,mem_rfcomm_state 
+0x6686 020913 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+0x6687 020914 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+0x6688 020915 store 1 ,mem_rfcomm_state 
+0x6689 020916 jam 0 ,mem_rfcomm_initiator 
+0x668a 020917 branch rfcomm_rx_process_end 
+:      020918 rfcomm_rx_process_dlci0_ua:
+0x668b 020919 fetch 1 ,mem_rfcomm_state 
+0x668c 020920 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+0x668d 020921 store 1 ,mem_rfcomm_state 
+0x668e 020922 branch rfcomm_rx_process_end 
+:      020925 rfcomm_rx_process:
+0x668f 020926 set1 mark_ext_patch ,mark 
+0x6690 020927 bpatch patch33_2 ,mem_patch33 
+0x6691 020928 fetch 1 ,memui_reconnect_mode 
+0x6692 020929 beq no_reconnection ,rfcomm_rx_process_remote_page 
+0x6693 020930 branch rfcomm_rx_process_reconn 
+:      020932 rfcomm_rx_process_remote_page:
+0x6694 020933 fetch 2 ,mem_l2cap_payload_ptr 
+0x6695 020934 copy pdata ,contr 
+0x6696 020935 call get_rfcomm_head_struct 
+0x6697 020936 fetch 1 ,mem_current_channel 
+0x6698 020937 beq 0 ,parse_dlci0_rp 
+0x6699 020938 branch parse_uih_rp 
+:      020939 parse_dlci0_rp:
+0x669a 020940 set1 mark_ext_patch ,mark 
+0x669b 020941 bpatch patch33_3 ,mem_patch33 
+0x669c 020942 fetch 1 ,mem_current_frame_type 
+0x669d 020943 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+0x669e 020944 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+0x669f 020945 beq rfcomm_frame_type_uih ,parse_dlci0_rp_uih 
+0x66a0 020946 beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn_send_event 
+0x66a1 020947 rtn 
+:      020950 parse_dlci0_rp_uih:
+0x66a2 020951 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x66a3 020952 copy pdata ,contr 
+0x66a4 020953 call get_rfcomm_uih_head_struct 
+0x66a5 020954 fetch 1 ,mem_uih_cmd_type 
+0x66a6 020955 beq uih_param_neg_cmd ,parse_dlci0_rp_uih_pn_cmd 
+0x66a7 020956 beq uih_param_neg_res ,parse_dlci0_rp_uih_pn_res 
+0x66a8 020957 beq uih_modem_status_cmd ,parse_dlci0_rp_uih_ms_cmd 
+0x66a9 020958 beq uih_modem_status_res ,parse_dlci0_rp_uih_ms_res 
+0x66aa 020959 beq uih_param_cmd_remove_port ,parse_dlci0_rp_uih_cmd_port 
+0x66ab 020960 branch rfcomm_rx_process_end 
+:      020962 parse_dlci0_rp_uih_pn_cmd:
+0x66ac 020963 call parse_dlci0_rp_uih_pn_res_common 
+0x66ad 020965 branch parse_dlci0_rp_uih_pn_cmd_spp 
+:      020967 parse_dlci0_rp_uih_pn_cmd_spp:
+0x66ae 020968 fetch 1 ,mem_spp_state 
+0x66af 020969 set1 rfcomm_channel_state_pn_cmd ,pdata 
+0x66b0 020970 set1 rfcomm_channel_state_pn_res ,pdata 
+0x66b1 020971 store 1 ,mem_spp_state 
+0x66b2 020972 call rfcomm_send_param_neg_res 
+0x66b3 020973 branch rfcomm_rx_process_end 
+:      020975 parse_dlci0_rp_uih_pn_res:
+0x66b4 020976 call parse_dlci0_rp_uih_pn_res_common 
+0x66b5 020977 branch rfcomm_rx_process_end 
+:      020979 parse_dlci0_rp_uih_pn_res_common:
+0x66b6 020980 call get_param_payload_ptr 
+0x66b7 020981 branch get_rfcomm_prarmer_negotiation 
+:      020983 get_rfcomm_param_modem_status:
+0x66b8 020984 call get_param_payload_ptr 
+0x66b9 020985 ifetch 1 ,contr 
+0x66ba 020986 rshift3 pdata ,pdata 
+0x66bb 020987 store 1 ,mem_ms_channel 
+0x66bc 020988 ifetch 1 ,contr 
+0x66bd 020989 store 1 ,mem_ms_param 
+0x66be 020990 rtn 
+:      020993 get_rfcomm_head_struct:
+0x66bf 020994 ifetch 1 ,contr 
+0x66c0 020995 store 1 ,mem_current_adss 
+0x66c1 020996 rshift3 pdata ,pdata 
+0x66c2 020997 store 1 ,mem_current_channel 
+0x66c3 020998 ifetch 1 ,contr 
+0x66c4 020999 store 1 ,mem_current_frame_type 
+:      021000 get_rfcomm_current_length:
+0x66c5 021001 call get_rfcomm_length_common 
+0x66c6 021002 storet 2 ,mem_current_length 
+0x66c7 021003 copy contr ,pdata 
+0x66c8 021004 store 2 ,mem_rfcomm_uih_payload_ptr 
+0x66c9 021005 rtn 
+:      021007 get_rfcomm_uih_head_struct:
+0x66ca 021008 ifetch 1 ,contr 
+0x66cb 021009 rshift pdata ,pdata 
+0x66cc 021010 store 1 ,mem_uih_cmd_type 
+0x66cd 021011 call get_rfcomm_length_common 
+0x66ce 021012 storet 2 ,mem_uih_length 
+0x66cf 021013 copy contr ,pdata 
+0x66d0 021014 store 2 ,mem_param_payload_ptr 
+0x66d1 021015 rtn 
+:      021018 get_param_payload_ptr:
+0x66d2 021019 fetch 2 ,mem_param_payload_ptr 
+0x66d3 021020 copy pdata ,contr 
+0x66d4 021021 rtn 
+:      021023 get_rfcomm_length_common:
+0x66d5 021024 ifetch 1 ,contr 
+0x66d6 021025 copy pdata ,temp 
+0x66d7 021026 rshift temp ,temp 
+0x66d8 021027 rtnbit1 0 
+0x66d9 021028 ifetch 1 ,contr 
+0x66da 021029 lshift3 pdata ,pdata 
+0x66db 021030 lshift4 pdata ,pdata 
+0x66dc 021031 iadd temp ,temp 
+0x66dd 021032 rtn 
+:      021034 get_rfcomm_prarmer_negotiation:
+0x66de 021035 ifetch 1 ,contr 
+0x66df 021036 store 1 ,mem_pn_dlci 
+0x66e0 021037 ifetch 1 ,contr 
+0x66e1 021038 store 1 ,mem_pn_credit_flow_type_info 
+0x66e2 021039 ifetch 1 ,contr 
+0x66e3 021040 store 1 ,mem_pn_priority 
+0x66e4 021041 ifetch 1 ,contr 
+0x66e5 021042 store 1 ,mem_pn_acknowledg_timer 
+0x66e6 021043 ifetch 2 ,contr 
+0x66e7 021044 store 2 ,mem_pn_max_frame_size 
+0x66e8 021045 ifetch 1 ,contr 
+0x66e9 021046 store 1 ,mem_pn_max_retrans 
+0x66ea 021047 ifetch 1 ,contr 
+0x66eb 021048 store 1 ,mem_remote_credits 
+0x66ec 021049 rtn 
+:      021052 parse_dlci0_rp_uih_ms_cmd:
+0x66ed 021053 call get_rfcomm_param_modem_status 
+0x66ee 021055 branch parse_dlci0_rp_uih_ms_cmd_spp 
+:      021057 parse_dlci0_rp_uih_ms_cmd_spp:
+0x66ef 021058 fetch 1 ,mem_spp_state 
+0x66f0 021059 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+0x66f1 021060 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+0x66f2 021061 store 1 ,mem_spp_state 
+0x66f3 021062 fetcht 1 ,mem_pn_dlci 
+0x66f4 021063 lshift2 temp ,temp 
+0x66f5 021064 or_into 3 ,temp 
+0x66f6 021065 call rfcomm_send_modem_status_res 
+0x66f7 021066 jam more_pkt_msc_cmd_spp ,mem_rfcomm_send_more_pkt 
+0x66f8 021067 branch rfcomm_rx_process_end 
+:      021069 parse_dlci0_rp_uih_ms_res:
+0x66f9 021070 jam bt_evt_spp_connected ,mem_fifo_temp 
+0x66fa 021071 call ui_ipc_send_event 
+0x66fb 021072 call get_rfcomm_param_modem_status 
+0x66fc 021073 fetch 1 ,mem_ms_channel 
+0x66fd 021074 sub pdata ,1 ,null 
+0x66fe 021075 branch parse_dlci0_rp_uih_ms_res_spp ,zero 
+0x66ff 021076 branch assert 
+:      021077 parse_dlci0_rp_uih_ms_res_spp:
+0x6700 021078 fetch 1 ,mem_spp_state 
+0x6701 021079 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+0x6702 021080 store 1 ,mem_spp_state 
+0x6703 021081 branch rfcomm_rx_process_end 
+:      021083 parse_dlci0_rp_uih_cmd_port:
+0x6704 021084 call get_param_payload_ptr 
+0x6705 021085 ifetch 1 ,contr 
+0x6706 021086 store 1 ,mem_rpn_dlci 
+0x6707 021087 call l2cap_malloc_rfcomm_channel 
+0x6708 021088 call l2cap_get_rfcomm_tx_buff 
+0x6709 021089 setarg 0x000e 
+0x670a 021090 istore 2 ,contw 
+0x670b 021091 fetch 2 ,mem_rfcomm_remote_cid 
+0x670c 021092 istore 2 ,contw 
+0x670d 021093 fetch 1 ,mem_rfcomm_initiator 
+0x670e 021095 lshift pdata ,pdata 
+0x670f 021096 set1 0 ,pdata 
+0x6710 021097 istore 1 ,contw 
+0x6711 021098 set1 mark_ext_patch ,mark 
+0x6712 021099 bpatch patch33_4 ,mem_patch33 
+0x6713 021100 setarg 0x15ef 
+0x6714 021101 istore 2 ,contw 
+0x6715 021102 setarg 0x1191 
+0x6716 021103 istore 2 ,contw 
+0x6717 021106 fetch 1 ,mem_rpn_dlci 
+0x6718 021107 istore 1 ,contw 
+0x6719 021108 setarg 0x000007 
+0x671a 021109 istore 5 ,contw 
+0x671b 021112 setarg 0x01 
+0x671c 021113 istore 2 ,contw 
+0x671d 021116 call rfcomm_calculate_fcs_dlci0 
+0x671e 021117 istore 1 ,contw 
+0x671f 021118 rtn 
+:      021122 parse_uih_rp:
+0x6720 021123 branch parse_uih_rp_spp 
+:      021125 parse_uih_rp_spp:
+0x6721 021126 set1 mark_ext_patch ,mark 
+0x6722 021127 bpatch patch33_5 ,mem_patch33 
+0x6723 021128 fetch 1 ,mem_current_frame_type 
+0x6724 021129 beq rfcomm_frame_type_ua ,parse_uih_rp_spp_ua 
+0x6725 021130 beq rfcomm_frame_type_sabm ,parse_uih_rp_spp_sabm 
+0x6726 021131 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+0x6727 021132 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+0x6728 021133 beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn 
+0x6729 021134 rtn 
+:      021135 parse_uih_rp_spp_ua:
+0x672a 021136 fetch 1 ,mem_spp_state 
+0x672b 021137 set1 rfcomm_channel_state_ua ,pdata 
+0x672c 021138 store 1 ,mem_spp_state 
+0x672d 021139 branch rfcomm_rx_process_end 
+:      021140 parse_uih_rp_spp_sabm:
+0x672e 021141 fetch 1 ,mem_spp_state 
+0x672f 021142 set1 rfcomm_channel_state_ua ,pdata 
+0x6730 021143 set1 rfcomm_channel_state_sabm ,pdata 
+0x6731 021144 store 1 ,mem_spp_state 
+0x6732 021145 fetch 1 ,mem_current_adss 
+0x6733 021146 call rfcomm_calculate_fcs_ua 
+0x6734 021147 store 1 ,mem_current_fcs 
+0x6735 021148 call rfcomm_send_ua 
+0x6736 021149 fetch 1 ,mem_current_adss 
+0x6737 021150 rshift2 pdata ,pdata 
+0x6738 021151 store 1 ,mem_pn_dlci 
+0x6739 021152 lshift2 pdata ,pdata 
+0x673a 021153 set0 rfcomm_address_cr ,pdata 
+0x673b 021154 set1 rfcomm_address_ext_len ,pdata 
+0x673c 021155 arg mem_hiufcs_spp ,temp 
+0x673d 021156 storet 2 ,mem_contw_temp 
+0x673e 021157 call rfcomm_save_fcs_uih 
+0x673f 021158 branch rfcomm_rx_process_end 
+:      021160 parse_uih_spp_uih_credits:
+0x6740 021161 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6741 021162 copy pdata ,contr 
+0x6742 021163 increase 1 ,pdata 
+0x6743 021164 store 2 ,mem_rfcomm_uih_payload_ptr 
+0x6744 021165 ifetch 1 ,contr 
+0x6745 021166 fetcht 1 ,mem_remote_credits 
+0x6746 021167 iadd temp ,pdata 
+0x6747 021168 store 1 ,mem_remote_credits 
+:      021169 parse_uih_spp_uih:
+0x6748 021170 call rfcomm_increase_credit_given 
+:      021171 parse_uih_spp_uih_cont:
+0x6749 021172 call get_rfcomm_snd_adss 
+0x674a 021173 call rfcomm_send_uih_without_payload 
+0x674b 021174 call spp_process_rx_data 
+0x674c 021175 branch rfcomm_rx_process_end 
+:      021177 parse_uih_rp_spp_disconn_send_event:
+0x674d 021178 jam bt_evt_spp_disconnected ,mem_fifo_temp 
+0x674e 021179 call ui_ipc_send_event 
+:      021180 parse_uih_rp_spp_disconn:
+0x674f 021181 call rfcomm_init_spp 
+0x6750 021182 fetch 1 ,mem_current_adss 
+0x6751 021183 call rfcomm_calculate_fcs_ua 
+0x6752 021184 store 1 ,mem_current_fcs 
+0x6753 021185 call rfcomm_send_ua 
+0x6754 021186 branch rfcomm_rx_process_end 
+:      021191 rfcomm_rx_process_reconn:
+0x6755 021192 fetch 2 ,mem_l2cap_payload_ptr 
+0x6756 021193 copy pdata ,contr 
+0x6757 021194 call get_rfcomm_head_struct 
+0x6758 021195 fetch 1 ,mem_current_channel 
+0x6759 021196 beq 0 ,parse_dlci0_reconn 
+0x675a 021197 branch parse_uih_reconn 
+:      021199 parse_dlci0_reconn:
+0x675b 021200 set1 mark_ext_patch ,mark 
+0x675c 021201 bpatch patch33_6 ,mem_patch33 
+0x675d 021202 fetch 1 ,mem_current_frame_type 
+0x675e 021203 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+0x675f 021204 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+0x6760 021205 beq rfcomm_frame_type_uih ,parse_dlci0_reconn_uih 
+0x6761 021206 branch rfcomm_rx_process_end 
+:      021207 parse_dlci0_reconn_uih:
+0x6762 021208 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6763 021209 copy pdata ,contr 
+0x6764 021210 call get_rfcomm_uih_head_struct 
+0x6765 021211 fetch 1 ,mem_uih_cmd_type 
+0x6766 021212 beq uih_param_neg_cmd ,parse_dlci0_reconn_uih_pn_cmd 
+0x6767 021213 beq uih_param_neg_res ,parse_dlci0_reconn_uih_pn_cmd 
+0x6768 021214 beq uih_modem_status_cmd ,parse_dlci0_reconn_uih_ms_cmd 
+0x6769 021215 beq uih_modem_status_res ,parse_dlci0_reconn_uih_ms_res 
+0x676a 021216 branch rfcomm_rx_process_end 
+:      021218 parse_dlci0_reconn_uih_pn_cmd:
+0x676b 021219 call parse_dlci0_rp_uih_pn_res_common 
+0x676c 021220 fetch 1 ,mem_pn_dlci 
+0x676d 021221 rshift pdata ,pdata 
+0x676e 021222 fetcht 1 ,mem_remote_spp_channel 
+0x676f 021223 isub temp ,null 
+0x6770 021224 branch parse_dlci0_reconn_uih_pn_cmd_spp ,zero 
+0x6771 021225 branch assert 
+:      021226 parse_dlci0_reconn_uih_pn_cmd_spp:
+0x6772 021227 fetch 1 ,mem_spp_state 
+0x6773 021228 set1 rfcomm_channel_state_pn_res ,pdata 
+0x6774 021229 store 1 ,mem_spp_state 
+0x6775 021230 branch rfcomm_rx_process_end 
+:      021232 parse_dlci0_reconn_uih_ms_cmd:
+0x6776 021233 call get_rfcomm_param_modem_status 
+0x6777 021234 fetch 1 ,mem_ms_channel 
+0x6778 021235 fetcht 1 ,mem_remote_spp_channel 
+0x6779 021236 isub temp ,null 
+0x677a 021237 branch parse_dlci0_reconn_uih_ms_cmd_spp ,zero 
+0x677b 021238 branch assert 
+0x677c 021239 branch rfcomm_rx_process_end 
+:      021240 parse_dlci0_reconn_uih_ms_cmd_spp:
+0x677d 021241 fetch 1 ,mem_spp_state 
+0x677e 021242 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+0x677f 021243 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+0x6780 021244 store 1 ,mem_spp_state 
+0x6781 021245 fetcht 1 ,mem_pn_dlci 
+0x6782 021246 lshift2 temp ,temp 
+0x6783 021247 or_into 3 ,temp 
+0x6784 021248 call rfcomm_send_modem_status_res 
+0x6785 021249 branch rfcomm_rx_process_end 
+:      021251 parse_dlci0_reconn_uih_ms_res:
+0x6786 021252 call get_rfcomm_param_modem_status 
+0x6787 021253 fetch 1 ,mem_ms_channel 
+0x6788 021254 fetcht 1 ,mem_remote_spp_channel 
+0x6789 021255 isub temp ,null 
+0x678a 021256 branch parse_dlci0_reconn_uih_ms_res_spp ,zero 
+0x678b 021257 branch assert 
+:      021258 parse_dlci0_reconn_uih_ms_res_spp:
+0x678c 021259 fetch 1 ,mem_spp_state 
+0x678d 021260 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+0x678e 021261 store 1 ,mem_spp_state 
+0x678f 021262 branch rfcomm_rx_process_end 
+:      021264 parse_uih_reconn:
+0x6790 021265 fetch 1 ,mem_current_channel 
+0x6791 021266 fetcht 1 ,mem_remote_spp_channel 
+0x6792 021267 isub temp ,null 
+0x6793 021268 branch parse_uih_reconn_spp ,zero 
+0x6794 021269 branch assert 
+0x6795 021270 branch rfcomm_rx_process_end 
+:      021272 parse_uih_reconn_spp:
+0x6796 021273 fetch 1 ,mem_current_frame_type 
+0x6797 021274 beq rfcomm_frame_type_ua ,parse_uih_reconn_spp_ua 
+0x6798 021275 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+0x6799 021276 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+0x679a 021277 beq rfcomm_frame_type_disconn ,parse_uih_reconn_spp_disconn 
+:      021278 parse_uih_reconn_spp_ua:
+0x679b 021279 fetch 1 ,mem_spp_state 
+0x679c 021280 set1 rfcomm_channel_state_ua ,pdata 
+0x679d 021281 store 1 ,mem_spp_state 
+0x679e 021282 branch rfcomm_rx_process_end 
+:      021283 parse_uih_reconn_spp_sabm:
+0x679f 021284 branch parse_uih_reconn_spp_sabm 
+:      021285 parse_uih_reconn_spp_disconn:
+0x67a0 021286 branch parse_uih_rp_spp_disconn 
+:      021287 rfcomm_rx_process_end:
+0x67a1 021288 rtn 
+:      021290 rfcomm_send_more_pkt:
+0x67a2 021291 fetch 1 ,mem_rfcomm_send_more_pkt 
+0x67a3 021292 rtn blank 
+0x67a4 021293 beq more_pkt_msc_cmd_spp ,rfcomm_send_more_pkt_msc_cmd_spp 
+0x67a5 021294 branch assert 
+:      021296 rfcomm_send_more_pkt_msc_cmd_spp:
+0x67a6 021297 jam 0 ,mem_rfcomm_send_more_pkt 
+0x67a7 021298 call l2cap_malloc_rfcomm_channel 
+0x67a8 021299 arg spp_slave_channel ,temp 
+0x67a9 021300 fetcht 1 ,mem_pn_dlci 
+0x67aa 021301 lshift2 temp ,temp 
+:      021302 rfcomm_send_more_pkt_msc_cmd_spp0:
+0x67ab 021303 or_into 0x03 ,temp 
+0x67ac 021304 arg 0xaa ,rega 
+0x67ad 021305 call rfcomm_send_modem_status_cmd 
+0x67ae 021306 call l2cap_get_rfcomm_tx_buff 
+0x67af 021307 copy contw ,contr 
+0x67b0 021308 ifetch 2 ,contr 
+0x67b1 021309 branch assert ,blank 
+0x67b2 021310 rtn 
+:      021312 rfcomm_send_sabm:
+0x67b3 021313 call l2cap_get_rfcomm_tx_buff 
+0x67b4 021314 setarg 0x0004 
+0x67b5 021315 istore 2 ,contw 
+0x67b6 021316 fetch 2 ,mem_rfcomm_remote_cid 
+0x67b7 021317 istore 2 ,contw 
+0x67b8 021318 fetch 1 ,mem_current_adss 
+0x67b9 021319 istore 1 ,contw 
+0x67ba 021320 set1 mark_ext_patch ,mark 
+0x67bb 021321 bpatch patch33_7 ,mem_patch33 
+0x67bc 021322 setarg 0x013f 
+0x67bd 021323 istore 2 ,contw 
+0x67be 021324 fetch 1 ,mem_current_fcs 
+0x67bf 021325 istore 1 ,contw 
+0x67c0 021326 rtn 
+:      021327 rfcomm_send_ua:
+0x67c1 021328 call l2cap_malloc_rfcomm_channel 
+0x67c2 021329 call l2cap_get_rfcomm_tx_buff 
+0x67c3 021330 setarg 0x0004 
+0x67c4 021331 istore 2 ,contw 
+0x67c5 021332 fetch 2 ,mem_rfcomm_remote_cid 
+0x67c6 021333 istore 2 ,contw 
+0x67c7 021334 fetch 1 ,mem_current_adss 
+0x67c8 021335 istore 1 ,contw 
+0x67c9 021336 set1 mark_ext_patch ,mark 
+0x67ca 021337 bpatch patch34_0 ,mem_patch34 
+0x67cb 021338 setarg 0x0173 
+0x67cc 021339 istore 2 ,contw 
+0x67cd 021340 fetch 1 ,mem_current_fcs 
+0x67ce 021341 istore 1 ,contw 
+0x67cf 021342 rtn 
+:      021343 rfcomm_send_param_neg_cmd:
+0x67d0 021344 call l2cap_get_rfcomm_tx_buff 
+0x67d1 021345 setarg 0x000e 
+0x67d2 021346 istore 2 ,contw 
+0x67d3 021347 fetch 2 ,mem_rfcomm_remote_cid 
+0x67d4 021348 istore 2 ,contw 
+0x67d5 021349 fetch 1 ,mem_rfcomm_initiator 
+0x67d6 021350 lshift pdata ,pdata 
+0x67d7 021351 set1 0 ,pdata 
+0x67d8 021352 istore 1 ,contw 
+0x67d9 021353 set1 mark_ext_patch ,mark 
+0x67da 021354 bpatch patch34_1 ,mem_patch34 
+0x67db 021355 setarg 0x15ef 
+0x67dc 021356 istore 2 ,contw 
+0x67dd 021357 setarg 0x1183 
+0x67de 021358 istore 2 ,contw 
+0x67df 021359 copy temp ,pdata 
+0x67e0 021360 istore 1 ,contw 
+0x67e1 021361 setarg 0x0000f0 
+0x67e2 021362 istore 3 ,contw 
+0x67e3 021363 setarg rfcomm_max_frame_size 
+0x67e4 021364 istore 2 ,contw 
+0x67e5 021365 setarg 0 
+0x67e6 021366 istore 1 ,contw 
+0x67e7 021367 setarg 0x01 
+0x67e8 021368 istore 1 ,contw 
+0x67e9 021369 call rfcomm_calculate_fcs_dlci0 
+0x67ea 021370 istore 1 ,contw 
+0x67eb 021371 jam 0x10 ,mem_credit_given 
+0x67ec 021372 rtn 
+:      021373 rfcomm_send_param_neg_res:
+0x67ed 021374 call l2cap_malloc_rfcomm_channel 
+0x67ee 021375 call l2cap_get_rfcomm_tx_buff 
+0x67ef 021376 setarg 0x000e 
+0x67f0 021377 istore 2 ,contw 
+0x67f1 021378 fetch 2 ,mem_rfcomm_remote_cid 
+0x67f2 021379 istore 2 ,contw 
+0x67f3 021380 fetch 1 ,mem_rfcomm_initiator 
+0x67f4 021381 lshift pdata ,pdata 
+0x67f5 021382 set1 0 ,pdata 
+0x67f6 021383 istore 1 ,contw 
+0x67f7 021384 set1 mark_ext_patch ,mark 
+0x67f8 021385 bpatch patch34_2 ,mem_patch34 
+0x67f9 021386 setarg 0x15ef 
+0x67fa 021387 istore 2 ,contw 
+0x67fb 021388 setarg 0x1181 
+0x67fc 021389 istore 2 ,contw 
+0x67fd 021390 fetch 1 ,mem_pn_dlci 
+0x67fe 021391 istore 1 ,contw 
+0x67ff 021392 setarg 0x0000e0 
+0x6800 021393 istore 3 ,contw 
+0x6801 021394 fetch 2 ,mem_rfcomm_max_frame_size 
+0x6802 021395 istore 2 ,contw 
+0x6803 021396 setarg 0x00 
+0x6804 021397 istore 1 ,contw 
+0x6805 021398 fetch 1 ,mem_rfcomm_credit_init_data 
+0x6806 021399 istore 1 ,contw 
+0x6807 021400 call rfcomm_calculate_fcs_dlci0 
+0x6808 021401 istore 1 ,contw 
+0x6809 021402 rtn 
+:      021403 rfcomm_send_modem_status_cmd:
+0x680a 021404 call l2cap_get_rfcomm_tx_buff 
+0x680b 021405 setarg 0x0008 
+0x680c 021406 istore 2 ,contw 
+0x680d 021407 fetch 2 ,mem_rfcomm_remote_cid 
+0x680e 021408 istore 2 ,contw 
+0x680f 021409 fetch 1 ,mem_rfcomm_initiator 
+0x6810 021410 lshift pdata ,pdata 
+0x6811 021411 set1 0 ,pdata 
+0x6812 021412 istore 1 ,contw 
+0x6813 021413 set1 mark_ext_patch ,mark 
+0x6814 021414 bpatch patch34_3 ,mem_patch34 
+0x6815 021415 setarg 0x09ef 
+0x6816 021416 istore 2 ,contw 
+0x6817 021417 setarg 0x05e3 
+0x6818 021418 istore 2 ,contw 
+0x6819 021419 copy temp ,pdata 
+0x681a 021420 istore 1 ,contw 
+0x681b 021421 setarg 0x8d 
+0x681c 021422 istore 1 ,contw 
+0x681d 021423 call rfcomm_calculate_fcs_dlci0 
+0x681e 021424 istore 1 ,contw 
+0x681f 021425 rtn 
+:      021427 rfcomm_send_modem_status_res:
+0x6820 021428 call l2cap_malloc_rfcomm_channel 
+0x6821 021429 call l2cap_get_rfcomm_tx_buff 
+0x6822 021430 setarg 0x0008 
+0x6823 021431 istore 2 ,contw 
+0x6824 021432 fetch 2 ,mem_rfcomm_remote_cid 
+0x6825 021433 istore 2 ,contw 
+0x6826 021434 copy temp ,timeup 
+0x6827 021435 fetch 1 ,mem_rfcomm_initiator 
+0x6828 021436 lshift pdata ,pdata 
+0x6829 021437 set1 0 ,pdata 
+0x682a 021438 istore 1 ,contw 
+0x682b 021439 set1 mark_ext_patch ,mark 
+0x682c 021440 bpatch patch34_4 ,mem_patch34 
+0x682d 021441 setarg 0x09ef 
+0x682e 021442 istore 2 ,contw 
+0x682f 021443 setarg 0x05e1 
+0x6830 021444 istore 2 ,contw 
+0x6831 021445 copy timeup ,pdata 
+0x6832 021446 istore 1 ,contw 
+0x6833 021447 setarg 0x8d 
+0x6834 021448 istore 1 ,contw 
+0x6835 021449 call rfcomm_calculate_fcs_dlci0 
+0x6836 021450 istore 1 ,contw 
+0x6837 021451 rtn 
+:      021453 rfcomm_send_uih_without_payload:
+0x6838 021454 set1 mark_ext_patch ,mark 
+0x6839 021455 bpatch patch34_5 ,mem_patch34 
+0x683a 021456 fetch 1 ,mem_credit_given 
+0x683b 021457 rtn blank 
+0x683c 021458 hfetch 2 ,core_uart_rxitems 
+0x683d 021459 nrtn blank 
+0x683e 021460 copy rega ,pdata 
+0x683f 021461 store 1 ,mem_pdatatemp + 1 
+0x6840 021462 storet 1 ,mem_pdatatemp 
+0x6841 021463 call l2cap_malloc_is_fifo_full 
+0x6842 021464 nrtn blank 
+0x6843 021465 call l2cap_malloc_rfcomm_channel 
+0x6844 021466 call l2cap_get_rfcomm_tx_buff 
+0x6845 021467 setarg 0x05 
+0x6846 021468 istore 2 ,contw 
+0x6847 021469 fetch 2 ,mem_rfcomm_remote_cid 
+0x6848 021470 istore 2 ,contw 
+0x6849 021471 fetch 1 ,mem_rfcomm_send_adss 
+0x684a 021472 istore 1 ,contw 
+0x684b 021473 setarg 0x01ff 
+0x684c 021474 istore 2 ,contw 
+0x684d 021475 fetch 1 ,mem_credit_given 
+0x684e 021476 istore 1 ,contw 
+0x684f 021477 fetch 1 ,mem_hiufcs_spp_wcredits 
+0x6850 021478 istore 1 ,contw 
+0x6851 021479 jam 0 ,mem_credit_given 
+0x6852 021480 rtn 
+:      021482 rfcomm_increase_credit_given:
+0x6853 021483 set1 mark_ext_patch ,mark 
+0x6854 021484 bpatch patch34_6 ,mem_patch34 
+0x6855 021485 fetch 1 ,mem_credit_flag 
+0x6856 021486 rtneq credit_enable 
+0x6857 021487 fetch 2 ,mem_current_length 
+0x6858 021488 rtn blank 
+0x6859 021489 fetch 1 ,mem_credit_given 
+0x685a 021490 increase 1 ,pdata 
+0x685b 021491 store 1 ,mem_credit_given 
+0x685c 021492 rtn 
+:      021494 spp_process_rx_data:
+0x685d 021495 fetch 2 ,mem_cb_receive_spp_data 
+0x685e 021496 branch callback_func 
+:      021498 spp_tx_rfcomm_packet:
+0x685f 021499 set1 mark_ext_patch ,mark 
+0x6860 021500 bpatch patch34_7 ,mem_patch34 
+0x6861 021502 fetch 1 ,mem_remote_credits 
+0x6862 021503 rtn blank 
+0x6863 021504 increase -1 ,pdata 
+0x6864 021505 store 1 ,mem_remote_credits 
+0x6865 021506 fetch 2 ,mem_pn_max_frame_size 
+0x6866 021507 fetcht 2 ,mem_current_packet_length 
+0x6867 021508 isub temp ,null 
+0x6868 021509 branch ssp_tx_rfcomm_from_uart ,positive 
+0x6869 021510 store 2 ,mem_current_packet_length 
+:      021511 ssp_tx_rfcomm_from_uart:
+0x686a 021512 fetch 1 ,mem_credit_given 
+0x686b 021513 branch ssp_tx_rfcomm_from_uart_without_credit ,blank 
+0x686c 021514 jam 1 ,mem_rfcomm_send_offset 
+0x686d 021515 fetch 1 ,mem_hiufcs_spp_wcredits 
+0x686e 021516 store 1 ,mem_rfcomm_send_fcs 
+0x686f 021517 setarg rsp_rx_uih_wdata 
+0x6870 021518 store 1 ,mem_rfcomm_send_frame_type 
+0x6871 021519 branch ssp_tx_rfcomm_from_uart_common 
+:      021520 ssp_tx_rfcomm_from_uart_without_credit:
+0x6872 021521 jam 0 ,mem_rfcomm_send_offset 
+0x6873 021522 fetch 1 ,mem_hiufcs_spp 
+0x6874 021523 store 1 ,mem_rfcomm_send_fcs 
+0x6875 021524 setarg rsp_tx_uih 
+0x6876 021525 store 1 ,mem_rfcomm_send_frame_type 
+:      021526 ssp_tx_rfcomm_from_uart_common:
+0x6877 021527 set1 mark_ext_patch ,mark 
+0x6878 021528 bpatch patch35_0 ,mem_patch35 
+0x6879 021529 fetch 2 ,mem_current_packet_length 
+0x687a 021530 sub pdata ,127 ,null 
+0x687b 021531 branch ssp_tx_rfcomm_from_uart_common0 ,positive 
+0x687c 021532 fetch 1 ,mem_rfcomm_send_offset 
+0x687d 021533 increase 1 ,pdata 
+0x687e 021534 store 1 ,mem_rfcomm_send_offset 
+:      021535 ssp_tx_rfcomm_from_uart_common0:
+0x687f 021536 call get_rfcomm_snd_adss 
+0x6880 021537 fetch 2 ,mem_current_packet_length 
+0x6881 021538 increase 8 ,pdata 
+0x6882 021539 fetcht 1 ,mem_rfcomm_send_offset 
+0x6883 021540 iadd temp ,rega 
+0x6884 021542 call l2cap_malloc 
+0x6885 021543 store 2 ,mem_rfcomm_tx_buff_ptr 
+0x6886 021544 increase 4 ,pdata 
+0x6887 021545 store 2 ,mem_rfcomm_tx_payload_ptr 
+0x6888 021546 copy pdata ,contw 
+0x6889 021547 fetch 1 ,mem_rfcomm_send_adss 
+0x688a 021548 istore 1 ,contw 
+0x688b 021549 fetch 1 ,mem_rfcomm_send_frame_type 
+0x688c 021550 istore 1 ,contw 
+0x688d 021551 call ssp_tx_write_length 
+0x688e 021552 call ssp_tx_write_given_credit 
+0x688f 021553 set1 mark_ext_patch ,mark 
+0x6890 021554 bpatch patch35_1 ,mem_patch35 
+0x6891 021555 fetch 2 ,mem_nl_rx_data_src 
+0x6892 021556 copy pdata ,contru 
+0x6893 021557 fetch 2 ,mem_current_packet_length 
+0x6894 021558 copy pdata ,loopcnt 
+0x6895 021559 call uart_copy_rx_bytes_fast 
+0x6896 021560 copy contw ,temp 
+0x6897 021561 copy contru ,pdata 
+0x6898 021562 store 2 ,mem_nl_rx_data_src 
+0x6899 021563 copy temp ,contw 
+0x689a 021564 fetch 1 ,mem_rfcomm_send_fcs 
+0x689b 021565 istore 1 ,contw 
+0x689c 021566 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+0x689d 021567 copy pdata ,contw 
+0x689e 021568 fetch 2 ,mem_current_packet_length 
+0x689f 021569 fetcht 1 ,mem_rfcomm_send_offset 
+0x68a0 021570 iadd temp ,pdata 
+0x68a1 021571 increase 4 ,pdata 
+0x68a2 021572 istore 2 ,contw 
+0x68a3 021573 fetch 2 ,mem_rfcomm_remote_cid 
+0x68a4 021574 istore 2 ,contw 
+0x68a5 021575 jam 0 ,mem_credit_given 
+0x68a6 021576 fetch 2 ,mem_nl_rx_len_all 
+0x68a7 021577 beq 0 ,module_hci_command_tx_spp_tx_complete 
+0x68a8 021578 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x68a9 021579 rtn 
+:      021581 ssp_tx_write_length:
+0x68aa 021582 set1 mark_ext_patch ,mark 
+0x68ab 021583 bpatch patch35_2 ,mem_patch35 
+0x68ac 021584 fetch 2 ,mem_current_packet_length 
+0x68ad 021585 sub pdata ,0x7f ,null 
+0x68ae 021586 nbranch ssp_tx_write_long_packet ,positive 
+0x68af 021587 lshift pdata ,pdata 
+0x68b0 021588 set1 0 ,pdata 
+0x68b1 021589 istore 1 ,contw 
+0x68b2 021590 rtn 
+:      021591 ssp_tx_write_long_packet:
+0x68b3 021592 fetch 2 ,mem_current_packet_length 
+0x68b4 021593 rshift3 pdata ,pdata 
+0x68b5 021594 rshift4 pdata ,temp 
+0x68b6 021595 and_into 0x7f ,pdata 
+0x68b7 021596 lshift pdata ,pdata 
+0x68b8 021597 set0 0 ,pdata 
+0x68b9 021598 istore 1 ,contw 
+0x68ba 021599 istoret 1 ,contw 
+0x68bb 021600 rtn 
+:      021601 ssp_tx_write_given_credit:
+0x68bc 021602 fetch 1 ,mem_credit_given 
+0x68bd 021603 rtn blank 
+0x68be 021604 istore 1 ,contw 
+0x68bf 021605 rtn 
+:      021610 scheduler_process:
+0x68c0 021611 set1 mark_ext_patch ,mark 
+0x68c1 021612 bpatch patch35_3 ,mem_patch35 
+0x68c2 021613 call check_51cmd 
+0x68c3 021614 call app_process_bb_event 
+0x68c4 021615 call process_conn_sm 
+0x68c5 021617 set1 mark_ext_patch ,mark 
+0x68c6 021618 bpatch patch35_4 ,mem_patch35 
+0x68c7 021619 call sp_calc_sequence 
+0x68c8 021620 call simple_pairing_sequence 
+0x68c9 021621 call master_simple_paring_sequence 
+0x68ca 021624 call l2cap_malloc_is_fifo_full 
+0x68cb 021625 nrtn blank 
+0x68cc 021627 call l2cap_call_proc_sigal_pending 
+0x68cd 021628 call l2cap_malloc_is_fifo_full 
+0x68ce 021629 nrtn blank 
+0x68cf 021630 set1 mark_ext_patch ,mark 
+0x68d0 021631 bpatch patch35_5 ,mem_patch35 
+0x68d1 021633 call process_upper_sm 
+0x68d2 021634 call l2cap_send_config_req 
+0x68d3 021635 call rfcomm_send_more_pkt 
+:      021636 scheduler_process0:
+0x68d4 021637 call scheduler_tx_disconnect_hid 
+0x68d5 021638 set1 mark_ext_patch ,mark 
+0x68d6 021639 bpatch patch35_6 ,mem_patch35 
+0x68d7 021642 branch app_process_bt 
+:      021644 scheduler_tx_disconnect_hid:
+0x68d8 021645 fetch 1 ,mem_control_tasks 
+0x68d9 021646 bbit1 l2cap_disconnect_interrupt ,l2cap_disconnect_interrupt_req 
+0x68da 021647 bbit1 l2cap_disconnect_control ,l2cap_disconnect_control_req 
+0x68db 021648 rtn 
+:      021650 scheduler_tx_l2cap_pkt:
+0x68dc 021651 set1 mark_ext_patch ,mark 
+0x68dd 021652 bpatch patch35_7 ,mem_patch35 
+0x68de 021653 call l2cap_malloc_is_fifo_empty 
+0x68df 021654 rtn blank 
+0x68e0 021655 fetch 1 ,mem_op 
+0x68e1 021656 rtnbit1 op_txl2cap 
+0x68e2 021657 call l2cap_malloc_fifo_out 
+0x68e3 021658 store 2 ,mem_txptr 
+0x68e4 021659 copy pdata ,contr 
+0x68e5 021660 ifetch 2 ,contr 
+0x68e6 021661 increase 4 ,pdata 
+0x68e7 021662 store 2 ,mem_tx_len 
+0x68e8 021663 jam 6 ,mem_tx_lch 
+0x68e9 021664 set1 mark_ext_patch ,mark 
+0x68ea 021665 bpatch patch36_0 ,mem_patch36 
+0x68eb 021666 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x68ec 021667 branch scheduler_tx_l2cap_start_pkt ,blank 
+0x68ed 021668 fetch 1 ,mem_op 
+0x68ee 021669 rtnbit0 op_pkt_comp 
+0x68ef 021670 set0 op_pkt_comp ,pdata 
+0x68f0 021671 store 1 ,mem_op 
+0x68f1 021672 jam 5 ,mem_tx_lch 
+0x68f2 021673 fetcht 2 ,mem_l2cap_tx_multi_offset 
+0x68f3 021674 fetch 2 ,mem_txptr 
+0x68f4 021675 iadd temp ,pdata 
+0x68f5 021676 store 2 ,mem_txptr 
+0x68f6 021677 fetch 2 ,mem_tx_len 
+0x68f7 021678 isub temp ,pdata 
+0x68f8 021679 store 2 ,mem_tx_len 
+:      021680 scheduler_tx_l2cap_start_pkt:
+0x68f9 021681 set1 mark_ext_patch ,mark 
+0x68fa 021682 bpatch patch36_1 ,mem_patch36 
+0x68fb 021683 fetch 2 ,mem_tx_len 
+0x68fc 021684 branch assert ,blank 
+0x68fd 021685 arg l2cap_max_pkt_len ,temp 
+0x68fe 021686 isub temp ,pdata 
+0x68ff 021687 nbranch scheduler_tx_l2cap_last_pkt ,positive 
+0x6900 021688 set1 mark_ext_patch ,mark 
+0x6901 021689 bpatch patch36_2 ,mem_patch36 
+0x6902 021690 storet 2 ,mem_tx_len 
+0x6903 021691 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x6904 021692 iadd temp ,pdata 
+0x6905 021693 store 2 ,mem_l2cap_tx_multi_offset 
+0x6906 021694 branch scheduler_tx_l2cap_pkt_end 
+:      021695 scheduler_tx_l2cap_last_pkt:
+0x6907 021696 setarg 0 
+0x6908 021697 store 2 ,mem_l2cap_tx_multi_offset 
+:      021698 scheduler_tx_l2cap_pkt_end:
+0x6909 021699 fetch 1 ,mem_op 
+0x690a 021700 set1 op_txl2cap ,pdata 
+0x690b 021701 store 1 ,mem_op 
+0x690c 021702 rtn 
+:      021704 scheduler_start_upper_sm:
+0x690d 021705 fetch 1 ,mem_ui_profile_supported 
+0x690e 021706 bbit1 support_hid ,scheduler_start_upper_sm_hid 
+0x690f 021707 jam uppersm_reconn_sdp_conn ,mem_upper_sm_reconn 
+0x6910 021708 rtn 
+:      021709 scheduler_start_upper_sm_hid:
+0x6911 021710 jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+0x6912 021711 rtn 
+:      021713 process_upper_sm:
+0x6913 021714 fetch 1 ,memui_reconnect_mode 
+0x6914 021715 nbranch process_upper_sm_reconn ,blank 
+:      021716 process_upper_sm_remote_page:
+0x6915 021717 fetch 1 ,mem_upper_sm_remote_page 
+0x6916 021719 rtn blank 
+0x6917 021721 jam 0 ,mem_upper_sm_remote_page 
+:      021722 process_upper_sm_rp_wait:
+0x6918 021723 rtn 
+:      021726 process_upper_sm_reconn:
+0x6919 021727 set1 mark_ext_patch ,mark 
+0x691a 021728 bpatch patch36_3 ,mem_patch36 
+0x691b 021729 fetch 1 ,mem_upper_sm_reconn 
+0x691c 021730 rtn blank 
+0x691d 021731 beq uppersm_reconn_sdp_conn ,process_upper_sm_reconn_sdp_conn 
+0x691e 021732 beq uppersm_reconn_sdp_conn_wait ,process_upper_sm_reconn_sdp_conn_wait 
+0x691f 021733 beq uppersm_reconn_sdp_cfg ,process_upper_sm_reconn_sdp_cfg 
+0x6920 021734 beq uppersm_reconn_sdp_cfg_wait ,process_upper_sm_reconn_sdp_cfg_wait 
+0x6921 021735 beq uppersm_reconn_ss_spp ,process_upper_sm_reconn_ss_spp 
+0x6922 021736 beq uppersm_reconn_ss_spp_wait ,process_upper_sm_reconn_ss_spp_wait 
+0x6923 021737 beq uppersm_reconn_sdp_disconn ,process_upper_sm_reconn_sdp_disconn 
+0x6924 021738 beq uppersm_reconn_sdp_disconn_wait ,process_upper_sm_reconn_sdp_disconn_wait 
+0x6925 021739 beq uppersm_reconn_hid_ctrl_conn ,process_upper_sm_reconn_hid_ctrl_conn 
+0x6926 021740 beq uppersm_reconn_hid_ctrl_conn_wait ,process_upper_sm_reconn_hid_ctrl_conn_wait 
+0x6927 021741 beq uppersm_reconn_hid_ctrl_cfg ,process_upper_sm_reconn_hid_ctrl_cfg 
+0x6928 021742 beq uppersm_reconn_hid_ctrl_cfg_wait ,process_upper_sm_reconn_hid_ctrl_cfg_wait 
+0x6929 021743 beq uppersm_reconn_hid_int_conn ,process_upper_sm_reconn_hid_int_conn 
+0x692a 021744 beq uppersm_reconn_hid_int_conn_wait ,process_upper_sm_reconn_hid_int_conn_wait 
+0x692b 021745 beq uppersm_reconn_hid_int_cfg ,process_upper_sm_reconn_hid_int_cfg 
+0x692c 021746 beq uppersm_reconn_hid_int_cfg_wait ,process_upper_sm_reconn_hid_int_cfg_wait 
+0x692d 021747 beq uppersm_reconn_rfcomm_conn ,process_upper_sm_reconn_rfcomm_conn 
+0x692e 021748 beq uppersm_reconn_rfcomm_conn_wait ,process_upper_sm_reconn_rfcomm_conn_wait 
+0x692f 021749 beq uppersm_reconn_rfcomm_cfg ,process_upper_sm_reconn_rfcomm_cfg 
+0x6930 021750 beq uppersm_reconn_rfcomm_cfg_wait ,process_upper_sm_reconn_rfcomm_cfg_wait 
+0x6931 021751 beq uppersm_reconn_rfcomm_sabm ,process_upper_sm_reconn_rfcomm_sabm 
+0x6932 021752 beq uppersm_reconn_rfcomm_sabm_wait ,process_upper_sm_reconn_rfcomm_sabm_wait 
+0x6933 021753 beq uppersm_reconn_spp_cmd_pn ,process_upper_sm_reconn_spp_cmd_pn 
+0x6934 021754 beq uppersm_reconn_spp_cmd_pn_wait ,process_upper_sm_reconn_spp_cmd_pn_wait 
+0x6935 021755 beq uppersm_reconn_spp_sabm ,process_upper_sm_reconn_spp_sabm 
+0x6936 021756 beq uppersm_reconn_spp_sabm_wait ,process_upper_sm_reconn_spp_sabm_wait 
+0x6937 021757 beq uppersm_reconn_spp_cmd_ms ,process_upper_sm_reconn_spp_cmd_ms 
+0x6938 021758 beq uppersm_reconn_spp_cmd_ms_wait ,process_upper_sm_reconn_spp_cmd_ms_wait 
+:      021759 process_upper_sm_reconn_wait:
+0x6939 021760 rtn 
+:      021761 process_upper_sm_reconn_sdp_conn:
+0x693a 021762 call upper_sm_send_sdp_conn 
+0x693b 021763 jam uppersm_reconn_sdp_conn_wait ,mem_upper_sm_reconn 
+0x693c 021764 fetch 1 ,mem_sdp_state 
+0x693d 021765 set1 l2cap_channel_state_conn_req ,pdata 
+0x693e 021766 store 1 ,mem_sdp_state 
+0x693f 021767 rtn 
+:      021768 process_upper_sm_reconn_sdp_cfg:
+0x6940 021769 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+0x6941 021770 fetch 1 ,mem_sdp_state 
+0x6942 021771 rtnbit1 l2cap_channel_state_snd_cfg_req 
+0x6943 021772 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+0x6944 021773 call upper_sm_send_sdp_cfg 
+0x6945 021774 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+0x6946 021775 fetch 1 ,mem_sdp_state 
+0x6947 021776 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6948 021777 store 1 ,mem_sdp_state 
+0x6949 021778 rtn 
+:      021779 process_upper_sm_reconn_ss_spp:
+0x694a 021780 call l2cap_malloc_is_fifo_empty 
+0x694b 021781 nrtn blank 
+0x694c 021782 call upper_sm_send_ss_spp 
+0x694d 021783 jam uppersm_reconn_ss_spp_wait ,mem_upper_sm_reconn 
+0x694e 021784 rtn 
+:      021785 process_upper_sm_reconn_sdp_disconn:
+0x694f 021786 call upper_sm_send_sdp_disconn 
+0x6950 021787 jam uppersm_reconn_sdp_disconn_wait ,mem_upper_sm_reconn 
+0x6951 021788 rtn 
+:      021789 process_upper_sm_reconn_hid_ctrl_conn:
+0x6952 021790 call upper_sm_send_hid_ctrl_conn 
+0x6953 021791 jam uppersm_reconn_hid_ctrl_conn_wait ,mem_upper_sm_reconn 
+0x6954 021792 fetch 1 ,mem_hid_control_state 
+0x6955 021793 set1 l2cap_channel_state_conn_req ,pdata 
+0x6956 021794 store 1 ,mem_hid_control_state 
+0x6957 021795 rtn 
+:      021796 process_upper_sm_reconn_hid_ctrl_cfg:
+0x6958 021797 call upper_sm_send_hid_ctrl_cfg 
+0x6959 021798 jam uppersm_reconn_hid_ctrl_cfg_wait ,mem_upper_sm_reconn 
+0x695a 021799 fetch 1 ,mem_hid_control_state 
+0x695b 021800 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x695c 021801 store 1 ,mem_hid_control_state 
+0x695d 021802 rtn 
+:      021803 process_upper_sm_reconn_hid_int_conn:
+0x695e 021804 call upper_sm_send_hid_int_conn 
+0x695f 021805 jam uppersm_reconn_hid_int_conn_wait ,mem_upper_sm_reconn 
+0x6960 021806 fetch 1 ,mem_hid_interrupt_state 
+0x6961 021807 set1 l2cap_channel_state_conn_req ,pdata 
+0x6962 021808 store 1 ,mem_hid_interrupt_state 
+0x6963 021809 rtn 
+:      021810 process_upper_sm_reconn_hid_int_cfg:
+0x6964 021811 call upper_sm_send_hid_int_cfg 
+0x6965 021812 jam uppersm_reconn_hid_int_cfg_wait ,mem_upper_sm_reconn 
+0x6966 021813 fetch 1 ,mem_hid_interrupt_state 
+0x6967 021814 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6968 021815 store 1 ,mem_hid_interrupt_state 
+0x6969 021816 rtn 
+:      021817 process_upper_sm_reconn_rfcomm_conn:
+0x696a 021818 call upper_sm_send_rfcomm_conn 
+0x696b 021819 jam uppersm_reconn_rfcomm_conn_wait ,mem_upper_sm_reconn 
+0x696c 021820 fetch 1 ,mem_rfcomm_state 
+0x696d 021821 set1 l2cap_channel_state_conn_req ,pdata 
+0x696e 021822 store 1 ,mem_rfcomm_state 
+0x696f 021823 rtn 
+:      021824 process_upper_sm_reconn_rfcomm_cfg:
+0x6970 021825 call upper_sm_send_rfcomm_cfg 
+0x6971 021826 jam uppersm_reconn_rfcomm_cfg_wait ,mem_upper_sm_reconn 
+0x6972 021827 fetch 1 ,mem_rfcomm_state 
+0x6973 021828 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6974 021829 store 1 ,mem_rfcomm_state 
+0x6975 021830 rtn 
+:      021831 process_upper_sm_reconn_rfcomm_sabm:
+0x6976 021832 call upper_sm_send_rfcomm_sabm 
+0x6977 021833 jam uppersm_reconn_rfcomm_sabm_wait ,mem_upper_sm_reconn 
+0x6978 021834 fetch 1 ,mem_rfcomm_state 
+0x6979 021835 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+0x697a 021836 store 1 ,mem_rfcomm_state 
+0x697b 021837 rtn 
+:      021838 process_upper_sm_reconn_spp_cmd_pn:
+0x697c 021839 call upper_sm_send_spp_cmd_pn 
+0x697d 021840 fetch 1 ,mem_spp_state 
+0x697e 021841 set1 rfcomm_channel_state_pn_cmd 
+0x697f 021842 store 1 ,mem_spp_state 
+0x6980 021843 jam uppersm_reconn_spp_cmd_pn_wait ,mem_upper_sm_reconn 
+0x6981 021844 rtn 
+:      021845 process_upper_sm_reconn_spp_sabm:
+0x6982 021846 call upper_sm_send_spp_sabm 
+0x6983 021847 fetch 1 ,mem_spp_state 
+0x6984 021848 set1 rfcomm_channel_state_sabm 
+0x6985 021849 store 1 ,mem_spp_state 
+0x6986 021850 jam uppersm_reconn_spp_sabm_wait ,mem_upper_sm_reconn 
+0x6987 021851 fetch 1 ,mem_remote_spp_channel 
+0x6988 021852 lshift3 pdata ,pdata 
+0x6989 021853 or_into 3 ,pdata 
+0x698a 021854 arg mem_hiufcs_spp ,temp 
+0x698b 021855 storet 2 ,mem_contw_temp 
+0x698c 021856 branch rfcomm_save_fcs_uih 
+:      021857 process_upper_sm_reconn_spp_cmd_ms:
+0x698d 021858 call upper_sm_send_spp_cmd_ms 
+0x698e 021859 fetch 1 ,mem_spp_state 
+0x698f 021860 set1 rfcomm_channel_state_snd_ms_cmd 
+0x6990 021861 store 1 ,mem_spp_state 
+0x6991 021862 jam uppersm_reconn_spp_cmd_ms_wait ,mem_upper_sm_reconn 
+0x6992 021863 rtn 
+:      021865 process_upper_sm_reconn_sdp_conn_wait:
+0x6993 021866 fetch 1 ,mem_sdp_state 
+0x6994 021867 rtnbit0 l2cap_channel_state_conn_res 
+0x6995 021868 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+0x6996 021869 branch process_upper_sm_reconn 
+:      021870 process_upper_sm_reconn_sdp_cfg_wait:
+0x6997 021871 fetch 1 ,mem_sdp_state 
+0x6998 021872 rtnne l2cap_channel_setup_complete 
+0x6999 021873 jam uppersm_reconn_ss_spp ,mem_upper_sm_reconn 
+:      021874 process_upper_sm_reconn_ss_spp_wait:
+0x699a 021875 fetch 1 ,mem_message_to_uppersm 
+0x699b 021876 rtnne recieve_ss_reasult_hf 
+0x699c 021877 jam 0 ,mem_message_to_uppersm 
+0x699d 021878 jam uppersm_reconn_sdp_disconn ,mem_upper_sm_reconn 
+0x699e 021879 branch process_upper_sm_reconn 
+:      021880 process_upper_sm_reconn_sdp_disconn_wait:
+0x699f 021881 fetch 1 ,mem_sdp_state 
+0x69a0 021882 nrtn blank 
+0x69a1 021883 fetch 1 ,mem_ui_profile_supported 
+0x69a2 021884 bbit1 support_hid ,process_upper_sm_reconn_setup_hid 
+0x69a3 021885 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+0x69a4 021886 branch process_upper_sm_reconn_termination 
+:      021887 process_upper_sm_reconn_hid_ctrl_conn_wait:
+0x69a5 021888 fetch 1 ,mem_hid_control_state 
+0x69a6 021889 rtnbit0 l2cap_channel_state_conn_res 
+0x69a7 021890 jam uppersm_reconn_hid_ctrl_cfg ,mem_upper_sm_reconn 
+0x69a8 021891 branch process_upper_sm_reconn 
+:      021892 process_upper_sm_reconn_hid_ctrl_cfg_wait:
+0x69a9 021893 fetch 1 ,mem_hid_control_state 
+0x69aa 021894 rtnne l2cap_channel_setup_complete 
+0x69ab 021895 jam uppersm_reconn_hid_int_conn ,mem_upper_sm_reconn 
+0x69ac 021896 branch process_upper_sm_reconn 
+:      021897 process_upper_sm_reconn_hid_int_conn_wait:
+0x69ad 021898 fetch 1 ,mem_hid_interrupt_state 
+0x69ae 021899 rtnbit0 l2cap_channel_state_conn_res 
+0x69af 021900 jam uppersm_reconn_hid_int_cfg ,mem_upper_sm_reconn 
+0x69b0 021901 branch process_upper_sm_reconn 
+:      021902 process_upper_sm_reconn_hid_int_cfg_wait:
+0x69b1 021903 fetch 1 ,mem_hid_interrupt_state 
+0x69b2 021904 rtnne l2cap_channel_setup_complete 
+0x69b3 021905 fetch 1 ,mem_ui_profile_supported 
+0x69b4 021906 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+0x69b5 021907 branch process_upper_sm_reconn_termination 
+:      021908 process_upper_sm_reconn_rfcomm_conn_wait:
+0x69b6 021909 fetch 1 ,mem_rfcomm_state 
+0x69b7 021910 rtnbit0 l2cap_channel_state_conn_res 
+0x69b8 021911 jam uppersm_reconn_rfcomm_cfg ,mem_upper_sm_reconn 
+0x69b9 021912 branch process_upper_sm_reconn 
+:      021913 process_upper_sm_reconn_rfcomm_cfg_wait:
+0x69ba 021914 fetch 1 ,mem_rfcomm_state 
+0x69bb 021915 rtnne l2cap_channel_setup_complete 
+0x69bc 021916 jam uppersm_reconn_rfcomm_sabm ,mem_upper_sm_reconn 
+0x69bd 021917 branch process_upper_sm_reconn 
+:      021918 process_upper_sm_reconn_rfcomm_sabm_wait:
+0x69be 021919 fetch 1 ,mem_rfcomm_state 
+0x69bf 021920 rtnne l2cap_channel_rfcomm_dlci0_opened 
+0x69c0 021921 fetch 1 ,mem_ui_profile_supported 
+0x69c1 021922 bbit1 support_spp ,process_upper_sm_reconn_setup_spp 
+0x69c2 021923 branch process_upper_sm_reconn_termination 
+:      021924 process_upper_sm_reconn_spp_cmd_pn_wait:
+0x69c3 021925 fetch 1 ,mem_spp_state 
+0x69c4 021926 rtnbit0 rfcomm_channel_state_pn_res 
+0x69c5 021927 jam uppersm_reconn_spp_sabm ,mem_upper_sm_reconn 
+0x69c6 021928 branch process_upper_sm_reconn 
+:      021929 process_upper_sm_reconn_spp_sabm_wait:
+0x69c7 021930 fetch 1 ,mem_spp_state 
+0x69c8 021931 rtnbit0 rfcomm_channel_state_ua 
+0x69c9 021932 jam uppersm_reconn_spp_cmd_ms ,mem_upper_sm_reconn 
+0x69ca 021933 branch process_upper_sm_reconn 
+:      021934 process_upper_sm_reconn_spp_cmd_ms_wait:
+0x69cb 021935 fetch 1 ,mem_spp_state 
+0x69cc 021936 rtnne rfcomm_channel_setup_complete 
+0x69cd 021937 branch process_upper_sm_reconn_termination 
+:      021939 process_upper_sm_reconn_setup_hid:
+0x69ce 021940 jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+0x69cf 021941 branch process_upper_sm_reconn 
+:      021943 process_upper_sm_reconn_setup_rfcomm:
+0x69d0 021944 jam uppersm_reconn_rfcomm_conn ,mem_upper_sm_reconn 
+0x69d1 021945 branch process_upper_sm_reconn 
+:      021946 process_upper_sm_reconn_setup_spp:
+0x69d2 021947 jam uppersm_reconn_spp_cmd_pn ,mem_upper_sm_reconn 
+0x69d3 021948 branch process_upper_sm_reconn 
+:      021952 process_upper_sm_reconn_termination:
+0x69d4 021953 jam 0 ,mem_upper_sm_reconn 
+0x69d5 021954 rtn 
+:      021955 upper_sm_send_sdp_conn:
+0x69d6 021956 set1 mark_ext_patch ,mark 
+0x69d7 021957 bpatch patch36_4 ,mem_patch36 
+0x69d8 021958 call l2cap_malloc_signal_channel 
+0x69d9 021959 setarg psm_sdp 
+0x69da 021960 copy pdata ,temp 
+0x69db 021961 setarg l2cap_sdp_channel 
+0x69dc 021962 copy pdata ,timeup 
+0x69dd 021963 branch ml2cap_send_signal_connect_req 
+:      021965 upper_sm_send_sdp_cfg:
+0x69de 021966 set1 mark_ext_patch ,mark 
+0x69df 021967 bpatch patch36_5 ,mem_patch36 
+0x69e0 021968 call l2cap_malloc_signal_channel 
+0x69e1 021969 fetch 2 ,mem_sdp_remote_cid 
+0x69e2 021970 copy pdata ,temp 
+0x69e3 021971 branch ml2cap_send_signal_config_req 
+:      021973 upper_sm_send_sdp_disconn:
+0x69e4 021974 set1 mark_ext_patch ,mark 
+0x69e5 021975 bpatch patch36_6 ,mem_patch36 
+0x69e6 021976 call l2cap_malloc_signal_channel 
+0x69e7 021977 fetch 2 ,mem_sdp_remote_cid 
+0x69e8 021978 copy pdata ,temp 
+0x69e9 021979 arg l2cap_sdp_channel ,timeup 
+0x69ea 021980 call ml2cap_send_signal_disconn_req 
+0x69eb 021981 fetch 1 ,mem_sdp_state 
+0x69ec 021982 set0 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x69ed 021983 store 1 ,mem_sdp_state 
+0x69ee 021984 rtn 
+:      021986 upper_sm_send_ss_spp:
+0x69ef 021987 set1 mark_ext_patch ,mark 
+0x69f0 021988 bpatch patch36_7 ,mem_patch36 
+0x69f1 021989 call l2cap_malloc_sdp_channel 
+0x69f2 021990 call sdp_send_spp_request 
+0x69f3 021991 branch msdp_send_req_done 
+:      021993 upper_sm_send_rfcomm_conn:
+0x69f4 021994 set1 mark_ext_patch ,mark 
+0x69f5 021995 bpatch patch37_0 ,mem_patch37 
+0x69f6 021996 call l2cap_malloc_signal_channel 
+0x69f7 021997 setarg psm_rfcomm 
+0x69f8 021998 copy pdata ,temp 
+0x69f9 021999 setarg l2cap_rfcomm_channel 
+0x69fa 022000 copy pdata ,timeup 
+0x69fb 022001 branch ml2cap_send_signal_connect_req 
+:      022003 upper_sm_send_rfcomm_cfg:
+0x69fc 022004 set1 mark_ext_patch ,mark 
+0x69fd 022005 bpatch patch37_1 ,mem_patch37 
+0x69fe 022006 call l2cap_malloc_signal_channel 
+0x69ff 022007 fetch 2 ,mem_rfcomm_remote_cid 
+0x6a00 022008 copy pdata ,temp 
+0x6a01 022009 branch ml2cap_send_signal_config_req 
+:      022011 upper_sm_send_hid_ctrl_conn:
+0x6a02 022012 set1 mark_ext_patch ,mark 
+0x6a03 022013 bpatch patch37_2 ,mem_patch37 
+0x6a04 022014 call l2cap_malloc_signal_channel 
+0x6a05 022015 setarg psm_hid_control 
+0x6a06 022016 copy pdata ,temp 
+0x6a07 022017 setarg l2cap_hid_control_channel 
+0x6a08 022018 copy pdata ,timeup 
+0x6a09 022019 branch ml2cap_send_signal_connect_req 
+:      022021 upper_sm_send_hid_ctrl_cfg:
+0x6a0a 022022 set1 mark_ext_patch ,mark 
+0x6a0b 022023 bpatch patch37_3 ,mem_patch37 
+0x6a0c 022024 call l2cap_malloc_signal_channel 
+0x6a0d 022025 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x6a0e 022026 copy pdata ,temp 
+0x6a0f 022027 branch ml2cap_send_signal_config_req 
+:      022029 upper_sm_send_hid_int_conn:
+0x6a10 022030 set1 mark_ext_patch ,mark 
+0x6a11 022031 bpatch patch37_4 ,mem_patch37 
+0x6a12 022032 call l2cap_malloc_signal_channel 
+0x6a13 022033 setarg psm_hid_interrupt 
+0x6a14 022034 copy pdata ,temp 
+0x6a15 022035 setarg l2cap_hid_interrupt_channel 
+0x6a16 022036 copy pdata ,timeup 
+0x6a17 022037 branch ml2cap_send_signal_connect_req 
+:      022039 upper_sm_send_hid_int_cfg:
+0x6a18 022040 set1 mark_ext_patch ,mark 
+0x6a19 022041 bpatch patch37_5 ,mem_patch37 
+0x6a1a 022042 call l2cap_malloc_signal_channel 
+0x6a1b 022043 fetch 2 ,mem_hid_int_remote_cid 
+0x6a1c 022044 copy pdata ,temp 
+0x6a1d 022045 branch ml2cap_send_signal_config_req 
+:      022047 upper_sm_send_rfcomm_sabm:
+0x6a1e 022048 set1 mark_ext_patch ,mark 
+0x6a1f 022049 bpatch patch37_6 ,mem_patch37 
+0x6a20 022050 call l2cap_malloc_rfcomm_channel 
+0x6a21 022052 jam 3 ,mem_current_adss 
+0x6a22 022053 jam 0x1c ,mem_current_fcs 
+0x6a23 022054 call rfcomm_send_sabm 
+0x6a24 022055 jam 1 ,mem_rfcomm_initiator 
+0x6a25 022056 rtn 
+:      022058 upper_sm_send_spp_cmd_pn:
+0x6a26 022059 set1 mark_ext_patch ,mark 
+0x6a27 022060 bpatch patch37_7 ,mem_patch37 
+0x6a28 022061 call l2cap_malloc_rfcomm_channel 
+0x6a29 022062 fetcht 1 ,mem_remote_spp_channel 
+0x6a2a 022063 call channel_to_dlci 
+0x6a2b 022064 storet 1 ,mem_pn_dlci 
+0x6a2c 022065 branch rfcomm_send_param_neg_cmd 
+:      022067 upper_sm_send_spp_sabm:
+0x6a2d 022068 set1 mark_ext_patch ,mark 
+0x6a2e 022069 bpatch patch38_0 ,mem_patch38 
+0x6a2f 022070 call l2cap_malloc_rfcomm_channel 
+0x6a30 022071 fetcht 1 ,mem_pn_dlci 
+0x6a31 022072 call dlci_to_address_cmd 
+0x6a32 022073 call rfcomm_calculate_fcs_sabm 
+0x6a33 022074 store 1 ,mem_current_fcs 
+0x6a34 022075 fetcht 1 ,mem_pn_dlci 
+0x6a35 022076 call dlci_to_address_cmd 
+0x6a36 022077 storet 1 ,mem_current_adss 
+0x6a37 022078 branch rfcomm_send_sabm 
+:      022080 upper_sm_send_spp_cmd_ms:
+0x6a38 022081 set1 mark_ext_patch ,mark 
+0x6a39 022082 bpatch patch38_1 ,mem_patch38 
+0x6a3a 022083 call l2cap_malloc_rfcomm_channel 
+0x6a3b 022084 fetcht 1 ,mem_pn_dlci 
+0x6a3c 022085 call dlci_to_address_cmd 
+0x6a3d 022086 branch rfcomm_send_modem_status_cmd 
+:      022099 sdp_process:
+0x6a3e 022100 set1 mark_ext_patch ,mark 
+0x6a3f 022101 bpatch patch38_2 ,mem_patch38 
+0x6a40 022102 fetch 2 ,mem_l2cap_payload_ptr 
+0x6a41 022103 iforce contr 
+0x6a42 022104 ifetch 1 ,contr 
+0x6a43 022105 copy pdata ,regb 
+0x6a44 022106 store 1 ,mem_sdp_pduid 
+0x6a45 022107 ifetch 2 ,contr 
+0x6a46 022108 store 2 ,mem_sdp_transactionid 
+0x6a47 022109 ifetch 1 ,contr 
+0x6a48 022110 lshift8 pdata ,timeup 
+0x6a49 022111 ifetch 1 ,contr 
+0x6a4a 022112 iadd timeup ,timeup 
+0x6a4b 022113 set1 mark_ext_patch ,mark 
+0x6a4c 022114 bpatch patch38_3 ,mem_patch38 
+0x6a4d 022115 deposit regb 
+0x6a4e 022116 beq 2 ,servicesearch_req 
+0x6a4f 022117 beq 4 ,patch_serviceattribute_req 
+0x6a50 022118 beq 6 ,patch_servicesearchattribute_req 
+0x6a51 022119 beq 7 ,servicesearchattribute_res 
+0x6a52 022120 branch sdp_insufficient_resource 
+:      022131 servicesearch_req:
+0x6a53 022132 call ask_serviceclassid 
+0x6a54 022133 compare 1 ,temp ,0xff 
+0x6a55 022134 branch empth_sa_rsp ,true 
+0x6a56 022135 compare 0xff ,temp ,0xff 
+0x6a57 022136 branch sdp_invalid_reqest_syntax ,true 
+0x6a58 022138 ifetch 2 ,contr 
+0x6a59 022139 store 2 ,mem_sdp_record_maxcnt 
+0x6a5a 022140 increase -2 ,timeup 
+0x6a5b 022142 increase -1 ,timeup 
+0x6a5c 022143 nbranch sdp_invalid_pdu_size ,zero 
+0x6a5d 022144 arg mem_uuid_search_pat ,timeup 
+0x6a5e 022145 ifetch 2 ,timeup 
+0x6a5f 022146 rtn blank 
+0x6a60 022147 increase 2 ,timeup 
+0x6a61 022148 call search_uuid 
+0x6a62 022149 call l2cap_get_sdp_tx_payload 
+0x6a63 022150 force 3 ,pdata 
+0x6a64 022151 istore 1 ,contw 
+0x6a65 022152 fetch 2 ,mem_sdp_transactionid 
+0x6a66 022153 istore 2 ,contw 
+0x6a67 022154 lshift2 queue ,pdata 
+0x6a68 022155 add pdata ,5 ,pdata 
+0x6a69 022156 add pdata ,5 ,regc 
+0x6a6a 022157 byteswap pdata ,pdata 
+0x6a6b 022158 istore 2 ,contw 
+0x6a6c 022159 deposit queue 
+0x6a6d 022160 byteswap pdata ,pdata 
+0x6a6e 022161 istore 2 ,contw 
+0x6a6f 022162 istore 2 ,contw 
+0x6a70 022163 arg mem_handle_list ,contr 
+0x6a71 022164 copy queue ,loopcnt 
+0x6a72 022165 branch servicesearch_req_blank ,zero 
+:      022166 servicesearch_req_loop:
+0x6a73 022167 ifetch 4 ,contr 
+0x6a74 022168 istore 4 ,contw 
+0x6a75 022169 loop servicesearch_req_loop 
+:      022170 servicesearch_req_blank:
+0x6a76 022171 force 0 ,pdata 
+0x6a77 022172 istore 1 ,contw 
+0x6a78 022173 deposit regc 
+0x6a79 022174 store 1 ,mem_sdp_tx_pkt_length 
+0x6a7a 022175 branch assert ,blank 
+0x6a7b 022176 rtn 
+:      022187 patch_serviceattribute_req:
+0x6a7c 022188 ifetch 4 ,contr 
+0x6a7d 022189 store 4 ,mem_sdp_record_handle 
+0x6a7e 022190 increase -4 ,timeup 
+0x6a7f 022191 iforce temp 
+0x6a80 022192 ifetch 2 ,contr 
+0x6a81 022193 byteswap pdata ,pdata 
+0x6a82 022194 increase -18 ,pdata 
+0x6a83 022195 store 2 ,mem_sdp_attribute_maxbyte 
+0x6a84 022196 increase -2 ,timeup 
+0x6a85 022197 call dataelementtype6 
+0x6a86 022198 branch sdp_invalid_reqest_syntax ,zero 
+0x6a87 022199 compare 5 ,rega ,0xff 
+0x6a88 022201 branch patch_serviceattribute_judge_wholerangle ,true 
+:      022202 patch_serviceattribute_isnot_wholerangle:
+0x6a89 022203 arg mem_attrib_list ,contw 
+0x6a8a 022204 force 0 ,queue 
+0x6a8b 022205 branch patch_serviceattribute_req_loop 
+:      022206 patch_serviceattribute_judge_wholerangle:
+0x6a8c 022207 ifetch 1 ,contr 
+0x6a8d 022208 bne 0xa ,sdp_invalid_reqest_syntax 
+0x6a8e 022209 ifetch 2 ,contr 
+0x6a8f 022210 nbranch patch_serviceattribute_judge_wholerangle_false1 ,blank 
+0x6a90 022211 ifetch 1 ,contr 
+0x6a91 022212 bne 0xff ,patch_serviceattribute_judge_wholerangle_false2 
+0x6a92 022213 ifetch 1 ,contr 
+0x6a93 022214 bne 0xff ,patch_serviceattribute_judge_wholerangle_false3 
+0x6a94 022215 increase -5 ,contr 
+0x6a95 022216 branch serviceattribute_req_all 
+:      022217 patch_serviceattribute_judge_wholerangle_false3:
+0x6a96 022218 increase -5 ,contr 
+0x6a97 022219 branch patch_serviceattribute_isnot_wholerangle 
+:      022220 patch_serviceattribute_judge_wholerangle_false2:
+0x6a98 022221 increase -4 ,contr 
+0x6a99 022222 branch patch_serviceattribute_isnot_wholerangle 
+:      022223 patch_serviceattribute_judge_wholerangle_false1:
+0x6a9a 022224 increase -3 ,contr 
+0x6a9b 022225 branch patch_serviceattribute_isnot_wholerangle 
+:      022226 patch_serviceattribute_req_loop:
+0x6a9c 022227 ifetch 1 ,contr 
+0x6a9d 022228 beq 0x09 ,patch_serviceattribute_req_one_id 
+0x6a9e 022229 beq 0x0a ,patch_serviceattribute_req_range_id 
+:      022230 patch_serviceattribute_req_range_id:
+0x6a9f 022231 ifetch 2 ,contr 
+0x6aa0 022232 istore 2 ,contw 
+0x6aa1 022233 increase 1 ,queue 
+0x6aa2 022234 byteswap pdata ,regb 
+0x6aa3 022235 ifetch 2 ,contr 
+0x6aa4 022236 byteswap pdata ,pdata 
+:      022237 patch_serviceattribute_req_range_id_increase:
+0x6aa5 022238 increase 1 ,regb 
+0x6aa6 022239 isub regb ,null 
+0x6aa7 022240 nbranch patch_serviceattribute_req_range_id_finish ,positive 
+0x6aa8 022241 copy pdata ,regc 
+0x6aa9 022242 byteswap regb ,pdata 
+0x6aaa 022243 istore 2 ,contw 
+0x6aab 022244 increase 1 ,queue 
+0x6aac 022245 copy regc ,pdata 
+0x6aad 022246 branch patch_serviceattribute_req_range_id_increase 
+:      022247 patch_serviceattribute_req_range_id_finish:
+0x6aae 022248 increase -5 ,timeup 
+0x6aaf 022249 increase -5 ,rega 
+0x6ab0 022250 branch patch_serviceattribute_req_check_next_id 
+:      022251 patch_serviceattribute_req_one_id:
+0x6ab1 022252 ifetch 2 ,contr 
+0x6ab2 022253 istore 2 ,contw 
+0x6ab3 022254 increase 1 ,queue 
+0x6ab4 022255 increase -3 ,timeup 
+0x6ab5 022256 increase -3 ,rega 
+:      022257 patch_serviceattribute_req_check_next_id:
+0x6ab6 022258 nbranch sdp_invalid_reqest_syntax ,positive 
+0x6ab7 022259 nbranch patch_serviceattribute_req_loop ,zero 
+0x6ab8 022260 increase -1 ,timeup 
+0x6ab9 022261 nbranch sdp_invalid_reqest_syntax ,zero 
+0x6aba 022263 call l2cap_get_sdp_tx_payload 
+0x6abb 022264 increase 10 ,contw 
+0x6abc 022265 arg mem_attrib_list ,rega 
+:      022266 patch_answer_handle_attributelist_next:
+0x6abd 022267 set1 mark_ext_patch ,mark 
+0x6abe 022268 bpatch patch38_4 ,mem_patch38 
+0x6abf 022269 copy queue ,pdata 
+0x6ac0 022270 branch answer_handle_attributelist_end ,blank 
+0x6ac1 022271 ifetch 2 ,rega 
+0x6ac2 022272 branch answer_handle_attributelist_end ,blank 
+0x6ac3 022273 iforce regb 
+0x6ac4 022274 fetch 4 ,mem_sdp_record_handle 
+0x6ac5 022275 iforce temp 
+0x6ac6 022276 call search_handle_attrib 
+0x6ac7 022277 branch patch_answer_handle_attributelist_notfound ,blank 
+0x6ac8 022278 increase -3 ,contr 
+0x6ac9 022279 ifetch 3 ,contr 
+0x6aca 022280 istore 3 ,contw 
+0x6acb 022281 call patch_sdp_data_len 
+0x6acc 022282 branch patch_answer_handle_attributelist_notfound ,blank 
+0x6acd 022283 iforce loopcnt 
+0x6ace 022284 call memcpy 
+:      022285 patch_answer_handle_attributelist_notfound:
+0x6acf 022286 increase 2 ,rega 
+0x6ad0 022287 increase -1 ,queue 
+0x6ad1 022288 branch patch_answer_handle_attributelist_next 
+:      022290 answer_handle_attributelist_end:
+0x6ad2 022291 set1 mark_ext_patch ,mark 
+0x6ad3 022292 bpatch patch38_5 ,mem_patch38 
+0x6ad4 022293 force 0 ,pdata 
+0x6ad5 022294 istore 1 ,contw 
+0x6ad6 022295 increase -1 ,contw 
+0x6ad7 022296 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6ad8 022297 add temp ,10 ,pdata 
+0x6ad9 022298 isub contw ,pdata 
+0x6ada 022299 sub pdata ,0 ,rega 
+0x6adb 022300 byteswap rega ,pdata 
+0x6adc 022301 add temp ,8 ,regb 
+0x6add 022302 istore 2 ,regb 
+0x6ade 022303 increase 3 ,rega 
+0x6adf 022304 byteswap rega ,pdata 
+0x6ae0 022305 add temp ,5 ,regb 
+0x6ae1 022306 istore 2 ,regb 
+0x6ae2 022307 increase 3 ,rega 
+0x6ae3 022308 byteswap rega ,pdata 
+0x6ae4 022309 add temp ,3 ,regb 
+0x6ae5 022310 istore 2 ,regb 
+0x6ae6 022311 increase 5 ,rega 
+0x6ae7 022312 copy rega ,pdata 
+0x6ae8 022313 store 2 ,mem_sdp_tx_pkt_length 
+0x6ae9 022314 setarg 0x36 
+0x6aea 022315 add temp ,7 ,regb 
+0x6aeb 022316 istore 1 ,regb 
+0x6aec 022317 setarg 5 
+0x6aed 022318 istore 1 ,temp 
+0x6aee 022319 fetch 2 ,mem_sdp_transactionid 
+0x6aef 022320 add temp ,1 ,regb 
+0x6af0 022321 istore 2 ,regb 
+0x6af1 022322 rtn 
+:      022323 serviceattribute_req_all:
+0x6af2 022324 ifetch 1 ,contr 
+0x6af3 022325 bne 0xa ,sdp_invalid_reqest_syntax 
+0x6af4 022326 ifetch 2 ,contr 
+0x6af5 022327 nbranch sdp_invalid_reqest_syntax ,blank 
+0x6af6 022328 ifetch 1 ,contr 
+0x6af7 022329 bne 0xff ,sdp_invalid_reqest_syntax 
+0x6af8 022330 ifetch 1 ,contr 
+0x6af9 022331 bne 0xff ,sdp_invalid_reqest_syntax 
+0x6afa 022332 increase -5 ,timeup 
+0x6afb 022333 ifetch 1 ,contr 
+0x6afc 022334 beq 0 ,continue_zero 
+0x6afd 022335 beq 1 ,continue_one_byte 
+0x6afe 022336 beq 2 ,continue_two_byte 
+:      022337 continue_zero:
+0x6aff 022338 store 2 ,mem_sdp_continue_byte 
+0x6b00 022339 increase -1 ,timeup 
+0x6b01 022340 branch continue_end 
+:      022341 continue_one_byte:
+0x6b02 022342 ifetch 1 ,contr 
+0x6b03 022343 store 2 ,mem_sdp_continue_byte 
+0x6b04 022344 increase -2 ,timeup 
+0x6b05 022345 branch continue_end 
+:      022346 continue_two_byte:
+0x6b06 022347 ifetch 2 ,contr 
+0x6b07 022348 byteswap pdata ,pdata 
+0x6b08 022349 store 2 ,mem_sdp_continue_byte 
+0x6b09 022350 increase -3 ,timeup 
+:      022351 continue_end:
+0x6b0a 022352 nbranch sdp_invalid_pdu_size ,zero 
+0x6b0b 022353 set1 mark_ext_patch ,mark 
+0x6b0c 022354 bpatch patch38_6 ,mem_patch38 
+0x6b0d 022355 call search_handle 
+0x6b0e 022356 nbranch sdp_invalid_service_record_handle ,zero 
+0x6b0f 022357 copy contr ,rega 
+0x6b10 022358 call l2cap_get_sdp_tx_payload 
+0x6b11 022359 copy rega ,contr 
+0x6b12 022360 increase 3 ,contw 
+0x6b13 022361 copy contr ,timeup 
+0x6b14 022362 call sdp_get_data 
+0x6b15 022363 copy pdata ,rega 
+0x6b16 022364 fetch 2 ,mem_sdp_continue_byte 
+0x6b17 022365 copy pdata ,regb 
+0x6b18 022366 copy rega ,pdata 
+0x6b19 022367 isub regb ,regb 
+0x6b1a 022368 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x6b1b 022369 isub regb ,null 
+0x6b1c 022370 nbranch fragment_sdp ,positive 
+0x6b1d 022372 disable user 
+0x6b1e 022373 fetch 2 ,mem_sdp_continue_byte 
+0x6b1f 022374 branch fisrt_fragment ,blank 
+0x6b20 022375 iadd timeup ,contr 
+0x6b21 022376 increase 3 ,regb 
+0x6b22 022377 copy regb ,loopcnt 
+0x6b23 022378 copy loopcnt ,pdata 
+0x6b24 022379 increase 3 ,pdata 
+0x6b25 022380 byteswap pdata ,pdata 
+0x6b26 022381 istore 2 ,contw 
+0x6b27 022382 copy loopcnt ,pdata 
+0x6b28 022383 byteswap pdata ,pdata 
+0x6b29 022384 istore 2 ,contw 
+0x6b2a 022385 branch answer_attributelist_full_loop 
+:      022386 fisrt_fragment:
+0x6b2b 022387 add rega ,6 ,loopcnt 
+0x6b2c 022388 branch parlength_continue_byte ,user 
+0x6b2d 022389 byteswap loopcnt ,pdata 
+0x6b2e 022390 branch parlength_continue_byte_end 
+:      022391 parlength_continue_byte:
+0x6b2f 022392 copy loopcnt ,pdata 
+0x6b30 022393 increase 2 ,pdata 
+0x6b31 022394 byteswap pdata ,pdata 
+:      022395 parlength_continue_byte_end:
+0x6b32 022396 istore 2 ,contw 
+0x6b33 022397 increase -3 ,loopcnt 
+0x6b34 022398 byteswap loopcnt ,pdata 
+0x6b35 022399 istore 2 ,contw 
+0x6b36 022400 copy timeup ,contr 
+0x6b37 022401 branch answer_attributelist_full_loop 
+:      022402 fragment_sdp:
+0x6b38 022403 enable user 
+0x6b39 022404 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x6b3a 022405 copy pdata ,rega 
+0x6b3b 022406 copy pdata ,loopcnt 
+0x6b3c 022407 fetch 2 ,mem_sdp_continue_byte 
+0x6b3d 022408 branch fisrt_fragment ,blank 
+0x6b3e 022409 iadd timeup ,contr 
+0x6b3f 022410 copy rega ,pdata 
+0x6b40 022411 increase 5 ,pdata 
+0x6b41 022412 byteswap pdata ,pdata 
+0x6b42 022413 istore 2 ,contw 
+0x6b43 022414 copy rega ,pdata 
+0x6b44 022415 byteswap pdata ,pdata 
+0x6b45 022416 istore 2 ,contw 
+:      022417 answer_attributelist_full_loop:
+0x6b46 022418 ifetch 1 ,contr 
+0x6b47 022419 istore 1 ,contw 
+0x6b48 022420 loop answer_attributelist_full_loop 
+0x6b49 022421 nbranch last_frag_continue ,user 
+0x6b4a 022422 force 2 ,pdata 
+0x6b4b 022423 istore 1 ,contw 
+0x6b4c 022424 copy contr ,pdata 
+0x6b4d 022425 isub timeup ,pdata 
+0x6b4e 022426 byteswap pdata ,pdata 
+0x6b4f 022427 istore 2 ,contw 
+0x6b50 022428 branch sdp_frag_end 
+:      022429 last_frag_continue:
+0x6b51 022430 force 0 ,pdata 
+0x6b52 022431 istore 1 ,contw 
+:      022432 sdp_frag_end:
+0x6b53 022433 fetch 2 ,mem_sdp_tx_payload_ptr 
+0x6b54 022434 isub contw ,pdata 
+0x6b55 022435 sub pdata ,0 ,pdata 
+0x6b56 022436 store 2 ,mem_sdp_tx_pkt_length 
+0x6b57 022437 call l2cap_get_sdp_tx_payload 
+0x6b58 022438 setarg 5 
+0x6b59 022439 istore 1 ,contw 
+0x6b5a 022440 fetch 2 ,mem_sdp_transactionid 
+0x6b5b 022441 istore 2 ,contw 
+0x6b5c 022442 rtn 
+:      022452 patch_servicesearchattribute_req:
+0x6b5d 022455 call ask_serviceclassid 
+0x6b5e 022456 compare 0xff ,temp ,0xff 
+0x6b5f 022457 branch patch_servicesearchattribute_req_all ,true 
+0x6b60 022458 ifetch 2 ,contr 
+0x6b61 022459 byteswap pdata ,pdata 
+0x6b62 022460 increase -18 ,pdata 
+0x6b63 022461 store 2 ,mem_sdp_attribute_maxbyte 
+0x6b64 022462 increase -2 ,timeup 
+0x6b65 022463 call dataelementtype6 
+0x6b66 022464 arg mem_attrib_list ,contw 
+0x6b67 022465 force 0 ,queue 
+:      022466 patch_servicesearchattribute_req_loop:
+0x6b68 022467 ifetch 3 ,contr 
+0x6b69 022468 bne 0x09 ,patch_servicesearchattribute_req_all 
+:      022469 patch_servicesearchattribute_req_uuid:
+0x6b6a 022470 rshift8 pdata ,pdata 
+0x6b6b 022471 istore 2 ,contw 
+0x6b6c 022472 increase 1 ,queue 
+0x6b6d 022473 increase -3 ,timeup 
+0x6b6e 022474 increase -3 ,rega 
+0x6b6f 022475 nbranch sdp_invalid_reqest_syntax ,positive 
+0x6b70 022476 nbranch patch_servicesearchattribute_req_loop ,zero 
+0x6b71 022477 increase -1 ,timeup 
+0x6b72 022478 nbranch sdp_invalid_reqest_syntax ,zero 
+:      022479 patch_servicesearchattribute_req_search:
+0x6b73 022480 call l2cap_get_sdp_tx_payload 
+0x6b74 022481 increase 13 ,contw 
+0x6b75 022482 fetch 2 ,mem_uuid_search_pat 
+0x6b76 022483 iforce regc 
+0x6b77 022484 arg mem_attrib_list ,rega 
+:      022485 patch_answer_attributelist_next:
+0x6b78 022486 ifetch 4 ,rega 
+0x6b79 022487 branch patch_answer_attributelist_end ,blank 
+0x6b7a 022488 ifetch 2 ,rega 
+0x6b7b 022489 iforce regb 
+0x6b7c 022490 call search_attrib 
+0x6b7d 022491 branch patch_answer_attributelist_notfound ,blank 
+0x6b7e 022492 increase -3 ,contr 
+0x6b7f 022493 ifetch 3 ,contr 
+0x6b80 022494 istore 3 ,contw 
+0x6b81 022495 call patch_sdp_data_len 
+0x6b82 022496 iforce loopcnt 
+:      022497 patch_answer_attributelist_attrib_loop:
+0x6b83 022498 ifetch 1 ,contr 
+0x6b84 022499 istore 1 ,contw 
+0x6b85 022500 loop patch_answer_attributelist_attrib_loop 
+:      022501 patch_answer_attributelist_notfound:
+0x6b86 022502 increase 2 ,rega 
+0x6b87 022503 branch patch_answer_attributelist_next 
+:      022504 patch_servicesearchattribute_req_all:
+0x6b88 022505 set1 mark_ext_patch ,mark 
+0x6b89 022506 bpatch patch38_7 ,mem_patch38 
+0x6b8a 022510 ifetch 1 ,contr 
+0x6b8b 022512 ifetch 1 ,contr 
+0x6b8c 022514 increase -5 ,timeup 
+0x6b8d 022515 increase -5 ,rega 
+0x6b8e 022516 nbranch sdp_invalid_reqest_syntax ,positive 
+0x6b8f 022517 ifetch 1 ,contr 
+0x6b90 022518 increase -1 ,timeup 
+0x6b91 022519 jam 0 ,mem_sdp_continue_byte 
+0x6b92 022520 jam 0 ,mem_sdp_continue_byte + 1 
+0x6b93 022521 nbranch patch_servicesearchattribute_req_all_continue ,blank 
+0x6b94 022522 arg mem_uuid_search_pat ,timeup 
+0x6b95 022523 ifetch 2 ,timeup 
+0x6b96 022525 increase 2 ,timeup 
+0x6b97 022526 call search_uuid 
+0x6b98 022527 deposit queue 
+0x6b99 022528 store 1 ,mem_handle_humber 
+0x6b9a 022529 branch empty_ssa_rsp ,blank 
+0x6b9b 022530 arg 0 ,queue 
+0x6b9c 022531 call l2cap_get_sdp_tx_payload 
+0x6b9d 022532 increase 10 ,contw 
+0x6b9e 022533 branch servicesearchattribute_req_next_handle 
+:      022535 patch_servicesearchattribute_req_all_continue:
+0x6b9f 022536 ifetch 2 ,contr 
+0x6ba0 022537 increase -2 ,timeup 
+0x6ba1 022538 byteswap pdata ,pdata 
+0x6ba2 022539 store 2 ,mem_sdp_continue_byte 
+0x6ba3 022540 arg mem_uuid_search_pat ,timeup 
+0x6ba4 022541 ifetch 2 ,timeup 
+0x6ba5 022543 increase 2 ,timeup 
+0x6ba6 022544 call search_uuid 
+0x6ba7 022545 deposit queue 
+0x6ba8 022546 store 1 ,mem_handle_humber 
+0x6ba9 022547 branch empty_ssa_rsp ,blank 
+0x6baa 022548 arg 0 ,queue 
+0x6bab 022549 call l2cap_get_sdp_tx_payload 
+0x6bac 022550 increase 7 ,contw 
+0x6bad 022551 branch servicesearchattribute_req_next_handle_continue 
+:      022553 patch_answer_attributelist_end:
+0x6bae 022554 force 0 ,pdata 
+0x6baf 022555 istore 1 ,contw 
+0x6bb0 022556 increase -1 ,contw 
+0x6bb1 022557 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6bb2 022558 add temp ,13 ,pdata 
+0x6bb3 022559 isub contw ,pdata 
+0x6bb4 022560 branch patch_no_attribute_return ,zero 
+0x6bb5 022561 sub pdata ,0 ,pdata 
+0x6bb6 022562 add temp ,12 ,regb 
+0x6bb7 022563 istore 1 ,regb 
+0x6bb8 022564 increase 3 ,pdata 
+0x6bb9 022565 add temp ,9 ,regb 
+0x6bba 022566 istore 1 ,regb 
+0x6bbb 022567 increase 3 ,pdata 
+0x6bbc 022568 byteswap pdata ,pdata 
+0x6bbd 022569 add temp ,5 ,regb 
+0x6bbe 022570 istore 2 ,regb 
+0x6bbf 022571 rshift8 pdata ,pdata 
+0x6bc0 022572 increase 3 ,pdata 
+0x6bc1 022573 byteswap pdata ,pdata 
+0x6bc2 022574 add temp ,3 ,regb 
+0x6bc3 022575 istore 2 ,regb 
+0x6bc4 022576 rshift8 pdata ,pdata 
+0x6bc5 022577 increase 5 ,pdata 
+0x6bc6 022578 store 1 ,mem_sdp_tx_pkt_length 
+0x6bc7 022580 fetch 2 ,mem_sdp_transactionid 
+0x6bc8 022581 add temp ,1 ,regb 
+0x6bc9 022582 istore 2 ,regb 
+0x6bca 022583 setarg 7 
+0x6bcb 022584 istore 1 ,temp 
+0x6bcc 022589 setarg 0x0036 
+0x6bcd 022590 add temp ,7 ,regb 
+0x6bce 022591 istore 2 ,regb 
+0x6bcf 022592 add temp ,10 ,regb 
+0x6bd0 022593 istore 2 ,regb 
+0x6bd1 022594 rtn 
+:      022595 patch_no_attribute_return:
+0x6bd2 022596 jam 10 ,mem_sdp_tx_pkt_length 
+0x6bd3 022597 call l2cap_get_sdp_tx_payload 
+0x6bd4 022599 setarg 7 
+0x6bd5 022600 istore 1 ,contw 
+0x6bd6 022601 fetch 2 ,mem_sdp_transactionid 
+0x6bd7 022602 istore 2 ,contw 
+0x6bd8 022606 setarg 0x0500 
+0x6bd9 022607 istore 2 ,contw 
+0x6bda 022610 setarg 0x0200 
+0x6bdb 022611 istore 2 ,contw 
+0x6bdc 022615 setarg 0x000035 
+0x6bdd 022616 istore 3 ,contw 
+0x6bde 022617 rtn 
+:      022619 servicesearchattribute_req_attributelist_loop:
+0x6bdf 022620 ifetch 1 ,contr 
+0x6be0 022621 istore 1 ,contw 
+0x6be1 022622 increase 1 ,regb 
+0x6be2 022623 increase -1 ,rega 
+0x6be3 022624 branch servicesearchattribute_req_check_next_ctn ,zero 
+0x6be4 022625 loop servicesearchattribute_req_attributelist_loop 
+:      022626 servicesearchattribute_req_check_next_ctn:
+0x6be5 022627 copy contw ,timeup 
+0x6be6 022628 copy regb ,pdata 
+0x6be7 022629 store 2 ,mem_sdp_continue_byte 
+0x6be8 022630 copy rega ,pdata 
+0x6be9 022631 store 2 ,mem_sdp_attribute_maxbyte 
+0x6bea 022632 branch answer_attributelist_with_ctn_bytes ,blank 
+0x6beb 022633 branch answer_attributelist_with_ctn_end ,user 
+0x6bec 022634 copy timeup ,contw 
+:      022635 servicesearchattribute_req_check_handle:
+0x6bed 022636 increase 1 ,queue 
+0x6bee 022637 fetch 1 ,mem_handle_humber 
+0x6bef 022638 isub queue ,null 
+0x6bf0 022639 nbranch servicesearchattribute_req_next_handle ,zero 
+0x6bf1 022640 branch answer_attributelist_end_long 
+:      022642 servicesearchattribute_req_attributelist_loop_continue:
+0x6bf2 022643 ifetch 1 ,contr 
+0x6bf3 022644 istore 1 ,contw 
+0x6bf4 022645 increase 1 ,regb 
+0x6bf5 022646 increase -1 ,rega 
+0x6bf6 022647 branch servicesearchattribute_req_check_next_ctn_continue ,zero 
+0x6bf7 022648 loop servicesearchattribute_req_attributelist_loop_continue 
+:      022649 servicesearchattribute_req_check_next_ctn_continue:
+0x6bf8 022650 copy contw ,timeup 
+0x6bf9 022651 copy regb ,pdata 
+0x6bfa 022652 store 2 ,mem_sdp_continue_byte 
+0x6bfb 022653 copy rega ,pdata 
+0x6bfc 022654 store 2 ,mem_sdp_attribute_maxbyte 
+0x6bfd 022655 branch answer_attributelist_with_ctn_bytes_continue ,blank 
+0x6bfe 022656 branch answer_attributelist_with_ctn_end ,user 
+0x6bff 022657 copy timeup ,contw 
+:      022658 servicesearchattribute_req_check_handle_continue:
+0x6c00 022659 increase 1 ,queue 
+0x6c01 022660 fetch 1 ,mem_handle_humber 
+0x6c02 022661 isub queue ,null 
+0x6c03 022662 nbranch servicesearchattribute_req_next_handle_continue ,zero 
+0x6c04 022663 branch answer_attributelist_end_long_continue 
+:      022665 servicesearchattribute_req_next_handle:
+0x6c05 022666 arg mem_handle_list ,contr 
+0x6c06 022667 lshift2 queue ,pdata 
+0x6c07 022668 iadd contr ,contr 
+0x6c08 022669 ifetch 4 ,contr 
+0x6c09 022670 iforce temp 
+0x6c0a 022671 call search_handle 
+0x6c0b 022672 copy contr ,timeup 
+0x6c0c 022673 call sdp_get_data 
+0x6c0d 022674 add pdata ,3 ,loopcnt 
+0x6c0e 022675 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x6c0f 022676 copy pdata ,rega 
+0x6c10 022677 fetch 2 ,mem_sdp_continue_byte 
+0x6c11 022678 copy pdata ,regb 
+0x6c12 022679 copy timeup ,contr 
+0x6c13 022680 branch servicesearchattribute_req_attributelist_loop 
+:      022682 servicesearchattribute_req_next_handle_continue:
+0x6c14 022683 arg mem_handle_list ,contr 
+0x6c15 022684 lshift2 queue ,pdata 
+0x6c16 022685 iadd contr ,contr 
+0x6c17 022686 ifetch 4 ,contr 
+0x6c18 022687 iforce temp 
+0x6c19 022688 call search_handle 
+0x6c1a 022689 copy contr ,timeup 
+0x6c1b 022690 call sdp_get_data 
+0x6c1c 022691 add pdata ,3 ,pdata 
+0x6c1d 022692 fetcht 2 ,mem_sdp_continue_byte 
+0x6c1e 022693 isub temp ,loopcnt 
+0x6c1f 022694 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x6c20 022695 copy pdata ,rega 
+0x6c21 022696 fetch 2 ,mem_sdp_continue_byte 
+0x6c22 022697 copy pdata ,regb 
+0x6c23 022698 copy timeup ,contr 
+0x6c24 022699 iadd contr ,contr 
+0x6c25 022700 branch servicesearchattribute_req_attributelist_loop_continue 
+:      022702 answer_attributelist_with_ctn_bytes:
+0x6c26 022703 arg 0 ,queue 
+0x6c27 022704 arg 0 ,regb 
+:      022705 answer_attributelist_calc_attribute_length:
+0x6c28 022706 arg mem_handle_list ,contr 
+0x6c29 022707 lshift2 queue ,pdata 
+0x6c2a 022708 iadd contr ,contr 
+0x6c2b 022709 ifetch 4 ,contr 
+0x6c2c 022710 iforce temp 
+0x6c2d 022711 call search_handle 
+0x6c2e 022712 call sdp_get_data 
+0x6c2f 022713 add pdata ,3 ,pdata 
+0x6c30 022714 iadd regb ,regb 
+0x6c31 022715 increase 1 ,queue 
+0x6c32 022716 fetch 1 ,mem_handle_humber 
+0x6c33 022717 isub queue ,null 
+0x6c34 022718 nbranch answer_attributelist_calc_attribute_length ,zero 
+0x6c35 022720 copy timeup ,contw 
+0x6c36 022721 force 2 ,pdata 
+0x6c37 022722 istore 1 ,contw 
+0x6c38 022723 fetch 2 ,mem_sdp_continue_byte 
+0x6c39 022724 byteswap pdata ,pdata 
+0x6c3a 022725 istore 2 ,contw 
+0x6c3b 022726 increase -3 ,contw 
+0x6c3c 022727 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6c3d 022728 add temp ,10 ,pdata 
+0x6c3e 022729 isub contw ,pdata 
+0x6c3f 022730 sub pdata ,0 ,pdata 
+0x6c40 022731 iforce rega 
+0x6c41 022733 deposit regb 
+0x6c42 022734 add temp ,9 ,regb 
+0x6c43 022735 istore 1 ,regb 
+0x6c44 022736 rshift8 pdata ,pdata 
+0x6c45 022737 add temp ,8 ,regb 
+0x6c46 022738 istore 1 ,regb 
+0x6c47 022739 increase 3 ,rega 
+0x6c48 022740 deposit rega 
+0x6c49 022741 add temp ,6 ,regb 
+0x6c4a 022742 istore 1 ,regb 
+0x6c4b 022743 rshift8 pdata ,pdata 
+0x6c4c 022744 add temp ,5 ,regb 
+0x6c4d 022745 istore 1 ,regb 
+0x6c4e 022746 increase 5 ,rega 
+0x6c4f 022747 deposit rega 
+0x6c50 022748 add temp ,4 ,regb 
+0x6c51 022749 istore 1 ,regb 
+0x6c52 022750 rshift8 pdata ,pdata 
+0x6c53 022751 add temp ,3 ,regb 
+0x6c54 022752 istore 1 ,regb 
+0x6c55 022753 increase 5 ,rega 
+0x6c56 022754 deposit rega 
+0x6c57 022755 store 2 ,mem_sdp_tx_pkt_length 
+0x6c58 022756 setarg 7 
+0x6c59 022757 istore 1 ,temp 
+0x6c5a 022758 setarg 0x36 
+0x6c5b 022759 add temp ,7 ,regb 
+0x6c5c 022760 istore 1 ,regb 
+0x6c5d 022761 add temp ,1 ,regb 
+0x6c5e 022762 fetch 2 ,mem_sdp_transactionid 
+0x6c5f 022763 istore 2 ,regb 
+0x6c60 022764 rtn 
+:      022766 answer_attributelist_with_ctn_bytes_continue:
+0x6c61 022767 arg 0 ,queue 
+0x6c62 022768 arg 0 ,regb 
+:      022769 answer_attributelist_calc_attribute_length_continue:
+0x6c63 022770 copy timeup ,contw 
+0x6c64 022771 force 2 ,pdata 
+0x6c65 022772 istore 1 ,contw 
+0x6c66 022773 fetch 2 ,mem_sdp_continue_byte 
+0x6c67 022774 byteswap pdata ,pdata 
+0x6c68 022775 istore 2 ,contw 
+0x6c69 022776 increase -3 ,contw 
+0x6c6a 022777 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6c6b 022778 add temp ,7 ,pdata 
+0x6c6c 022779 isub contw ,pdata 
+0x6c6d 022780 sub pdata ,0 ,pdata 
+0x6c6e 022781 iforce rega 
+0x6c6f 022783 deposit rega 
+0x6c70 022784 add temp ,6 ,regb 
+0x6c71 022785 istore 1 ,regb 
+0x6c72 022786 rshift8 pdata ,pdata 
+0x6c73 022787 add temp ,5 ,regb 
+0x6c74 022788 istore 1 ,regb 
+0x6c75 022789 increase 5 ,rega 
+0x6c76 022790 deposit rega 
+0x6c77 022791 add temp ,4 ,regb 
+0x6c78 022792 istore 1 ,regb 
+0x6c79 022793 rshift8 pdata ,pdata 
+0x6c7a 022794 add temp ,3 ,regb 
+0x6c7b 022795 istore 1 ,regb 
+0x6c7c 022796 increase 5 ,rega 
+0x6c7d 022797 deposit rega 
+0x6c7e 022798 store 2 ,mem_sdp_tx_pkt_length 
+0x6c7f 022799 setarg 7 
+0x6c80 022800 istore 1 ,temp 
+0x6c81 022801 add temp ,1 ,regb 
+0x6c82 022802 fetch 2 ,mem_sdp_transactionid 
+0x6c83 022803 istore 2 ,regb 
+0x6c84 022804 rtn 
+:      022806 answer_attributelist_with_ctn_end:
+0x6c85 022807 copy timeup ,contw 
+0x6c86 022808 force 0 ,pdata 
+0x6c87 022809 istore 1 ,contw 
+0x6c88 022810 increase -1 ,contw 
+0x6c89 022811 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6c8a 022812 add temp ,7 ,pdata 
+0x6c8b 022813 isub contw ,pdata 
+0x6c8c 022814 sub pdata ,0 ,pdata 
+0x6c8d 022815 iforce rega 
+0x6c8e 022817 deposit rega 
+0x6c8f 022818 add temp ,6 ,regb 
+0x6c90 022819 istore 1 ,regb 
+0x6c91 022820 rshift8 pdata ,pdata 
+0x6c92 022821 add temp ,5 ,regb 
+0x6c93 022822 istore 1 ,regb 
+0x6c94 022823 increase 3 ,rega 
+0x6c95 022824 deposit rega 
+0x6c96 022825 add temp ,4 ,regb 
+0x6c97 022826 istore 1 ,regb 
+0x6c98 022827 rshift8 pdata ,pdata 
+0x6c99 022828 add temp ,3 ,regb 
+0x6c9a 022829 istore 1 ,regb 
+0x6c9b 022830 increase 5 ,rega 
+0x6c9c 022831 deposit rega 
+0x6c9d 022832 store 2 ,mem_sdp_tx_pkt_length 
+0x6c9e 022834 setarg 7 
+0x6c9f 022835 istore 1 ,temp 
+0x6ca0 022837 fetch 2 ,mem_sdp_transactionid 
+0x6ca1 022838 add temp ,1 ,regb 
+0x6ca2 022839 istore 2 ,regb 
+0x6ca3 022840 rtn 
+:      022842 answer_attributelist_end_long:
+0x6ca4 022843 force 0 ,pdata 
+0x6ca5 022844 istore 1 ,contw 
+0x6ca6 022845 increase -1 ,contw 
+0x6ca7 022846 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6ca8 022847 add temp ,10 ,pdata 
+0x6ca9 022848 isub contw ,pdata 
+0x6caa 022849 sub pdata ,0 ,pdata 
+0x6cab 022850 iforce rega 
+0x6cac 022852 deposit rega 
+0x6cad 022853 add temp ,9 ,regb 
+0x6cae 022854 istore 1 ,regb 
+0x6caf 022855 rshift8 pdata ,pdata 
+0x6cb0 022856 add temp ,8 ,regb 
+0x6cb1 022857 istore 1 ,regb 
+0x6cb2 022859 increase 3 ,rega 
+0x6cb3 022860 deposit rega 
+0x6cb4 022861 add temp ,6 ,regb 
+0x6cb5 022862 istore 1 ,regb 
+0x6cb6 022863 rshift8 pdata ,pdata 
+0x6cb7 022864 add temp ,5 ,regb 
+0x6cb8 022865 istore 1 ,regb 
+0x6cb9 022866 increase 3 ,rega 
+0x6cba 022867 deposit rega 
+0x6cbb 022868 add temp ,4 ,regb 
+0x6cbc 022869 istore 1 ,regb 
+0x6cbd 022870 rshift8 pdata ,pdata 
+0x6cbe 022871 add temp ,3 ,regb 
+0x6cbf 022872 istore 1 ,regb 
+0x6cc0 022873 increase 5 ,rega 
+0x6cc1 022874 deposit rega 
+0x6cc2 022875 store 2 ,mem_sdp_tx_pkt_length 
+0x6cc3 022876 setarg 0x36 
+0x6cc4 022877 add temp ,7 ,regb 
+0x6cc5 022878 istore 1 ,regb 
+0x6cc6 022879 setarg 7 
+0x6cc7 022880 istore 1 ,temp 
+0x6cc8 022881 fetch 2 ,mem_sdp_transactionid 
+0x6cc9 022882 add temp ,1 ,regb 
+0x6cca 022883 istore 2 ,regb 
+0x6ccb 022884 rtn 
+:      022886 answer_attributelist_end_long_continue:
+0x6ccc 022887 force 0 ,pdata 
+0x6ccd 022888 istore 1 ,contw 
+0x6cce 022889 increase -1 ,contw 
+0x6ccf 022890 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6cd0 022891 add temp ,7 ,pdata 
+0x6cd1 022892 isub contw ,pdata 
+0x6cd2 022893 sub pdata ,0 ,pdata 
+0x6cd3 022894 iforce rega 
+0x6cd4 022897 deposit rega 
+0x6cd5 022898 add temp ,6 ,regb 
+0x6cd6 022899 istore 1 ,regb 
+0x6cd7 022900 rshift8 pdata ,pdata 
+0x6cd8 022901 add temp ,5 ,regb 
+0x6cd9 022902 istore 1 ,regb 
+0x6cda 022903 increase 3 ,rega 
+0x6cdb 022904 deposit rega 
+0x6cdc 022905 add temp ,4 ,regb 
+0x6cdd 022906 istore 1 ,regb 
+0x6cde 022907 rshift8 pdata ,pdata 
+0x6cdf 022908 add temp ,3 ,regb 
+0x6ce0 022909 istore 1 ,regb 
+0x6ce1 022910 increase 5 ,rega 
+0x6ce2 022911 deposit rega 
+0x6ce3 022912 store 2 ,mem_sdp_tx_pkt_length 
+0x6ce4 022916 setarg 7 
+0x6ce5 022917 istore 1 ,temp 
+0x6ce6 022918 fetch 2 ,mem_sdp_transactionid 
+0x6ce7 022919 add temp ,1 ,regb 
+0x6ce8 022920 istore 2 ,regb 
+0x6ce9 022921 rtn 
+:      022923 patch_sdp_data_len:
+0x6cea 022924 copy contr ,timeup 
+0x6ceb 022925 ifetch 1 ,contr 
+0x6cec 022926 and pdata ,0x07 ,loopcnt 
+0x6ced 022927 rshift3 pdata ,pdata 
+0x6cee 022928 beq 6 ,patch_sdp_data_len_6 
+0x6cef 022929 beq 1 ,sdp_data_len_1 
+0x6cf0 022930 beq 4 ,sdp_data_len_6 
+0x6cf1 022931 beq 5 ,sdp_data_len_5 
+0x6cf2 022932 branch sdp_data_len_rtn 
+:      022933 patch_sdp_data_len_6:
+0x6cf3 022934 call patch_sdp_get_data_6 
+0x6cf4 022935 branch sdp_data_len_rtn 
+:      022936 patch_sdp_get_data_6:
+0x6cf5 022937 deposit loopcnt 
+0x6cf6 022938 beq 5 ,patch_sdp_get_data_6_8bit 
+0x6cf7 022939 beq 6 ,patch_sdp_get_data_6_16bit 
+0x6cf8 022940 force 3 ,loopcnt 
+0x6cf9 022941 branch sdp_get_data_1 
+:      022942 patch_sdp_get_data_6_8bit:
+0x6cfa 022943 ifetch 1 ,contr 
+0x6cfb 022944 increase 2 ,pdata 
+0x6cfc 022945 rtn 
+:      022946 patch_sdp_get_data_6_16bit:
+0x6cfd 022947 ifetch 2 ,contr 
+0x6cfe 022948 byteswap pdata ,pdata 
+0x6cff 022949 increase 3 ,pdata 
+0x6d00 022950 rtn 
+:      022952 sdp_send_spp_request:
+0x6d01 022953 call l2cap_get_sdp_tx_payload 
+0x6d02 022954 copy pdata ,contw 
+0x6d03 022955 setarg 6 
+0x6d04 022956 istore 1 ,contw 
+0x6d05 022957 setarg sdp_tid_spp 
+0x6d06 022958 istore 2 ,contw 
+0x6d07 022959 setarg 0x0f00 
+0x6d08 022960 istore 2 ,contw 
+0x6d09 022961 setarg 0x1a0535 
+0x6d0a 022962 istore 3 ,contw 
+0x6d0b 022963 setarg 0x0111 
+0x6d0c 022964 lshift16 pdata ,pdata 
+0x6d0d 022965 istore 4 ,contw 
+0x6d0e 022966 setarg 0x2600 
+0x6d0f 022967 istore 2 ,contw 
+0x6d10 022968 setarg 0x0335 
+0x6d11 022969 istore 2 ,contw 
+0x6d12 022970 setarg 0x0009 
+0x6d13 022971 istore 2 ,contw 
+0x6d14 022972 setarg 0x0004 
+0x6d15 022973 istore 2 ,contw 
+0x6d16 022974 jam 0x14 ,mem_sdp_tx_pkt_length 
+0x6d17 022975 rtn 
+:      022985 servicesearchattribute_res:
+0x6d18 022986 copy contr ,temp 
+0x6d19 022987 fetch 2 ,mem_sdp_transactionid 
+0x6d1a 022988 beq sdp_tid_spp ,servicesearchattribute_res_spp 
+0x6d1b 022991 branch srchfail 
+:      022993 servicesearchattribute_res_spp:
+0x6d1c 022994 copy temp ,contr 
+0x6d1d 022995 increase -3 ,timeup 
+0x6d1e 022996 copy timeup ,pdata 
+0x6d1f 022997 beq 2 ,srchfail 
+0x6d20 022998 call find_rfcomm_channel_number 
+0x6d21 022999 rtn user 
+0x6d22 023000 store 1 ,mem_remote_spp_channel 
+0x6d23 023001 jam recieve_ss_reasult_hf ,mem_message_to_uppersm 
+0x6d24 023002 rtn 
+:      023004 srchfail:
+0x6d25 023005 rtn 
+:      023011 find_rfcomm_channel_number:
+0x6d26 023012 enable user 
+0x6d27 023013 copy pdata ,loopcnt 
+0x6d28 023014 arg 0x0400 ,temp 
+:      023015 find_rfcomm_channel_number_loop:
+0x6d29 023016 ifetch 2 ,contr 
+0x6d2a 023017 isub temp ,null 
+0x6d2b 023018 branch find_rfcomm_channel_number_find_adl ,zero 
+0x6d2c 023019 increase -1 ,contr 
+0x6d2d 023020 loop find_rfcomm_channel_number_loop 
+0x6d2e 023021 rtn 
+:      023022 find_rfcomm_channel_number_find_adl:
+0x6d2f 023023 arg 0x0300 ,temp 
+:      023024 find_rfcomm_channel_number_loop2:
+0x6d30 023025 ifetch 2 ,contr 
+0x6d31 023026 isub temp ,null 
+0x6d32 023027 branch find_rfcomm_channel_number_find_rfcomm ,zero 
+0x6d33 023028 increase -1 ,contr 
+0x6d34 023029 loop find_rfcomm_channel_number_loop2 
+0x6d35 023030 rtn 
+:      023031 find_rfcomm_channel_number_find_rfcomm:
+0x6d36 023032 ifetch 1 ,contr 
+0x6d37 023033 ifetch 1 ,contr 
+0x6d38 023034 disable user 
+0x6d39 023035 rtn 
+:      023037 sdp_invalid_service_record_handle:
+0x6d3a 023038 setarg 0x0200 
+0x6d3b 023039 store 2 ,mem_sdp_error_code 
+0x6d3c 023040 branch sdp_error_response 
+:      023041 sdp_invalid_pdu_size:
+0x6d3d 023042 setarg 0x0400 
+0x6d3e 023043 store 2 ,mem_sdp_error_code 
+0x6d3f 023044 branch sdp_error_response 
+:      023045 sdp_insufficient_resource:
+0x6d40 023046 setarg 0x0600 
+0x6d41 023047 store 2 ,mem_sdp_error_code 
+0x6d42 023048 branch sdp_error_response 
+:      023049 sdp_invalid_reqest_syntax:
+0x6d43 023050 setarg 0x0300 
+0x6d44 023051 store 2 ,mem_sdp_error_code 
+:      023052 sdp_error_response:
+0x6d45 023053 call l2cap_get_sdp_tx_payload 
+0x6d46 023054 istore 1 ,contw 
+0x6d47 023055 fetch 2 ,mem_sdp_transactionid 
+0x6d48 023056 istore 2 ,contw 
+0x6d49 023057 setarg 0x0200 
+0x6d4a 023058 istore 2 ,contw 
+0x6d4b 023059 fetch 2 ,mem_sdp_error_code 
+0x6d4c 023060 istore 2 ,contw 
+0x6d4d 023061 jam 7 ,mem_sdp_tx_pkt_length 
+0x6d4e 023062 rtn 
+:      023064 ask_serviceclassid:
+0x6d4f 023065 set1 mark_ext_patch ,mark 
+0x6d50 023066 bpatch patch39_0 ,mem_patch39 
+0x6d51 023067 force 0 ,temp 
+0x6d52 023068 arg mem_uuid_search_pat ,contw 
+0x6d53 023069 call dataelementtype6 
+0x6d54 023070 branch asksrv_error ,zero 
+:      023071 classidloop:
+0x6d55 023072 ifetch 1 ,contr 
+0x6d56 023073 increase -1 ,rega 
+0x6d57 023074 increase -1 ,timeup 
+0x6d58 023075 compare 0x18 ,pdata ,0xf8 
+0x6d59 023076 nbranch asksrv_error ,true 
+0x6d5a 023077 compare 0x04 ,pdata ,0x07 
+0x6d5b 023078 nbranch cmp032 ,true 
+0x6d5c 023079 force 1 ,temp 
+:      023080 skip2bytes:
+0x6d5d 023081 ifetch 1 ,contr 
+0x6d5e 023082 increase -1 ,rega 
+0x6d5f 023083 increase -1 ,timeup 
+0x6d60 023084 bne 0x00 ,frstbwrong 
+0x6d61 023085 ifetch 1 ,contr 
+0x6d62 023086 increase -1 ,rega 
+0x6d63 023087 increase -1 ,timeup 
+0x6d64 023088 beq 0x00 ,cmpuuid 
+0x6d65 023089 branch scndbwrong 
+:      023090 frstbwrong:
+0x6d66 023091 increase 1 ,contr 
+0x6d67 023092 increase -1 ,rega 
+0x6d68 023093 increase -1 ,timeup 
+:      023094 scndbwrong:
+0x6d69 023095 increase 2 ,contr 
+0x6d6a 023096 increase -2 ,rega 
+0x6d6b 023097 increase -2 ,timeup 
+0x6d6c 023098 compare 0x00 ,temp ,0xff 
+0x6d6d 023099 branch loopornot ,true 
+0x6d6e 023100 increase 12 ,contr 
+0x6d6f 023101 increase -12 ,rega 
+0x6d70 023102 increase -12 ,timeup 
+0x6d71 023103 branch loopornot 
+:      023104 cmp032:
+0x6d72 023105 compare 0x02 ,pdata ,0x07 
+0x6d73 023106 nbranch cmp016 ,true 
+0x6d74 023107 branch skip2bytes 
+:      023108 cmp016:
+0x6d75 023109 compare 0x01 ,pdata ,0x07 
+0x6d76 023110 nbranch asksrv_error ,true 
+:      023111 cmpuuid:
+0x6d77 023112 ifetch 2 ,contr 
+0x6d78 023113 increase -2 ,rega 
+0x6d79 023114 increase -2 ,timeup 
+0x6d7a 023115 istore 2 ,contw 
+:      023116 uuidsize:
+0x6d7b 023117 compare 0x00 ,temp ,0xff 
+0x6d7c 023118 branch loopornot ,true 
+0x6d7d 023119 copy contr ,temp 
+0x6d7e 023120 set1 mark_ext_patch ,mark 
+0x6d7f 023121 bpatch patch39_1 ,mem_patch39 
+0x6d80 023122 ifetch 1 ,contr 
+0x6d81 023123 bne 0x00 ,wrong12b 
+0x6d82 023124 ifetch 1 ,contr 
+0x6d83 023125 bne 0x00 ,wrong12b 
+0x6d84 023126 ifetch 1 ,contr 
+0x6d85 023127 bne 0x10 ,wrong12b 
+0x6d86 023128 ifetch 1 ,contr 
+0x6d87 023129 bne 0x00 ,wrong12b 
+0x6d88 023130 ifetch 1 ,contr 
+0x6d89 023131 bne 0x80 ,wrong12b 
+0x6d8a 023132 ifetch 1 ,contr 
+0x6d8b 023133 bne 0x00 ,wrong12b 
+0x6d8c 023134 ifetch 1 ,contr 
+0x6d8d 023135 bne 0x00 ,wrong12b 
+0x6d8e 023136 ifetch 1 ,contr 
+0x6d8f 023137 bne 0x80 ,wrong12b 
+0x6d90 023138 ifetch 1 ,contr 
+0x6d91 023139 bne 0x5f ,wrong12b 
+0x6d92 023140 ifetch 1 ,contr 
+0x6d93 023141 bne 0x9b ,wrong12b 
+0x6d94 023142 ifetch 1 ,contr 
+0x6d95 023143 bne 0x34 ,wrong12b 
+0x6d96 023144 ifetch 1 ,contr 
+0x6d97 023145 beq 0xfb ,chck12dn 
+:      023146 wrong12b:
+0x6d98 023147 copy temp ,contr 
+:      023148 wrong12b1:
+0x6d99 023149 increase 12 ,contr 
+0x6d9a 023150 force 0x00 ,queue 
+0x6d9b 023151 force 0x00 ,temp 
+0x6d9c 023152 branch chck12dn 
+:      023153 chck12dn:
+0x6d9d 023154 increase -12 ,timeup 
+0x6d9e 023155 increase -12 ,rega 
+:      023156 loopornot:
+0x6d9f 023157 compare 0x00 ,rega ,0xff 
+0x6da0 023158 nbranch classidloop ,true 
+0x6da1 023159 force 0 ,pdata 
+0x6da2 023160 istore 2 ,contw 
+0x6da3 023161 rtn ,
+:      023162 asksrv_error:
+0x6da4 023163 arg 0xff ,temp 
+0x6da5 023164 rtn 
+:      023174 dataelementtype6:
+0x6da6 023175 ifetch 1 ,contr 
+0x6da7 023176 increase -1 ,timeup 
+0x6da8 023177 compare 0x30 ,pdata ,0xf8 
+0x6da9 023178 nbranch dsize_error ,true 
+0x6daa 023179 compare 0x07 ,pdata ,0x07 
+0x6dab 023180 branch dsize32 ,true 
+0x6dac 023181 compare 0x06 ,pdata ,0x07 
+0x6dad 023182 branch dsize16 ,true 
+0x6dae 023183 compare 0x05 ,pdata ,0x07 
+0x6daf 023184 nbranch dsize_error ,true 
+0x6db0 023185 ifetch 1 ,contr 
+0x6db1 023186 copy pdata ,rega 
+0x6db2 023187 increase -1 ,timeup 
+0x6db3 023188 branch dsize 
+:      023189 dsize32:
+0x6db4 023190 increase 2 ,contr 
+0x6db5 023191 increase -2 ,timeup 
+:      023192 dsize16:
+0x6db6 023193 ifetch 2 ,contr 
+0x6db7 023194 byteswap pdata ,rega 
+0x6db8 023195 increase -2 ,timeup 
+:      023196 dsize:
+0x6db9 023197 force 0x01 ,pdata 
+0x6dba 023198 rtn 
+:      023199 dsize_error:
+0x6dbb 023200 force 0x00 ,pdata 
+0x6dbc 023201 rtn 
+:      023211 empth_sa_rsp:
+0x6dbd 023212 setarg 0x03 
+0x6dbe 023213 store 1 ,mem_sdp_pduid 
+0x6dbf 023214 branch empty_response 
+:      023215 empty_ssa_rsp:
+0x6dc0 023216 setarg 0x07 
+0x6dc1 023217 store 1 ,mem_sdp_pduid 
+:      023218 empty_response:
+0x6dc2 023219 call l2cap_get_sdp_tx_payload 
+0x6dc3 023220 fetch 1 ,mem_sdp_pduid 
+0x6dc4 023221 istore 1 ,contw 
+0x6dc5 023222 copy pdata ,regb 
+0x6dc6 023223 fetch 2 ,mem_sdp_transactionid 
+0x6dc7 023224 istore 2 ,contw 
+0x6dc8 023226 setarg 0x0500 
+0x6dc9 023227 istore 2 ,contw 
+0x6dca 023228 compare 0x05 ,regb ,0xff 
+0x6dcb 023229 branch fullsearch ,true 
+0x6dcc 023230 compare 0x07 ,regb ,0xff 
+0x6dcd 023231 branch fullsearch ,true 
+0x6dce 023232 setarg 0x000000 
+0x6dcf 023233 istore 3 ,contw 
+0x6dd0 023234 istore 2 ,contw 
+0x6dd1 023235 branch outempty 
+:      023237 fullsearch:
+0x6dd2 023244 setarg 0x350200 
+0x6dd3 023245 istore 3 ,contw 
+0x6dd4 023250 setarg 0 
+0x6dd5 023251 istore 2 ,contw 
+:      023252 outempty:
+0x6dd6 023253 jam 10 ,mem_sdp_tx_pkt_length 
+0x6dd7 023254 rtn 
+:      023256 sdp_data_len:
+0x6dd8 023257 copy contr ,timeup 
+0x6dd9 023258 ifetch 1 ,contr 
+0x6dda 023259 and pdata ,0x7 ,loopcnt 
+0x6ddb 023260 rshift3 pdata ,pdata 
+0x6ddc 023261 beq 6 ,sdp_data_len_6 
+0x6ddd 023262 beq 1 ,sdp_data_len_1 
+0x6dde 023263 beq 4 ,sdp_data_len_6 
+0x6ddf 023264 beq 5 ,sdp_data_len_5 
+:      023265 sdp_data_len_rtn:
+0x6de0 023266 copy timeup ,contr 
+0x6de1 023267 rtn 
+:      023268 sdp_data_len_1:
+0x6de2 023269 call sdp_data_size 
+0x6de3 023270 increase 1 ,pdata 
+0x6de4 023271 branch sdp_data_len_rtn 
+:      023272 sdp_data_len_5:
+0x6de5 023273 force 2 ,pdata 
+0x6de6 023274 branch sdp_data_len_rtn 
+:      023275 sdp_data_len_6:
+0x6de7 023276 call sdp_get_data_6 
+0x6de8 023277 increase 2 ,pdata 
+0x6de9 023278 branch sdp_data_len_rtn 
+:      023280 sdp_get_data:
+0x6dea 023281 ifetch 1 ,contr 
+0x6deb 023282 and pdata ,0x7 ,loopcnt 
+0x6dec 023283 rshift3 pdata ,pdata 
+0x6ded 023284 beq 6 ,sdp_get_data_6 
+0x6dee 023285 beq 1 ,sdp_get_data_1 
+0x6def 023286 beq 5 ,sdp_get_data_6_8bit 
+0x6df0 023287 rtn 
+:      023288 sdp_get_data_1:
+0x6df1 023289 call sdp_data_size 
+0x6df2 023290 iforce loopcnt 
+0x6df3 023291 force 0 ,temp 
+:      023292 sdp_get_data_1_loop:
+0x6df4 023293 lshift8 temp ,temp 
+0x6df5 023294 ifetch 1 ,contr 
+0x6df6 023295 ior temp ,temp 
+0x6df7 023296 loop sdp_get_data_1_loop 
+0x6df8 023297 rtn 
+:      023298 sdp_get_data_6:
+0x6df9 023299 deposit loopcnt 
+0x6dfa 023300 beq 5 ,sdp_get_data_6_8bit 
+0x6dfb 023301 beq 6 ,sdp_get_data_6_16bit 
+0x6dfc 023302 force 3 ,loopcnt 
+0x6dfd 023303 branch sdp_get_data_1 
+:      023304 sdp_get_data_6_8bit:
+0x6dfe 023305 ifetch 1 ,contr 
+0x6dff 023306 rtn 
+:      023307 sdp_get_data_6_16bit:
+0x6e00 023308 ifetch 2 ,contr 
+0x6e01 023309 byteswap pdata ,pdata 
+0x6e02 023310 rtn 
+:      023313 sdp_data_size:
+0x6e03 023314 force 1 ,pdata 
+0x6e04 023315 copy loopcnt ,null 
+0x6e05 023316 rtn zero 
+:      023317 sdp_data_size_loop:
+0x6e06 023318 lshift pdata ,pdata 
+0x6e07 023319 loop sdp_data_size_loop 
+0x6e08 023320 rtn 
+:      023325 search_uuid:
+0x6e09 023326 iforce regc 
+0x6e0a 023327 set1 mark_ext_patch ,mark 
+0x6e0b 023328 bpatch patch39_2 ,mem_patch39 
+0x6e0c 023329 force 0 ,queue 
+0x6e0d 023330 fetch 2 ,mem_ui_uuid_table 
+0x6e0e 023331 iforce contr 
+0x6e0f 023332 arg mem_handle_list ,contw 
+:      023333 search_uuid_next:
+0x6e10 023334 disable user 
+0x6e11 023335 ifetch 1 ,contr 
+0x6e12 023336 rtn blank 
+0x6e13 023337 iforce loopcnt 
+:      023338 search_uuid_loop:
+0x6e14 023339 ifetch 2 ,contr 
+0x6e15 023340 isub regc ,null 
+0x6e16 023341 nbranch search_uuid_not_found ,zero 
+0x6e17 023342 enable user 
+:      023343 search_uuid_not_found:
+0x6e18 023344 loop search_uuid_loop 
+0x6e19 023345 ifetch 4 ,contr 
+0x6e1a 023346 nbranch search_uuid_nomatch ,user 
+0x6e1b 023347 istore 4 ,contw 
+0x6e1c 023348 increase 1 ,queue 
+:      023349 search_uuid_nomatch:
+0x6e1d 023350 call sdp_get_data 
+0x6e1e 023351 iadd contr ,contr 
+0x6e1f 023352 branch search_uuid_next 
+:      023355 search_handle:
+0x6e20 023356 set1 mark_ext_patch ,mark 
+0x6e21 023357 bpatch patch39_3 ,mem_patch39 
+0x6e22 023358 fetch 2 ,mem_ui_uuid_table 
+0x6e23 023359 iforce contr 
+:      023360 search_handle_loop:
+0x6e24 023361 ifetch 1 ,contr 
+0x6e25 023362 rtn blank 
+0x6e26 023363 lshift pdata ,pdata 
+0x6e27 023364 iadd contr ,contr 
+0x6e28 023365 ifetch 4 ,contr 
+0x6e29 023366 isub temp ,null 
+0x6e2a 023367 rtn zero 
+0x6e2b 023368 call sdp_get_data 
+0x6e2c 023369 iadd contr ,contr 
+0x6e2d 023370 branch search_handle_loop 
+:      023377 search_attrib:
+0x6e2e 023378 set1 mark_ext_patch ,mark 
+0x6e2f 023379 bpatch patch39_4 ,mem_patch39 
+0x6e30 023380 fetch 2 ,mem_ui_uuid_table 
+0x6e31 023381 iforce contr 
+:      023382 search_attrib_next:
+0x6e32 023383 ifetch 1 ,contr 
+0x6e33 023384 branch search_attrib_end ,blank 
+0x6e34 023385 iforce loopcnt 
+:      023386 search_attrib_loop:
+0x6e35 023387 ifetch 2 ,contr 
+0x6e36 023388 isub regc ,null 
+0x6e37 023389 branch search_attrib_found_uuid ,zero 
+0x6e38 023390 loop search_attrib_loop 
+0x6e39 023391 increase 4 ,contr 
+0x6e3a 023392 call sdp_get_data 
+0x6e3b 023393 iadd contr ,contr 
+0x6e3c 023394 branch search_attrib_next 
+:      023395 search_attrib_found_uuid:
+0x6e3d 023396 increase -1 ,loopcnt 
+0x6e3e 023397 lshift loopcnt ,pdata 
+0x6e3f 023398 iadd contr ,contr 
+0x6e40 023399 increase 4 ,contr 
+0x6e41 023400 call sdp_get_data 
+0x6e42 023401 iadd contr ,temp 
+:      023402 search_attrib_loop_attribs:
+0x6e43 023403 increase 1 ,contr 
+0x6e44 023404 ifetch 2 ,contr 
+0x6e45 023405 isub regb ,timeup 
+0x6e46 023407 setflag zero ,0 ,pdata 
+0x6e47 023408 copy timeup ,timeup 
+0x6e48 023409 rtn zero 
+0x6e49 023410 call sdp_data_len 
+0x6e4a 023411 iadd contr ,contr 
+0x6e4b 023412 deposit temp 
+0x6e4c 023413 isub contr ,null 
+0x6e4d 023414 branch search_attrib_end ,zero 
+0x6e4e 023415 branch search_attrib_loop_attribs 
+:      023416 search_attrib_end:
+0x6e4f 023417 force 0 ,contr 
+0x6e50 023418 force 0 ,pdata 
+0x6e51 023419 rtn 
+:      023425 search_handle_attrib:
+0x6e52 023426 set1 mark_ext_patch ,mark 
+0x6e53 023427 bpatch patch39_5 ,mem_patch39 
+0x6e54 023428 fetch 2 ,mem_ui_uuid_table 
+0x6e55 023429 iforce contr 
+:      023430 search_handle_attrib_next:
+0x6e56 023431 ifetch 1 ,contr 
+0x6e57 023432 branch search_handle_attrib_end ,blank 
+0x6e58 023433 lshift pdata ,pdata 
+0x6e59 023434 iadd contr ,contr 
+0x6e5a 023435 ifetch 4 ,contr 
+0x6e5b 023436 isub temp ,null 
+0x6e5c 023437 branch search_handl_attrib_found_handle ,zero 
+0x6e5d 023438 call sdp_get_data 
+0x6e5e 023439 iadd contr ,contr 
+0x6e5f 023440 branch search_handle_attrib_next 
+:      023441 search_handl_attrib_found_handle:
+0x6e60 023442 call sdp_get_data 
+0x6e61 023443 iadd contr ,temp 
+:      023444 search_handle_attrib_loop_attribs:
+0x6e62 023445 increase 1 ,contr 
+0x6e63 023446 ifetch 2 ,contr 
+0x6e64 023447 isub regb ,null 
+0x6e65 023448 rtn zero 
+0x6e66 023449 call sdp_data_len 
+0x6e67 023450 iadd contr ,contr 
+0x6e68 023451 deposit temp 
+0x6e69 023452 isub contr ,null 
+0x6e6a 023453 branch search_handle_attrib_end ,zero 
+0x6e6b 023454 branch search_handle_attrib_loop_attribs 
+:      023455 search_handle_attrib_end:
+0x6e6c 023456 force 0 ,contr 
+0x6e6d 023457 rtn 
+:      023462 function_g2:
+0x6e6e 023463 set1 mark_ext_patch ,mark 
+0x6e6f 023464 bpatch patch39_6 ,mem_patch39 
+0x6e70 023465 jam 80 ,mem_aes_cmac_data_length 
+0x6e71 023466 arg memdat ,contw 
+0x6e72 023467 arg mem_le_srand ,contr 
+0x6e73 023468 call memcpy16 
+0x6e74 023469 arg mem_le_pubkey_local_x_256 ,contr 
+0x6e75 023470 call memcpy32 
+0x6e76 023471 arg mem_le_pubkey_remote_x_256 ,contr 
+0x6e77 023472 call memcpy32 
+0x6e78 023473 call inverse_memdat 
+0x6e79 023474 arg mem_le_mrand ,contr 
+0x6e7a 023475 call store_inverse_k 
+0x6e7b 023476 call function_aes_cmac 
+0x6e7c 023478 arg mem_aes_cmac_temp ,contw 
+0x6e7d 023479 call load_inverse_result 
+0x6e7e 023480 setarg 1000000 
+0x6e7f 023481 copy pdata ,rega 
+0x6e80 023482 fetch 4 ,mem_aes_cmac_temp 
+0x6e81 023483 idiv rega 
+0x6e82 023484 call wait_div_end 
+0x6e83 023485 remainder pdata 
+0x6e84 023486 store 4 ,mem_gkey 
+0x6e85 023488 rtn 
+:      023490 function_f6_eb:
+0x6e86 023491 jam 65 ,mem_aes_cmac_data_length 
+0x6e87 023492 arg memdat ,contw 
+0x6e88 023493 call store_addr_common_a 
+0x6e89 023494 call store_addr_common_b 
+0x6e8a 023495 fetch 3 ,mem_le_pres + 1 
+0x6e8b 023496 istore 3 ,contw 
+0x6e8c 023499 call get_r 
+0x6e8d 023501 arg mem_le_mrand ,contr 
+0x6e8e 023502 call memcpy16 
+0x6e8f 023503 arg mem_le_srand ,contr 
+0x6e90 023504 call memcpy16 
+0x6e91 023505 call inverse_memdat 
+0x6e92 023506 arg mem_le_mackey ,contr 
+0x6e93 023507 arg mem_aes_cmac_k ,contw 
+0x6e94 023508 call memcpy16 
+0x6e95 023510 branch function_aes_cmac 
+:      023514 get_r:
+0x6e96 023515 fetch 4 ,mem_le_tk 
+0x6e97 023516 istore 4 ,contw 
+0x6e98 023517 call memset0_4 
+0x6e99 023518 branch memset0_8 
+:      023520 function_f6_ea:
+0x6e9a 023521 set1 mark_ext_patch ,mark 
+0x6e9b 023522 bpatch patch39_7 ,mem_patch39 
+0x6e9c 023523 jam 65 ,mem_aes_cmac_data_length 
+0x6e9d 023524 arg memdat ,contw 
+0x6e9e 023525 call store_addr_common_b 
+0x6e9f 023526 call store_addr_common_a 
+0x6ea0 023527 fetch 3 ,mem_le_preq + 1 
+0x6ea1 023528 istore 3 ,contw 
+0x6ea2 023531 call get_r 
+0x6ea3 023532 arg mem_le_srand ,contr 
+0x6ea4 023533 call memcpy16 
+0x6ea5 023534 arg mem_le_mrand ,contr 
+0x6ea6 023535 call memcpy16 
+0x6ea7 023536 call inverse_memdat 
+0x6ea8 023537 arg mem_le_mackey ,contr 
+0x6ea9 023538 arg mem_aes_cmac_k ,contw 
+0x6eaa 023539 call memcpy16 
+0x6eab 023541 call function_aes_cmac 
+0x6eac 023542 arg mem_aes_cmac_temp ,contw 
+0x6ead 023543 branch load_inverse_result 
+:      023545 function_f5:
+0x6eae 023546 jam 32 ,mem_aes_cmac_data_length 
+0x6eaf 023547 arg mem_le_dhkey_256 ,contr 
+0x6eb0 023548 arg memdat ,contw 
+0x6eb1 023549 call memcpy32 
+0x6eb2 023550 call inverse_memdat 
+0x6eb3 023551 arg mem_le_slat ,contr 
+0x6eb4 023552 call store_inverse_k 
+0x6eb5 023553 call function_aes_cmac 
+0x6eb6 023554 arg mem_aes_cmac_k ,contw 
+0x6eb7 023555 call store_aes_result 
+0x6eb8 023556 arg 1 ,temp 
+0x6eb9 023557 call function_f5_common 
+0x6eba 023558 arg mem_le_ltk ,contw 
+0x6ebb 023559 call load_inverse_result 
+0x6ebc 023560 arg 0 ,temp 
+0x6ebd 023561 call function_f5_common 
+0x6ebe 023562 arg mem_le_mackey ,contw 
+0x6ebf 023564 branch store_aes_result 
+:      023567 function_f5_common:
+0x6ec0 023568 set1 mark_ext_patch ,mark 
+0x6ec1 023569 bpatch patch3a_0 ,mem_patch3a 
+0x6ec2 023570 jam 53 ,mem_aes_cmac_data_length 
+0x6ec3 023571 setarg 0x100 
+0x6ec4 023572 store 2 ,memdat 
+0x6ec5 023573 call store_addr_common_b 
+0x6ec6 023574 call store_addr_common_a 
+0x6ec7 023575 arg mem_le_srand ,contr 
+0x6ec8 023576 call memcpy16 
+0x6ec9 023577 arg mem_le_mrand ,contr 
+0x6eca 023578 call memcpy16 
+0x6ecb 023580 setarg 0x6c65 
+0x6ecc 023581 istore 2 ,contw 
+0x6ecd 023582 setarg 0x6274 
+0x6ece 023583 istore 2 ,contw 
+0x6ecf 023584 istoret 1 ,contw 
+0x6ed0 023585 call inverse_memdat 
+0x6ed1 023586 branch function_aes_cmac 
+:      023588 store_addr_common_b:
+0x6ed2 023589 fetch 6 ,mem_le_lap 
+0x6ed3 023590 istore 6 ,contw 
+0x6ed4 023591 fetch 1 ,mem_le_conn_own_addr_type 
+0x6ed5 023592 istore 1 ,contw 
+0x6ed6 023593 rtn 
+:      023595 store_addr_common_a:
+0x6ed7 023596 fetch 6 ,mem_le_plap 
+0x6ed8 023597 istore 6 ,contw 
+0x6ed9 023602 fetch 1 ,mem_le_conn_peer_addr_type 
+0x6eda 023603 istore 1 ,contw 
+0x6edb 023604 rtn 
+:      023606 function_f4_ca:
+0x6edc 023607 jam 65 ,mem_aes_cmac_data_length 
+0x6edd 023608 fetch 1 ,mem_passkey_1bit 
+0x6ede 023609 store 1 ,memdat 
+0x6edf 023610 arg mem_le_pubkey_local_x_256 ,contr 
+0x6ee0 023611 call memcpy32 
+0x6ee1 023612 arg mem_le_pubkey_remote_x_256 ,contr 
+0x6ee2 023613 call memcpy32 
+0x6ee3 023614 call inverse_memdat 
+0x6ee4 023615 arg mem_le_mrand ,contr 
+0x6ee5 023616 call store_inverse_k 
+0x6ee6 023617 branch function_aes_cmac 
+:      023620 function_f4_cb:
+0x6ee7 023621 jam 65 ,mem_aes_cmac_data_length 
+0x6ee8 023622 fetch 1 ,mem_passkey_1bit 
+0x6ee9 023623 store 1 ,memdat 
+0x6eea 023624 arg mem_le_pubkey_remote_x_256 ,contr 
+0x6eeb 023625 call memcpy32 
+0x6eec 023626 arg mem_le_pubkey_local_x_256 ,contr 
+0x6eed 023627 call memcpy32 
+0x6eee 023628 call inverse_memdat 
+0x6eef 023629 arg mem_le_srand ,contr 
+0x6ef0 023630 call store_inverse_k 
+0x6ef1 023631 branch function_aes_cmac 
+:      023633 function_aes_cmac:
+0x6ef2 023634 set1 mark_ext_patch ,mark 
+0x6ef3 023635 bpatch patch3a_1 ,mem_patch3a 
+0x6ef4 023636 call function_aes_cmac_generate_subkey 
+0x6ef5 023640 fetch 1 ,mem_aes_cmac_data_length 
+0x6ef6 023641 copy pdata ,temp 
+:      023642 function_ceil16:
+0x6ef7 023643 increase 15 ,pdata 
+0x6ef8 023644 rshift4 pdata ,pdata 
+0x6ef9 023645 copy pdata ,regb 
+0x6efa 023646 branch function_aes_cmac_set_flag_0_balnk ,blank 
+0x6efb 023647 and temp ,0x0f ,pdata 
+0x6efc 023648 nbranch function_aes_cmac_set_flag_0 ,blank 
+0x6efd 023650 arg mem_aes_cmac_k1 ,regc 
+0x6efe 023651 arg memdat ,pdata 
+0x6eff 023652 increase -16 ,pdata 
+0x6f00 023655 iadd temp ,rega 
+0x6f01 023656 arg mem_aes_cmac_m_last ,contw 
+0x6f02 023657 arg 4 ,loopcnt 
+0x6f03 023658 call xor_loop 
+0x6f04 023662 branch function_aes_cmac_aes 
+:      023664 function_aes_cmac_set_flag_0_balnk:
+0x6f05 023665 arg 1 ,regb 
+0x6f06 023666 arg 0 ,rega 
+0x6f07 023668 branch function_aes_cmac_set_flag_0_common 
+:      023671 function_aes_cmac_set_flag_0:
+0x6f08 023673 and temp ,0x0f ,rega 
+:      023674 function_aes_cmac_set_flag_0_common:
+0x6f09 023675 arg memdat ,pdata 
+0x6f0a 023676 iadd temp ,pdata 
+0x6f0b 023677 isub rega ,contr 
+0x6f0c 023679 arg mem_aes_cmac_temp ,contw 
+0x6f0d 023680 call function_aes_cmac_padding 
+0x6f0e 023682 arg mem_aes_cmac_k2 ,regc 
+0x6f0f 023683 arg mem_aes_cmac_temp ,rega 
+0x6f10 023684 arg mem_aes_cmac_m_last ,contw 
+0x6f11 023685 arg 4 ,loopcnt 
+0x6f12 023686 call xor_loop 
+:      023693 function_aes_cmac_aes:
+0x6f13 023698 call aes_clear_data 
+0x6f14 023699 call aes_init 
+0x6f15 023702 arg memdat ,contr 
+:      023703 function_aes_cmac_aes_loop:
+0x6f16 023705 increase -1 ,regb 
+0x6f17 023706 deposit regb 
+0x6f18 023707 branch function_aes_cmac_aes_loop_end ,blank 
+0x6f19 023708 call load_data128 
+0x6f1a 023709 call do_aes_cbc 
+0x6f1b 023710 branch function_aes_cmac_aes_loop 
+:      023712 function_aes_cmac_aes_loop_end:
+0x6f1c 023713 arg mem_aes_cmac_temp ,contw 
+0x6f1d 023714 call store_aes_result 
+0x6f1e 023715 arg mem_aes_cmac_m_last ,contr 
+0x6f1f 023716 call load_data128 
+0x6f20 023717 call aes_init 
+0x6f21 023718 arg mem_aes_cmac_temp ,contr 
+0x6f22 023719 call load_data128 
+0x6f23 023720 branch do_aes_cbc 
+:      023724 load_inverse_result:
+0x6f24 023726 copy contw ,rega 
+0x6f25 023727 call store_aes_result 
+0x6f26 023729 arg 16 ,loopcnt 
+0x6f27 023730 branch inverse_data 
+:      023732 store_inverse_k:
+0x6f28 023733 arg mem_aes_cmac_k ,contw 
+0x6f29 023734 call memcpy16 
+:      023735 inverse_k:
+0x6f2a 023736 arg 16 ,loopcnt 
+0x6f2b 023737 arg mem_aes_cmac_k ,rega 
+0x6f2c 023738 branch inverse_data 
+:      023740 inverse_memdat:
+0x6f2d 023741 fetch 1 ,mem_aes_cmac_data_length 
+0x6f2e 023742 copy pdata ,loopcnt 
+0x6f2f 023743 arg memdat ,rega 
+0x6f30 023744 branch inverse_data 
+:      023746 bn_lshift_0_inverse:
+0x6f31 023747 ifetch 1 ,rega 
+0x6f32 023748 lshift pdata ,pdata 
+0x6f33 023749 isolate1 0 ,regc 
+0x6f34 023750 setflag true ,0 ,pdata 
+0x6f35 023751 isolate1 8 ,pdata 
+0x6f36 023752 setflag true ,0 ,regc 
+0x6f37 023753 istore 1 ,rega 
+0x6f38 023754 increase -1 ,rega 
+0x6f39 023755 loop bn_lshift_0_inverse 
+0x6f3a 023756 rtn 
+:      023758 function_aes_cmac_k1_inverse:
+0x6f3b 023759 arg mem_aes_cmac_k1 ,rega 
+:      023760 function_aes_cmac_inverse_common:
+0x6f3c 023761 increase 15 ,rega 
+0x6f3d 023762 force 16 ,loopcnt 
+0x6f3e 023763 force 0 ,regc 
+0x6f3f 023764 branch bn_lshift_0_inverse 
+:      023766 function_aes_cmac_k2_inverse:
+0x6f40 023767 arg mem_aes_cmac_k2 ,rega 
+0x6f41 023768 branch function_aes_cmac_inverse_common 
+:      023771 function_aes_cmac_generate_subkey:
+0x6f42 023772 arg mem_aes_cmac_k ,contr 
+0x6f43 023773 call load_key 
+0x6f44 023776 force regidx_xor ,regext_index 
+0x6f45 023777 call aes_clear 
+0x6f46 023778 call aes_clear_data 
+0x6f47 023779 call do_aes_ocb 
+0x6f48 023784 arg mem_aes_cmac_k1 ,contw 
+0x6f49 023785 call store_aes_result 
+:      023786 function_aes_cmac_k1:
+0x6f4a 023787 set1 mark_ext_patch ,mark 
+0x6f4b 023788 bpatch patch3a_2 ,mem_patch3a 
+0x6f4c 023789 fetch 1 ,mem_aes_cmac_k1 
+0x6f4d 023790 isolate1 7 ,pdata 
+0x6f4e 023791 nbranch function_aes_cmac_k1_0 ,true 
+0x6f4f 023792 call function_aes_cmac_k1_inverse 
+0x6f50 023795 arg mem_aes_cmac_k1 ,regc 
+0x6f51 023797 arg mem_aes_cmac_k1 ,contw 
+0x6f52 023800 call function_aes_cmac_xor_rb 
+0x6f53 023801 branch function_aes_cmac_k2 
+:      023802 function_aes_cmac_k1_0:
+0x6f54 023803 call function_aes_cmac_k1_inverse 
+:      023804 function_aes_cmac_k2:
+0x6f55 023806 arg mem_aes_cmac_k1 ,contr 
+0x6f56 023807 arg mem_aes_cmac_k2 ,contw 
+0x6f57 023808 call memcpy16 
+0x6f58 023809 fetch 1 ,mem_aes_cmac_k2 
+0x6f59 023810 isolate1 7 ,pdata 
+0x6f5a 023811 nbranch function_aes_cmac_k2_inverse ,true 
+0x6f5b 023812 call function_aes_cmac_k2_inverse 
+0x6f5c 023814 arg mem_aes_cmac_k2 ,regc 
+0x6f5d 023816 arg mem_aes_cmac_k2 ,contw 
+:      023822 function_aes_cmac_xor_rb:
+0x6f5e 023823 arg 3 ,loopcnt 
+:      023824 function_aes_cmac_xor_rb_loop:
+0x6f5f 023825 arg 0 ,temp 
+0x6f60 023826 call function_aes_cmac_xor_loop_common 
+0x6f61 023827 increase 4 ,regc 
+0x6f62 023828 loop function_aes_cmac_xor_rb_loop 
+0x6f63 023829 arg 0x8700 ,temp 
+0x6f64 023830 lshift16 temp ,temp 
+:      023831 function_aes_cmac_xor_loop_common:
+0x6f65 023832 ifetch 4 ,regc 
+0x6f66 023833 ixor temp ,pdata 
+0x6f67 023834 istore 4 ,contw 
+0x6f68 023835 rtn 
+:      023841 function_aes_cmac_padding:
+0x6f69 023842 set1 mark_ext_patch ,mark 
+0x6f6a 023843 bpatch patch3a_3 ,mem_patch3a 
+0x6f6b 023844 arg 16 ,loopcnt 
+0x6f6c 023845 arg 0 ,pdata 
+:      023846 function_aes_cmac_padding_loop:
+0x6f6d 023847 isub rega ,null 
+0x6f6e 023848 branch function_aes_cmac_padding_beq_length ,zero 
+0x6f6f 023849 branch function_aes_cmac_padding_big_length ,positive 
+0x6f70 023850 ifetcht 1 ,contr 
+0x6f71 023851 istoret 1 ,contw 
+:      023852 function_aes_cmac_padding_loop2:
+0x6f72 023853 increase 1 ,pdata 
+0x6f73 023854 loop function_aes_cmac_padding_loop 
+0x6f74 023855 rtn 
+:      023856 function_aes_cmac_padding_beq_length:
+0x6f75 023857 arg 0x80 ,temp 
+:      023858 function_aes_cmac_padding_common:
+0x6f76 023859 istoret 1 ,contw 
+0x6f77 023860 branch function_aes_cmac_padding_loop2 
+:      023862 function_aes_cmac_padding_big_length:
+0x6f78 023863 arg 0 ,temp 
+0x6f79 023864 branch function_aes_cmac_padding_common 
+:      023867 generate_kinit:
+0x6f7a 023868 call function_e22 
+0x6f7b 023869 arg mem_input_store ,contr 
+0x6f7c 023870 arg mem_kinit ,contw 
+0x6f7d 023871 branch memcpy16 
+:      023874 function_e21:
+0x6f7e 023875 disable user 
+0x6f7f 023876 call function_expand 
+0x6f80 023877 arg mem_random_number ,contr 
+0x6f81 023878 arg mem_x ,contw 
+0x6f82 023879 force 15 ,loopcnt 
+0x6f83 023880 call memcpy 
+0x6f84 023881 ifetch 1 ,contr 
+0x6f85 023882 xor_into 6 ,pdata 
+0x6f86 023883 istore 1 ,contw 
+0x6f87 023884 setarg mem_y 
+0x6f88 023885 store 2 ,memp_ar_input 
+0x6f89 023886 setarg mem_x 
+0x6f8a 023887 store 2 ,memp_ar_key 
+0x6f8b 023888 set1 mark_ar2 ,mark 
+0x6f8c 023889 branch function_ar 
+:      023893 function_e22:
+0x6f8d 023894 fetcht 1 ,mem_pin_length 
+0x6f8e 023895 force 16 ,regb 
+0x6f8f 023896 add temp ,6 ,regc 
+0x6f90 023897 sub regc ,16 ,null 
+0x6f91 023898 branch function_e22_pin_init ,positive 
+0x6f92 023899 force 16 ,regc 
+:      023900 function_e22_pin_init:
+0x6f93 023901 arg mem_x ,contw 
+:      023902 function_e22_genx_pin:
+0x6f94 023903 arg mem_pin ,contr 
+0x6f95 023904 copy temp ,loopcnt 
+0x6f96 023905 disable user 
+:      023906 function_e22_genx_loop:
+0x6f97 023907 ifetch 1 ,contr 
+0x6f98 023908 istore 1 ,contw 
+0x6f99 023909 increase -1 ,regb 
+0x6f9a 023910 branch function_e22_genx_end ,zero 
+0x6f9b 023911 loop function_e22_genx_loop 
+0x6f9c 023912 branch function_e22_genx_pin ,user 
+0x6f9d 023913 enable user 
+0x6f9e 023914 force 6 ,loopcnt 
+0x6f9f 023915 copy rega ,contr 
+0x6fa0 023916 branch function_e22_genx_loop 
+:      023917 function_e22_genx_end:
+0x6fa1 023918 arg mem_random_number ,contr 
+0x6fa2 023919 arg mem_y ,contw 
+0x6fa3 023920 call memcpy16 
+0x6fa4 023921 fetch 1 ,mem_y15 
+0x6fa5 023922 ixor regc ,pdata 
+0x6fa6 023923 store 1 ,mem_y15 
+0x6fa7 023924 setarg mem_y 
+0x6fa8 023925 store 2 ,memp_ar_input 
+0x6fa9 023926 setarg mem_x 
+0x6faa 023927 store 2 ,memp_ar_key 
+0x6fab 023928 set1 mark_ar2 ,mark 
+0x6fac 023929 branch function_ar 
+:      023934 function_e1:
+0x6fad 023935 disable user 
+0x6fae 023936 call function_expand 
+0x6faf 023937 branch function_hash 
+:      023939 function_e3:
+0x6fb0 023940 arg mem_aco ,rega 
+0x6fb1 023941 enable user 
+0x6fb2 023942 call function_expand 
+0x6fb3 023943 call function_hash 
+0x6fb4 023944 arg mem_input_store ,contr 
+0x6fb5 023945 arg mem_kc ,contw 
+0x6fb6 023946 branch memcpy16 
+:      023949 function_hash:
+0x6fb7 023950 setarg mem_random_number 
+0x6fb8 023951 store 2 ,memp_ar_input 
+0x6fb9 023952 setarg mem_link_key 
+0x6fba 023953 store 2 ,memp_ar_key 
+0x6fbb 023954 set0 mark_ar2 ,mark 
+0x6fbc 023955 call function_ar 
+0x6fbd 023956 arg mem_input_store ,rega 
+0x6fbe 023957 arg mem_random_number ,regb 
+0x6fbf 023958 arg mem_x ,contw 
+0x6fc0 023959 call xor16 
+0x6fc1 023960 arg mem_x ,rega 
+0x6fc2 023961 arg mem_y ,regb 
+0x6fc3 023962 copy regb ,contw 
+0x6fc4 023963 enable user 
+0x6fc5 023964 call add16 
+0x6fc6 023965 call key_offset 
+0x6fc7 023966 setarg mem_y 
+0x6fc8 023967 store 2 ,memp_ar_input 
+0x6fc9 023968 setarg mem_x 
+0x6fca 023969 store 2 ,memp_ar_key 
+0x6fcb 023970 set1 mark_ar2 ,mark 
+0x6fcc 023971 branch function_ar 
+:      023975 function_ar:
+0x6fcd 023976 jam 0 ,mem_ar_hround 
+0x6fce 023977 fetch 2 ,memp_ar_key 
+0x6fcf 023978 iforce contr 
+0x6fd0 023979 arg mem_key_store ,contw 
+0x6fd1 023980 call memcpy16 
+0x6fd2 023981 fetch 2 ,memp_ar_input 
+0x6fd3 023982 iforce contr 
+0x6fd4 023983 arg mem_input_store ,contw 
+0x6fd5 023984 call memcpy16 
+:      023986 function_ar_loop:
+0x6fd6 023987 call key_scheduling 
+0x6fd7 023988 disable user 
+0x6fd8 023989 bmark0 mark_ar2 ,function_ar_original 
+0x6fd9 023990 fetch 1 ,mem_ar_hround 
+0x6fda 023991 bne 4 ,function_ar_original 
+0x6fdb 023992 fetch 2 ,memp_ar_input 
+0x6fdc 023993 iforce regb 
+0x6fdd 023994 call xor_mod32_ar2 
+:      023995 function_ar_original:
+0x6fde 023996 call xor_mod32 
+0x6fdf 023997 call el_boxes 
+0x6fe0 023998 fetch 1 ,mem_ar_hround 
+0x6fe1 023999 increase 1 ,pdata 
+0x6fe2 024000 store 1 ,mem_ar_hround 
+0x6fe3 024002 call key_scheduling 
+0x6fe4 024003 enable user 
+0x6fe5 024004 call xor_mod32 
+0x6fe6 024005 call pht 
+0x6fe7 024006 call permute 
+0x6fe8 024007 call pht 
+0x6fe9 024008 call permute 
+0x6fea 024009 call pht 
+0x6feb 024010 call permute 
+0x6fec 024011 call pht 
+0x6fed 024012 fetch 1 ,mem_ar_hround 
+0x6fee 024013 increase 1 ,pdata 
+0x6fef 024014 store 1 ,mem_ar_hround 
+0x6ff0 024015 bne 16 ,function_ar_loop 
+0x6ff1 024016 call key_scheduling 
+0x6ff2 024017 disable user 
+0x6ff3 024018 branch xor_mod32 
+:      024022 key_scheduling:
+0x6ff4 024023 fetch 1 ,mem_ar_hround 
+0x6ff5 024024 arg mem_key_store ,contr 
+0x6ff6 024025 branch key_sched_zero ,blank 
+0x6ff7 024026 iforce regb 
+0x6ff8 024027 force 17 ,loopcnt 
+0x6ff9 024028 copy contr ,contw 
+:      024029 key_rotateloop:
+0x6ffa 024030 ifetch 1 ,contr 
+0x6ffb 024031 lshift3 pdata ,temp 
+0x6ffc 024032 rshift2 pdata ,pdata 
+0x6ffd 024033 rshift3 pdata ,pdata 
+0x6ffe 024034 ior temp ,pdata 
+0x6fff 024035 istore 1 ,contw 
+0x7000 024036 loop key_rotateloop 
+0x7001 024037 setarg mem_key_store 
+0x7002 024038 iadd regb ,contr 
+0x7003 024039 force 16 ,loopcnt 
+0x7004 024040 arg mem_round_key ,contw 
+:      024041 key_select_octet_loop:
+0x7005 024042 ifetch 1 ,contr 
+0x7006 024043 istore 1 ,contw 
+0x7007 024044 compare mem_key_store_end ,contr ,0xff 
+0x7008 024045 nbranch key_select_octet_nwrap ,true 
+0x7009 024046 increase -17 ,contr 
+:      024047 key_select_octet_nwrap:
+0x700a 024048 loop key_select_octet_loop 
+0x700b 024049 force 0 ,rega 
+0x700c 024050 add regb ,-1 ,regc 
+0x700d 024051 lshift2 regc ,regc 
+0x700e 024052 lshift2 regc ,regc 
+0x700f 024053 call enable_authrom 
+0x7010 024054 setarg mem_b_box 
+0x7011 024055 iadd regc ,regc 
+0x7012 024056 arg mem_round_key ,contw 
+0x7013 024057 force 16 ,loopcnt 
+:      024058 bias_round_key_loop:
+0x7014 024059 ifetcht 1 ,regc 
+0x7015 024060 ifetch 1 ,contw 
+0x7016 024061 iadd temp ,pdata 
+0x7017 024062 istore 1 ,contw 
+0x7018 024063 increase 1 ,regc 
+0x7019 024064 loop bias_round_key_loop 
+0x701a 024065 branch disable_authrom 
+:      024067 key_sched_zero:
+0x701b 024068 force 16 ,loopcnt 
+0x701c 024069 force 0 ,temp 
+:      024070 create_byte_16_loop:
+0x701d 024071 ifetch 1 ,contr 
+0x701e 024072 ixor temp ,temp 
+0x701f 024073 loop create_byte_16_loop 
+0x7020 024074 deposit temp 
+0x7021 024075 istore 1 ,contr 
+0x7022 024076 arg mem_key_store ,contr 
+0x7023 024077 arg mem_round_key ,contw 
+0x7024 024078 branch memcpy16 
+:      024080 xor_mod32:
+0x7025 024081 arg mem_round_key ,regb 
+:      024082 xor_mod32_ar2:
+0x7026 024083 force 16 ,loopcnt 
+0x7027 024084 arg mem_input_store ,rega 
+0x7028 024085 copy rega ,contw 
+:      024086 xor_mod32_loop:
+0x7029 024087 ifetcht 1 ,rega 
+0x702a 024088 ifetch 1 ,regb 
+0x702b 024089 ixor temp ,alarm 
+0x702c 024090 and loopcnt ,3 ,regc 
+0x702d 024091 nbranch xor_mod32_invert ,user 
+0x702e 024092 xor_into 3 ,regc 
+:      024093 xor_mod32_invert:
+0x702f 024094 sub regc ,1 ,regc 
+0x7030 024095 branch xor_even ,positive 
+0x7031 024096 iadd temp ,alarm 
+:      024097 xor_even:
+0x7032 024098 deposit alarm 
+0x7033 024099 istore 1 ,contw 
+0x7034 024100 increase 1 ,rega 
+0x7035 024101 increase 1 ,regb 
+0x7036 024102 loop xor_mod32_loop 
+0x7037 024103 rtn 
+:      024105 el_boxes:
+0x7038 024106 call enable_authrom 
+0x7039 024107 force 16 ,loopcnt 
+0x703a 024108 arg mem_input_store ,rega 
+:      024109 el_box_loop:
+0x703b 024110 ifetch 1 ,rega 
+0x703c 024111 arg mem_e_box ,contr 
+0x703d 024112 and loopcnt ,3 ,regc 
+0x703e 024113 sub regc ,1 ,null 
+0x703f 024114 branch e_boxes ,positive 
+0x7040 024115 arg mem_l_box ,contr 
+:      024116 e_boxes:
+0x7041 024117 iadd contr ,contr 
+0x7042 024118 ifetch 1 ,contr 
+0x7043 024119 istore 1 ,rega 
+0x7044 024120 increase 1 ,rega 
+0x7045 024121 loop el_box_loop 
+0x7046 024122 branch disable_authrom 
+:      024124 pht:
+0x7047 024125 force 8 ,loopcnt 
+0x7048 024126 arg mem_input_store ,contr 
+0x7049 024127 copy contr ,contw 
+:      024128 pht_loop:
+0x704a 024129 ifetch 1 ,contr 
+0x704b 024130 iforce rega 
+0x704c 024131 ifetch 1 ,contr 
+0x704d 024132 iforce regb 
+0x704e 024133 lshift rega ,pdata 
+0x704f 024134 iadd regb ,pdata 
+0x7050 024135 istore 1 ,contw 
+0x7051 024136 deposit rega 
+0x7052 024137 iadd regb ,pdata 
+0x7053 024138 istore 1 ,contw 
+0x7054 024139 loop pht_loop 
+0x7055 024140 rtn 
+:      024143 permute:
+0x7056 024144 setarg 0x8ae42c 
+0x7057 024145 iforce temp 
+0x7058 024146 force 7 ,loopcnt 
+0x7059 024147 call permute_exchange 
+0x705a 024148 setarg 0xd751b 
+0x705b 024149 iforce temp 
+0x705c 024150 force 5 ,loopcnt 
+0x705d 024151 call permute_exchange 
+0x705e 024152 fetch 1 ,mem_input_store + 15 
+0x705f 024153 iforce rega 
+0x7060 024154 fetch 1 ,mem_input_store + 3 
+0x7061 024155 store 1 ,mem_input_store + 15 
+0x7062 024156 deposit rega 
+0x7063 024157 store 1 ,mem_input_store + 3 
+0x7064 024158 rtn 
+:      024160 permute_exchange:
+0x7065 024161 and temp ,0xf ,regb 
+:      024162 permute_loop:
+0x7066 024163 and temp ,0xf ,pdata 
+0x7067 024164 arg mem_input_store ,contw 
+0x7068 024165 iadd contw ,contw 
+0x7069 024166 ifetch 1 ,contw 
+0x706a 024167 iforce regc 
+0x706b 024168 deposit rega 
+0x706c 024169 istore 1 ,contw 
+0x706d 024170 copy regc ,rega 
+0x706e 024171 rshift4 temp ,temp 
+0x706f 024172 loop permute_loop 
+0x7070 024173 setarg mem_input_store 
+0x7071 024174 iadd regb ,contw 
+0x7072 024175 deposit rega 
+0x7073 024176 istore 1 ,contw 
+0x7074 024177 rtn 
+:      024179 add16:
+0x7075 024180 enable user 
+0x7076 024181 branch xor_add16 
+:      024183 xor16:
+0x7077 024184 disable user 
+:      024185 xor_add16:
+0x7078 024186 force 16 ,loopcnt 
+:      024187 xoradd_loop:
+0x7079 024188 ifetcht 1 ,rega 
+0x707a 024189 ifetch 1 ,regb 
+0x707b 024190 branch xoradd_add ,user 
+0x707c 024191 ixor temp ,pdata 
+0x707d 024192 branch xoradd_store 
+:      024193 xoradd_add:
+0x707e 024194 iadd temp ,pdata 
+:      024195 xoradd_store:
+0x707f 024196 istore 1 ,contw 
+0x7080 024197 increase 1 ,rega 
+0x7081 024198 increase 1 ,regb 
+0x7082 024199 loop xoradd_loop 
+0x7083 024200 rtn 
+:      024203 function_expand:
+0x7084 024204 arg mem_y ,contw 
+0x7085 024205 ifetch 6 ,rega 
+0x7086 024206 istore 6 ,contw 
+0x7087 024207 branch expand_12 ,user 
+0x7088 024208 ifetch 6 ,rega 
+0x7089 024209 branch expand_cont 
+:      024210 expand_12:
+0x708a 024211 ifetch 6 ,contr 
+:      024212 expand_cont:
+0x708b 024213 istore 6 ,contw 
+0x708c 024214 ifetch 4 ,rega 
+0x708d 024215 istore 4 ,contw 
+0x708e 024216 rtn 
+:      024218 key_offset:
+0x708f 024219 arg mem_link_key ,contr 
+0x7090 024220 arg mem_x ,contw 
+0x7091 024221 arg 0 ,temp 
+0x7092 024222 setarg 0x8395a7 
+0x7093 024223 call concatenate_temp24 
+0x7094 024224 setarg 0xb3c1df 
+0x7095 024225 call concatenate_temp24 
+0x7096 024226 setarg 0xe5e9 
+0x7097 024227 call concatenate_temp16 
+0x7098 024228 copy temp ,regab 
+0x7099 024229 disable user 
+0x709a 024230 call key_addxor 
+0x709b 024231 copy regab ,temp 
+0x709c 024232 enable user 
+0x709d 024233 branch key_addxor 
+:      024235 key_addxor:
+0x709e 024236 force 8 ,loopcnt 
+:      024237 key_addxor_loop:
+0x709f 024238 ifetch 1 ,contr 
+0x70a0 024239 compare 1 ,loopcnt ,1 
+0x70a1 024240 branch key_high ,user 
+0x70a2 024241 branch key_xor ,true 
+:      024242 key_add:
+0x70a3 024243 iadd temp ,pdata 
+0x70a4 024244 branch key_store 
+:      024245 key_high:
+0x70a5 024246 branch key_add ,true 
+:      024247 key_xor:
+0x70a6 024248 ixor temp ,pdata 
+:      024249 key_store:
+0x70a7 024250 istore 1 ,contw 
+0x70a8 024251 rshift8 temp ,temp 
+0x70a9 024252 loop key_addxor_loop 
+0x70aa 024253 rtn 
+:      024255 copy_aco:
+0x70ab 024256 fetch 6 ,mem_input_store + 4 
+0x70ac 024257 store 6 ,mem_aco 
+0x70ad 024258 ifetch 6 ,contr 
+0x70ae 024259 istore 6 ,contw 
+0x70af 024260 rtn 
+:      024262 concatenate_temp24:
+0x70b0 024263 lshift8 temp ,temp 
+:      024264 concatenate_temp16:
+0x70b1 024265 lshift16 temp ,temp 
+0x70b2 024266 ior temp ,temp 
+0x70b3 024267 rtn 
+:      024270 loop1:
+0x70b4 024271 branch loop1 
+:      024275 generate_stk:
+0x70b5 024276 set1 mark_ext_patch ,mark 
+0x70b6 024277 bpatch patch3a_4 ,mem_patch3a 
+0x70b7 024278 call function_s1 
+0x70b8 024279 arg mem_le_ltk ,contw 
+0x70b9 024280 branch store_aes_result 
+:      024283 authenticate_rconfirm:
+0x70ba 024284 arg mem_le_srand ,contw 
+0x70bb 024285 branch authenticate_mconfirm ,master 
+0x70bc 024286 arg mem_le_mrand ,contw 
+:      024287 authenticate_mconfirm:
+0x70bd 024288 copy contr ,rega 
+0x70be 024289 call memcpy16 
+0x70bf 024290 call function_c1 
+0x70c0 024291 arg mem_le_rconfirm ,contr 
+0x70c1 024292 branch compare_res 
+:      024294 generate_confirm:
+0x70c2 024295 arg mem_le_mrand ,rega 
+0x70c3 024296 branch generate_mrand ,master 
+0x70c4 024297 arg mem_le_srand ,rega 
+:      024298 generate_mrand:
+0x70c5 024299 copy rega ,contw 
+0x70c6 024300 call generate_random 
+0x70c7 024301 branch function_c1 
+:      024303 generate_sk:
+0x70c8 024304 arg mem_le_skdm ,contr 
+0x70c9 024305 call load_data128 
+0x70ca 024306 arg mem_le_ltk ,contr 
+0x70cb 024307 call load_regext 
+0x70cc 024308 force 0x38 ,aes_ctrl 
+0x70cd 024309 force 0x0 ,aes_ctrl 
+0x70ce 024310 call wait_aes 
+0x70cf 024311 arg mem_le_sk ,contw 
+0x70d0 024312 branch store_aes_result 
+:      024315 first_block_counter:
+0x70d1 024316 force 0x49 ,pdata 
+0x70d2 024317 branch first_block 
+:      024318 first_block_data:
+0x70d3 024319 force 1 ,pdata 
+:      024320 first_block:
+0x70d4 024321 force regidx_data ,regext_index 
+0x70d5 024322 lshift8 temp ,regext 
+0x70d6 024323 ior regext ,regext 
+0x70d7 024324 increase 1 ,regext_index 
+0x70d8 024325 rshift8 temp ,regext 
+0x70d9 024326 rshift16 regext ,regext 
+0x70da 024327 fetch 2 ,mem_le_ivm 
+0x70db 024328 lshift16 ,pdata ,pdata 
+0x70dc 024329 ior regext ,regext 
+0x70dd 024330 increase 1 ,regext_index 
+0x70de 024331 ifetch 4 ,contr 
+0x70df 024332 iforce regext 
+0x70e0 024333 increase 1 ,regext_index 
+0x70e1 024334 ifetch 2 ,contr 
+0x70e2 024335 byteswap rega ,regext 
+0x70e3 024336 lshift16 regext ,regext 
+0x70e4 024337 ior regext ,regext 
+0x70e5 024338 increase 1 ,regext_index 
+0x70e6 024339 rtn 
+:      024343 generate_mic:
+0x70e7 024344 add regc ,1 ,contr 
+0x70e8 024345 ifetch 1 ,contr 
+0x70e9 024346 iforce rega 
+0x70ea 024347 call first_block_counter 
+0x70eb 024348 call do_aes_ocb 
+0x70ec 024350 force regidx_data ,regext_index 
+0x70ed 024351 ifetch 1 ,regc 
+0x70ee 024352 and_into 0x3 ,pdata 
+0x70ef 024353 lshift16 pdata ,regext 
+0x70f0 024354 set1 8 ,regext 
+0x70f1 024355 call clear_hidata 
+0x70f2 024356 call do_aes_cbc 
+0x70f3 024358 copy rega ,loopcnt 
+0x70f4 024359 add regc ,2 ,contr 
+0x70f5 024360 call padding_data 
+:      024361 generate_mic_loop:
+0x70f6 024362 call aes_load_data 
+0x70f7 024363 call do_aes_cbc 
+0x70f8 024364 deposit loopcnt 
+0x70f9 024365 branch generate_mic_end ,blank 
+0x70fa 024366 branch generate_mic_loop 
+:      024367 generate_mic_end:
+0x70fb 024368 force regidx_result ,regext_index 
+0x70fc 024369 deposit regext 
+0x70fd 024370 store 4 ,mem_le_mic 
+0x70fe 024371 rtn 
+:      024373 aes_crypt_data:
+0x70ff 024374 increase 1 ,rega 
+0x7100 024375 call first_block_data 
+0x7101 024376 copy regc ,contr 
+0x7102 024377 call aes_load_xor 
+0x7103 024378 call do_aes_ctr 
+0x7104 024379 call store_enc_data 
+0x7105 024380 increase 16 ,regc 
+0x7106 024381 increase -16 ,regb 
+0x7107 024382 branch aes_crypt_data ,positive 
+0x7108 024383 rtn 
+:      024385 le_encrypt:
+0x7109 024386 set1 mark_ext_patch ,mark 
+0x710a 024387 bpatch patch3a_5 ,mem_patch3a 
+0x710b 024388 arg mem_le_txheader ,regc 
+0x710c 024389 fetcht 5 ,mem_le_pcnt_tx 
+0x710d 024390 call generate_mic 
+0x710e 024391 force regidx_xor ,regext_index 
+0x710f 024392 iforce regext 
+0x7110 024393 force 0 ,rega 
+0x7111 024394 call first_block_data 
+0x7112 024395 call do_aes_ctr 
+0x7113 024396 arg mem_le_txpayload ,regc 
+0x7114 024397 fetch 1 ,mem_le_txlen 
+0x7115 024398 add pdata ,-1 ,regb 
+0x7116 024399 iadd regc ,contw 
+0x7117 024400 force regidx_result ,regext_index 
+0x7118 024401 deposit regext 
+0x7119 024402 istore 4 ,contw 
+0x711a 024403 call aes_crypt_data 
+0x711b 024404 fetch 1 ,mem_le_txlen 
+0x711c 024405 increase 4 ,pdata 
+0x711d 024406 store 1 ,mem_le_txlen 
+0x711e 024407 fetcht 5 ,mem_le_pcnt_tx 
+0x711f 024408 increase 1 ,temp 
+0x7120 024409 storet 5 ,mem_le_pcnt_tx 
+0x7121 024410 rtn 
+:      024412 le_decrypt:
+0x7122 024413 set1 mark_ext_patch ,mark 
+0x7123 024414 bpatch patch3a_6 ,mem_patch3a 
+0x7124 024415 fetch 1 ,mem_le_rxbuf + 1 
+0x7125 024416 sub pdata ,20 ,null 
+0x7126 024417 branch le_dec_cont ,positive 
+:      024418 le_dec_cont:
+0x7127 024419 arg mem_le_rxbuf + 2 ,regc 
+0x7128 024420 add pdata ,-1 ,regb 
+0x7129 024421 increase -4 ,pdata 
+0x712a 024422 store 1 ,mem_le_rxbuf + 1 
+0x712b 024423 iadd regc ,contr 
+0x712c 024424 ifetch 4 ,contr 
+0x712d 024425 force regidx_xor ,regext_index 
+0x712e 024426 iforce regext 
+0x712f 024427 force 0 ,rega 
+0x7130 024428 fetcht 5 ,mem_le_pcnt_rx 
+0x7131 024429 call first_block_data 
+0x7132 024430 call do_aes_ctr 
+0x7133 024431 force regidx_result ,regext_index 
+0x7134 024432 deposit regext 
+0x7135 024433 store 4 ,mem_le_peer_mic 
+0x7136 024434 call aes_crypt_data 
+0x7137 024435 arg mem_le_rxbuf ,regc 
+0x7138 024436 call generate_mic 
+0x7139 024437 fetcht 4 ,mem_le_peer_mic 
+0x713a 024438 isub temp ,pdata 
+0x713b 024439 nrtn blank 
+0x713c 024440 fetch 4 ,mem_le_last_mic 
+0x713d 024441 isub temp ,pdata 
+0x713e 024442 rtn blank 
+0x713f 024443 storet 4 ,mem_le_last_mic 
+0x7140 024444 fetch 5 ,mem_le_pcnt_rx 
+0x7141 024445 increase 1 ,pdata 
+0x7142 024446 store 5 ,mem_le_pcnt_rx 
+0x7143 024447 force 0 ,pdata 
+0x7144 024448 rtn 
+:      024450 wait_aes:
+0x7145 024451 nbranch wait_aes ,aes_ready 
+0x7146 024452 rtn 
+:      024454 do_aes_ocb:
+0x7147 024455 force 0x30 ,aes_ctrl 
+0x7148 024456 force 0x0 ,aes_ctrl 
+0x7149 024457 branch wait_aes 
+:      024459 do_aes_cbc:
+0x714a 024460 force 0x32 ,aes_ctrl 
+0x714b 024461 force 0x2 ,aes_ctrl 
+0x714c 024462 branch wait_aes 
+:      024464 do_aes_ctr:
+0x714d 024465 force 0x34 ,aes_ctrl 
+0x714e 024466 force 0x4 ,aes_ctrl 
+0x714f 024467 branch wait_aes 
+:      024470 aes_init:
+0x7150 024471 force 1 ,aes_ctrl 
+0x7151 024472 force 0 ,aes_ctrl 
+0x7152 024473 rtn 
+:      024474 function_s1:
+0x7153 024475 force regidx_data ,regext_index 
+0x7154 024476 fetch 4 ,mem_le_mrand 
+0x7155 024477 iforce regext 
+0x7156 024478 increase 1 ,regext_index 
+0x7157 024479 ifetch 4 ,contr 
+0x7158 024480 iforce regext 
+0x7159 024481 increase 1 ,regext_index 
+0x715a 024482 fetch 4 ,mem_le_srand 
+0x715b 024483 iforce regext 
+0x715c 024484 increase 1 ,regext_index 
+0x715d 024485 ifetch 4 ,contr 
+0x715e 024486 iforce regext 
+0x715f 024487 increase 1 ,regext_index 
+0x7160 024488 call aes_clear 
+0x7161 024489 increase -4 ,regext_index 
+0x7162 024490 fetch 4 ,mem_le_tk 
+0x7163 024491 copy pdata ,regext 
+0x7164 024492 increase 4 ,regext_index 
+0x7165 024493 force 0x38 ,aes_ctrl 
+0x7166 024494 force 0x8 ,aes_ctrl 
+0x7167 024495 branch wait_aes 
+:      024498 function_c1:
+0x7168 024499 set1 mark_ext_patch ,mark 
+0x7169 024500 bpatch patch3a_7 ,mem_patch3a 
+0x716a 024501 fetch 6 ,mem_le_lap 
+0x716b 024502 fetcht 6 ,mem_le_plap 
+0x716c 024503 branch function_c1_master ,master 
+0x716d 024504 fetch 6 ,mem_le_plap 
+0x716e 024505 fetcht 6 ,mem_le_lap 
+:      024506 function_c1_master:
+0x716f 024507 force regidx_xor ,regext_index 
+0x7170 024508 copy temp ,regext 
+0x7171 024509 increase 1 ,regext_index 
+0x7172 024510 rshift32 temp ,regext 
+0x7173 024511 lshift16 pdata ,pdata 
+0x7174 024512 ior regext ,regext 
+0x7175 024513 increase 1 ,regext_index 
+0x7176 024514 rshift32 pdata ,regext 
+0x7177 024515 increase 1 ,regext_index 
+0x7178 024516 force 0 ,regext 
+0x7179 024517 force 0 ,pdata 
+0x717a 024518 fetch 1 ,mem_le_conn_peer_addr_type 
+0x717b 024519 fetcht 1 ,mem_le_adv_own_addr_type 
+0x717c 024520 nbranch function_c1_irat ,master 
+0x717d 024522 fetch 1 ,mem_le_conn_own_addr_type 
+0x717e 024523 fetcht 1 ,mem_le_conn_peer_addr_type 
+:      024524 function_c1_irat:
+0x717f 024525 store 1 ,mem_le_iat 
+0x7180 024526 storet 1 ,mem_le_rat 
+0x7181 024527 force regidx_data ,regext_index 
+0x7182 024528 arg mem_le_iat ,regb 
+0x7183 024529 force 4 ,loopcnt 
+:      024530 function_c1_loop1:
+0x7184 024531 ifetch 4 ,rega 
+0x7185 024532 ifetcht 4 ,regb 
+0x7186 024533 ixor temp ,regext 
+0x7187 024534 increase 1 ,regext_index 
+0x7188 024535 increase 4 ,rega 
+0x7189 024536 increase 4 ,regb 
+0x718a 024537 loop function_c1_loop1 
+0x718b 024538 call aes_clear 
+0x718c 024539 increase -4 ,regext_index 
+0x718d 024540 fetch 4 ,mem_le_tk 
+0x718e 024541 copy pdata ,regext 
+0x718f 024542 increase 4 ,regext_index 
+0x7190 024543 force 0x38 ,aes_ctrl 
+0x7191 024544 force 0xc ,aes_ctrl 
+0x7192 024545 call wait_aes 
+0x7193 024547 call aes_clear_data 
+0x7194 024548 force 0x3a ,aes_ctrl 
+0x7195 024549 force 0x8 ,aes_ctrl 
+0x7196 024550 branch wait_aes 
+:      024552 padding_data:
+0x7197 024553 compare 0 ,loopcnt ,3 
+0x7198 024554 rtn true 
+0x7199 024555 deposit contr 
+0x719a 024556 iadd loopcnt ,contw 
+0x719b 024557 force 0 ,pdata 
+:      024558 padding_loop:
+0x719c 024559 istore 1 ,contw 
+0x719d 024560 increase 1 ,loopcnt 
+0x719e 024561 compare 0 ,loopcnt ,3 
+0x719f 024562 rtn true 
+0x71a0 024563 branch padding_loop 
+:      024565 aes_load_data:
+0x71a1 024566 force regidx_data ,regext_index 
+:      024567 load_data_loop:
+0x71a2 024568 deposit loopcnt 
+0x71a3 024569 branch load_data_padding ,blank 
+0x71a4 024570 ifetch 4 ,contr 
+0x71a5 024571 increase -4 ,loopcnt 
+:      024572 load_data_padding:
+0x71a6 024573 iforce regext 
+0x71a7 024574 increase 1 ,regext_index 
+0x71a8 024575 compare regidx_key ,regext_index ,0xf 
+0x71a9 024576 rtn true 
+0x71aa 024577 branch load_data_loop 
+:      024579 aes_load_xor:
+0x71ab 024580 force regidx_xor ,regext_index 
+0x71ac 024581 branch load_regext 
+:      024582 load_key:
+0x71ad 024583 force regidx_key ,regext_index 
+0x71ae 024584 branch load_regext 
+:      024585 load_data128:
+0x71af 024586 force regidx_data ,regext_index 
+:      024587 load_regext:
+0x71b0 024588 force 4 ,loopcnt 
+:      024589 load_regext_loop:
+0x71b1 024590 ifetch 4 ,contr 
+0x71b2 024591 iforce regext 
+0x71b3 024592 increase 1 ,regext_index 
+0x71b4 024593 loop load_regext_loop 
+0x71b5 024594 rtn 
+:      024596 load_sk:
+0x71b6 024597 arg mem_le_sk ,contr 
+0x71b7 024598 branch load_key 
+:      024600 clear_hidata:
+0x71b8 024601 force 4 ,loopcnt 
+0x71b9 024602 branch clear_data_rest 
+:      024604 aes_clear_data:
+0x71ba 024605 force regidx_data ,regext_index 
+:      024606 aes_clear:
+0x71bb 024607 force 4 ,loopcnt 
+:      024608 clear_loop:
+0x71bc 024609 force 0 ,regext 
+:      024610 clear_data_rest:
+0x71bd 024611 increase 1 ,regext_index 
+0x71be 024612 loop clear_loop 
+0x71bf 024613 rtn 
+:      024615 store_aes_result:
+0x71c0 024616 force regidx_result ,regext_index 
+0x71c1 024617 force 4 ,loopcnt 
+:      024618 send_aes_result_loop:
+0x71c2 024619 deposit regext 
+0x71c3 024620 istore 4 ,contw 
+0x71c4 024621 increase 1 ,regext_index 
+0x71c5 024622 loop send_aes_result_loop 
+0x71c6 024623 rtn 
+:      024625 store_enc_data:
+0x71c7 024626 force regidx_result ,regext_index 
+0x71c8 024627 copy regc ,contw 
+0x71c9 024628 add regb ,1 ,loopcnt 
+0x71ca 024629 sub loopcnt ,15 ,null 
+0x71cb 024630 branch store_enc_loop ,positive 
+0x71cc 024631 force 16 ,loopcnt 
+:      024632 store_enc_loop:
+0x71cd 024633 deposit regext 
+0x71ce 024634 sub loopcnt ,3 ,null 
+0x71cf 024635 branch store_enc_byte ,positive 
+0x71d0 024636 istore 4 ,contw 
+0x71d1 024637 increase -4 ,loopcnt 
+0x71d2 024638 rtn zero 
+0x71d3 024639 increase 1 ,regext_index 
+0x71d4 024640 branch store_enc_loop 
+:      024641 store_enc_byte:
+0x71d5 024642 istore 1 ,contw 
+0x71d6 024643 rshift8 pdata ,pdata 
+0x71d7 024644 loop store_enc_byte 
+0x71d8 024645 rtn 
+:      024648 compare_res:
+0x71d9 024649 force regidx_result ,regext_index 
+0x71da 024650 force 4 ,loopcnt 
+:      024651 compare_res_loop:
+0x71db 024652 ifetch 4 ,contr 
+0x71dc 024653 isub regext ,null 
+0x71dd 024654 nrtn zero 
+0x71de 024655 increase 1 ,regext_index 
+0x71df 024656 loop compare_res_loop 
+0x71e0 024657 force 0 ,null 
+0x71e1 024658 rtn 
+:      024660 enable_authrom:
+0x71e2 024661 hfetch 1 ,core_clkoff 
+0x71e3 024662 set0 clock_off_auth_rom ,pdata 
+0x71e4 024663 hstore 1 ,core_clkoff 
+0x71e5 024664 rtn 
+:      024666 disable_authrom:
+0x71e6 024667 hfetch 1 ,core_clkoff 
+0x71e7 024668 set1 clock_off_auth_rom ,pdata 
+0x71e8 024669 hstore 1 ,core_clkoff 
+0x71e9 024670 rtn 
+:      024672 init_memp:
+0x71ea 024673 arg mem_p ,contw 
+0x71eb 024674 setsect 0 ,0x3ffff 
+0x71ec 024675 setsect 1 ,0x3ffff 
+0x71ed 024676 setsect 2 ,0x3ffff 
+0x71ee 024677 setsect 3 ,0x3fbff 
+0x71ef 024678 istore 9 ,contw 
+0x71f0 024679 setsect 0 ,0x3ffff 
+0x71f1 024680 setsect 1 ,0x3ffff 
+0x71f2 024681 setsect 2 ,0x3ffff 
+0x71f3 024682 setsect 3 ,0x3ffff 
+0x71f4 024683 istore 9 ,contw 
+0x71f5 024684 setsect 0 ,0x3ffff 
+0x71f6 024685 setsect 1 ,0x3ffff 
+0x71f7 024686 setsect 2 ,0x3cfff 
+0x71f8 024687 setsect 3 ,0x3ffff 
+0x71f9 024688 istore 9 ,contw 
+0x71fa 024689 setsect 0 ,0x3ffff 
+0x71fb 024690 setsect 1 ,0x3ffff 
+0x71fc 024691 setsect 2 ,0x3ffef 
+0x71fd 024692 setsect 3 ,0x3ffff 
+0x71fe 024693 istore 9 ,contw 
+0x71ff 024694 setsect 0 ,0x3ffff 
+0x7200 024695 setsect 1 ,0x3ffff 
+0x7201 024696 setsect 2 ,0x3ffff 
+0x7202 024697 setsect 3 ,0x3ffff 
+0x7203 024698 istore 9 ,contw 
+0x7204 024699 setsect 0 ,0x3ffff 
+0x7205 024700 setsect 1 ,0x26c7f 
+0x7206 024701 setsect 2 ,0x146b 
+0x7207 024702 setsect 3 ,0x37bb3 
+0x7208 024703 istore 9 ,contw 
+0x7209 024704 setsect 0 ,0x1feb8 
+0x720a 024705 setsect 1 ,0x10c12 
+0x720b 024706 setsect 2 ,0x2b722 
+0x720c 024707 setsect 3 ,0x29fa6 
+0x720d 024708 istore 9 ,contw 
+0x720e 024709 setsect 0 ,0xe70f 
+0x720f 024710 setsect 1 ,0x16720 
+0x7210 024711 setsect 2 ,0x519e 
+0x7211 024712 setsect 3 ,0x19084 
+0x7212 024713 istore 9 ,contw 
+0x7213 024714 setsect 0 ,0x31012 
+0x7214 024715 setsect 1 ,0x360bf 
+0x7215 024716 setsect 2 ,0x3f0af 
+0x7216 024717 setsect 3 ,0x3d3 
+0x7217 024718 istore 9 ,contw 
+0x7218 024719 setsect 0 ,0x3a188 
+0x7219 024720 setsect 1 ,0x3ad0 
+0x721a 024721 setsect 2 ,0x3cbf2 
+0x721b 024722 setsect 3 ,0x243d9 
+0x721c 024723 istore 9 ,contw 
+0x721d 024724 setsect 0 ,0x2b030 
+0x721e 024725 setsect 1 ,0x36a03 
+0x721f 024726 setsect 2 ,0x11188 
+0x7220 024727 setsect 3 ,0x1e520 
+0x7221 024728 istore 9 ,contw 
+0x7222 024729 setsect 0 ,0x3a11e 
+0x7223 024730 setsect 1 ,0xfe5d 
+0x7224 024731 setsect 2 ,0xdd57 
+0x7225 024732 setsect 3 ,0x1ac93 
+0x7226 024733 istore 9 ,contw 
+0x7227 024734 setsect 0 ,0x11ed 
+0x7228 024735 setsect 1 ,0x218c4 
+0x7229 024736 setsect 2 ,0x8da7 
+0x722a 024737 setsect 3 ,0x257ff 
+0x722b 024738 istore 9 ,contw 
+0x722c 024739 setsect 0 ,0x3192b 
+0x722d 024740 setsect 1 ,0x34641 
+0x722e 024741 setsect 2 ,0x1be0c 
+0x722f 024742 setsect 3 ,0x366ad 
+0x7230 024743 istore 9 ,contw 
+0x7231 024744 setsect 0 ,0x1f83 
+0x7232 024745 setsect 1 ,0x15a23 
+0x7233 024746 setsect 2 ,0x3f9b0 
+0x7234 024747 setsect 3 ,0x3949 
+0x7235 024748 istore 9 ,contw 
+0x7236 024749 setsect 0 ,0x13a51 
+0x7237 024750 setsect 1 ,0x153fd 
+0x7238 024751 setsect 2 ,0x3372a 
+0x7239 024752 setsect 3 ,0xf1bb 
+0x723a 024753 istore 9 ,contw 
+0x723b 024754 setsect 0 ,0x3ae85 
+0x723c 024755 setsect 1 ,0x1eed9 
+0x723d 024756 setsect 2 ,0x9e66 
+0x723e 024757 setsect 3 ,0x1a8 
+0x723f 024758 istore 8 ,contw 
+0x7240 024759 rtn 
+:      024763 init_memp_256:
+0x7241 024764 arg mem_p_256 ,contw 
+0x7242 024765 setsect 0 ,0x3ffff 
+0x7243 024766 setsect 1 ,0x3ffff 
+0x7244 024767 setsect 2 ,0x3ffff 
+0x7245 024768 setsect 3 ,0x3ffff 
+0x7246 024769 istore 9 ,contw 
+0x7247 024770 setsect 0 ,0x3ffff 
+0x7248 024771 setsect 1 ,0x3f 
+0x7249 024772 setsect 2 ,0x0 
+0x724a 024773 setsect 3 ,0x0 
+0x724b 024774 istore 9 ,contw 
+0x724c 024775 setsect 0 ,0x0 
+0x724d 024776 setsect 1 ,0x0 
+0x724e 024777 setsect 2 ,0x1000 
+0x724f 024778 setsect 3 ,0x0 
+0x7250 024779 istore 9 ,contw 
+0x7251 024780 setsect 0 ,0x3ff00 
+0x7252 024781 setsect 1 ,0x3ffff 
+0x7253 024782 setsect 2 ,0x3ffcf 
+0x7254 024783 setsect 3 ,0x3ffff 
+0x7255 024784 istore 9 ,contw 
+0x7256 024785 setsect 0 ,0x3ffff 
+0x7257 024786 setsect 1 ,0x3ffff 
+0x7258 024787 setsect 2 ,0x3ffff 
+0x7259 024788 setsect 3 ,0x3ff 
+0x725a 024789 istore 9 ,contw 
+0x725b 024790 setsect 0 ,0x0 
+0x725c 024791 setsect 1 ,0x0 
+0x725d 024792 setsect 2 ,0x0 
+0x725e 024793 setsect 3 ,0x0 
+0x725f 024794 istore 9 ,contw 
+0x7260 024795 setsect 0 ,0x10000 
+0x7261 024796 setsect 1 ,0x0 
+0x7262 024797 setsect 2 ,0x3f000 
+0x7263 024798 setsect 3 ,0x3ffff 
+0x7264 024799 istore 9 ,contw 
+0x7265 024800 setsect 0 ,0x296ff 
+0x7266 024801 setsect 1 ,0x22630 
+0x7267 024802 setsect 2 ,0x3945d 
+0x7268 024803 setsect 3 ,0x3d284 
+0x7269 024804 istore 9 ,contw 
+0x726a 024805 setsect 0 ,0x333a0 
+0x726b 024806 setsect 1 ,0x4b7a 
+0x726c 024807 setsect 2 ,0x37d8 
+0x726d 024808 setsect 3 ,0x3c9dc 
+0x726e 024809 istore 9 ,contw 
+0x726f 024810 setsect 0 ,0x3a440 
+0x7270 024811 setsect 1 ,0x1b958 
+0x7271 024812 setsect 2 ,0x38bce 
+0x7272 024813 setsect 3 ,0x1091f 
+0x7273 024814 istore 9 ,contw 
+0x7274 024815 setsect 0 ,0x2e12c 
+0x7275 024816 setsect 1 ,0x1f47c 
+0x7276 024817 setsect 2 ,0x356b1 
+0x7277 024818 setsect 3 ,0x2fd47 
+0x7278 024819 istore 9 ,contw 
+0x7279 024820 setsect 0 ,0x6837 
+0x727a 024821 setsect 1 ,0x2ed90 
+0x727b 024822 setsect 2 ,0x1ecec 
+0x727c 024823 setsect 3 ,0x1acc5 
+0x727d 024824 istore 9 ,contw 
+0x727e 024825 setsect 0 ,0x23357 
+0x727f 024826 setsect 1 ,0x18af3 
+0x7280 024827 setsect 2 ,0xf9e1 
+0x7281 024828 setsect 3 ,0x129f0 
+0x7282 024829 istore 9 ,contw 
+0x7283 024830 setsect 0 ,0x2e7eb 
+0x7284 024831 setsect 1 ,0x3e6e3 
+0x7285 024832 setsect 2 ,0x3e1a7 
+0x7286 024833 setsect 3 ,0x10b8b 
+0x7287 024834 istore 9 ,contw 
+0x7288 024835 setsect 0 ,0x24fe3 
+0x7289 024836 setsect 1 ,0x20ef 
+0x728a 024837 setsect 2 ,0x1b5a6 
+0x728b 024838 setsect 3 ,0xdc2f 
+0x728c 024839 istore 9 ,contw 
+0x728d 024840 setsect 0 ,0x13860 
+0x728e 024841 setsect 1 ,0x2bd69 
+0x728f 024842 setsect 2 ,0x391a 
+0x7290 024843 setsect 3 ,0x1b222 
+0x7291 024844 istore 9 ,contw 
+0x7292 024845 rtn 
+:      024849 shutter_init:
+0x7293 024851 rtn wake 
+0x7294 024852 call init_shutter_le_att_list 
+0x7295 024853 call shutter_init_param 
+0x7296 024854 hjam 0x00 ,core_gpio_sel1 
+0x7297 024855 call shutter_key_init 
+0x7298 024856 setarg shutter_le_before_hibernate 
+0x7299 024857 store 2 ,mem_cb_before_hibernate 
+0x729a 024859 setarg shutter_le_process_lpm_before 
+0x729b 024860 store 2 ,mem_cb_before_lpm 
+0x729c 024862 setarg shutter_le_discovery_timeout_sleep 
+0x729d 024863 store 2 ,mem_cb_discovry_timeout 
+0x729e 024865 setarg scale_process_idle 
+0x729f 024866 store 2 ,mem_cb_idle_process 
+0x72a0 024868 setarg scale_process 
+0x72a1 024869 store 2 ,mem_cb_le_process 
+0x72a2 024871 setarg scale_process_bb_event 
+0x72a3 024872 store 2 ,mem_cb_bb_event_process 
+0x72a4 024874 setarg shutter_le_scale_lpm_lock 
+0x72a5 024875 store 2 ,mem_cb_check_wakelock 
+0x72a6 024877 setarg shutter_le_send_att_handle_value_notification 
+0x72a7 024878 store 2 ,mem_cb_update_notify_value 
+0x72a8 024879 setarg shutter_le_receive_data 
+0x72a9 024880 store 2 ,mem_cb_att_write 
+0x72aa 024881 call shutter_le_queue_init 
+0x72ab 024882 jam 0 ,mem_lpm_mult 
+0x72ac 024883 jam 0 ,mem_shutter_conn_update_timer 
+0x72ad 024884 set1 mark_ext_patch ,mark 
+0x72ae 024885 bpatch patch3b_0 ,mem_patch3b 
+0x72af 024886 fetch 1 ,mem_hard_soft_switch_case 
+0x72b0 024887 beq hard_switch ,shutter_le_hard_switch_power_on_signal 
+0x72b1 024888 call shutter_ui_led_init 
+0x72b2 024889 call ui_button_init 
+0x72b3 024890 call ui_button_polling 
+0x72b4 024891 jam shutter_power_up ,mem_shutter_powerup_flag 
+0x72b5 024892 fetch 2 ,mem_ui_state_map 
+0x72b6 024893 rtnbit1 ui_state_btn_down 
+0x72b7 024894 branch app_enter_hibernate 
+:      024896 shutter_le_hard_switch_power_on_signal:
+0x72b8 024898 jam shutter_power_on ,mem_shutter_powerup_flag 
+0x72b9 024899 jam 1 ,mem_enable_key_scan 
+0x72ba 024900 call shutter_ui_led_init 
+0x72bb 024901 setarg mem_power_on_led_style 
+0x72bc 024902 call shutter_ui_led_send 
+:      024903 in_poweron_hard_switch_led:
+0x72bd 024904 call ui_led_blink_polling 
+0x72be 024905 fetch 1 ,mem_led_blink_count 
+0x72bf 024906 nbranch in_poweron_hard_switch_led ,blank 
+:      024907 shutter_le_soft_switch_power_on_signal:
+0x72c0 024909 jam on ,mem_le_adv_enable 
+0x72c1 024910 setarg 0 
+0x72c2 024911 store 4 ,mem_shutter_send_data 
+0x72c3 024912 call shutter_ui_led_init 
+0x72c4 024915 fetch 2 ,mem_le_sleep_timeout 
+0x72c5 024916 store 2 ,mem_le_sleep_timeout_timer_count 
+0x72c6 024917 call shutter_le_fast_advertise 
+0x72c7 024919 jam pair_unknown ,mem_pair_state 
+0x72c8 024920 call le_modified_name 
+0x72c9 024921 fetch 6 ,mem_le_lap 
+0x72ca 024922 call shutter_byteswap 
+0x72cb 024923 call shutter_updata_mac 
+0x72cc 024924 rtn 
+:      024928 shutter_le_adv_interval_set:
+0x72cd 024929 store 2 ,mem_lpm_interval 
+0x72ce 024930 increase -4 ,pdata 
+0x72cf 024931 store 2 ,mem_le_adv_interval_min 
+0x72d0 024932 store 2 ,mem_le_adv_interval_max 
+0x72d1 024933 rtn 
+:      024935 shutter_updata_mac:
+0x72d2 024936 fetcht 2 ,mem_adv_lap_ptr 
+0x72d3 024937 rtn blank 
+0x72d4 024938 istore 6 ,temp 
+0x72d5 024939 rtn 
+:      024941 shutter_byteswap:
+0x72d6 024942 store 6 ,mem_tmp_buffer 
+0x72d7 024943 fetch 1 ,mem_tmp_buffer 
+0x72d8 024944 store 1 ,mem_tmp_buffer + 11 
+0x72d9 024945 ifetch 1 ,contr 
+0x72da 024946 store 1 ,mem_tmp_buffer + 10 
+0x72db 024947 ifetch 1 ,contr 
+0x72dc 024948 store 1 ,mem_tmp_buffer + 9 
+0x72dd 024949 ifetch 1 ,contr 
+0x72de 024950 store 1 ,mem_tmp_buffer + 8 
+0x72df 024951 ifetch 1 ,contr 
+0x72e0 024952 store 1 ,mem_tmp_buffer + 7 
+0x72e1 024953 ifetch 1 ,contr 
+0x72e2 024954 store 1 ,mem_tmp_buffer + 6 
+0x72e3 024955 fetch 6 ,mem_tmp_buffer + 6 
+0x72e4 024956 rtn 
+:      024958 shutter_le_fast_advertise:
+0x72e5 024959 jam 0 ,mem_shutter_key_data_flag_1 
+0x72e6 024960 fetch 2 ,mem_le_fast_adv_timeout_timer_count 
+0x72e7 024961 nbranch in_shutter_skip_set ,blank 
+0x72e8 024962 setarg mem_fast_adv_led_style 
+0x72e9 024963 call shutter_ui_led_send 
+0x72ea 024964 setarg fast_adv_interval_value 
+0x72eb 024965 call shutter_le_adv_interval_set 
+:      024966 in_shutter_skip_set:
+0x72ec 024967 fetch 2 ,mem_le_fast_adv_timeout 
+0x72ed 024968 store 2 ,mem_le_fast_adv_timeout_timer_count 
+0x72ee 024969 rtn 
+:      024971 shutter_le_scale_lpm_lock:
+0x72ef 024978 fetch 1 ,mem_scale_txbuff_inuse 
+0x72f0 024979 beq 1 ,app_get_lpm_wake_lock 
+0x72f1 024980 fetch 1 ,mem_queue_ele_num 
+0x72f2 024981 nbranch app_get_lpm_wake_lock ,blank 
+0x72f3 024982 branch app_put_lpm_wake_lock 
+:      024984 scale_process_bb_event:
+0x72f4 024985 copy regc ,pdata 
+0x72f5 024987 beq bt_evt_button_up ,shutter_bb_event_button_up 
+0x72f6 024988 beq bt_evt_button_long_pressed ,shutter_evt_button_long_pressed 
+0x72f7 024989 beq bt_evt_le_connected ,scale_process_le_conn 
+0x72f8 024990 beq bt_evt_le_disconnected ,scale_process_le_discon 
+0x72f9 024991 and pdata ,0x0f ,temp 
+0x72fa 024992 and_into bt_evt_timer_mask ,pdata 
+0x72fb 024993 beq bt_evt_timer_init ,shutter_le_bb_event_timer 
+0x72fc 024994 rtn 
+:      024996 shutter_le_bb_event_timer:
+0x72fd 024997 storet 1 ,mem_app_evt_timer_count 
+:      024998 shutter_le_bb_event_100ms_loop:
+0x72fe 024999 fetch 1 ,mem_app_evt_timer_count 
+0x72ff 025000 rtn blank 
+0x7300 025001 increase -1 ,pdata 
+0x7301 025002 store 1 ,mem_app_evt_timer_count 
+0x7302 025003 set1 mark_ext_patch ,mark 
+0x7303 025004 bpatch patch3b_1 ,mem_patch3b 
+0x7304 025005 call ui_button_check_long_press 
+0x7305 025006 call shutter_le_shutter_fast_adv_timer 
+0x7306 025007 call shutter_le_sleep_timer 
+0x7307 025008 call shutter_ui_button_timeout_timer 
+0x7308 025009 call shutter_ui_power_timeout_timer 
+0x7309 025010 call shutter_app_updata_le_param_timer 
+0x730a 025011 call shutter_conn_update_timer 
+0x730b 025012 branch shutter_le_bb_event_100ms_loop 
+:      025014 shutter_conn_update_timer:
+0x730c 025015 fetch 1 ,mem_shutter_conn_update_timer 
+0x730d 025016 rtn blank 
+0x730e 025017 increase -1 ,pdata 
+0x730f 025018 store 1 ,mem_shutter_conn_update_timer 
+0x7310 025019 nrtn blank 
+0x7311 025020 jam 0x05 ,mem_lpm_mult 
+0x7312 025021 rtn 
+:      025023 shutter_app_updata_le_param_timer:
+0x7313 025024 fetch 1 ,mem_send_updata_le_param_timer 
+0x7314 025025 rtn blank 
+0x7315 025026 increase -1 ,pdata 
+0x7316 025027 store 1 ,mem_send_updata_le_param_timer 
+0x7317 025028 nrtn blank 
+0x7318 025029 fetch 1 ,mem_le_state 
+0x7319 025030 bbit0 lestate_encryption ,shutter_app_updata_le_param 
+0x731a 025031 jam 1 ,mem_send_updata_le_param_timer 
+0x731b 025032 rtn 
+:      025034 shutter_app_updata_le_param:
+0x731c 025035 call app_lpm_mult_enable 
+0x731d 025036 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+0x731e 025037 branch ui_ipc_send_cmd 
+:      025040 shutter_le_shutter_fast_adv_timer:
+0x731f 025041 fetch 1 ,mem_shutter_powerup_flag 
+0x7320 025042 rtnne shutter_power_on 
+0x7321 025043 fetch 2 ,mem_le_fast_adv_timeout_timer_count 
+0x7322 025044 rtn blank 
+0x7323 025045 increase -1 ,pdata 
+0x7324 025046 store 2 ,mem_le_fast_adv_timeout_timer_count 
+0x7325 025047 nrtn blank 
+0x7326 025048 fetch 2 ,mem_ui_state_map 
+0x7327 025049 bbit1 ui_state_ble_connected ,in_is_connected 
+0x7328 025050 setarg mem_slow_adv_led_style 
+0x7329 025051 call shutter_ui_led_send 
+:      025052 in_is_connected:
+0x732a 025053 setarg slow_adv_interval_value 
+0x732b 025054 branch shutter_le_adv_interval_set 
+:      025056 shutter_le_sleep_timer:
+0x732c 025057 fetch 2 ,mem_le_sleep_timeout_timer_count 
+0x732d 025058 rtn blank 
+0x732e 025059 increase -1 ,pdata 
+0x732f 025060 store 2 ,mem_le_sleep_timeout_timer_count 
+0x7330 025061 nrtn blank 
+0x7331 025063 jam shutter_power_off ,mem_shutter_powerup_flag 
+0x7332 025064 call shutter_shutter_power_off_end 
+0x7333 025067 rtn 
+:      025069 scale_process_le_conn:
+0x7334 025070 jam 0 ,mem_lpm_mode 
+0x7335 025071 fetch 2 ,mem_le_sleep_timeout 
+0x7336 025072 store 2 ,mem_le_sleep_timeout_timer_count 
+0x7337 025073 jam pair_unknown ,mem_pair_state 
+0x7338 025075 call app_ble_stop_adv 
+0x7339 025079 setarg 0x112233 
+0x733a 025080 store 3 ,mem_le_ltk 
+0x733b 025081 setarg 0x445566 
+0x733c 025082 istore 3 ,contw 
+0x733d 025083 setarg 0x778899 
+0x733e 025084 istore 3 ,contw 
+0x733f 025085 setarg 0x001122 
+0x7340 025086 istore 3 ,contw 
+0x7341 025087 setarg 0x334455 
+0x7342 025088 istore 3 ,contw 
+0x7343 025089 setarg 0x66 
+0x7344 025090 istore 1 ,contw 
+0x7345 025092 call app_ble_stop_adv 
+0x7346 025095 call app_lpm_mult_enable 
+0x7347 025097 jam 0 ,mem_le_fast_adv_timeout_timer_count 
+0x7348 025098 setarg mem_connected_led_style 
+0x7349 025099 call shutter_ui_led_send 
+0x734a 025100 jam 0 ,mem_led_gpio 
+0x734b 025101 rtn 
+:      025103 scale_process_le_discon:
+0x734c 025106 jam 0 ,mem_lpm_mult 
+0x734d 025107 jam 0 ,mem_shutter_conn_update_timer 
+0x734e 025108 jam 0 ,mem_ltk_exists 
+0x734f 025109 jam default_states ,mem_ltk_states 
+0x7350 025110 jam 0 ,mem_shutter_find_type_value_flag 
+0x7351 025111 call shutter_le_queue_clear 
+0x7352 025112 fetch 2 ,mem_le_sleep_timeout 
+0x7353 025113 store 2 ,mem_le_sleep_timeout_timer_count 
+0x7354 025114 fetch 1 ,mem_le_sleep_flag 
+0x7355 025115 bne 0 ,shutter_le_sleep_enter 
+0x7356 025116 call shutter_le_fast_advertise 
+0x7357 025117 jam pair_unknown ,mem_pair_state 
+0x7358 025118 setarg 0 
+0x7359 025119 store 2 ,mem_l2cap_rxbuff1_len 
+0x735a 025120 setarg 0 
+0x735b 025121 store 2 ,mem_l2cap_rxbuff2_len 
+0x735c 025123 call shutter_le_tx_buff_unuse 
+0x735d 025125 call app_ble_start_adv 
+0x735e 025129 rtn 
+:      025131 shutter_le_tx_buff_inuse:
+0x735f 025133 jam 1 ,mem_scale_txbuff_inuse 
+0x7360 025134 rtn 
+:      025135 shutter_le_check_tx_buff:
+0x7361 025136 fetch 1 ,mem_scale_txbuff_inuse 
+0x7362 025137 rtn 
+:      025138 shutter_le_tx_buff_unuse:
+0x7363 025140 jam 0 ,mem_scale_txbuff_inuse 
+0x7364 025141 rtn 
+:      025143 shutter_le_discovery_timeout_sleep:
+0x7365 025144 branch app_enter_hibernate 
+:      025146 shutter_le_sleep_req_hibernate:
+0x7366 025147 jam 0x01 ,mem_le_sleep_flag 
+:      025148 shutter_le_sleep_req_ok:
+0x7367 025149 fetch 2 ,mem_ui_state_map 
+0x7368 025150 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+:      025151 shutter_le_sleep_enter:
+0x7369 025152 call shutter_le_sleep_clr 
+0x736a 025153 call wait_uarttx 
+0x736b 025154 jam 0x00 ,mem_le_sleep_flag 
+0x736c 025155 branch app_bb_hibernate 
+:      025157 shutter_le_sleep_clr:
+0x736d 025158 setarg 0 
+0x736e 025159 store 2 ,mem_l2cap_rxbuff1_len 
+0x736f 025160 store 2 ,mem_l2cap_rxbuff2_len 
+0x7370 025161 branch shutter_le_tx_buff_unuse 
+:      025164 scale_process:
+0x7371 025165 fetch 1 ,mem_exchange_mtu_req 
+0x7372 025166 ncall shutter_le_parse_att_exchange_mtu_request ,blank 
+0x7373 025167 call shutter_le_send_packet 
+0x7374 025168 branch shutter_le_key_process 
+:      025170 shutter_le_parse_att_exchange_mtu_request:
+0x7375 025173 jam 0 ,mem_exchange_mtu_req 
+0x7376 025174 jam attop_exchange_mtu_response ,mem_fifo_temp 
+0x7377 025175 branch le_xtype_fifo_in 
+:      025176 shutter_le_parse_att_exchange_mtu_request_save:
+0x7378 025177 jam 1 ,mem_exchange_mtu_req 
+0x7379 025178 rtn 
+:      025180 scale_process_idle:
+0x737a 025181 call shutter_le_send_packet 
+0x737b 025182 branch shutter_le_key_process 
+:      025184 shutter_le_before_hibernate:
+0x737c 025185 call shutter_shutter_scan_key 
+0x737d 025186 fetch 2 ,mem_key_value_temp 
+0x737e 025187 branch in_enter_hibernate ,blank 
+0x737f 025188 branch app_enter_hibernate 
+:      025189 in_enter_hibernate:
+0x7380 025190 call gpio_set_before_lpm_common 
+0x7381 025191 branch shutter_le_process_lpm_before 
+:      025197 shutter_ui_led_init:
+0x7382 025198 fetch 1 ,mem_shutter_led_num 
+0x7383 025199 copy pdata ,loopcnt 
+0x7384 025200 setarg mem_led_map 
+0x7385 025201 copy pdata ,rega 
+:      025202 in_lp1:
+0x7386 025203 copy rega ,contr 
+0x7387 025204 ifetch 1 ,contr 
+0x7388 025205 beq invalid_pin_num ,in_lp1_end 
+0x7389 025206 copy pdata ,temp 
+0x738a 025207 store 1 ,mem_led_gpio 
+0x738b 025209 call ui_led_init 
+:      025210 in_lp1_end:
+0x738c 025211 loop in_lp1 
+:      025212 shutter_ui_led_init_end:
+0x738d 025213 rtn 
+:      025218 shutter_ui_led_send:
+0x738e 025219 copy pdata ,contr 
+0x738f 025220 force 7 ,loopcnt 
+0x7390 025223 arg mem_temp_led_style ,contw 
+0x7391 025224 call memcpy 
+0x7392 025225 set1 mark_ext_patch ,mark 
+0x7393 025226 bpatch patch3b_2 ,mem_patch3b 
+0x7394 025227 fetch 1 ,mem_temp_led_type 
+0x7395 025228 rtneq led_invalid 
+0x7396 025229 fetcht 2 ,mem_temp_led_on_time 
+0x7397 025230 storet 2 ,mem_led_light_time 
+0x7398 025231 fetcht 2 ,mem_temp_led_off_time 
+0x7399 025232 storet 2 ,mem_led_dark_time 
+0x739a 025233 fetcht 1 ,mem_temp_blink_count 
+0x739b 025234 storet 1 ,mem_led_blink_count 
+0x739c 025236 call ui_led_blink_stop 
+0x739d 025237 fetcht 1 ,mem_temp_led_pin 
+0x739e 025238 storet 1 ,mem_led_gpio 
+0x739f 025239 fetch 1 ,mem_temp_led_type 
+0x73a0 025240 beq led_off ,shutter_ui_led_send_end 
+0x73a1 025241 beq led_on ,ui_led_on 
+0x73a2 025242 beq led_blink ,ui_led_blink_start1 
+:      025243 shutter_ui_led_send_end:
+0x73a3 025244 rtn 
+:      025246 shutter_ui_led_off:
+0x73a4 025247 branch ui_led_blink_stop 
+:      025250 shutter_key_init:
+0x73a5 025251 fetch 1 ,mem_shutter_key_num 
+0x73a6 025252 rtn blank 
+0x73a7 025253 copy pdata ,loopcnt 
+0x73a8 025254 setarg mem_key_conf0_pin 
+0x73a9 025255 copy pdata ,rega 
+:      025256 shutter_key_lp1:
+0x73aa 025257 ifetcht 1 ,rega 
+0x73ab 025258 call gpio_config_input 
+0x73ac 025259 increase key_conf_struct_len ,rega 
+0x73ad 025260 loop shutter_key_lp1 
+:      025261 shutter_key_init_end:
+0x73ae 025262 rtn 
+:      025265 shutter_shutter_scan_key:
+0x73af 025268 arg mem_key_conf0_pin ,rega 
+0x73b0 025269 force 0 ,regb 
+0x73b1 025270 jam 0 ,mem_key_value_temp 
+:      025271 in_scan_key_lp1:
+0x73b2 025272 ifetcht 1 ,rega 
+0x73b3 025273 call gpio_get_bit 
+0x73b4 025274 set1 mark_ext_patch ,mark 
+0x73b5 025275 bpatch patch3b_3 ,mem_patch3b 
+0x73b6 025276 fetch 2 ,mem_key_value_temp 
+0x73b7 025277 copy regb ,queue 
+0x73b8 025278 qsetflag true ,pdata 
+0x73b9 025279 store 2 ,mem_key_value_temp 
+0x73ba 025280 increase key_conf_struct_len ,rega 
+0x73bb 025281 increase 1 ,regb 
+0x73bc 025282 fetch 1 ,mem_shutter_key_num 
+0x73bd 025283 ixor regb ,null 
+0x73be 025284 nbranch in_scan_key_lp1 ,zero 
+0x73bf 025286 fetch 2 ,mem_key_value_temp 
+0x73c0 025287 fetcht 2 ,mem_key_value 
+0x73c1 025288 ixor temp ,null 
+0x73c2 025289 rtn zero 
+0x73c3 025290 enable user 
+0x73c4 025291 rtn 
+:      025293 shutter_le_key_process:
+0x73c5 025294 arg temp_timer ,queue 
+0x73c6 025295 call timer_check 
+0x73c7 025296 nrtn blank 
+0x73c8 025297 call shutter_le_packet_interval_set 
+0x73c9 025298 fetch 1 ,mem_enable_key_scan 
+0x73ca 025299 rtn blank 
+0x73cb 025300 disable user 
+0x73cc 025301 call shutter_le_process_lpm_before 
+0x73cd 025302 set1 mark_ext_patch ,mark 
+0x73ce 025303 bpatch patch3b_4 ,mem_patch3b 
+0x73cf 025304 fetch 1 ,mem_shutter_key_num 
+0x73d0 025305 rtn blank 
+0x73d1 025306 call shutter_shutter_scan_key 
+0x73d2 025307 nbranch lpm_button_clean_wake_lock ,user 
+0x73d3 025308 call lpm_button_get_wake_lock 
+0x73d4 025309 disable user 
+0x73d5 025310 fetch 2 ,mem_le_sleep_timeout 
+0x73d6 025311 store 2 ,mem_le_sleep_timeout_timer_count 
+0x73d7 025312 fetch 2 ,mem_ui_state_map 
+0x73d8 025313 bbit0 ui_state_ble_connected ,shutter_le_fast_advertise 
+0x73d9 025314 call shutter_shutter_cancel_key_shake 
+0x73da 025315 branch in_le_key_process_end ,positive 
+0x73db 025316 fetch 2 ,mem_key_value_temp 
+0x73dc 025317 store 2 ,mem_key_value_temp4 
+0x73dd 025318 jam 0 ,mem_key_value_temp6 
+0x73de 025319 force 0 ,queue 
+:      025321 shutter_le_key_lp1:
+0x73df 025322 set1 mark_ext_patch ,mark 
+0x73e0 025323 bpatch patch3b_5 ,mem_patch3b 
+0x73e1 025324 fetch 2 ,mem_key_value 
+0x73e2 025325 rshift pdata ,temp 
+0x73e3 025326 storet 2 ,mem_key_value 
+0x73e4 025327 and pdata ,0x01 ,pdata 
+0x73e5 025328 fetcht 2 ,mem_key_value_temp4 
+0x73e6 025329 and temp ,0x01 ,rega 
+0x73e7 025330 rshift temp ,temp 
+0x73e8 025331 storet 2 ,mem_key_value_temp4 
+0x73e9 025332 ixor rega ,null 
+0x73ea 025333 ncall shutter_le_send_key_data ,zero 
+0x73eb 025334 fetch 1 ,mem_shutter_key_num 
+0x73ec 025335 fetcht 1 ,mem_key_value_temp6 
+0x73ed 025336 increase 1 ,temp 
+0x73ee 025337 storet 1 ,mem_key_value_temp6 
+0x73ef 025338 copy temp ,queue 
+0x73f0 025339 ixor queue ,null 
+0x73f1 025341 nbranch shutter_le_key_lp1 ,zero 
+0x73f2 025342 fetch 2 ,mem_key_value_temp 
+0x73f3 025343 store 2 ,mem_key_value 
+0x73f4 025344 rtn 
+:      025345 in_le_key_process_end:
+0x73f5 025346 setarg 0 
+0x73f6 025347 store 2 ,mem_key_value_temp 
+0x73f7 025348 store 2 ,mem_key_value 
+0x73f8 025349 rtn 
+:      025353 shutter_le_send_key_data:
+0x73f9 025355 deposit rega 
+0x73fa 025356 branch in_le_key_is_release ,blank 
+0x73fb 025357 set1 mark_ext_patch ,mark 
+0x73fc 025358 bpatch patch3b_6 ,mem_patch3b 
+0x73fd 025359 copy queue ,pdata 
+0x73fe 025360 beq 0 ,in_le_send_key0_press 
+0x73ff 025361 beq 1 ,in_le_send_key1_press 
+0x7400 025362 beq 2 ,in_le_send_key2_press 
+0x7401 025363 beq 3 ,in_le_send_key3_press 
+0x7402 025364 beq 4 ,in_le_send_key4_press 
+0x7403 025365 beq 5 ,in_le_send_key5_press 
+:      025366 in_le_send_lable:
+0x7404 025367 fetch 1 ,mem_le_enc_state 
+0x7405 025368 rtnne flag_le_enc_end 
+0x7406 025369 fetch 1 ,mem_shutter_key_data_flag_1 
+0x7407 025370 nrtn blank 
+0x7408 025371 ifetch 1 ,temp 
+0x7409 025372 rtn blank 
+0x740a 025373 store 1 ,mem_key_packet_count 
+0x740b 025374 increase 1 ,temp 
+0x740c 025375 storet 2 ,mem_key_next_addr 
+:      025376 in_le_send_lp1:
+0x740d 025377 fetch 2 ,mem_key_next_addr 
+0x740e 025378 ifetcht 1 ,pdata 
+0x740f 025379 copy temp ,loopcnt 
+0x7410 025380 iadd temp ,temp 
+0x7411 025381 storet 2 ,mem_key_next_addr 
+0x7412 025382 copy pdata ,temp 
+0x7413 025383 call shutter_le_queue_put 
+0x7414 025384 fetch 1 ,mem_key_packet_count 
+0x7415 025385 increase -1 ,pdata 
+0x7416 025386 store 1 ,mem_key_packet_count 
+0x7417 025387 nbranch in_le_send_lp1 ,zero 
+0x7418 025388 branch shutter_le_send_packet 
+:      025391 in_le_key_is_release:
+0x7419 025392 set1 mark_ext_patch ,mark 
+0x741a 025393 bpatch patch3b_7 ,mem_patch3b 
+0x741b 025394 copy queue ,pdata 
+0x741c 025395 beq 0 ,in_le_send_key0_rel 
+0x741d 025396 beq 1 ,in_le_send_key1_rel 
+0x741e 025397 beq 2 ,in_le_send_key2_rel 
+0x741f 025398 beq 3 ,in_le_send_key3_rel 
+0x7420 025399 beq 4 ,in_le_send_key4_rel 
+0x7421 025400 beq 5 ,in_le_send_key5_rel 
+0x7422 025401 branch in_le_send_lable 
+:      025403 in_le_send_key0_press:
+0x7423 025404 fetch 1 ,mem_key_conf0_led 
+0x7424 025405 call shutter_le_key_led_index 
+0x7425 025406 arg mem_key0_press ,temp 
+0x7426 025407 branch in_le_send_lable 
+:      025408 in_le_send_key1_press:
+0x7427 025409 fetch 1 ,mem_key_conf1_led 
+0x7428 025410 call shutter_le_key_led_index 
+0x7429 025411 arg mem_key1_press ,temp 
+0x742a 025412 branch in_le_send_lable 
+:      025413 in_le_send_key2_press:
+0x742b 025414 fetch 1 ,mem_key_conf2_led 
+0x742c 025415 call shutter_le_key_led_index 
+0x742d 025416 arg mem_key2_press ,temp 
+0x742e 025417 branch in_le_send_lable 
+:      025418 in_le_send_key3_press:
+0x742f 025419 fetch 1 ,mem_key_conf3_led 
+0x7430 025420 call shutter_le_key_led_index 
+0x7431 025421 arg mem_key3_press ,temp 
+0x7432 025422 branch in_le_send_lable 
+:      025423 in_le_send_key4_press:
+0x7433 025424 fetch 1 ,mem_key_conf4_led 
+0x7434 025425 call shutter_le_key_led_index 
+0x7435 025426 arg mem_key4_press ,temp 
+0x7436 025427 branch in_le_send_lable 
+:      025428 in_le_send_key5_press:
+0x7437 025429 fetch 1 ,mem_key_conf5_led 
+0x7438 025430 call shutter_le_key_led_index 
+0x7439 025431 arg mem_key5_press ,temp 
+0x743a 025432 branch in_le_send_lable 
+:      025434 in_le_send_key0_rel:
+0x743b 025435 fetch 1 ,mem_key_conf0_led 
+0x743c 025436 call shutter_le_disble_key_led 
+0x743d 025437 arg mem_key0_release ,temp 
+0x743e 025438 branch in_le_send_lable 
+:      025439 in_le_send_key1_rel:
+0x743f 025444 fetch 1 ,mem_key_conf1_led 
+0x7440 025445 call shutter_le_disble_key_led 
+0x7441 025446 arg mem_key1_release ,temp 
+0x7442 025447 branch in_le_send_lable 
+:      025448 in_le_send_key2_rel:
+0x7443 025449 fetch 1 ,mem_key_conf2_led 
+0x7444 025450 call shutter_le_disble_key_led 
+0x7445 025451 arg mem_key2_release ,temp 
+0x7446 025452 branch in_le_send_lable 
+:      025453 in_le_send_key3_rel:
+0x7447 025454 fetch 1 ,mem_key_conf3_led 
+0x7448 025455 call shutter_le_disble_key_led 
+0x7449 025456 arg mem_key3_release ,temp 
+0x744a 025457 branch in_le_send_lable 
+:      025458 in_le_send_key4_rel:
+0x744b 025459 fetch 1 ,mem_key_conf4_led 
+0x744c 025460 call shutter_le_disble_key_led 
+0x744d 025461 arg mem_key4_release ,temp 
+0x744e 025462 branch in_le_send_lable 
+:      025463 in_le_send_key5_rel:
+0x744f 025464 fetch 1 ,mem_key_conf5_led 
+0x7450 025465 call shutter_le_disble_key_led 
+0x7451 025466 arg mem_key5_release ,temp 
+0x7452 025467 branch in_le_send_lable 
+:      025469 shutter_le_disble_key_led:
+0x7453 025470 compare led_on ,pdata ,0xff 
+0x7454 025471 rtn true 
+0x7455 025472 force 3 ,pdata 
+0x7456 025473 branch shutter_le_key_led_index 
+:      025477 shutter_le_key_led_index:
+0x7457 025478 beq 0 ,in_le_key_led_0 
+0x7458 025479 beq 1 ,in_le_key_led_1 
+0x7459 025480 beq 2 ,in_le_key_led_2 
+0x745a 025481 beq 3 ,in_le_key_led_3 
+:      025483 in_le_light_led:
+0x745b 025484 branch shutter_ui_led_send 
+:      025487 in_le_key_led_0:
+0x745c 025488 setarg mem_key_led_style_ind_0 
+0x745d 025489 branch shutter_ui_led_send 
+:      025490 in_le_key_led_1:
+0x745e 025491 setarg mem_key_led_style_ind_1 
+0x745f 025492 branch shutter_ui_led_send 
+:      025493 in_le_key_led_2:
+0x7460 025494 setarg mem_key_led_style_ind_2 
+0x7461 025495 branch shutter_ui_led_send 
+:      025496 in_le_key_led_3:
+0x7462 025497 setarg mem_key_led_style_ind_3 
+0x7463 025498 branch shutter_ui_led_send 
+:      025502 shutter_ui_power_timeout_timer:
+0x7464 025503 fetch 1 ,mem_power_timer 
+0x7465 025504 rtn blank 
+0x7466 025505 increase -1 ,pdata 
+0x7467 025506 store 1 ,mem_power_timer 
+0x7468 025507 nrtn blank 
+0x7469 025508 fetch 1 ,mem_shutter_powerup_flag 
+0x746a 025509 beq shutter_power_on ,shutter_le_soft_switch_power_on_signal 
+0x746b 025510 branch shutter_shutter_power_off_signal 
+:      025512 shutter_ui_button_timeout_timer:
+0x746c 025513 fetch 1 ,mem_shutter_button_timer 
+0x746d 025514 rtn blank 
+0x746e 025515 increase -1 ,pdata 
+0x746f 025516 store 1 ,mem_shutter_button_timer 
+0x7470 025517 nrtn blank 
+0x7471 025518 branch app_led_off 
+:      025520 shutter_shuuter_led_on:
+0x7472 025521 fetch 1 ,mem_shutter_button_timeout 
+0x7473 025522 store 1 ,mem_shutter_button_timer 
+0x7474 025523 branch app_led_on 
+:      025525 shutter_bb_event_button_up:
+0x7475 025529 fetch 1 ,mem_shutter_powerup_flag 
+0x7476 025530 beq shutter_power_on ,in_power_release 
+0x7477 025531 branch app_enter_hibernate 
+:      025532 in_power_release:
+0x7478 025533 jam 1 ,mem_enable_key_scan 
+0x7479 025534 rtn 
+:      025536 shutter_evt_button_long_pressed:
+0x747a 025538 fetch 1 ,mem_shutter_powerup_flag 
+0x747b 025539 beq shutter_power_on ,shutter_le_power_off 
+0x747c 025540 jam shutter_power_on ,mem_shutter_powerup_flag 
+0x747d 025542 setarg mem_power_on_led_style 
+:      025543 shutter_shutter_power_on:
+:      025544 shutter_shutter_power_on_off:
+0x747e 025545 fetcht 1 ,mem_power_timeout 
+0x747f 025546 storet 1 ,mem_power_timer 
+0x7480 025547 branch shutter_ui_led_send 
+:      025549 shutter_le_power_off:
+0x7481 025551 jam shutter_power_off ,mem_shutter_powerup_flag 
+0x7482 025552 jam 0 ,mem_enable_key_scan 
+0x7483 025553 jam off ,mem_le_adv_enable 
+0x7484 025554 fetch 2 ,mem_ui_state_map 
+0x7485 025555 bbit0 ui_state_ble_connected ,shutter_shutter_power_off_end 
+0x7486 025556 call app_ble_disconnect 
+:      025557 shutter_shutter_power_off_end:
+0x7487 025558 jam off ,mem_le_adv_enable 
+0x7488 025559 setarg mem_powe_off_led_style 
+0x7489 025560 branch shutter_shutter_power_on_off 
+:      025562 shutter_shutter_power_off_signal:
+0x748a 025563 call shutter_ui_led_init 
+0x748b 025564 branch app_enter_hibernate 
+:      025567 shutter_le_process_lpm_before:
+0x748c 025568 fetch 1 ,mem_shutter_key_num 
+0x748d 025569 rtn blank 
+0x748e 025570 copy pdata ,loopcnt 
+0x748f 025571 setarg mem_key_conf0_pin 
+0x7490 025572 copy pdata ,rega 
+:      025573 in_shutter_process_lpm_before_lp1:
+0x7491 025574 ifetcht 1 ,rega 
+0x7492 025575 call gpio_set_wake_by_current_state 
+0x7493 025576 increase key_conf_struct_len ,rega 
+0x7494 025577 loop in_shutter_process_lpm_before_lp1 
+:      025578 shutter_le_process_lpm_before_end:
+0x7495 025579 rtn 
+:      025582 shutter_le_queue_init:
+0x7496 025583 jam 0 ,mem_queue_ele_num 
+0x7497 025584 setarg mem_queue_start 
+0x7498 025585 store 2 ,mem_queue_read 
+0x7499 025586 store 2 ,mem_queue_write 
+0x749a 025587 rtn 
+:      025590 shutter_le_queue_clear:
+0x749b 025591 branch shutter_le_queue_init 
+:      025595 shutter_le_queue_put:
+0x749c 025596 disable user 
+0x749d 025597 fetch 1 ,mem_queue_ele_num 
+0x749e 025598 compare queue_ele_count ,pdata ,0xff 
+0x749f 025599 rtn true 
+0x74a0 025601 enable user 
+0x74a1 025602 fetch 2 ,mem_queue_write 
+0x74a2 025603 copy pdata ,contw 
+0x74a3 025604 copy temp ,contr 
+0x74a4 025605 call memcpy 
+0x74a5 025607 fetch 1 ,mem_queue_ele_num 
+0x74a6 025608 increase 1 ,pdata 
+0x74a7 025609 store 1 ,mem_queue_ele_num 
+0x74a8 025611 setarg mem_queue_write 
+0x74a9 025612 call shutter_le_queue_increase 
+0x74aa 025613 rtn 
+:      025616 shutter_le_queue_increase:
+0x74ab 025617 copy pdata ,rega 
+0x74ac 025618 arg mem_queue_end ,temp 
+0x74ad 025619 ifetch 2 ,rega 
+0x74ae 025620 increase queue_ele_length ,pdata 
+0x74af 025621 isub temp ,null 
+0x74b0 025622 nbranch shutter_le_queue_put_end ,positive 
+0x74b1 025623 setarg mem_queue_start 
+:      025624 shutter_le_queue_put_end:
+0x74b2 025625 istore 2 ,rega 
+0x74b3 025626 rtn 
+:      025630 shutter_le_queue_get:
+0x74b4 025631 disable user 
+0x74b5 025632 fetch 1 ,mem_queue_ele_num 
+0x74b6 025633 rtn blank 
+0x74b7 025634 enable user 
+0x74b8 025635 fetch 1 ,mem_queue_ele_num 
+0x74b9 025636 increase -1 ,pdata 
+0x74ba 025637 store 1 ,mem_queue_ele_num 
+0x74bb 025639 fetch 2 ,mem_queue_read 
+0x74bc 025640 store 2 ,mem_queue_temp 
+0x74bd 025642 setarg mem_queue_read 
+0x74be 025643 call shutter_le_queue_increase 
+0x74bf 025644 fetch 2 ,mem_queue_temp 
+0x74c0 025645 rtn 
+:      025647 shutter_le_queue_read_point:
+0x74c1 025648 disable user 
+0x74c2 025649 fetch 1 ,mem_queue_ele_num 
+0x74c3 025650 rtn blank 
+0x74c4 025651 enable user 
+0x74c5 025652 fetch 2 ,mem_queue_read 
+0x74c6 025653 rtn 
+:      025655 shutter_le_packet_interval_set:
+0x74c7 025656 fetch 2 ,mem_packet_interval_set 
+0x74c8 025657 arg temp_timer ,queue 
+0x74c9 025658 branch timer_init 
+:      025660 shutter_le_send_packet:
+0x74ca 025669 call shutter_le_queue_read_point 
+0x74cb 025670 nrtn user 
+0x74cc 025671 disable user 
+0x74cd 025680 force 0x0013 ,temp 
+0x74ce 025681 storet 2 ,mem_le_notify_handle 
+0x74cf 025682 branch shutter_le_shutter_send_keydata 
+:      025684 shutter_le_shutter_send_keydata:
+0x74d0 025685 arg 2 ,loopcnt 
+0x74d1 025686 fetcht 2 ,mem_le_notify_handle 
+0x74d2 025687 arg mem_shutter_send_data ,contr 
+0x74d3 025688 call shutter_le_tx_notification 
+0x74d4 025694 rtn 
+:      025696 shutter_le_tx_indication:
+0x74d5 025697 jam attop_handle_value_indication ,mem_fifo_temp 
+0x74d6 025698 branch shutter_le_tx_common 
+:      025699 shutter_le_tx_notification:
+0x74d7 025700 call le_xtype_fifo_is_empty 
+0x74d8 025701 nrtn blank 
+0x74d9 025702 fetch 1 ,mem_shutter_key_data_flag 
+0x74da 025703 nrtn blank 
+0x74db 025704 jam attop_handle_value_notification ,mem_fifo_temp 
+:      025705 shutter_le_tx_common:
+0x74dc 025711 call le_xtype_fifo_in 
+0x74dd 025712 branch shutter_le_tx_buff_inuse 
+:      025714 shutter_shutter_cancel_key_shake:
+0x74de 025715 fetcht 4 ,mem_shutter_clkn_bt_last 
+0x74df 025716 deposit clkn_bt 
+0x74e0 025717 store 4 ,mem_shutter_clkn_bt_last 
+0x74e1 025718 isub temp ,pdata 
+0x74e2 025719 nrtn positive 
+0x74e3 025720 sub pdata ,20 ,pdata 
+0x74e4 025721 rtn 
+:      025723 shutter_le_send_att_handle_value_notification:
+0x74e5 025725 call shutter_le_queue_get 
+0x74e6 025726 nrtn user 
+0x74e7 025727 disable user 
+0x74e8 025728 copy pdata ,contr 
+0x74e9 025729 ifetcht 1 ,contr 
+0x74ea 025730 increase -3 ,temp 
+0x74eb 025731 copy temp ,loopcnt 
+0x74ec 025733 ifetcht 2 ,contr 
+0x74ed 025735 add loopcnt ,7 ,pdata 
+0x74ee 025736 store 1 ,mem_scale_tx_length 
+0x74ef 025737 arg mem_le_l2cap + 1 ,contw 
+0x74f0 025738 istoret 2 ,contw 
+0x74f1 025739 call memcpy 
+0x74f2 025740 fetcht 1 ,mem_scale_tx_length 
+0x74f3 025741 branch le_send_packet 
+:      025743 shutter_le_receive_data:
+0x74f4 025744 fetch 1 ,mem_le_att_opcode 
+0x74f5 025745 beq attop_write_request ,shutter_le_parse_att_write_request 
+0x74f6 025746 beq attop_write_command ,shutter_le_parse_att_write_command 
+0x74f7 025747 rtn 
+:      025748 shutter_le_parse_att_write_request:
+0x74f8 025749 fetch 2 ,mem_le_att_handle 
+0x74f9 025750 beq att_write_request_handle ,shutter_key_data_send 
+0x74fa 025751 rtn 
+:      025752 shutter_le_parse_att_write_command:
+:      025753 shutter_key_data_send:
+0x74fb 025754 jam 0 ,mem_shutter_key_data_flag 
+0x74fc 025755 rtn 
+:      025757 init_shutter_le_att_list:
+0x74fd 025758 arg mem_shutter_le_att_list ,contw 
+0x74fe 025759 setsect 0 ,0x20001 
+0x74ff 025760 setsect 1 ,0x20000 
+0x7500 025761 setsect 2 ,0x1022 
+0x7501 025762 setsect 3 ,0x860 
+0x7502 025763 istore 9 ,contw 
+0x7503 025764 setsect 0 ,0x30200 
+0x7504 025765 setsect 1 ,0x4a00 
+0x7505 025766 setsect 2 ,0x3200 
+0x7506 025767 setsect 3 ,0x800 
+0x7507 025768 istore 9 ,contw 
+0x7508 025769 setsect 0 ,0x12a05 
+0x7509 025770 setsect 1 ,0x10000 
+0x750a 025771 setsect 2 ,0x2000 
+0x750b 025772 setsect 3 ,0xa408 
+0x750c 025773 istore 9 ,contw 
+0x750d 025774 setsect 0 ,0x2 
+0x750e 025775 setsect 1 ,0x140 
+0x750f 025776 setsect 2 ,0x20 
+0x7510 025777 setsect 3 ,0x8a0 
+0x7511 025778 istore 9 ,contw 
+0x7512 025779 setsect 0 ,0x21800 
+0x7513 025780 setsect 1 ,0x8001 
+0x7514 025781 setsect 2 ,0x28030 
+0x7515 025782 setsect 3 ,0x804 
+0x7516 025783 istore 9 ,contw 
+0x7517 025784 setsect 0 ,0x20007 
+0x7518 025785 setsect 1 ,0x28000 
+0x7519 025786 setsect 2 ,0x3132 
+0x751a 025787 setsect 3 ,0x1a5a1 
+0x751b 025788 istore 9 ,contw 
+0x751c 025789 setsect 0 ,0x17370 
+0x751d 025790 setsect 1 ,0x35859 
+0x751e 025791 setsect 2 ,0xc422 
+0x751f 025792 setsect 3 ,0x8115 
+0x7520 025793 istore 9 ,contw 
+0x7521 025794 setsect 0 ,0x2020 
+0x7522 025795 setsect 1 ,0x808 
+0x7523 025796 setsect 2 ,0x20202 
+0x7524 025797 setsect 3 ,0x20 
+0x7525 025798 istore 9 ,contw 
+0x7526 025799 setsect 0 ,0x302 
+0x7527 025800 setsect 1 ,0x804a 
+0x7528 025801 setsect 2 ,0x90 
+0x7529 025802 setsect 3 ,0x408 
+0x752a 025803 istore 9 ,contw 
+0x752b 025804 setsect 0 ,0x22a 
+0x752c 025805 setsect 1 ,0x28032 
+0x752d 025806 setsect 2 ,0x2000 
+0x752e 025807 setsect 3 ,0xa00c 
+0x752f 025808 istore 9 ,contw 
+0x7530 025809 setsect 0 ,0x30201 
+0x7531 025810 setsect 1 ,0x8002 
+0x7532 025811 setsect 2 ,0x2a040 
+0x7533 025812 setsect 3 ,0x1820 
+0x7534 025813 istore 9 ,contw 
+0x7535 025814 setsect 0 ,0x600 
+0x7536 025815 setsect 1 ,0x1900 
+0x7537 025816 setsect 2 ,0x12c0 
+0x7538 025817 setsect 3 ,0x30 
+0x7539 025818 istore 9 ,contw 
+0x753a 025819 setsect 0 ,0x2 
+0x753b 025820 setsect 1 ,0x2808a 
+0x753c 025821 setsect 2 ,0xd180 
+0x753d 025822 setsect 3 ,0x800 
+0x753e 025823 istore 9 ,contw 
+0x753f 025824 setsect 0 ,0x12803 
+0x7540 025825 setsect 1 ,0x38080 
+0x7541 025826 setsect 2 ,0x2000 
+0x7542 025827 setsect 3 ,0xa940 
+0x7543 025828 istore 9 ,contw 
+0x7544 025829 setsect 0 ,0x20207 
+0x7545 025830 setsect 1 ,0x18922 
+0x7546 025831 setsect 2 ,0x1826 
+0x7547 025832 setsect 3 ,0x3c00 
+0x7548 025833 istore 9 ,contw 
+0x7549 025834 setsect 0 ,0x200 
+0x754a 025835 setsect 1 ,0x8a00 
+0x754b 025836 setsect 2 ,0x18120 
+0x754c 025837 setsect 3 ,0x40 
+0x754d 025838 istore 9 ,contw 
+0x754e 025839 setsect 0 ,0x302 
+0x754f 025840 setsect 1 ,0x1804a 
+0x7550 025841 setsect 2 ,0x110 
+0x7551 025842 setsect 3 ,0x13808 
+0x7552 025843 istore 9 ,contw 
+0x7553 025844 setarg 0x1012a 
+0x7554 025845 istore 3 ,contw 
+0x7555 025846 setsect 0 ,0x20012 
+0x7556 025847 setsect 1 ,0x200c0 
+0x7557 025848 setsect 2 ,0x12012 
+0x7558 025849 setsect 3 ,0x4c 
+0x7559 025850 istore 9 ,contw 
+0x755a 025851 setsect 0 ,0x24d02 
+0x755b 025852 setsect 1 ,0x8a 
+0x755c 025853 setsect 2 ,0x14280 
+0x755d 025854 setsect 3 ,0x800 
+0x755e 025855 istore 9 ,contw 
+0x755f 025856 setsect 0 ,0x22902 
+0x7560 025857 setsect 1 ,0x0 
+0x7561 025858 setsect 2 ,0x150 
+0x7562 025859 setsect 3 ,0x2008 
+0x7563 025860 istore 9 ,contw 
+0x7564 025861 setsect 0 ,0x20229 
+0x7565 025862 setsect 1 ,0x18040 
+0x7566 025863 setsect 2 ,0x2001 
+0x7567 025864 setsect 3 ,0xa00c 
+0x7568 025865 istore 9 ,contw 
+0x7569 025866 setsect 0 ,0x31201 
+0x756a 025867 setsect 1 ,0x8005 
+0x756b 025868 setsect 2 ,0x2a4d0 
+0x756c 025869 setsect 3 ,0x8 
+0x756d 025870 istore 9 ,contw 
+0x756e 025871 setsect 0 ,0x1828 
+0x756f 025872 setsect 1 ,0x8080 
+0x7570 025873 setsect 2 ,0x2290 
+0x7571 025874 setsect 3 ,0x0 
+0x7572 025875 istore 9 ,contw 
+0x7573 025876 setsect 0 ,0x20019 
+0x7574 025877 setsect 1 ,0x24200 
+0x7575 025878 setsect 2 ,0x3022 
+0x7576 025879 setsect 3 ,0x6804 
+0x7577 025880 istore 9 ,contw 
+0x7578 025881 setsect 0 ,0x30200 
+0x7579 025882 setsect 1 ,0x4a00 
+0x757a 025883 setsect 2 ,0x1b020 
+0x757b 025884 setsect 3 ,0x800 
+0x757c 025885 istore 9 ,contw 
+0x757d 025886 setsect 0 ,0x2a4b 
+0x757e 025887 setsect 1 ,0x30151 
+0x757f 025888 setsect 2 ,0x1090 
+0x7580 025889 setsect 3 ,0x684 
+0x7581 025890 istore 9 ,contw 
+0x7582 025891 setsect 0 ,0x10285 
+0x7583 025892 setsect 1 ,0x27a42 
+0x7584 025893 setsect 2 ,0x9ea0 
+0x7585 025894 setsect 3 ,0x2788 
+0x7586 025895 istore 9 ,contw 
+0x7587 025896 setsect 0 ,0x11530 
+0x7588 025897 setsect 1 ,0x30940 
+0x7589 025898 setsect 2 ,0x10750 
+0x758a 025899 setsect 3 ,0x654 
+0x758b 025900 istore 9 ,contw 
+0x758c 025901 setsect 0 ,0x81 
+0x758d 025902 setsect 1 ,0x4170 
+0x758e 025903 setsect 2 ,0x6090 
+0x758f 025904 setsect 3 ,0x684 
+0x7590 025905 istore 9 ,contw 
+0x7591 025906 setsect 0 ,0x10385 
+0x7592 025907 setsect 1 ,0x241c1 
+0x7593 025908 setsect 2 ,0x29e01 
+0x7594 025909 setsect 3 ,0x579c 
+0x7595 025910 istore 9 ,contw 
+0x7596 025911 setsect 0 ,0x12500 
+0x7597 025912 setsect 1 ,0x5d40 
+0x7598 025913 setsect 2 ,0x8950 
+0x7599 025914 setsect 3 ,0xa04 
+0x759a 025915 istore 9 ,contw 
+0x759b 025916 setsect 0 ,0x10875 
+0x759c 025917 setsect 1 ,0x14065 
+0x759d 025918 setsect 2 ,0x25001 
+0x759e 025919 setsect 3 ,0x17d0 
+0x759f 025920 istore 9 ,contw 
+0x75a0 025921 setsect 0 ,0x1907 
+0x75a1 025922 setsect 1 ,0x10a40 
+0x75a2 025923 setsect 2 ,0x81f 
+0x75a3 025924 setsect 3 ,0x300 
+0x75a4 025925 istore 8 ,contw 
+0x75a5 025926 setsect 0 ,0x2001c 
+0x75a6 025927 setsect 1 ,0x200c0 
+0x75a7 025928 setsect 2 ,0x2012 
+0x75a8 025929 setsect 3 ,0x74 
+0x75a9 025930 istore 9 ,contw 
+0x75aa 025931 setsect 0 ,0x24a02 
+0x75ab 025932 setsect 1 ,0x410a 
+0x75ac 025933 setsect 2 ,0x11 
+0x75ad 025934 setsect 3 ,0x7804 
+0x75ae 025935 istore 9 ,contw 
+0x75af 025936 setsect 0 ,0x30200 
+0x75b0 025937 setsect 1 ,0x4a00 
+0x75b1 025938 setsect 2 ,0x1f040 
+0x75b2 025939 setsect 3 ,0x800 
+0x75b3 025940 istore 9 ,contw 
+0x75b4 025941 setsect 0 ,0x12a4c 
+0x75b5 025942 setsect 1 ,0x0 
+0x75b6 025943 setsect 2 ,0x2002 
+0x75b7 025944 setsect 3 ,0xa000 
+0x75b8 025945 istore 9 ,contw 
+0x75b9 025946 setsect 0 ,0xf02 
+0x75ba 025947 setsect 1 ,0x846 
+0x75bb 025948 setsect 2 ,0x3020 
+0x75bc 025949 setsect 3 ,0x4a0 
+0x75bd 025950 istore 9 ,contw 
+0x75be 025951 setsect 0 ,0x2212 
+0x75bf 025952 setsect 1 ,0x24080 
+0x75c0 025953 setsect 2 ,0x12a1 
+0x75c1 025954 setsect 3 ,0x8c00 
+0x75c2 025955 istore 9 ,contw 
+0x75c3 025956 setsect 0 ,0x20200 
+0x75c4 025957 setsect 1 ,0x8a40 
+0x75c5 025958 setsect 2 ,0x0 
+0x75c6 025959 setsect 3 ,0x0 
+0x75c7 025960 istore 9 ,contw 
+0x75c8 025961 rtn 
+:      025963 shutter_init_param:
+0x75c9 025964 jam 1 ,mem_le_pres_auth 
+0x75ca 025965 jam 1 ,mem_le_flag 
+0x75cb 025966 jam 1 ,mem_le_pairing_mode 
+0x75cc 025967 setarg 0x1b 
+0x75cd 025968 store 2 ,mem_le_pairing_handle 
+0x75ce 025969 jam 1 ,mem_le_adv_direct_addr_type 
+0x75cf 025970 jam 3 ,mem_empty_count 
+0x75d0 025971 jam 0x50 ,mem_le_transmit_window 
+0x75d1 025973 jam 0x17 ,mem_le_local_mtu 
+0x75d2 025974 jam 0x17 ,mem_le_remote_mtu 
+0x75d3 025975 arg mem_le_pres ,contw 
+0x75d4 025976 setsect 0 ,0x302 
+0x75d5 025977 setsect 1 ,0x40 
+0x75d6 025978 setsect 2 ,0x1021 
+0x75d7 025979 setsect 3 ,0x0 
+0x75d8 025980 istore 7 ,contw 
+0x75d9 025981 arg mem_le_interal_min ,contw 
+0x75da 025982 setsect 0 ,0x8 
+0x75db 025983 setsect 1 ,0x4 
+0x75dc 025984 setsect 2 ,0x2c000 
+0x75dd 025985 setsect 3 ,0x4 
+0x75de 025986 istore 8 ,contw 
+0x75df 025987 rtn 
+:      025991 publickey_init:
+0x75e0 025992 fetch 1 ,mem_ssp_enable 
+0x75e1 025993 nbranch sp_initialize ,blank 
+0x75e2 025994 branch sp_initialize_256 
+:      025996 publickey_calc:
+0x75e3 025997 set1 mark_ext_patch ,mark 
+0x75e4 025998 bpatch patch3c_0 ,mem_patch3c 
+0x75e5 025999 fetch 1 ,mem_ssp_enable 
+0x75e6 026000 rtn blank 
+0x75e7 026001 fetch 1 ,mem_sp_local_key_invalid 
+0x75e8 026002 rtnne sp_key_valid 
+0x75e9 026003 fetch 1 ,mem_le_secure_connect_enable 
+0x75ea 026004 rtn blank 
+0x75eb 026005 fetch 1 ,mem_le_sc_local_key_invalid 
+0x75ec 026006 rtneq sp_key_valid_256 
+0x75ed 026007 fetch 2 ,mem_ui_state_map 
+0x75ee 026008 bbit1 ui_state_bt_connected ,stop_publickey_calc_256 
+0x75ef 026009 fetch 1 ,mem_le_sc_calc 
+0x75f0 026010 beq sp_calc_standby ,sp_initialize_256 
+0x75f1 026011 rtn 
+:      026012 stop_publickey_calc_256:
+0x75f2 026013 jam sp_calc_standby ,mem_le_sc_calc 
+0x75f3 026014 rtn 
+:      026017 sp_initialize:
+0x75f4 026018 set1 mark_ext_patch ,mark 
+0x75f5 026019 bpatch patch3c_1 ,mem_patch3c 
+0x75f6 026020 fetch 1 ,mem_ssp_enable 
+0x75f7 026021 branch ssp_disable ,blank 
+0x75f8 026022 call ssp_enable 
+0x75f9 026023 call sp_clear_flags 
+0x75fa 026024 branch sp_pubkey_calc 
+:      026026 sp_clear_flags:
+0x75fb 026027 setarg 0 
+0x75fc 026028 store 8 ,mem_sp_state_start 
+0x75fd 026029 store 4 ,mem_sp_flag_start 
+0x75fe 026030 store 7 ,mem_sp_iocap_remote 
+0x75ff 026031 rtn 
+:      026033 sp_generate_local_key:
+0x7600 026034 jam sp_flag_commit ,mem_sp_flag 
+0x7601 026035 branch sp_generate_local_key0 
+:      026036 sp_master_generate_local_key:
+0x7602 026037 fetch 1 ,mem_sp_local_key_invalid 
+0x7603 026038 beq sp_key_valid ,sp_dhkey_calc 
+0x7604 026039 branch assert 
+:      026040 sp_generate_local_key0:
+0x7605 026041 fetch 1 ,mem_sp_local_key_invalid 
+0x7606 026042 beq sp_key_valid ,sp_start_send_pubkey 
+0x7607 026043 branch sp_pubkey_calc 
+:      026045 sp_start_send_pubkey:
+0x7608 026046 call sp_dhkey_calc 
+0x7609 026047 fetch 1 ,mem_master_sp_state 
+0x760a 026048 nrtn blank 
+0x760b 026049 jam sp_stat_key_send ,mem_sp_state 
+0x760c 026050 rtn 
+:      026052 sp_calculate_commitment:
+0x760d 026053 fetch 1 ,mem_sp_calc 
+0x760e 026054 bne sp_calc_standby ,sp_calculate_commitment_wait_dhkey_calc 
+0x760f 026055 call sp_local_random_key_generator 
+0x7610 026056 arg mem_sp_prarm_stack ,contw 
+0x7611 026057 setarg mem_sp_random_local_end 
+0x7612 026058 istore 2 ,contw 
+0x7613 026059 setarg mem_sp_pubkey_local_x_end 
+0x7614 026060 istore 2 ,contw 
+0x7615 026061 setarg mem_sp_pubkey_remote_x_end 
+0x7616 026062 istore 2 ,contw 
+0x7617 026063 branch sp_calculate_commitment0 
+:      026064 master_sp_calculate_commitment:
+0x7618 026065 arg mem_sp_prarm_stack ,contw 
+0x7619 026066 setarg mem_sp_random_remote_end 
+0x761a 026067 istore 2 ,contw 
+0x761b 026068 setarg mem_sp_pubkey_remote_x_end 
+0x761c 026069 istore 2 ,contw 
+0x761d 026070 setarg mem_sp_pubkey_local_x_end 
+0x761e 026071 istore 2 ,contw 
+:      026072 sp_calculate_commitment0:
+0x761f 026073 call function_f1 
+0x7620 026074 fetch 1 ,mem_master_sp_state 
+0x7621 026075 beq sp_stat_commit_calc ,master_sp_calculate_commitment0 
+0x7622 026076 jam sp_flag_commit ,mem_sp_flag 
+0x7623 026077 jam sp_stat_commit_send ,mem_sp_state 
+0x7624 026078 rtn 
+:      026079 master_sp_calculate_commitment0:
+0x7625 026080 jam sp_stat_commitment_compare ,mem_master_sp_state 
+0x7626 026081 call sp_master_generate_local_key 
+0x7627 026082 branch master_set_mem_master_sp_flag 
+:      026084 sp_local_random_key_generator:
+0x7628 026085 arg mem_sp_random_local ,contw 
+0x7629 026086 force 8 ,queue 
+0x762a 026087 branch random_generator 
+:      026089 sp_calculate_commitment_wait_dhkey_calc:
+0x762b 026090 jam sp_flag_commit ,mem_sp_flag 
+0x762c 026091 rtn 
+:      026093 sp_confirm_check:
+0x762d 026095 set1 mark_ext_patch ,mark 
+0x762e 026096 bpatch patch3c_2 ,mem_patch3c 
+0x762f 026097 arg mem_addr_value ,contw 
+0x7630 026098 fetch 6 ,mem_lap 
+0x7631 026099 istore 6 ,contw 
+0x7632 026100 fetch 6 ,mem_plap 
+0x7633 026101 istore 6 ,contw 
+0x7634 026102 fetch 3 ,mem_sp_iocap_remote 
+0x7635 026103 istore 3 ,contw 
+0x7636 026105 call function_f3a 
+0x7637 026107 arg mem_sp_calc_result_high ,rega 
+0x7638 026108 arg mem_sp_check_result ,regb 
+0x7639 026109 force 4 ,queue 
+0x763a 026110 call compare4 
+0x763b 026111 nbranch sp_confirm_check_failed ,true 
+0x763c 026113 call sp_confirm_check_success 
+0x763d 026114 jam lmp_dhkey_check ,mem_lmi_opcode2 
+0x763e 026115 branch tid_set_reply 
+:      026117 sp_confirm_check_success:
+0x763f 026118 fetch 1 ,mem_master_sp_state 
+0x7640 026119 beq sp_stat_confirm_check ,sp_confirm_check_success_master 
+0x7641 026120 jam sp_stat_confirm_calc ,mem_sp_state 
+0x7642 026121 jam sp_flag_commit ,mem_sp_flag 
+0x7643 026122 jam lmp_accepted ,mem_lmo_opcode2 
+0x7644 026123 rtn 
+:      026124 sp_confirm_check_success_master:
+0x7645 026125 jam lmp_accepted ,mem_lmo_opcode2 
+0x7646 026126 jam sp_state_end ,mem_master_sp_state 
+0x7647 026127 branch master_set_mem_master_sp_flag 
+:      026130 sp_confirm_check_failed:
+0x7648 026131 fetch 1 ,mem_master_sp_state 
+0x7649 026132 beq sp_stat_confirm_check ,sp_confirm_check_failed_master 
+0x764a 026133 jam sp_stat_null ,mem_sp_state 
+0x764b 026134 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x764c 026136 jam authentication_failure_error ,mem_lmo_reason2 
+0x764d 026137 rtn 
+:      026138 sp_confirm_check_failed_master:
+0x764e 026139 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x764f 026140 jam sp_stat_null ,mem_master_sp_state 
+0x7650 026141 rtn 
+:      026143 sp_confirm_calc:
+0x7651 026144 fetch 1 ,mem_sp_dh_ready 
+0x7652 026145 beq sp_flag_commit ,sp_confirm_calc_ready 
+0x7653 026146 jam sp_stat_confirm_calc ,mem_master_sp_state 
+0x7654 026147 branch master_set_mem_master_sp_flag 
+:      026148 sp_confirm_calc_ready:
+0x7655 026149 arg mem_addr_value ,contw 
+0x7656 026150 fetch 6 ,mem_plap 
+0x7657 026151 istore 6 ,contw 
+0x7658 026152 fetch 6 ,mem_lap 
+0x7659 026153 istore 6 ,contw 
+0x765a 026154 fetch 3 ,mem_sp_iocap_local 
+0x765b 026155 istore 3 ,contw 
+0x765c 026157 call function_f3b 
+0x765d 026158 fetch 1 ,mem_master_sp_state 
+0x765e 026159 beq sp_stat_confirm_calc ,sp_confirm_calc_master 
+0x765f 026160 jam sp_stat_confirm_send ,mem_sp_state 
+0x7660 026161 jam sp_flag_commit ,mem_sp_flag 
+0x7661 026162 rtn 
+:      026163 sp_confirm_calc_master:
+0x7662 026164 jam sp_stat_confirm_send ,mem_master_sp_state 
+0x7663 026165 jam sp_flag_commit ,mem_master_sp_flag 
+0x7664 026166 rtn 
+:      026168 sp_master_key_prarm_push:
+0x7665 026169 arg mem_sp_prarm_stack ,contw 
+0x7666 026170 fetch 6 ,mem_plap 
+0x7667 026171 istore 6 ,contw 
+0x7668 026172 fetch 6 ,mem_lap 
+0x7669 026173 istore 6 ,contw 
+0x766a 026174 setarg mem_sp_random_local_end 
+0x766b 026175 istore 2 ,contw 
+0x766c 026176 setarg mem_sp_random_remote_end 
+0x766d 026177 istore 2 ,contw 
+0x766e 026178 branch sp_link_key_calc 
+:      026179 sp_link_key_prarm_push:
+0x766f 026180 jam sp_stat_done ,mem_sp_state 
+0x7670 026181 arg mem_sp_prarm_stack ,contw 
+0x7671 026182 fetch 6 ,mem_lap 
+0x7672 026183 istore 6 ,contw 
+0x7673 026184 fetch 6 ,mem_plap 
+0x7674 026185 istore 6 ,contw 
+0x7675 026186 setarg mem_sp_random_remote_end 
+0x7676 026187 istore 2 ,contw 
+0x7677 026188 setarg mem_sp_random_local_end 
+0x7678 026189 istore 2 ,contw 
+:      026190 sp_link_key_calc:
+0x7679 026192 arg mem_addr_value ,contw 
+0x767a 026193 fetch 6 ,mem_sp_prarm_stack 
+0x767b 026194 istore 6 ,contw 
+0x767c 026195 fetch 6 ,mem_sp_prarm_stack + 6 
+0x767d 026196 istore 6 ,contw 
+0x767e 026198 call function_f2 
+0x767f 026201 jam 1 ,mem_link_key_exists 
+0x7680 026202 arg mem_link_key ,contw 
+0x7681 026203 arg mem_sp_calc_result_high ,contr 
+0x7682 026204 call memcpy16 
+0x7683 026205 branch generate_linkkey_continue 
+:      026208 sp_pubkey_calc:
+0x7684 026209 set1 mark_ext_patch ,mark 
+0x7685 026210 bpatch patch3c_3 ,mem_patch3c 
+0x7686 026211 fetch 1 ,mem_sp_local_key_invalid 
+0x7687 026212 rtnne sp_key_invalid 
+0x7688 026213 fetch 1 ,mem_sp_calc 
+0x7689 026214 rtnne sp_calc_standby 
+0x768a 026215 arg mem_sp_private_key ,contw 
+0x768b 026216 force 11 ,queue 
+0x768c 026217 call random_generator 
+0x768d 026218 random pdata 
+0x768e 026219 rshift pdata ,pdata 
+0x768f 026220 istore 2 ,contw 
+0x7690 026222 arg mem_k ,contw 
+0x7691 026223 arg mem_sp_private_key ,contr 
+0x7692 026224 call memcpy24 
+0x7693 026226 arg mem_ax ,contw 
+0x7694 026227 arg mem_gx ,contr 
+0x7695 026228 call memcpy48 
+0x7696 026230 arg mem_az ,contw 
+0x7697 026231 call bn_zero 
+0x7698 026232 jam 1 ,mem_az 
+0x7699 026234 call eckp_calc_init 
+0x769a 026235 jam sp_calc_pubkey ,mem_sp_calc 
+0x769b 026236 rtn 
+:      026238 sp_pubkey_generated:
+0x769c 026239 arg mem_sp_pubkey_local ,contw 
+0x769d 026240 arg mem_bx ,contr 
+0x769e 026241 call memcpy48 
+0x769f 026242 jam sp_key_valid ,mem_sp_local_key_invalid 
+0x76a0 026243 jam sp_calc_standby ,mem_sp_calc 
+0x76a1 026244 rtn 
+:      026246 sp_dhkey_calc:
+0x76a2 026247 set1 mark_ext_patch ,mark 
+0x76a3 026248 bpatch patch3c_4 ,mem_patch3c 
+0x76a4 026249 fetch 1 ,mem_sp_dhkey_invalid 
+0x76a5 026250 rtnne sp_key_invalid 
+0x76a6 026251 fetch 1 ,mem_sp_calc 
+0x76a7 026252 rtnne sp_calc_standby 
+0x76a8 026254 arg mem_k ,contw 
+0x76a9 026255 arg mem_sp_private_key ,contr 
+0x76aa 026256 call memcpy24 
+0x76ab 026258 arg mem_ax ,contw 
+0x76ac 026259 arg mem_sp_pubkey_remote ,contr 
+0x76ad 026260 call memcpy48 
+0x76ae 026262 arg mem_az ,contw 
+0x76af 026263 call bn_zero 
+0x76b0 026264 jam 1 ,mem_az 
+0x76b1 026266 call eckp_calc_init 
+0x76b2 026267 jam sp_calc_dhkey ,mem_sp_calc 
+0x76b3 026268 rtn 
+:      026270 sp_dhkey_generated:
+0x76b4 026271 jam sp_flag_commit ,mem_sp_dh_ready 
+0x76b5 026272 arg mem_sp_dhkey ,contw 
+0x76b6 026273 arg mem_bx ,contr 
+0x76b7 026274 call memcpy24 
+0x76b8 026275 jam sp_key_valid ,mem_sp_dhkey_invalid 
+0x76b9 026276 jam sp_calc_standby ,mem_sp_calc 
+0x76ba 026277 rtn 
+:      026279 random_generator:
+0x76bb 026280 increase -1 ,queue 
+0x76bc 026281 nrtn positive 
+0x76bd 026282 random pdata 
+0x76be 026283 istore 2 ,contw 
+0x76bf 026284 branch random_generator 
+:      026285 compare4:
+0x76c0 026286 increase -1 ,queue 
+0x76c1 026287 nbranch compare4_success ,positive 
+0x76c2 026288 ifetch 4 ,rega 
+0x76c3 026289 copy pdata ,temp 
+0x76c4 026290 ifetch 4 ,regb 
+0x76c5 026291 iflip temp ,pdata 
+0x76c6 026292 nbranch compare4_failed ,zero 
+0x76c7 026293 increase 4 ,rega 
+0x76c8 026294 increase 4 ,regb 
+0x76c9 026295 branch compare4 
+:      026296 compare4_failed:
+0x76ca 026297 disable true 
+0x76cb 026298 rtn 
+:      026299 compare4_success:
+0x76cc 026300 enable true 
+0x76cd 026301 rtn 
+:      026308 simple_pairing_sequence:
+0x76ce 026309 set1 mark_ext_patch ,mark 
+0x76cf 026310 bpatch patch3c_5 ,mem_patch3c 
+0x76d0 026311 fetch 1 ,mem_sp_flag 
+0x76d1 026312 rtn blank 
+0x76d2 026313 call lmo_fifo_check 
+0x76d3 026314 nrtn blank 
+0x76d4 026315 jam sp_flag_standby ,mem_sp_flag 
+0x76d5 026316 fetch 1 ,mem_sp_state 
+0x76d6 026317 beq sp_stat_key_send ,sp_send_lmp_encapsulated_header 
+0x76d7 026318 beq sp_stat_commit_send ,sp_send_lmp_simple_pairing_comfirm 
+0x76d8 026319 beq sp_stat_random_send ,sp_send_lmp_simple_pairing_number 
+0x76d9 026320 beq sp_stat_confirm_send ,sp_send_lmp_dhkey_check 
+0x76da 026321 beq sp_stat_key_generate ,sp_generate_local_key 
+0x76db 026322 beq sp_stat_commit_calc ,sp_calculate_commitment 
+0x76dc 026323 beq sp_stat_confirm_check ,sp_confirm_check 
+0x76dd 026324 beq sp_stat_confirm_calc ,sp_confirm_calc 
+0x76de 026325 beq sp_stat_link_key_calc ,sp_link_key_prarm_push 
+0x76df 026327 rtn 
+:      026329 master_simple_paring_sequence:
+0x76e0 026330 set1 mark_ext_patch ,mark 
+0x76e1 026331 bpatch patch3c_6 ,mem_patch3c 
+0x76e2 026332 fetch 1 ,mem_master_sp_flag 
+0x76e3 026333 rtn blank 
+0x76e4 026334 call lmo_fifo_check 
+0x76e5 026335 nrtn blank 
+0x76e6 026336 jam sp_flag_standby ,mem_master_sp_flag 
+0x76e7 026337 fetch 1 ,mem_master_sp_state 
+0x76e8 026338 beq sp_master_stat_start_skip ,sp_master_send_io_cap_get 
+0x76e9 026339 beq sp_master_stat_start_done ,sp_master_send_io_cap_send 
+0x76ea 026340 beq sp_stat_key_send ,sp_master_send_lmp_encapsulated_header 
+0x76eb 026341 beq sp_stat_commit_calc ,master_sp_calculate_commitment 
+0x76ec 026342 beq sp_stat_commitment_compare ,sp_master_commitment_compare 
+0x76ed 026343 beq sp_stat_random_send ,sp_master_send_lmp_simple_pairing_number 
+0x76ee 026344 beq sp_stat_confirm_calc ,sp_confirm_calc 
+0x76ef 026345 beq sp_stat_confirm_send ,master_sp_send_lmp_dhkey_check 
+0x76f0 026346 beq sp_stat_confirm_check ,sp_confirm_check 
+0x76f1 026347 beq sp_state_end ,master_sp_sm_end 
+0x76f2 026348 rtn 
+:      026350 master_set_mem_master_sp_flag:
+0x76f3 026351 jam sp_flag_commit ,mem_master_sp_flag 
+0x76f4 026352 rtn 
+:      026354 master_clear_mem_master_sp_flag:
+0x76f5 026355 jam sp_flag_standby ,mem_master_sp_flag 
+0x76f6 026356 rtn 
+:      026357 sp_calc_sequence:
+0x76f7 026358 set1 mark_ext_patch ,mark 
+0x76f8 026359 bpatch patch3c_7 ,mem_patch3c 
+0x76f9 026360 fetch 1 ,mem_ssp_enable 
+0x76fa 026361 rtn blank 
+0x76fb 026362 fetch 1 ,mem_sp_calc 
+0x76fc 026363 rtn blank 
+0x76fd 026364 increase 0x80 ,pdata 
+0x76fe 026365 store 1 ,mem_sp_calc 
+0x76ff 026366 rtnbit1 7 
+0x7700 026367 fetch 1 ,mem_ec_loopc 
+0x7701 026368 branch sp_calc_sequence_done ,blank 
+0x7702 026369 branch eckp_calc 
+:      026371 sp_calc_sequence_done:
+0x7703 026372 call ecunmapz 
+0x7704 026373 fetch 1 ,mem_sp_calc 
+0x7705 026374 beq sp_calc_pubkey ,sp_pubkey_generated 
+0x7706 026375 beq sp_calc_dhkey ,sp_dhkey_generated 
+0x7707 026376 rtn 
+:      026379 bn_testbit:
+0x7708 026380 and pdata ,7 ,queue 
+0x7709 026381 rshift3 pdata ,pdata 
+0x770a 026382 iadd contr ,contr 
+0x770b 026383 ifetch 1 ,contr 
+0x770c 026384 qisolate0 pdata 
+0x770d 026385 rtn 
+:      026388 ec_copy:
+0x770e 026389 call memcpy24 
+0x770f 026390 call memcpy24 
+0x7710 026391 branch memcpy24 
+:      026394 bn_eq_zero:
+0x7711 026395 ifetch 8 ,contr 
+0x7712 026396 nrtn blank 
+0x7713 026397 ifetch 8 ,contr 
+0x7714 026398 nrtn blank 
+0x7715 026399 ifetch 8 ,contr 
+0x7716 026400 rtn 
+:      026405 bn_eq_0:
+0x7717 026406 ifetch 4 ,rega 
+0x7718 026407 iforce temp 
+0x7719 026408 ifetch 4 ,regb 
+0x771a 026409 isub temp ,null 
+0x771b 026410 nrtn zero 
+0x771c 026411 increase 4 ,rega 
+0x771d 026412 increase 4 ,regb 
+0x771e 026413 loop bn_eq_0 
+0x771f 026414 rtn 
+:      026417 bn_bigeq:
+0x7720 026418 force 6 ,loopcnt 
+0x7721 026419 increase 20 ,rega 
+0x7722 026420 increase 20 ,regb 
+:      026421 bn_bigeq_0:
+0x7723 026422 ifetch 4 ,regb 
+0x7724 026423 iforce temp 
+0x7725 026424 ifetch 4 ,rega 
+0x7726 026425 isub temp ,pdata 
+0x7727 026426 nrtn positive 
+0x7728 026427 nrtn blank 
+0x7729 026428 increase -4 ,rega 
+0x772a 026429 increase -4 ,regb 
+0x772b 026430 loop bn_bigeq_0 
+0x772c 026431 rtn 
+:      026433 bn_add:
+0x772d 026434 force 6 ,loopcnt 
+0x772e 026435 force 0 ,regc 
+:      026436 bn_add_0:
+0x772f 026437 ifetch 4 ,rega 
+0x7730 026438 iforce temp 
+0x7731 026439 ifetch 4 ,regb 
+0x7732 026440 iadd temp ,pdata 
+0x7733 026441 iadd regc ,pdata 
+0x7734 026442 istore 4 ,contw 
+0x7735 026443 isolate1 32 ,pdata 
+0x7736 026444 setflag true ,0 ,regc 
+0x7737 026445 increase 4 ,rega 
+0x7738 026446 increase 4 ,regb 
+0x7739 026447 loop bn_add_0 
+0x773a 026448 rtn 
+:      026450 bn_sub:
+0x773b 026451 force 6 ,loopcnt 
+0x773c 026452 force 0 ,regc 
+:      026453 bn_sub_0:
+0x773d 026454 ifetch 4 ,regb 
+0x773e 026455 iforce temp 
+0x773f 026456 ifetch 4 ,rega 
+0x7740 026457 isub temp ,pdata 
+0x7741 026458 isub regc ,pdata 
+0x7742 026459 istore 4 ,contw 
+0x7743 026460 isolate1 32 ,pdata 
+0x7744 026461 setflag true ,0 ,regc 
+0x7745 026462 increase 4 ,rega 
+0x7746 026463 increase 4 ,regb 
+0x7747 026464 loop bn_sub_0 
+0x7748 026465 rtn 
+:      026467 bn_rshift6:
+0x7749 026468 force 6 ,loopcnt 
+0x774a 026469 increase 20 ,rega 
+:      026470 bn_rshift:
+0x774b 026471 force 0 ,regc 
+:      026472 bn_rshift_0:
+0x774c 026473 ifetch 4 ,rega 
+0x774d 026474 isolate1 0 ,pdata 
+0x774e 026475 setflag true ,1 ,regc 
+0x774f 026476 rshift pdata ,pdata 
+0x7750 026477 isolate1 0 ,regc 
+0x7751 026478 setflag true ,31 ,pdata 
+0x7752 026479 istore 4 ,rega 
+0x7753 026480 increase -4 ,rega 
+0x7754 026481 rshift regc ,regc 
+0x7755 026482 loop bn_rshift_0 
+0x7756 026483 rtn 
+:      026485 bn_lshift:
+0x7757 026486 force 6 ,loopcnt 
+0x7758 026487 force 0 ,regc 
+:      026488 bn_lshift_0:
+0x7759 026489 ifetch 4 ,rega 
+0x775a 026490 isolate1 31 ,pdata 
+0x775b 026491 setflag true ,1 ,regc 
+0x775c 026492 lshift pdata ,pdata 
+0x775d 026493 isolate1 0 ,regc 
+0x775e 026494 setflag true ,0 ,pdata 
+0x775f 026495 istore 4 ,rega 
+0x7760 026496 increase 4 ,rega 
+0x7761 026497 rshift regc ,regc 
+0x7762 026498 loop bn_lshift_0 
+0x7763 026499 rtn 
+:      026501 bn_lshiftmod:
+0x7764 026502 call bn_lshift 
+:      026503 bn_lshiftmod_ismod:
+0x7765 026504 isolate1 0 ,regc 
+0x7766 026505 branch bn_lshiftmod_0 ,true 
+0x7767 026506 arg mem_p ,regb 
+0x7768 026507 copy rega ,regc 
+0x7769 026508 increase -24 ,rega 
+0x776a 026509 call bn_bigeq 
+0x776b 026510 nrtn positive 
+0x776c 026511 copy regc ,rega 
+:      026512 bn_lshiftmod_0:
+0x776d 026513 increase -24 ,rega 
+0x776e 026514 arg mem_p ,regb 
+0x776f 026515 copy rega ,contw 
+0x7770 026516 branch bn_sub 
+:      026519 bn_addmod:
+0x7771 026520 call bn_add 
+0x7772 026521 copy contw ,rega 
+0x7773 026522 branch bn_lshiftmod_ismod 
+:      026524 bn_submod:
+0x7774 026525 call bn_sub 
+0x7775 026526 isolate0 0 ,regc 
+0x7776 026527 rtn true 
+0x7777 026528 arg mem_p ,regb 
+0x7778 026529 add contw ,-24 ,rega 
+0x7779 026530 copy rega ,contw 
+0x777a 026531 branch bn_add 
+:      026534 bn_p192mod:
+0x777b 026535 copy contw ,timeup 
+0x777c 026536 copy rega ,alarm 
+0x777d 026537 arg mem_tmp2 ,regb 
+0x777e 026538 copy regb ,contw 
+0x777f 026539 add rega ,24 ,contr 
+0x7780 026540 ifetch 8 ,contr 
+0x7781 026541 istore 8 ,contw 
+0x7782 026542 istore 8 ,contw 
+0x7783 026543 force 0 ,pdata 
+0x7784 026544 istore 8 ,contw 
+0x7785 026545 copy timeup ,contw 
+0x7786 026546 call bn_addmod 
+0x7787 026547 arg mem_tmp2 ,regb 
+0x7788 026548 copy regb ,contw 
+0x7789 026549 force 0 ,pdata 
+0x778a 026550 istore 8 ,contw 
+0x778b 026551 add alarm ,32 ,contr 
+0x778c 026552 ifetch 8 ,contr 
+0x778d 026553 istore 8 ,contw 
+0x778e 026554 istore 8 ,contw 
+0x778f 026555 copy timeup ,rega 
+0x7790 026556 copy rega ,contw 
+0x7791 026557 call bn_addmod 
+0x7792 026558 arg mem_tmp2 ,regb 
+0x7793 026559 copy regb ,contw 
+0x7794 026560 add alarm ,40 ,contr 
+0x7795 026561 ifetch 8 ,contr 
+0x7796 026562 istore 8 ,contw 
+0x7797 026563 istore 8 ,contw 
+0x7798 026564 istore 8 ,contw 
+0x7799 026565 copy timeup ,rega 
+0x779a 026566 copy rega ,contw 
+0x779b 026567 branch bn_addmod 
+:      026570 bn_load:
+0x779c 026571 force 6 ,loopcnt 
+:      026572 bn_load_0:
+0x779d 026573 ifetch 4 ,contr 
+0x779e 026574 iforce regext 
+0x779f 026575 increase 1 ,regext_index 
+0x77a0 026576 loop bn_load_0 
+0x77a1 026577 rtn 
+:      026581 bn_mulmod:
+0x77a2 026582 copy contw ,timeup 
+0x77a3 026583 arg mem_tmp1 ,contw 
+0x77a4 026584 call bn_zero 
+0x77a5 026585 arg mem_tmp1 ,contw 
+0x77a6 026586 copy rega ,contr 
+0x77a7 026587 force 0 ,regext_index 
+0x77a8 026588 call bn_load 
+0x77a9 026589 copy regb ,contr 
+0x77aa 026590 call bn_load 
+0x77ab 026591 force 0 ,regb 
+:      026592 bn_mulmod_1:
+0x77ac 026593 force 0 ,temp 
+0x77ad 026594 force 6 ,regc 
+:      026595 bn_mulmod_0:
+0x77ae 026596 ifetch 4 ,contw 
+0x77af 026597 iforce rega 
+0x77b0 026598 copy regb ,regext_index 
+0x77b1 026599 deposit regext 
+0x77b2 026600 copy regc ,regext_index 
+0x77b3 026601 imul32 regext ,pdata 
+0x77b4 026602 iadd rega ,pdata 
+0x77b5 026603 iadd temp ,pdata 
+0x77b6 026604 istore 4 ,contw 
+0x77b7 026605 rshift32 pdata ,temp 
+0x77b8 026606 increase 1 ,regc 
+0x77b9 026607 compare 12 ,regc ,0xff 
+0x77ba 026608 nbranch bn_mulmod_0 ,true 
+0x77bb 026609 deposit temp 
+0x77bc 026610 istore 4 ,contw 
+0x77bd 026611 increase -24 ,contw 
+0x77be 026612 increase 1 ,regb 
+0x77bf 026613 compare 6 ,regb ,0xff 
+0x77c0 026614 nbranch bn_mulmod_1 ,true 
+0x77c1 026615 arg mem_tmp1 ,rega 
+0x77c2 026616 copy timeup ,contw 
+0x77c3 026617 branch bn_p192mod 
+:      026620 bn_sqrmod:
+0x77c4 026621 copy rega ,regb 
+0x77c5 026622 branch bn_mulmod 
+:      026624 bn_rshifteven:
+0x77c6 026625 copy rega ,alarm 
+:      026626 bn_rshifteven_1:
+0x77c7 026627 copy alarm ,rega 
+0x77c8 026628 ifetch 1 ,rega 
+0x77c9 026629 isolate1 0 ,pdata 
+0x77ca 026630 rtn true 
+0x77cb 026631 call bn_rshift6 
+0x77cc 026632 ifetch 1 ,regb 
+0x77cd 026633 isolate0 0 ,pdata 
+0x77ce 026634 branch bn_rshifteven_0 ,true 
+0x77cf 026635 arg mem_p ,rega 
+0x77d0 026636 copy regb ,contw 
+0x77d1 026637 call bn_add 
+0x77d2 026638 ifetch 1 ,regb 
+0x77d3 026639 iadd regc ,pdata 
+0x77d4 026640 istore 1 ,regb 
+0x77d5 026641 increase -24 ,regb 
+:      026642 bn_rshifteven_0:
+0x77d6 026643 add regb ,24 ,rega 
+0x77d7 026644 force 7 ,loopcnt 
+0x77d8 026645 call bn_rshift 
+0x77d9 026646 branch bn_rshifteven_1 
+:      026649 bn_invmod:
+0x77da 026650 copy contw ,timeup 
+0x77db 026651 arg mem_tmp0 ,contw 
+0x77dc 026652 call bn_zero 
+0x77dd 026653 force 0 ,pdata 
+0x77de 026654 store 4 ,mem_tmp5 
+0x77df 026655 store 4 ,mem_t2 
+0x77e0 026656 jam 1 ,mem_tmp0 
+0x77e1 026657 arg mem_tmp1 ,contw 
+0x77e2 026658 call bn_zero 
+0x77e3 026659 arg mem_p ,contr 
+0x77e4 026660 arg mem_tmp2 ,contw 
+0x77e5 026661 call memcpy24 
+0x77e6 026662 copy rega ,contr 
+0x77e7 026663 arg mem_tmp3 ,contw 
+0x77e8 026664 call memcpy24 
+:      026665 bn_invmod_2:
+0x77e9 026666 arg mem_tmp3 ,contr 
+0x77ea 026667 call bn_eq_zero 
+0x77eb 026668 branch bn_invmod_0 ,blank 
+0x77ec 026669 arg mem_tmp3 ,rega 
+0x77ed 026670 arg mem_tmp0 ,regb 
+0x77ee 026671 call bn_rshifteven 
+0x77ef 026673 arg mem_tmp2 ,rega 
+0x77f0 026674 arg mem_tmp1 ,regb 
+0x77f1 026675 call bn_rshifteven 
+0x77f2 026676 arg mem_tmp3 ,rega 
+0x77f3 026677 arg mem_tmp2 ,regb 
+0x77f4 026678 call bn_bigeq 
+0x77f5 026679 branch bn_invmod_1 ,positive 
+0x77f6 026680 arg mem_tmp2 ,rega 
+0x77f7 026681 arg mem_tmp3 ,regb 
+0x77f8 026682 copy rega ,contw 
+0x77f9 026683 call bn_sub 
+0x77fa 026684 arg mem_tmp0 ,rega 
+0x77fb 026685 arg mem_tmp1 ,regb 
+0x77fc 026686 copy regb ,contw 
+0x77fd 026687 call bn_add 
+0x77fe 026688 ifetch 1 ,rega 
+0x77ff 026689 iadd regc ,regc 
+0x7800 026690 ifetch 1 ,regb 
+0x7801 026691 iadd regc ,pdata 
+0x7802 026692 istore 1 ,regb 
+0x7803 026693 branch bn_invmod_2 
+:      026694 bn_invmod_1:
+0x7804 026695 arg mem_tmp3 ,rega 
+0x7805 026696 arg mem_tmp2 ,regb 
+0x7806 026697 copy rega ,contw 
+0x7807 026698 call bn_sub 
+0x7808 026699 arg mem_tmp1 ,rega 
+0x7809 026700 arg mem_tmp0 ,regb 
+0x780a 026701 copy regb ,contw 
+0x780b 026702 call bn_add 
+0x780c 026703 ifetch 1 ,rega 
+0x780d 026704 iadd regc ,regc 
+0x780e 026705 ifetch 1 ,regb 
+0x780f 026706 iadd regc ,pdata 
+0x7810 026707 istore 1 ,regb 
+0x7811 026708 branch bn_invmod_2 
+:      026709 bn_invmod_0:
+0x7812 026710 arg mem_tmp0 ,contw 
+0x7813 026711 call bn_zero 
+0x7814 026712 fetch 1 ,mem_tmp5 
+0x7815 026713 store 1 ,mem_tmp0 
+0x7816 026714 store 1 ,mem_tmp0a 
+0x7817 026715 arg mem_tmp0 ,rega 
+0x7818 026716 arg mem_tmp1 ,regb 
+0x7819 026717 copy regb ,contw 
+0x781a 026718 call bn_addmod 
+0x781b 026719 arg mem_p ,rega 
+0x781c 026720 arg mem_tmp1 ,regb 
+0x781d 026721 copy timeup ,contw 
+0x781e 026722 branch bn_submod 
+:      026727 ecdbl:
+0x781f 026728 arg mem_cz ,rega 
+0x7820 026729 arg mem_t2 ,contw 
+0x7821 026730 call bn_sqrmod 
+0x7822 026731 arg mem_t2 ,rega 
+0x7823 026732 arg mem_t3 ,contw 
+0x7824 026733 call bn_sqrmod 
+0x7825 026734 arg mem_a ,rega 
+0x7826 026735 arg mem_t3 ,regb 
+0x7827 026736 arg mem_t3 ,contw 
+0x7828 026737 call bn_mulmod 
+0x7829 026738 arg mem_cx ,rega 
+0x782a 026739 arg mem_t2 ,contw 
+0x782b 026740 call bn_sqrmod 
+0x782c 026741 arg mem_t2 ,contr 
+0x782d 026742 arg mem_t1 ,contw 
+0x782e 026743 call memcpy24 
+0x782f 026744 arg mem_t1 ,rega 
+0x7830 026745 call bn_lshiftmod 
+0x7831 026746 arg mem_t2 ,rega 
+0x7832 026747 arg mem_t1 ,regb 
+0x7833 026748 arg mem_t2 ,contw 
+0x7834 026749 call bn_addmod 
+0x7835 026750 arg mem_t2 ,rega 
+0x7836 026751 arg mem_t3 ,regb 
+0x7837 026752 arg mem_t2 ,contw 
+0x7838 026753 call bn_addmod 
+0x7839 026754 arg mem_cx ,contr 
+0x783a 026755 arg mem_t1 ,contw 
+0x783b 026756 call memcpy24 
+0x783c 026757 arg mem_cy ,rega 
+0x783d 026758 arg mem_t3 ,contw 
+0x783e 026759 call bn_sqrmod 
+0x783f 026760 arg mem_t1 ,rega 
+0x7840 026761 call bn_lshiftmod 
+0x7841 026762 arg mem_t1 ,rega 
+0x7842 026763 call bn_lshiftmod 
+0x7843 026764 arg mem_t1 ,rega 
+0x7844 026765 arg mem_t3 ,regb 
+0x7845 026766 arg mem_t1 ,contw 
+0x7846 026767 call bn_mulmod 
+0x7847 026768 arg mem_t3 ,rega 
+0x7848 026769 arg mem_t0 ,contw 
+0x7849 026770 call bn_sqrmod 
+0x784a 026771 arg mem_t0 ,rega 
+0x784b 026772 call bn_lshiftmod 
+0x784c 026773 arg mem_t0 ,rega 
+0x784d 026774 call bn_lshiftmod 
+0x784e 026775 arg mem_t0 ,rega 
+0x784f 026776 call bn_lshiftmod 
+0x7850 026777 arg mem_cy ,contr 
+0x7851 026778 arg mem_t3 ,contw 
+0x7852 026779 call memcpy24 
+0x7853 026780 arg mem_t3 ,rega 
+0x7854 026781 call bn_lshiftmod 
+0x7855 026782 arg mem_t3 ,rega 
+0x7856 026783 arg mem_cz ,regb 
+0x7857 026784 arg mem_cz ,contw 
+0x7858 026785 call bn_mulmod 
+0x7859 026786 arg mem_t2 ,rega 
+0x785a 026787 arg mem_t3 ,contw 
+0x785b 026788 call bn_sqrmod 
+0x785c 026789 arg mem_t3 ,rega 
+0x785d 026790 arg mem_t1 ,regb 
+0x785e 026791 arg mem_t3 ,contw 
+0x785f 026792 call bn_submod 
+0x7860 026793 arg mem_t3 ,rega 
+0x7861 026794 arg mem_t1 ,regb 
+0x7862 026795 arg mem_cx ,contw 
+0x7863 026796 call bn_submod 
+0x7864 026797 arg mem_t1 ,rega 
+0x7865 026798 arg mem_cx ,regb 
+0x7866 026799 arg mem_t3 ,contw 
+0x7867 026800 call bn_submod 
+0x7868 026801 arg mem_t3 ,rega 
+0x7869 026802 arg mem_t2 ,regb 
+0x786a 026803 arg mem_t3 ,contw 
+0x786b 026804 call bn_mulmod 
+0x786c 026805 arg mem_t3 ,rega 
+0x786d 026806 arg mem_t0 ,regb 
+0x786e 026807 arg mem_cy ,contw 
+0x786f 026808 branch bn_submod 
+:      026812 ecadd:
+0x7870 026813 arg mem_az ,rega 
+0x7871 026814 arg mem_t7 ,contw 
+0x7872 026815 call bn_sqrmod 
+0x7873 026816 arg mem_cx ,rega 
+0x7874 026817 arg mem_t7 ,regb 
+0x7875 026818 arg mem_t0 ,contw 
+0x7876 026819 call bn_mulmod 
+0x7877 026820 arg mem_az ,rega 
+0x7878 026821 arg mem_t7 ,regb 
+0x7879 026822 arg mem_t7 ,contw 
+0x787a 026823 call bn_mulmod 
+0x787b 026824 arg mem_cy ,rega 
+0x787c 026825 arg mem_t7 ,regb 
+0x787d 026826 arg mem_t1 ,contw 
+0x787e 026827 call bn_mulmod 
+0x787f 026828 arg mem_cz ,rega 
+0x7880 026829 arg mem_t7 ,contw 
+0x7881 026830 call bn_sqrmod 
+0x7882 026831 arg mem_ax ,rega 
+0x7883 026832 arg mem_t7 ,regb 
+0x7884 026833 arg mem_t2 ,contw 
+0x7885 026834 call bn_mulmod 
+0x7886 026835 arg mem_cz ,rega 
+0x7887 026836 arg mem_t7 ,regb 
+0x7888 026837 arg mem_t7 ,contw 
+0x7889 026838 call bn_mulmod 
+0x788a 026839 arg mem_ay ,rega 
+0x788b 026840 arg mem_t7 ,regb 
+0x788c 026841 arg mem_t3 ,contw 
+0x788d 026842 call bn_mulmod 
+0x788e 026843 arg mem_t0 ,rega 
+0x788f 026844 arg mem_t2 ,regb 
+0x7890 026845 arg mem_t7 ,contw 
+0x7891 026846 call bn_submod 
+0x7892 026847 arg mem_t0 ,rega 
+0x7893 026848 arg mem_t2 ,regb 
+0x7894 026849 arg mem_t0 ,contw 
+0x7895 026850 call bn_addmod 
+0x7896 026851 arg mem_t1 ,rega 
+0x7897 026852 arg mem_t3 ,regb 
+0x7898 026853 arg mem_t2 ,contw 
+0x7899 026854 call bn_submod 
+0x789a 026855 arg mem_t1 ,rega 
+0x789b 026856 arg mem_t3 ,regb 
+0x789c 026857 arg mem_t1 ,contw 
+0x789d 026858 call bn_addmod 
+0x789e 026859 arg mem_t1 ,rega 
+0x789f 026860 arg mem_t7 ,regb 
+0x78a0 026861 arg mem_t1 ,contw 
+0x78a1 026862 call bn_mulmod 
+0x78a2 026863 arg mem_cz ,rega 
+0x78a3 026864 arg mem_az ,regb 
+0x78a4 026865 arg mem_t3 ,contw 
+0x78a5 026866 call bn_mulmod 
+0x78a6 026867 arg mem_t3 ,rega 
+0x78a7 026868 arg mem_t7 ,regb 
+0x78a8 026869 arg mem_cz ,contw 
+0x78a9 026870 call bn_mulmod 
+0x78aa 026871 arg mem_t7 ,rega 
+0x78ab 026872 arg mem_t7 ,contw 
+0x78ac 026873 call bn_sqrmod 
+0x78ad 026874 arg mem_t7 ,rega 
+0x78ae 026875 arg mem_t0 ,regb 
+0x78af 026876 arg mem_t3 ,contw 
+0x78b0 026877 call bn_mulmod 
+0x78b1 026878 arg mem_t7 ,rega 
+0x78b2 026879 arg mem_t1 ,regb 
+0x78b3 026880 arg mem_t1 ,contw 
+0x78b4 026881 call bn_mulmod 
+0x78b5 026882 arg mem_t2 ,rega 
+0x78b6 026883 arg mem_cx ,contw 
+0x78b7 026884 call bn_sqrmod 
+0x78b8 026885 arg mem_cx ,rega 
+0x78b9 026886 arg mem_t3 ,regb 
+0x78ba 026887 arg mem_cx ,contw 
+0x78bb 026888 call bn_submod 
+0x78bc 026889 arg mem_cx ,contr 
+0x78bd 026890 arg mem_t7 ,contw 
+0x78be 026891 call memcpy24 
+0x78bf 026892 arg mem_t7 ,rega 
+0x78c0 026893 call bn_lshiftmod 
+0x78c1 026894 arg mem_t3 ,rega 
+0x78c2 026895 arg mem_t7 ,regb 
+0x78c3 026896 arg mem_t3 ,contw 
+0x78c4 026897 call bn_submod 
+0x78c5 026898 arg mem_t3 ,rega 
+0x78c6 026899 arg mem_t2 ,regb 
+0x78c7 026900 arg mem_t2 ,contw 
+0x78c8 026901 call bn_mulmod 
+0x78c9 026902 arg mem_t2 ,rega 
+0x78ca 026903 arg mem_t1 ,regb 
+0x78cb 026904 arg mem_cy ,contw 
+0x78cc 026905 call bn_submod 
+0x78cd 026906 arg mem_cy ,rega 
+0x78ce 026907 arg mem_p ,regb 
+0x78cf 026908 arg mem_cy ,contw 
+0x78d0 026909 force 0 ,regc 
+0x78d1 026910 fetch 1 ,mem_cy 
+0x78d2 026911 isolate1 0 ,pdata 
+0x78d3 026912 call bn_add ,true 
+0x78d4 026913 copy regc ,alarm 
+0x78d5 026914 arg mem_cy ,rega 
+0x78d6 026915 call bn_rshift6 
+0x78d7 026916 fetch 1 ,mem_cy5 
+0x78d8 026917 isolate1 0 ,alarm 
+0x78d9 026918 setflag true ,7 ,pdata 
+0x78da 026919 store 1 ,mem_cy5 
+0x78db 026920 rtn 
+:      026924 eckp_0:
+0x78dc 026925 fetch 1 ,mem_ec_loopc 
+0x78dd 026926 increase -1 ,pdata 
+0x78de 026927 nrtn positive 
+0x78df 026928 store 1 ,mem_ec_loopc 
+0x78e0 026929 fetch 1 ,mem_ec_infinite 
+0x78e1 026930 call ecdbl ,blank 
+0x78e2 026931 fetch 1 ,mem_ec_loopc 
+0x78e3 026932 arg mem_k ,contr 
+0x78e4 026933 call bn_testbit 
+0x78e5 026934 branch eckp_0 ,true 
+0x78e6 026935 fetch 1 ,mem_ec_infinite 
+0x78e7 026936 nbranch eckp_1 ,blank 
+0x78e8 026937 call ecadd 
+0x78e9 026938 branch eckp_0 
+:      026939 eckp_1:
+0x78ea 026940 jam 0 ,mem_ec_infinite 
+0x78eb 026941 arg mem_ax ,contr 
+0x78ec 026942 arg mem_cx ,contw 
+0x78ed 026943 call ec_copy 
+0x78ee 026944 branch eckp_0 
+:      026947 ecunmapz:
+0x78ef 026948 arg mem_cz ,rega 
+0x78f0 026949 arg mem_t3 ,contw 
+0x78f1 026950 call bn_invmod 
+0x78f2 026951 arg mem_t3 ,rega 
+0x78f3 026952 arg mem_t1 ,contw 
+0x78f4 026953 call bn_sqrmod 
+0x78f5 026954 arg mem_cx ,rega 
+0x78f6 026955 arg mem_t1 ,regb 
+0x78f7 026956 arg mem_bx ,contw 
+0x78f8 026957 call bn_mulmod 
+0x78f9 026958 arg mem_t3 ,rega 
+0x78fa 026959 arg mem_t1 ,regb 
+0x78fb 026960 arg mem_t2 ,contw 
+0x78fc 026961 call bn_mulmod 
+0x78fd 026962 arg mem_cy ,rega 
+0x78fe 026963 arg mem_t2 ,regb 
+0x78ff 026964 arg mem_by ,contw 
+0x7900 026965 branch bn_mulmod 
+:      026969 sha_endian_swap2:
+0x7901 026970 ifetch 4 ,contr 
+0x7902 026971 force 4 ,rega 
+0x7903 026972 increase 3 ,contw 
+:      026973 sha_endian_loop:
+0x7904 026974 istore 1 ,contw 
+0x7905 026975 rshift8 pdata ,pdata 
+0x7906 026976 increase -2 ,contw 
+0x7907 026977 increase -1 ,rega 
+0x7908 026978 nbranch sha_endian_loop ,zero 
+0x7909 026979 increase 5 ,contw 
+0x790a 026980 loop sha_endian_swap2 
+0x790b 026981 rtn 
+:      026984 sha_getw:
+0x790c 026985 lshift2 queue ,pdata 
+0x790d 026986 iadd timeup ,contr 
+0x790e 026987 ifetch 4 ,contr 
+0x790f 026988 rtn 
+:      026990 sha_r:
+0x7910 026991 force 16 ,alarm 
+0x7911 026992 arg memdat ,timeup 
+:      026993 sha_r_loop:
+0x7912 026994 add alarm ,-7 ,queue 
+0x7913 026995 call sha_getw 
+0x7914 026996 iforce temp 
+0x7915 026997 add alarm ,-16 ,queue 
+0x7916 026998 call sha_getw 
+0x7917 026999 iadd temp ,temp 
+0x7918 027000 add alarm ,-2 ,queue 
+0x7919 027001 call sha_getw 
+0x791a 027002 shasx pdata ,1 ,pdata 
+0x791b 027003 iadd temp ,temp 
+0x791c 027004 add alarm ,-15 ,queue 
+0x791d 027005 call sha_getw 
+0x791e 027006 shasx pdata ,0 ,pdata 
+0x791f 027007 iadd temp ,temp 
+0x7920 027008 lshift2 alarm ,pdata 
+0x7921 027009 iadd timeup ,contw 
+0x7922 027010 istoret 4 ,contw 
+0x7923 027011 increase 1 ,alarm 
+0x7924 027012 compare 64 ,alarm ,0xff 
+0x7925 027013 nbranch sha_r_loop ,true 
+0x7926 027014 rtn 
+:      027017 sha_init:
+0x7927 027018 arg memh0 ,contr 
+0x7928 027019 force 7 ,regext_index 
+:      027020 sha_init_0:
+0x7929 027021 ifetch 4 ,contr 
+0x792a 027022 iforce regext 
+0x792b 027023 increase -1 ,regext_index 
+0x792c 027024 branch sha_init_0 ,positive 
+0x792d 027025 rtn 
+:      027027 sha:
+0x792e 027028 set1 mark_ext_patch ,mark 
+0x792f 027029 bpatch patch3d_0 ,mem_patch3d 
+0x7930 027030 call sha_r 
+0x7931 027031 arg memahbak ,contw 
+0x7932 027032 force 0 ,regext_index 
+:      027033 sha_0:
+0x7933 027034 deposit regext 
+0x7934 027035 istore 4 ,contw 
+0x7935 027036 increase 1 ,regext_index 
+0x7936 027037 compare 8 ,regext_index ,0xff 
+0x7937 027038 nbranch sha_0 ,true 
+0x7938 027039 call enable_authrom 
+0x7939 027040 arg memk ,timeup 
+0x793a 027041 arg memdat ,alarm 
+0x793b 027042 force 64 ,loopcnt 
+:      027043 sha_loop:
+0x793c 027044 ifetcht 4 ,alarm 
+0x793d 027045 ifetch 4 ,timeup 
+0x793e 027046 increase 4 ,timeup 
+0x793f 027047 increase 4 ,alarm 
+0x7940 027048 iadd temp ,pdata 
+0x7941 027049 force 7 ,regext_index 
+0x7942 027050 iadd regext ,temp 
+0x7943 027051 force 4 ,regext_index 
+0x7944 027052 shasx regext ,3 ,pdata 
+0x7945 027053 iadd temp ,temp 
+0x7946 027054 force 5 ,regext_index 
+0x7947 027055 deposit regext 
+0x7948 027056 force 6 ,regext_index 
+0x7949 027057 ixor regext ,pdata 
+0x794a 027058 force 4 ,regext_index 
+0x794b 027059 iand regext ,pdata 
+0x794c 027060 force 6 ,regext_index 
+0x794d 027061 ixor regext ,pdata 
+0x794e 027062 iadd temp ,temp 
+0x794f 027063 force 7 ,regext_index 
+0x7950 027064 copy temp ,regext 
+0x7951 027065 force 3 ,regext_index 
+0x7952 027066 deposit regext 
+0x7953 027067 iadd temp ,regext 
+0x7954 027068 force 0 ,regext_index 
+0x7955 027069 deposit regext 
+0x7956 027070 force 1 ,regext_index 
+0x7957 027071 iand regext ,temp 
+0x7958 027072 ior regext ,pdata 
+0x7959 027073 force 2 ,regext_index 
+0x795a 027074 iand regext ,pdata 
+0x795b 027075 ior temp ,temp 
+0x795c 027076 force 0 ,regext_index 
+0x795d 027077 shasx regext ,2 ,pdata 
+0x795e 027078 iadd temp ,pdata 
+0x795f 027079 force 7 ,regext_index 
+0x7960 027080 iadd regext ,regext 
+0x7961 027081 regexrot 
+0x7962 027082 loop sha_loop 
+0x7963 027083 arg memahbak ,contr 
+0x7964 027084 force 0 ,regext_index 
+:      027085 sha_1:
+0x7965 027086 ifetch 4 ,contr 
+0x7966 027087 iadd regext ,regext 
+0x7967 027088 increase 1 ,regext_index 
+0x7968 027089 compare 8 ,regext_index ,0xff 
+0x7969 027090 nbranch sha_1 ,true 
+0x796a 027091 branch disable_authrom 
+:      027094 sha_result:
+0x796b 027095 arg memresult ,contw 
+0x796c 027096 force 7 ,regext_index 
+:      027097 sha_regext_save:
+0x796d 027098 deposit regext 
+0x796e 027099 istore 4 ,contw 
+0x796f 027100 increase -1 ,regext_index 
+0x7970 027101 branch sha_regext_save ,positive 
+0x7971 027102 rtn 
+:      027104 pad_xor:
+0x7972 027106 arg memdat ,contw 
+0x7973 027107 increase -4 ,contr 
+0x7974 027108 sub loopcnt ,16 ,rega 
+:      027109 pad_xor_0:
+0x7975 027110 ifetch 4 ,contr 
+0x7976 027111 ixor temp ,pdata 
+0x7977 027112 istore 4 ,contw 
+0x7978 027113 increase -8 ,contr 
+0x7979 027114 loop pad_xor_0 
+0x797a 027115 copy rega ,loopcnt 
+0x797b 027116 deposit temp 
+:      027117 pad_xor_1:
+0x797c 027118 istore 4 ,contw 
+0x797d 027119 loop pad_xor_1 
+0x797e 027120 rtn 
+:      027122 g_noninit_number_confirm:
+0x797f 027123 call g_noninit0 
+0x7980 027124 call sha_result 
+0x7981 027125 branch g_common0 
+:      027127 g_noninit:
+0x7982 027128 call g_noninit0 
+0x7983 027129 branch g_common0 
+:      027131 g_noninit0:
+0x7984 027132 arg mem_sp_pubkey_remote_x_end ,contr 
+0x7985 027133 arg memdat ,contw 
+0x7986 027134 force 6 ,loopcnt 
+0x7987 027135 call memcpy_dword_swap 
+0x7988 027136 arg mem_sp_pubkey_local_x_end ,contr 
+0x7989 027137 force 6 ,loopcnt 
+0x798a 027138 call memcpy_dword_swap 
+0x798b 027139 arg mem_sp_random_remote_end ,contr 
+0x798c 027140 call memcpy_dword_swap4 
+0x798d 027141 call sha_init 
+0x798e 027142 call sha 
+0x798f 027143 arg mem_sp_random_local_end ,contr 
+0x7990 027144 arg memdat ,contw 
+0x7991 027145 branch g_common 
+:      027147 g_init:
+0x7992 027148 arg mem_sp_pubkey_local_x_end ,contr 
+0x7993 027149 arg memdat ,contw 
+0x7994 027150 force 6 ,loopcnt 
+0x7995 027151 call memcpy_dword_swap 
+0x7996 027152 arg mem_sp_pubkey_remote_x_end ,contr 
+0x7997 027153 force 6 ,loopcnt 
+0x7998 027154 call memcpy_dword_swap 
+0x7999 027155 arg mem_sp_random_local_end ,contr 
+0x799a 027156 call memcpy_dword_swap4 
+0x799b 027157 call sha_init 
+0x799c 027158 call sha 
+0x799d 027159 arg mem_sp_random_remote_end ,contr 
+0x799e 027160 arg memdat ,contw 
+0x799f 027161 call g_common 
+0x79a0 027162 branch g_common0 
+:      027164 g_common:
+0x79a1 027165 call memcpy_dword_swap4 
+0x79a2 027166 setarg 0x800000 
+0x79a3 027167 lshift8 pdata ,pdata 
+0x79a4 027168 istore 4 ,contw 
+0x79a5 027169 force 5 ,loopcnt 
+0x79a6 027170 call memset0 
+0x79a7 027171 setarg 640 
+0x79a8 027172 istore 4 ,contw 
+0x79a9 027173 branch sha 
+:      027174 g_common0:
+0x79aa 027175 fetch 4 ,memresult 
+0x79ab 027177 arg 1000 ,rega 
+0x79ac 027178 idiv rega 
+0x79ad 027179 call wait_div_end 
+0x79ae 027180 remainder pdata 
+0x79af 027181 store 4 ,mem_gkey 
+0x79b0 027182 quotient pdata 
+0x79b1 027183 arg 1000 ,rega 
+0x79b2 027184 idiv rega 
+0x79b3 027185 call wait_div_end 
+0x79b4 027186 remainder pdata 
+0x79b5 027187 arg 1000 ,rega 
+0x79b6 027188 imul32 rega ,pdata 
+0x79b7 027189 fetcht 4 ,mem_gkey 
+0x79b8 027190 iadd temp ,pdata 
+0x79b9 027191 store 4 ,mem_gkey 
+0x79ba 027192 rtn 
+:      027194 function_f1_no_key:
+0x79bb 027195 jam 0 ,mem_passkey_1bit 
+0x79bc 027196 branch function_f1_common 
+:      027198 function_f1:
+0x79bd 027199 fetch 1 ,mem_ssp_mode_flag 
+0x79be 027200 bne ssp_mode_passkey_entry_flag ,function_f1_no_key 
+:      027201 function_f1_common:
+0x79bf 027202 set1 mark_ext_patch ,mark 
+0x79c0 027203 bpatch patch3d_1 ,mem_patch3d 
+0x79c1 027204 setarg 0x363636 
+0x79c2 027205 lshift8 pdata ,temp 
+0x79c3 027206 or_into 0x36 ,temp 
+0x79c4 027207 fetch 2 ,mem_sp_prarm_stack 
+0x79c5 027208 copy pdata ,contr 
+0x79c6 027209 force 4 ,loopcnt 
+0x79c7 027210 call pad_xor 
+0x79c8 027211 call sha_init 
+0x79c9 027212 call sha 
+0x79ca 027213 fetch 2 ,mem_sp_prarm_stack + 2 
+0x79cb 027214 copy pdata ,contr 
+0x79cc 027215 arg memdat ,contw 
+0x79cd 027216 force 6 ,loopcnt 
+0x79ce 027217 call memcpy_dword_swap 
+0x79cf 027218 fetch 2 ,mem_sp_prarm_stack + 4 
+0x79d0 027219 copy pdata ,contr 
+0x79d1 027220 force 6 ,loopcnt 
+0x79d2 027221 call memcpy_dword_swap 
+0x79d3 027222 setarg 0x800000 
+0x79d4 027223 istore 3 ,contw 
+0x79d5 027225 fetch 1 ,mem_passkey_1bit 
+0x79d6 027227 istore 1 ,contw 
+0x79d7 027228 force 0 ,pdata 
+0x79d8 027229 istore 8 ,contw 
+0x79d9 027230 setarg 0x0388 
+0x79da 027231 istore 4 ,contw 
+0x79db 027232 call sha 
+0x79dc 027233 call sha_result 
+0x79dd 027234 arg memresult ,contr 
+0x79de 027235 arg memahsave ,contw 
+0x79df 027236 call memcpy32 
+0x79e0 027238 setarg 0x5c5c5c 
+0x79e1 027239 lshift8 pdata ,temp 
+0x79e2 027240 or_into 0x5c ,temp 
+0x79e3 027241 fetch 2 ,mem_sp_prarm_stack 
+0x79e4 027242 copy pdata ,contr 
+0x79e5 027243 force 4 ,loopcnt 
+0x79e6 027244 call pad_xor 
+0x79e7 027245 call sha_init 
+0x79e8 027246 call sha 
+0x79e9 027247 arg memahsave_end ,contr 
+0x79ea 027248 arg memdat ,contw 
+0x79eb 027249 force 8 ,loopcnt 
+0x79ec 027250 call memcpy_dword_swap 
+0x79ed 027251 setarg 0x800000 
+0x79ee 027252 lshift8 pdata ,pdata 
+0x79ef 027253 istore 4 ,contw 
+0x79f0 027254 call bn_zero 
+0x79f1 027255 setarg 0x0300 
+0x79f2 027256 istore 4 ,contw 
+0x79f3 027257 call sha 
+0x79f4 027258 branch sha_result 
+:      027261 function_f2:
+0x79f5 027262 setarg 0x363636 
+0x79f6 027263 lshift8 pdata ,temp 
+0x79f7 027264 or_into 0x36 ,temp 
+0x79f8 027265 arg mem_sp_dhkey_end ,contr 
+0x79f9 027266 force 6 ,loopcnt 
+0x79fa 027267 call pad_xor 
+0x79fb 027268 call sha_init 
+0x79fc 027269 call sha 
+0x79fd 027270 fetch 2 ,mem_sp_prarm_stack + 12 
+0x79fe 027271 copy pdata ,contr 
+0x79ff 027272 arg memdat ,contw 
+0x7a00 027273 call memcpy_dword_swap4 
+0x7a01 027274 fetch 2 ,mem_sp_prarm_stack + 14 
+0x7a02 027275 copy pdata ,contr 
+0x7a03 027276 call memcpy_dword_swap4 
+0x7a04 027278 setarg 0x62746c 
+0x7a05 027279 lshift8 pdata ,pdata 
+0x7a06 027280 or_into 0x6b ,pdata 
+0x7a07 027281 istore 4 ,contw 
+0x7a08 027282 arg mem_addr_value_end ,contr 
+0x7a09 027283 force 3 ,loopcnt 
+0x7a0a 027284 call memcpy_dword_swap 
+0x7a0b 027286 setarg 0x800000 
+0x7a0c 027287 lshift8 pdata ,pdata 
+0x7a0d 027288 istore 4 ,contw 
+0x7a0e 027289 force 0 ,pdata 
+0x7a0f 027290 istore 8 ,contw 
+0x7a10 027291 setarg 0x0380 
+0x7a11 027292 istore 4 ,contw 
+0x7a12 027293 call sha 
+0x7a13 027295 call sha_result 
+0x7a14 027296 arg memresult ,contr 
+0x7a15 027297 arg memahsave ,contw 
+0x7a16 027298 call memcpy32 
+0x7a17 027300 setarg 0x5c5c5c 
+0x7a18 027301 lshift8 pdata ,temp 
+0x7a19 027302 or_into 0x5c ,temp 
+0x7a1a 027303 arg mem_sp_dhkey_end ,contr 
+0x7a1b 027304 force 6 ,loopcnt 
+0x7a1c 027305 call pad_xor 
+0x7a1d 027306 call sha_init 
+0x7a1e 027307 call sha 
+0x7a1f 027308 arg memahsave_end ,contr 
+0x7a20 027309 arg memdat ,contw 
+0x7a21 027310 force 8 ,loopcnt 
+0x7a22 027311 call memcpy_dword_swap 
+0x7a23 027312 setarg 0x800000 
+0x7a24 027313 lshift8 pdata ,pdata 
+0x7a25 027314 istore 4 ,contw 
+0x7a26 027315 call bn_zero 
+0x7a27 027316 setarg 0x0300 
+0x7a28 027317 istore 4 ,contw 
+0x7a29 027318 call sha 
+0x7a2a 027319 branch sha_result 
+:      027322 function_f3a:
+0x7a2b 027323 fetch 1 ,mem_ssp_mode_flag 
+0x7a2c 027324 bne ssp_mode_passkey_entry_flag ,function_f3a_no_pin 
+:      027325 function_f3a_common:
+0x7a2d 027326 set1 mark_ext_patch ,mark 
+0x7a2e 027327 bpatch patch3d_2 ,mem_patch3d 
+0x7a2f 027328 setarg 0x363636 
+0x7a30 027329 lshift8 pdata ,temp 
+0x7a31 027330 or_into 0x36 ,temp 
+0x7a32 027331 arg mem_sp_dhkey_end ,contr 
+0x7a33 027332 force 6 ,loopcnt 
+0x7a34 027333 call pad_xor 
+0x7a35 027334 call sha_init 
+0x7a36 027335 call sha 
+0x7a37 027336 arg mem_sp_random_remote_end ,contr 
+0x7a38 027337 arg memdat ,contw 
+0x7a39 027338 call memcpy_dword_swap4 
+0x7a3a 027339 arg mem_sp_random_local_end ,contr 
+0x7a3b 027340 call memcpy_dword_swap4 
+0x7a3c 027341 branch function_f3_common 
+:      027343 function_f3a_no_pin:
+0x7a3d 027344 setarg 0 
+0x7a3e 027345 store 4 ,mem_pin 
+0x7a3f 027346 branch function_f3a_common 
+:      027348 function_f3b_no_pin:
+0x7a40 027349 setarg 0 
+0x7a41 027350 store 4 ,mem_pin 
+0x7a42 027351 branch function_f3b_common 
+:      027354 function_f3b:
+0x7a43 027355 fetch 1 ,mem_ssp_mode_flag 
+0x7a44 027356 bne ssp_mode_passkey_entry_flag ,function_f3b_no_pin 
+:      027357 function_f3b_common:
+0x7a45 027358 setarg 0x363636 
+0x7a46 027359 lshift8 pdata ,temp 
+0x7a47 027360 or_into 0x36 ,temp 
+0x7a48 027361 arg mem_sp_dhkey_end ,contr 
+0x7a49 027362 force 6 ,loopcnt 
+0x7a4a 027363 call pad_xor 
+0x7a4b 027364 call sha_init 
+0x7a4c 027365 call sha 
+0x7a4d 027367 arg mem_sp_random_local_end ,contr 
+0x7a4e 027368 arg memdat ,contw 
+0x7a4f 027369 call memcpy_dword_swap4 
+0x7a50 027370 arg mem_sp_random_remote_end ,contr 
+0x7a51 027371 call memcpy_dword_swap4 
+:      027372 function_f3_common:
+0x7a52 027373 setarg 0x0 
+0x7a53 027374 istore 8 ,contw 
+0x7a54 027375 istore 4 ,contw 
+0x7a55 027376 fetch 4 ,mem_pin 
+0x7a56 027377 istore 4 ,contw 
+0x7a57 027379 copy contw ,temp 
+0x7a58 027380 jam 0x80 ,mem_addr_padding 
+0x7a59 027381 copy temp ,contw 
+0x7a5a 027382 arg mem_addr_iocap_end ,contr 
+0x7a5b 027383 call memcpy_dword_swap4 
+0x7a5c 027385 call sha 
+0x7a5d 027387 arg memdat ,contw 
+0x7a5e 027388 force 7 ,loopcnt 
+0x7a5f 027389 call memset0 
+0x7a60 027390 istore 4 ,contw 
+0x7a61 027391 setarg 0x03F8 
+0x7a62 027392 istore 4 ,contw 
+0x7a63 027393 call sha 
+0x7a64 027394 call sha_result 
+0x7a65 027396 arg memresult ,contr 
+0x7a66 027397 arg memahsave ,contw 
+0x7a67 027398 call memcpy32 
+0x7a68 027400 setarg 0x5c5c5c 
+0x7a69 027401 lshift8 pdata ,temp 
+0x7a6a 027402 or_into 0x5c ,temp 
+0x7a6b 027403 arg mem_sp_dhkey_end ,contr 
+0x7a6c 027404 force 6 ,loopcnt 
+0x7a6d 027405 call pad_xor 
+0x7a6e 027406 call sha_init 
+0x7a6f 027407 call sha 
+0x7a70 027408 arg memahsave_end ,contr 
+0x7a71 027409 arg memdat ,contw 
+0x7a72 027410 force 8 ,loopcnt 
+0x7a73 027411 call memcpy_dword_swap 
+0x7a74 027412 setarg 0x800000 
+0x7a75 027413 lshift8 pdata ,pdata 
+0x7a76 027414 istore 4 ,contw 
+0x7a77 027415 call bn_zero 
+0x7a78 027416 setarg 0x0300 
+0x7a79 027417 istore 4 ,contw 
+0x7a7a 027418 call sha 
+0x7a7b 027419 branch sha_result 
+:      027426 eckp_calc_init:
+0x7a7c 027427 jam 192 ,mem_ec_loopc 
+:      027428 eckp_calc_init_1:
+0x7a7d 027429 fetch 1 ,mem_ec_loopc 
+0x7a7e 027430 rtn blank 
+0x7a7f 027431 increase -1 ,pdata 
+0x7a80 027432 store 1 ,mem_ec_loopc 
+0x7a81 027433 arg mem_k ,contr 
+0x7a82 027434 call bn_testbit 
+0x7a83 027435 branch eckp_calc_init_1 ,true 
+0x7a84 027436 arg mem_ax ,contr 
+0x7a85 027437 arg mem_cx ,contw 
+0x7a86 027438 branch ec_copy 
+:      027440 eckp_calc:
+0x7a87 027441 call ecdbl 
+0x7a88 027442 fetch 1 ,mem_ec_loopc 
+0x7a89 027443 increase -1 ,pdata 
+0x7a8a 027444 store 1 ,mem_ec_loopc 
+0x7a8b 027445 arg mem_k ,contr 
+0x7a8c 027446 call bn_testbit 
+0x7a8d 027447 rtn true 
+0x7a8e 027448 branch ecadd 
+:      027450 memcpy_dword_swap4:
+0x7a8f 027451 force 4 ,loopcnt 
+:      027452 memcpy_dword_swap:
+0x7a90 027453 increase -4 ,contr 
+:      027454 memcpy_dword_swap_loop:
+0x7a91 027455 ifetch 4 ,contr 
+0x7a92 027456 istore 4 ,contw 
+0x7a93 027457 increase -8 ,contr 
+0x7a94 027458 loop memcpy_dword_swap_loop 
+0x7a95 027459 rtn 
+:      027464 sp_initialize_256:
+0x7a96 027465 set1 mark_ext_patch ,mark 
+0x7a97 027466 bpatch patch3d_3 ,mem_patch3d 
+0x7a98 027467 fetch 1 ,mem_le_secure_connect_enable 
+0x7a99 027468 branch le_secure_connection_disable ,blank 
+0x7a9a 027469 call le_secure_connection_enable 
+0x7a9b 027470 call sp_clear_flags 
+0x7a9c 027472 branch sp_pubkey_calc_256 
+:      027477 sp_pubkey_calc_256:
+0x7a9d 027478 fetch 1 ,mem_le_sc_local_key_invalid 
+0x7a9e 027479 rtnne sp_key_invalid 
+0x7a9f 027480 fetch 1 ,mem_le_sc_calc 
+0x7aa0 027481 rtnne sp_calc_standby 
+0x7aa1 027483 arg mem_le_private_key_256 ,contw 
+0x7aa2 027484 force 15 ,queue 
+0x7aa3 027485 call random_generator 
+0x7aa4 027486 random pdata 
+0x7aa5 027487 rshift pdata ,pdata 
+0x7aa6 027488 istore 2 ,contw 
+0x7aa7 027490 arg mem_k_256 ,contw 
+0x7aa8 027491 arg mem_le_private_key_256 ,contr 
+0x7aa9 027492 call memcpy32 
+0x7aaa 027494 arg mem_ax_256 ,contw 
+0x7aab 027495 arg mem_gx_256 ,contr 
+0x7aac 027496 call memcpy64 
+0x7aad 027498 arg mem_az_256 ,contw 
+0x7aae 027499 call clear_mem_256 
+0x7aaf 027500 jam 1 ,mem_az_256 
+0x7ab0 027502 call eckp_calc_init_256 
+0x7ab1 027503 jam sp_calc_pubkey_256 ,mem_le_sc_calc 
+0x7ab2 027504 rtn 
+:      027506 sp_pubkey_generated_256:
+0x7ab3 027507 arg mem_le_pubkey_local_x_256 ,contw 
+0x7ab4 027508 arg mem_bx_256 ,contr 
+0x7ab5 027509 call memcpy64 
+0x7ab6 027510 jam sp_key_valid_256 ,mem_le_sc_local_key_invalid 
+0x7ab7 027511 jam sp_calc_standby ,mem_le_sc_calc 
+0x7ab8 027512 rtn 
+:      027516 sp_dhkey_calc_256:
+0x7ab9 027517 fetch 1 ,mem_sp_dhkey_invalid 
+0x7aba 027518 rtnne sp_key_invalid 
+0x7abb 027519 fetch 1 ,mem_le_sc_calc 
+0x7abc 027520 rtnne sp_calc_standby 
+0x7abd 027522 arg mem_k_256 ,contw 
+0x7abe 027523 arg mem_le_private_key_256 ,contr 
+0x7abf 027524 call memcpy32 
+0x7ac0 027526 arg mem_ax_256 ,contw 
+0x7ac1 027527 arg mem_le_pubkey_remote_x_256 ,contr 
+0x7ac2 027528 call memcpy64 
+0x7ac3 027530 arg mem_az_256 ,contw 
+0x7ac4 027531 call clear_mem_256 
+0x7ac5 027532 jam 1 ,mem_az_256 
+0x7ac6 027534 call eckp_calc_init_256 
+0x7ac7 027535 jam sp_calc_dhkey_256 ,mem_le_sc_calc 
+0x7ac8 027536 rtn 
+:      027539 sp_dhkey_generated_256:
+0x7ac9 027541 arg mem_le_dhkey_256 ,contw 
+0x7aca 027542 arg mem_bx_256 ,contr 
+0x7acb 027543 call memcpy32 
+0x7acc 027544 jam sp_key_valid_256 ,mem_sp_dhkey_invalid 
+0x7acd 027545 jam sp_calc_standby ,mem_le_sc_calc 
+0x7ace 027546 rtn 
+:      027550 sp_calc_sequence_256:
+0x7acf 027551 fetch 1 ,mem_le_secure_connect_enable 
+0x7ad0 027552 rtn blank 
+0x7ad1 027553 fetch 1 ,mem_le_sc_calc 
+0x7ad2 027554 rtn blank 
+0x7ad3 027555 increase 0x80 ,pdata 
+0x7ad4 027556 store 1 ,mem_le_sc_calc 
+0x7ad5 027557 rtnbit1 7 
+0x7ad6 027558 fetch 2 ,mem_ec_loopc 
+0x7ad7 027559 branch sp_calc_sequence_done_256 ,blank 
+0x7ad8 027560 branch eckp_calc_256 
+:      027562 sp_calc_sequence_done_256:
+0x7ad9 027563 set1 mark_ext_patch ,mark 
+0x7ada 027564 bpatch patch3d_4 ,mem_patch3d 
+0x7adb 027565 call ecunmapz_256 
+0x7adc 027566 fetch 1 ,mem_le_sc_calc 
+0x7add 027567 beq sp_calc_pubkey_256 ,sp_pubkey_generated_256 
+0x7ade 027568 beq sp_calc_dhkey_256 ,sp_dhkey_generated_256 
+0x7adf 027569 rtn 
+:      027572 eckp_calc_256:
+0x7ae0 027573 call ecdbl_256 
+0x7ae1 027574 fetch 2 ,mem_ec_loopc 
+0x7ae2 027575 increase -1 ,pdata 
+0x7ae3 027576 store 2 ,mem_ec_loopc 
+0x7ae4 027577 arg mem_k_256 ,contr 
+0x7ae5 027578 call bn_testbit 
+0x7ae6 027579 rtn true 
+0x7ae7 027580 branch ecadd_256 
+:      027582 eckp_calc_init_256:
+0x7ae8 027583 set1 mark_ext_patch ,mark 
+0x7ae9 027584 bpatch patch3d_5 ,mem_patch3d 
+0x7aea 027585 setarg 256 ,pdata 
+0x7aeb 027586 store 2 ,mem_ec_loopc 
+:      027587 eckp_calc_init_256_1:
+0x7aec 027588 fetch 2 ,mem_ec_loopc 
+0x7aed 027589 rtn blank 
+0x7aee 027590 increase -1 ,pdata 
+0x7aef 027591 store 2 ,mem_ec_loopc 
+0x7af0 027592 arg mem_k_256 ,contr 
+0x7af1 027593 call bn_testbit 
+0x7af2 027594 branch eckp_calc_init_256_1 ,true 
+0x7af3 027595 arg mem_ax_256 ,contr 
+0x7af4 027596 arg mem_cx_256 ,contw 
+0x7af5 027597 branch memcpy96 
+:      027600 ecunmapz_256:
+0x7af6 027601 arg mem_cz_256 ,rega 
+0x7af7 027602 arg mem_t3_256 ,contw 
+0x7af8 027603 call bn_invmod_256 
+0x7af9 027604 arg mem_t3_256 ,rega 
+0x7afa 027605 arg mem_t1_256 ,contw 
+0x7afb 027606 call bn_sqrmod_256 
+0x7afc 027607 arg mem_cx_256 ,rega 
+0x7afd 027608 arg mem_t1_256 ,regb 
+0x7afe 027609 arg mem_bx_256 ,contw 
+0x7aff 027610 call bn_mulmod_256 
+0x7b00 027611 arg mem_t3_256 ,rega 
+0x7b01 027612 arg mem_t1_256 ,regb 
+0x7b02 027613 arg mem_t2_256 ,contw 
+0x7b03 027614 call bn_mulmod_256 
+0x7b04 027615 arg mem_cy_256 ,rega 
+0x7b05 027616 arg mem_t2_256 ,regb 
+0x7b06 027617 arg mem_by_256 ,contw 
+0x7b07 027618 branch bn_mulmod_256 
+:      027620 ecdbl_256:
+0x7b08 027621 arg mem_cz_256 ,rega 
+0x7b09 027622 arg mem_t2_256 ,contw 
+0x7b0a 027623 call bn_sqrmod_256 
+0x7b0b 027624 arg mem_t2_256 ,rega 
+0x7b0c 027625 arg mem_t3_256 ,contw 
+0x7b0d 027626 call bn_sqrmod_256 
+0x7b0e 027628 arg mem_a_256 ,rega 
+0x7b0f 027629 arg mem_t3_256 ,regb 
+0x7b10 027630 arg mem_t3_256 ,contw 
+0x7b11 027631 call bn_mulmod_256 
+0x7b12 027632 arg mem_cx_256 ,rega 
+0x7b13 027633 arg mem_t2_256 ,contw 
+0x7b14 027634 call bn_sqrmod_256 
+0x7b15 027636 arg mem_t2_256 ,contr 
+0x7b16 027637 arg mem_t1_256 ,contw 
+0x7b17 027638 call memcpy32 
+0x7b18 027639 arg mem_t1_256 ,rega 
+0x7b19 027640 call bn_lshiftmod_256 
+0x7b1a 027641 arg mem_t2_256 ,rega 
+0x7b1b 027642 arg mem_t1_256 ,regb 
+0x7b1c 027643 arg mem_t2_256 ,contw 
+0x7b1d 027644 call bn_addmod_256 
+0x7b1e 027646 arg mem_t2_256 ,rega 
+0x7b1f 027647 arg mem_t3_256 ,regb 
+0x7b20 027648 arg mem_t2_256 ,contw 
+0x7b21 027649 call bn_addmod_256 
+0x7b22 027651 arg mem_cx_256 ,contr 
+0x7b23 027652 arg mem_t1_256 ,contw 
+0x7b24 027653 call memcpy32 
+0x7b25 027654 arg mem_cy_256 ,rega 
+0x7b26 027655 arg mem_t3_256 ,contw 
+0x7b27 027656 call bn_sqrmod_256 
+0x7b28 027657 arg mem_t1_256 ,rega 
+0x7b29 027658 call bn_lshiftmod_256 
+0x7b2a 027659 arg mem_t1_256 ,rega 
+0x7b2b 027660 call bn_lshiftmod_256 
+0x7b2c 027661 arg mem_t1_256 ,rega 
+0x7b2d 027662 arg mem_t3_256 ,regb 
+0x7b2e 027663 arg mem_t1_256 ,contw 
+0x7b2f 027664 call bn_mulmod_256 
+0x7b30 027665 arg mem_t3_256 ,rega 
+0x7b31 027666 arg mem_t0_256 ,contw 
+0x7b32 027667 call bn_sqrmod_256 
+0x7b33 027668 arg mem_t0_256 ,rega 
+0x7b34 027669 call bn_lshiftmod_256 
+0x7b35 027670 arg mem_t0_256 ,rega 
+0x7b36 027671 call bn_lshiftmod_256 
+0x7b37 027672 arg mem_t0_256 ,rega 
+0x7b38 027673 call bn_lshiftmod_256 
+0x7b39 027674 arg mem_cy_256 ,contr 
+0x7b3a 027675 arg mem_t3_256 ,contw 
+0x7b3b 027676 call memcpy32 
+0x7b3c 027677 arg mem_t3_256 ,rega 
+0x7b3d 027678 call bn_lshiftmod_256 
+0x7b3e 027679 arg mem_t3_256 ,rega 
+0x7b3f 027680 arg mem_cz_256 ,regb 
+0x7b40 027681 arg mem_cz_256 ,contw 
+0x7b41 027682 call bn_mulmod_256 
+0x7b42 027685 arg mem_t2_256 ,rega 
+0x7b43 027686 arg mem_t3_256 ,contw 
+0x7b44 027687 call bn_sqrmod_256 
+0x7b45 027689 arg mem_t3_256 ,rega 
+0x7b46 027690 arg mem_t1_256 ,regb 
+0x7b47 027691 arg mem_t3_256 ,contw 
+0x7b48 027692 call bn_submod_256 
+0x7b49 027693 arg mem_t3_256 ,rega 
+0x7b4a 027694 arg mem_t1_256 ,regb 
+0x7b4b 027695 arg mem_cx_256 ,contw 
+0x7b4c 027696 call bn_submod_256 
+0x7b4d 027697 arg mem_t1_256 ,rega 
+0x7b4e 027698 arg mem_cx_256 ,regb 
+0x7b4f 027699 arg mem_t3_256 ,contw 
+0x7b50 027700 call bn_submod_256 
+0x7b51 027701 arg mem_t3_256 ,rega 
+0x7b52 027702 arg mem_t2_256 ,regb 
+0x7b53 027703 arg mem_t3_256 ,contw 
+0x7b54 027704 call bn_mulmod_256 
+0x7b55 027705 arg mem_t3_256 ,rega 
+0x7b56 027706 arg mem_t0_256 ,regb 
+0x7b57 027707 arg mem_cy_256 ,contw 
+0x7b58 027708 branch bn_submod_256 
+:      027710 ecadd_256:
+0x7b59 027712 arg mem_az_256 ,rega 
+0x7b5a 027713 arg mem_t7_256 ,contw 
+0x7b5b 027714 call bn_sqrmod_256 
+0x7b5c 027715 arg mem_cx_256 ,rega 
+0x7b5d 027716 arg mem_t7_256 ,regb 
+0x7b5e 027717 arg mem_t0_256 ,contw 
+0x7b5f 027718 call bn_mulmod_256 
+0x7b60 027721 arg mem_az_256 ,rega 
+0x7b61 027722 arg mem_t7_256 ,regb 
+0x7b62 027723 arg mem_t7_256 ,contw 
+0x7b63 027724 call bn_mulmod_256 
+0x7b64 027725 arg mem_cy_256 ,rega 
+0x7b65 027726 arg mem_t7_256 ,regb 
+0x7b66 027727 arg mem_t1_256 ,contw 
+0x7b67 027728 call bn_mulmod_256 
+0x7b68 027731 arg mem_cz_256 ,rega 
+0x7b69 027732 arg mem_t7_256 ,contw 
+0x7b6a 027733 call bn_sqrmod_256 
+0x7b6b 027734 arg mem_ax_256 ,rega 
+0x7b6c 027735 arg mem_t7_256 ,regb 
+0x7b6d 027736 arg mem_t2_256 ,contw 
+0x7b6e 027737 call bn_mulmod_256 
+0x7b6f 027739 arg mem_cz_256 ,rega 
+0x7b70 027740 arg mem_t7_256 ,regb 
+0x7b71 027741 arg mem_t7_256 ,contw 
+0x7b72 027742 call bn_mulmod_256 
+0x7b73 027743 arg mem_ay_256 ,rega 
+0x7b74 027744 arg mem_t7_256 ,regb 
+0x7b75 027745 arg mem_t3_256 ,contw 
+0x7b76 027746 call bn_mulmod_256 
+0x7b77 027751 arg mem_t0_256 ,regb 
+0x7b78 027752 arg mem_t2_256 ,rega 
+0x7b79 027753 arg mem_t7_256 ,contw 
+0x7b7a 027754 call bn_submod_256 
+0x7b7b 027755 arg mem_t0_256 ,rega 
+0x7b7c 027756 arg mem_t2_256 ,regb 
+0x7b7d 027757 arg mem_t0_256 ,contw 
+0x7b7e 027758 call bn_addmod_256 
+0x7b7f 027761 arg mem_t1_256 ,regb 
+0x7b80 027762 arg mem_t3_256 ,rega 
+0x7b81 027763 arg mem_t2_256 ,contw 
+0x7b82 027764 call bn_submod_256 
+0x7b83 027765 arg mem_t1_256 ,rega 
+0x7b84 027766 arg mem_t3_256 ,regb 
+0x7b85 027767 arg mem_t1_256 ,contw 
+0x7b86 027768 call bn_addmod_256 
+0x7b87 027769 arg mem_t1_256 ,rega 
+0x7b88 027770 arg mem_t7_256 ,regb 
+0x7b89 027771 arg mem_t1_256 ,contw 
+0x7b8a 027772 call bn_mulmod_256 
+0x7b8b 027773 arg mem_cz_256 ,rega 
+0x7b8c 027774 arg mem_az_256 ,regb 
+0x7b8d 027775 arg mem_t3_256 ,contw 
+0x7b8e 027776 call bn_mulmod_256 
+0x7b8f 027777 arg mem_t3_256 ,rega 
+0x7b90 027778 arg mem_t7_256 ,regb 
+0x7b91 027779 arg mem_cz_256 ,contw 
+0x7b92 027780 call bn_mulmod_256 
+0x7b93 027782 arg mem_t7_256 ,rega 
+0x7b94 027783 arg mem_t7_256 ,contw 
+0x7b95 027784 call bn_sqrmod_256 
+0x7b96 027785 arg mem_t7_256 ,rega 
+0x7b97 027786 arg mem_t0_256 ,regb 
+0x7b98 027787 arg mem_t3_256 ,contw 
+0x7b99 027788 call bn_mulmod_256 
+0x7b9a 027789 arg mem_t7_256 ,rega 
+0x7b9b 027790 arg mem_t1_256 ,regb 
+0x7b9c 027791 arg mem_t1_256 ,contw 
+0x7b9d 027792 call bn_mulmod_256 
+0x7b9e 027793 arg mem_t2_256 ,rega 
+0x7b9f 027794 arg mem_cx_256 ,contw 
+0x7ba0 027795 call bn_sqrmod_256 
+0x7ba1 027796 arg mem_cx_256 ,rega 
+0x7ba2 027797 arg mem_t3_256 ,regb 
+0x7ba3 027798 arg mem_cx_256 ,contw 
+0x7ba4 027799 call bn_submod_256 
+0x7ba5 027800 arg mem_cx_256 ,contr 
+0x7ba6 027801 arg mem_t7_256 ,contw 
+0x7ba7 027802 call memcpy32 
+0x7ba8 027803 arg mem_t7_256 ,rega 
+0x7ba9 027804 call bn_lshiftmod_256 
+0x7baa 027805 arg mem_t3_256 ,rega 
+0x7bab 027806 arg mem_t7_256 ,regb 
+0x7bac 027807 arg mem_t3_256 ,contw 
+0x7bad 027808 call bn_submod_256 
+0x7bae 027809 arg mem_t3_256 ,rega 
+0x7baf 027810 arg mem_t2_256 ,regb 
+0x7bb0 027811 arg mem_t2_256 ,contw 
+0x7bb1 027812 call bn_mulmod_256 
+0x7bb2 027813 arg mem_t2_256 ,rega 
+0x7bb3 027814 arg mem_t1_256 ,regb 
+0x7bb4 027815 arg mem_cy_256 ,contw 
+0x7bb5 027816 call bn_submod_256 
+0x7bb6 027817 arg mem_cy_256 ,rega 
+0x7bb7 027818 arg mem_p_256 ,regb 
+0x7bb8 027819 arg mem_cy_256 ,contw 
+0x7bb9 027820 force 0 ,regc 
+0x7bba 027821 fetch 1 ,mem_cy_256 
+0x7bbb 027822 isolate1 0 ,pdata 
+0x7bbc 027823 call bn_add_256 ,true 
+0x7bbd 027824 copy regc ,alarm 
+0x7bbe 027825 arg mem_cy_256 ,rega 
+0x7bbf 027826 call bn_rshift_256 
+0x7bc0 027827 fetch 1 ,mem_cy5_256 
+0x7bc1 027828 isolate1 0 ,alarm 
+0x7bc2 027829 setflag true ,7 ,pdata 
+0x7bc3 027830 store 1 ,mem_cy5_256 
+0x7bc4 027831 rtn 
+:      027833 bn_invmod_256:
+0x7bc5 027834 copy contw ,timeup 
+0x7bc6 027835 arg mem_tmp0_256 ,contw 
+0x7bc7 027836 call clear_mem_256 
+0x7bc8 027837 force 0 ,pdata 
+0x7bc9 027839 store 4 ,mem_t2_256 
+0x7bca 027840 jam 1 ,mem_tmp0_256 
+0x7bcb 027841 arg mem_tmp1_256 ,contw 
+0x7bcc 027842 call clear_mem_512 
+0x7bcd 027843 arg mem_p_256 ,contr 
+0x7bce 027844 arg mem_tmp2_256 ,contw 
+0x7bcf 027845 call memcpy32 
+0x7bd0 027846 copy rega ,contr 
+0x7bd1 027847 arg mem_tmp3_256 ,contw 
+0x7bd2 027848 call memcpy32 
+:      027854 bn_invmod_256_2:
+0x7bd3 027855 arg mem_tmp3_256 ,contr 
+0x7bd4 027856 call bn_eq_zero_256 
+0x7bd5 027857 branch bn_invmod_256_0 ,blank 
+0x7bd6 027862 arg mem_tmp3_256 ,rega 
+0x7bd7 027863 arg mem_tmp0_256 ,regb 
+0x7bd8 027864 call bn_rshifteven_256 
+0x7bd9 027865 arg mem_tmp2_256 ,rega 
+0x7bda 027866 arg mem_tmp1_256 ,regb 
+0x7bdb 027867 call bn_rshifteven_256 
+0x7bdc 027869 arg mem_tmp3_256 ,rega 
+0x7bdd 027870 arg mem_tmp2_256 ,regb 
+0x7bde 027871 call bn_bigeq_256 
+0x7bdf 027872 branch bn_invmod_256_1 ,positive 
+0x7be0 027873 arg mem_tmp2_256 ,rega 
+0x7be1 027874 arg mem_tmp3_256 ,regb 
+0x7be2 027875 copy rega ,contw 
+0x7be3 027876 call bn_sub_256 
+0x7be4 027877 arg mem_tmp0_256 ,rega 
+0x7be5 027878 arg mem_tmp1_256 ,regb 
+0x7be6 027879 copy regb ,contw 
+0x7be7 027880 call bn_add_256 
+0x7be8 027881 ifetch 1 ,rega 
+0x7be9 027882 iadd regc ,regc 
+0x7bea 027883 ifetch 1 ,regb 
+0x7beb 027884 iadd regc ,pdata 
+0x7bec 027885 istore 1 ,regb 
+0x7bed 027886 branch bn_invmod_256_2 
+:      027887 bn_invmod_256_1:
+0x7bee 027888 arg mem_tmp3_256 ,rega 
+0x7bef 027889 arg mem_tmp2_256 ,regb 
+0x7bf0 027890 copy rega ,contw 
+0x7bf1 027891 call bn_sub_256 
+0x7bf2 027892 arg mem_tmp1_256 ,rega 
+0x7bf3 027893 arg mem_tmp0_256 ,regb 
+0x7bf4 027894 copy regb ,contw 
+0x7bf5 027895 call bn_add_256 
+0x7bf6 027896 ifetch 1 ,rega 
+0x7bf7 027897 iadd regc ,regc 
+0x7bf8 027898 ifetch 1 ,regb 
+0x7bf9 027899 iadd regc ,pdata 
+0x7bfa 027900 istore 1 ,regb 
+0x7bfb 027901 branch bn_invmod_256_2 
+:      027902 bn_invmod_256_0:
+0x7bfc 027904 arg mem_tmp1_256 ,rega 
+0x7bfd 027905 copy timeup ,contw 
+0x7bfe 027906 call bn_p256mod 
+0x7bff 027908 arg mem_p_256 ,rega 
+0x7c00 027909 copy timeup ,regb 
+0x7c01 027910 copy timeup ,contw 
+0x7c02 027911 branch bn_submod_256 
+:      027914 bn_mulmod_256:
+0x7c03 027915 copy contw ,timeup 
+0x7c04 027917 force 0 ,regext_index 
+0x7c05 027919 arg mem_tmp1_256 ,contw 
+0x7c06 027920 call clear_mem_512 
+0x7c07 027921 arg mem_regext ,contw 
+0x7c08 027922 call clear_mem_512 
+0x7c09 027926 copy rega ,contr 
+0x7c0a 027928 jam 0 ,mem_regext 
+0x7c0b 027929 setarg 0 
+0x7c0c 027930 call bn_load_mem 
+0x7c0d 027931 copy regb ,contr 
+0x7c0e 027932 call bn_load_256 
+0x7c0f 027935 force 0 ,queue 
+0x7c10 027936 arg mem_tmp1_256 ,contw 
+:      027937 bn_mulmod_256_1:
+0x7c11 027940 arg mem_regext ,temp 
+0x7c12 027941 copy queue ,regb 
+0x7c13 027942 lshift2 regb ,pdata 
+0x7c14 027944 iadd temp ,regb 
+0x7c15 027945 force 0 ,temp 
+0x7c16 027946 force 0 ,regc 
+:      027947 bn_mulmod_256_0:
+0x7c17 027952 ifetch 4 ,contw 
+0x7c18 027953 iforce rega 
+0x7c19 027956 ifetch 4 ,regb 
+0x7c1a 027957 copy regc ,regext_index 
+0x7c1b 027958 imul32 regext ,pdata 
+0x7c1c 027959 iadd rega ,pdata 
+0x7c1d 027960 iadd temp ,pdata 
+0x7c1e 027961 istore 4 ,contw 
+0x7c1f 027962 rshift32 pdata ,temp 
+0x7c20 027963 increase 1 ,regc 
+0x7c21 027964 compare 8 ,regc ,0xff 
+0x7c22 027965 nbranch bn_mulmod_256_0 ,true 
+0x7c23 027967 deposit temp 
+0x7c24 027968 istore 4 ,contw 
+0x7c25 027969 increase -32 ,contw 
+0x7c26 027972 increase 1 ,queue 
+0x7c27 027973 compare 8 ,queue ,0xff 
+0x7c28 027974 nbranch bn_mulmod_256_1 ,true 
+0x7c29 027975 arg mem_tmp1_256 ,rega 
+0x7c2a 027976 copy timeup ,contw 
+0x7c2b 027977 branch bn_p256mod 
+:      027979 bn_p256mod:
+0x7c2c 027980 set1 mark_ext_patch ,mark 
+0x7c2d 027981 bpatch patch3d_6 ,mem_patch3d 
+0x7c2e 027982 copy contw ,timeup 
+0x7c2f 027983 copy rega ,alarm 
+0x7c30 027984 arg mem_tmp2_256 ,regb 
+0x7c31 027985 copy regb ,contw 
+0x7c32 027986 call memset0_4 
+0x7c33 027987 istore 8 ,contw 
+0x7c34 027988 add rega ,44 ,contr 
+0x7c35 027989 call memcpy8 
+0x7c36 027990 call memcpy12 
+0x7c37 027991 copy regb ,rega 
+0x7c38 027992 call bn_lshiftmod_256 
+0x7c39 027993 arg mem_tmp2_256 ,regb 
+0x7c3a 027994 copy alarm ,rega 
+0x7c3b 027995 copy timeup ,contw 
+0x7c3c 027996 call bn_addmod_256 
+0x7c3d 027998 arg mem_tmp2_256 ,regb 
+0x7c3e 027999 copy regb ,contw 
+0x7c3f 028000 call memset0_4 
+0x7c40 028001 istore 8 ,contw 
+0x7c41 028002 add alarm ,48 ,contr 
+0x7c42 028003 call memcpy16 
+0x7c43 028004 call memset0_4 
+0x7c44 028005 copy regb ,rega 
+0x7c45 028006 call bn_lshiftmod_256 
+0x7c46 028010 arg mem_tmp2_256 ,regb 
+0x7c47 028011 copy timeup ,rega 
+0x7c48 028012 copy rega ,contw 
+0x7c49 028013 call bn_addmod_256 
+0x7c4a 028017 arg mem_tmp2_256 ,regb 
+0x7c4b 028018 copy regb ,contw 
+0x7c4c 028019 add alarm ,32 ,contr 
+0x7c4d 028020 call memcpy12 
+0x7c4e 028021 call memset0_4 
+0x7c4f 028022 istore 8 ,contw 
+0x7c50 028023 add alarm ,56 ,contr 
+0x7c51 028024 call memcpy8 
+0x7c52 028025 copy timeup ,rega 
+0x7c53 028026 copy rega ,contw 
+0x7c54 028027 call bn_addmod_256 
+0x7c55 028031 arg mem_tmp2_256 ,regb 
+0x7c56 028032 copy regb ,contw 
+0x7c57 028033 add alarm ,36 ,contr 
+0x7c58 028034 call memcpy12 
+0x7c59 028035 add alarm ,52 ,contr 
+0x7c5a 028036 call memcpy12 
+0x7c5b 028037 add alarm ,52 ,contr 
+0x7c5c 028038 call memcpy4 
+0x7c5d 028039 add alarm ,32 ,contr 
+0x7c5e 028040 call memcpy4 
+0x7c5f 028041 copy timeup ,rega 
+0x7c60 028042 copy rega ,contw 
+0x7c61 028043 call bn_addmod_256 
+0x7c62 028046 arg mem_tmp2_256 ,regb 
+0x7c63 028047 copy regb ,contw 
+0x7c64 028048 add alarm ,44 ,contr 
+0x7c65 028049 call memcpy12 
+0x7c66 028050 call memset0_4 
+0x7c67 028051 istore 8 ,contw 
+0x7c68 028052 add alarm ,32 ,contr 
+0x7c69 028053 call memcpy4 
+0x7c6a 028054 add alarm ,40 ,contr 
+0x7c6b 028055 call memcpy4 
+0x7c6c 028056 copy timeup ,rega 
+0x7c6d 028057 copy rega ,contw 
+0x7c6e 028058 call bn_submod_256 
+0x7c6f 028061 arg mem_tmp2_256 ,regb 
+0x7c70 028062 copy regb ,contw 
+0x7c71 028063 add alarm ,48 ,contr 
+0x7c72 028064 call memcpy8 
+0x7c73 028065 call memcpy8 
+0x7c74 028066 force 0 ,pdata 
+0x7c75 028067 istore 8 ,contw 
+0x7c76 028068 add alarm ,36 ,contr 
+0x7c77 028069 call memcpy4 
+0x7c78 028070 add alarm ,44 ,contr 
+0x7c79 028071 call memcpy4 
+0x7c7a 028072 copy timeup ,rega 
+0x7c7b 028073 copy rega ,contw 
+0x7c7c 028074 call bn_submod_256 
+0x7c7d 028077 arg mem_tmp2_256 ,regb 
+0x7c7e 028078 copy regb ,contw 
+0x7c7f 028079 add alarm ,52 ,contr 
+0x7c80 028080 call memcpy12 
+0x7c81 028081 add alarm ,32 ,contr 
+0x7c82 028082 call memcpy12 
+0x7c83 028083 call memset0_4 
+0x7c84 028084 add alarm ,48 ,contr 
+0x7c85 028085 call memcpy4 
+0x7c86 028086 copy timeup ,rega 
+0x7c87 028087 copy rega ,contw 
+0x7c88 028088 call bn_submod_256 
+0x7c89 028091 arg mem_tmp2_256 ,regb 
+0x7c8a 028092 copy regb ,contw 
+0x7c8b 028093 add alarm ,56 ,contr 
+0x7c8c 028094 call memcpy8 
+0x7c8d 028095 call memset0_4 
+0x7c8e 028096 add alarm ,36 ,contr 
+0x7c8f 028097 call memcpy12 
+0x7c90 028098 call memset0_4 
+0x7c91 028099 add alarm ,52 ,contr 
+0x7c92 028100 call memcpy4 
+0x7c93 028101 copy timeup ,rega 
+0x7c94 028102 copy rega ,contw 
+0x7c95 028103 branch bn_submod_256 
+:      028106 bn_load_mem:
+0x7c96 028107 force 32 ,loopcnt 
+0x7c97 028108 arg mem_regext ,contw 
+0x7c98 028109 iadd contw ,contw 
+0x7c99 028110 branch memcpy 
+:      028112 bn_load_256:
+0x7c9a 028113 force 8 ,loopcnt 
+0x7c9b 028114 branch bn_load_0 
+:      028116 bn_sqrmod_256:
+0x7c9c 028117 copy rega ,regb 
+0x7c9d 028118 branch bn_mulmod_256 
+:      028120 bn_add_256:
+0x7c9e 028121 force 8 ,loopcnt 
+0x7c9f 028122 branch bn_add + 1 
+:      028124 bn_addmod_256:
+0x7ca0 028125 call bn_add_256 
+0x7ca1 028126 copy contw ,rega 
+0x7ca2 028127 branch bn_lshiftmod_ismod_256 
+:      028129 bn_lshiftmod_256:
+0x7ca3 028130 call bn_lshift_256 
+:      028131 bn_lshiftmod_ismod_256:
+0x7ca4 028132 isolate1 0 ,regc 
+0x7ca5 028133 branch bn_lshiftmod_p_256 ,true 
+0x7ca6 028134 arg mem_p_256 ,regb 
+0x7ca7 028135 copy rega ,regc 
+0x7ca8 028136 increase -32 ,rega 
+0x7ca9 028137 call bn_bigeq_256 
+0x7caa 028138 nrtn positive 
+0x7cab 028139 copy regc ,rega 
+0x7cac 028140 branch sub_p2_256 
+:      028142 bn_lshiftmod_p_256:
+0x7cad 028143 call sub_p2_256 
+0x7cae 028145 copy rega ,regc 
+0x7caf 028146 increase -32 ,rega 
+0x7cb0 028147 arg mem_p_256 ,regb 
+0x7cb1 028148 call bn_bigeq_256 
+0x7cb2 028149 nrtn positive 
+0x7cb3 028150 copy regc ,rega 
+0x7cb4 028151 branch sub_p2_256 
+:      028154 sub_p2_256:
+0x7cb5 028155 increase -32 ,rega 
+0x7cb6 028156 arg mem_p_256 ,regb 
+0x7cb7 028157 copy rega ,contw 
+0x7cb8 028158 branch bn_sub_256 
+:      028163 bn_submod_256:
+0x7cb9 028164 call bn_sub_256 
+0x7cba 028166 branch bn_submod_256_np ,true 
+0x7cbb 028169 add contw ,-32 ,rega 
+0x7cbc 028170 arg mem_p_256 ,regb 
+0x7cbd 028171 call bn_bigeq_256 
+0x7cbe 028172 nrtn positive 
+0x7cbf 028173 arg mem_p_256 ,regb 
+0x7cc0 028174 add contw ,-32 ,rega 
+0x7cc1 028176 copy rega ,contw 
+0x7cc2 028177 branch bn_sub_256 
+:      028178 bn_submod_256_np:
+0x7cc3 028179 add contw ,-32 ,rega 
+0x7cc4 028180 arg mem_p_256 ,regb 
+0x7cc5 028181 copy rega ,contw 
+0x7cc6 028182 call bn_add_256 
+0x7cc7 028184 rtn true 
+0x7cc8 028185 add contw ,-32 ,rega 
+0x7cc9 028186 arg mem_p_256 ,regb 
+0x7cca 028187 copy rega ,contw 
+0x7ccb 028188 branch bn_add_256 
+:      028192 bn_sub_256:
+0x7ccc 028193 force 8 ,loopcnt 
+0x7ccd 028194 branch bn_sub + 1 
+:      028196 bn_rshift_256:
+0x7cce 028197 force 8 ,loopcnt 
+0x7ccf 028198 increase 28 ,rega 
+0x7cd0 028199 branch bn_rshift 
+:      028201 bn_lshift_256:
+0x7cd1 028202 force 8 ,loopcnt 
+0x7cd2 028203 force 0 ,regc 
+0x7cd3 028204 branch bn_lshift_0 
+:      028206 bn_bigeq_256:
+0x7cd4 028207 force 8 ,loopcnt 
+0x7cd5 028208 increase 28 ,rega 
+0x7cd6 028209 increase 28 ,regb 
+0x7cd7 028210 branch bn_bigeq_0 
+:      028213 bn_eq_zero_256:
+0x7cd8 028214 ifetch 8 ,contr 
+0x7cd9 028215 nrtn blank 
+0x7cda 028216 branch bn_eq_zero 
+:      028221 bn_rshifteven_256:
+0x7cdb 028222 copy rega ,alarm 
+:      028223 bn_rshifteven_256_1:
+0x7cdc 028224 copy alarm ,rega 
+0x7cdd 028225 ifetch 1 ,rega 
+0x7cde 028226 isolate1 0 ,pdata 
+0x7cdf 028227 rtn true 
+0x7ce0 028228 call bn_rshift_256 
+0x7ce1 028229 ifetch 1 ,regb 
+0x7ce2 028230 isolate0 0 ,pdata 
+0x7ce3 028231 branch bn_rshifteven_256_0 ,true 
+0x7ce4 028232 arg mem_p_256 ,rega 
+0x7ce5 028233 copy regb ,contw 
+0x7ce6 028234 call bn_add_256 
+0x7ce7 028235 ifetch 1 ,regb 
+0x7ce8 028236 iadd regc ,pdata 
+0x7ce9 028237 istore 1 ,regb 
+0x7cea 028238 increase -32 ,regb 
+:      028239 bn_rshifteven_256_0:
+0x7ceb 028240 add regb ,32 ,rega 
+0x7cec 028241 force 9 ,loopcnt 
+0x7ced 028242 call bn_rshift 
+0x7cee 028243 branch bn_rshifteven_256_1 
+:      028247 ui_init:
+0x7cef 028248 call lpm_disable_exen_output 
+0x7cf0 028249 rtn wake 
+0x7cf1 028250 call ui_button_init 
+0x7cf2 028251 call ui_timer_init 
+0x7cf3 028252 branch ui_led_init 
+:      028254 ui_dispatch:
+0x7cf4 028255 call ui_led_blink_polling 
+0x7cf5 028257 branch ui_timer_check 
+:      028259 ui_button_init:
+0x7cf6 028260 set1 mark_ext_patch ,mark 
+0x7cf7 028261 bpatch patch3d_7 ,mem_patch3d 
+0x7cf8 028262 fetch 1 ,mem_ui_button_gpio 
+0x7cf9 028263 rtneq ui_button_gpio_disable 
+0x7cfa 028264 iforce temp 
+0x7cfb 028265 call gpio_config_output 
+0x7cfc 028266 fetcht 1 ,mem_ui_button_gpio 
+0x7cfd 028267 call gpio_out_inactive 
+0x7cfe 028268 nop 100 
+0x7cff 028269 fetcht 1 ,mem_ui_button_gpio 
+0x7d00 028270 call gpio_config_input 
+0x7d01 028271 branch ui_button_polling 
+:      028275 ui_button_polling:
+0x7d02 028276 set1 mark_ext_patch ,mark 
+0x7d03 028277 bpatch patch3e_0 ,mem_patch3e 
+0x7d04 028278 fetch 1 ,mem_ui_button_gpio 
+0x7d05 028279 rtneq ui_button_gpio_disable 
+0x7d06 028280 copy pdata ,temp 
+0x7d07 028281 call gpio_get_bit 
+0x7d08 028282 nbranch ui_button_up ,true 
+:      028284 ui_button_down:
+0x7d09 028285 call ui_button_check_long_press 
+0x7d0a 028286 fetch 2 ,mem_ui_state_map 
+0x7d0b 028287 set1 ui_state_btn_down 
+0x7d0c 028288 store 2 ,mem_ui_state_map 
+0x7d0d 028289 fetch 1 ,mem_ui_button_last_state 
+0x7d0e 028290 rtneq ui_button_state_down 
+0x7d0f 028291 jam ui_button_state_down ,mem_ui_button_last_state 
+0x7d10 028293 fetch 1 ,mem_ui_button_timeout 
+0x7d11 028294 store 1 ,mem_ui_button_timer 
+0x7d12 028295 call lpm_button_get_wake_lock 
+0x7d13 028296 jam bt_evt_button_down ,mem_fifo_temp 
+0x7d14 028297 branch ui_ipc_send_event 
+:      028298 ui_button_up:
+0x7d15 028299 fetch 2 ,mem_ui_state_map 
+0x7d16 028300 set0 ui_state_btn_down 
+0x7d17 028301 store 2 ,mem_ui_state_map 
+0x7d18 028302 fetch 1 ,mem_ui_button_last_state 
+0x7d19 028303 rtneq ui_button_state_up 
+0x7d1a 028304 jam ui_button_state_up ,mem_ui_button_last_state 
+0x7d1b 028306 jam 0 ,mem_ui_button_timer 
+0x7d1c 028307 call lpm_button_clean_wake_lock 
+0x7d1d 028308 jam bt_evt_button_up ,mem_fifo_temp 
+0x7d1e 028309 branch ui_ipc_send_event 
+:      028311 ui_button_check_long_press:
+0x7d1f 028312 fetch 1 ,mem_ui_button_timer 
+0x7d20 028313 rtn blank 
+0x7d21 028314 increase -1 ,pdata 
+0x7d22 028315 store 1 ,mem_ui_button_timer 
+0x7d23 028316 nrtn blank 
+0x7d24 028318 jam bt_evt_button_long_pressed ,mem_fifo_temp 
+0x7d25 028319 branch ui_ipc_send_event 
+:      028321 lpm_button_get_wake_lock:
+0x7d26 028322 arg wake_lock_button ,queue 
+0x7d27 028323 branch lpm_get_wake_lock 
+:      028325 lpm_button_clean_wake_lock:
+0x7d28 028326 arg wake_lock_button ,queue 
+0x7d29 028327 branch lpm_put_wake_lock 
+:      028329 ui_led_init:
+0x7d2a 028330 fetch 1 ,mem_led_gpio 
+0x7d2b 028331 rtneq ui_button_gpio_disable 
+0x7d2c 028332 iforce temp 
+0x7d2d 028333 call gpio_config_output 
+0x7d2e 028334 branch ui_led_off 
+:      028336 ui_led_blink_stop:
+0x7d2f 028337 fetch 2 ,mem_ui_state_map 
+0x7d30 028338 set0 ui_state_led_blink 
+0x7d31 028339 store 2 ,mem_ui_state_map 
+0x7d32 028340 jam ui_led_stop ,mem_led_switch 
+:      028341 ui_led_off:
+0x7d33 028342 fetch 2 ,mem_ui_state_map 
+0x7d34 028343 set0 ui_state_led_on 
+0x7d35 028344 store 2 ,mem_ui_state_map 
+0x7d36 028345 fetcht 1 ,mem_led_gpio 
+0x7d37 028346 branch gpio_out_inactive 
+:      028348 ui_led_on:
+0x7d38 028349 fetch 2 ,mem_ui_state_map 
+0x7d39 028350 set1 ui_state_led_on 
+0x7d3a 028351 store 2 ,mem_ui_state_map 
+0x7d3b 028352 jam ui_led_stop ,mem_led_switch 
+0x7d3c 028353 fetcht 1 ,mem_led_gpio 
+0x7d3d 028354 branch gpio_out_active 
+:      028356 ui_led_blink_start:
+0x7d3e 028357 jam 0xff ,mem_led_blink_count 
+:      028358 ui_led_blink_start1:
+0x7d3f 028359 fetch 2 ,mem_ui_state_map 
+0x7d40 028360 set1 ui_state_led_blink 
+0x7d41 028361 store 2 ,mem_ui_state_map 
+0x7d42 028362 jam ui_led_start ,mem_led_switch 
+0x7d43 028363 rtn 
+:      028365 ui_led_blink_polling:
+0x7d44 028366 set1 mark_ext_patch ,mark 
+0x7d45 028367 bpatch patch3e_1 ,mem_patch3e 
+0x7d46 028368 fetch 1 ,mem_led_blink_count 
+0x7d47 028369 rtn blank 
+0x7d48 028370 fetch 1 ,mem_led_switch 
+0x7d49 028371 rtneq ui_led_stop 
+0x7d4a 028372 arg ui_led_blink ,queue 
+0x7d4b 028373 call timer_check 
+0x7d4c 028374 nrtn blank 
+0x7d4d 028375 fetch 1 ,mem_led_switch 
+0x7d4e 028376 beq ui_led_dark_time ,in_ui_led_blink_polling_dark 
+0x7d4f 028377 call ui_led_on 
+0x7d50 028378 jam ui_led_dark_time ,mem_led_switch 
+0x7d51 028379 fetch 2 ,mem_led_light_time 
+0x7d52 028380 branch in_ui_led_blink_timer_start 
+:      028381 in_ui_led_blink_polling_dark:
+0x7d53 028382 call ui_led_off 
+0x7d54 028383 fetch 1 ,mem_led_blink_count 
+0x7d55 028384 beq led_flash_infinite ,in_ui_led_infinite 
+0x7d56 028385 increase -1 ,pdata 
+0x7d57 028386 store 1 ,mem_led_blink_count 
+:      028387 in_ui_led_infinite:
+0x7d58 028388 jam ui_led_light_time ,mem_led_switch 
+0x7d59 028389 fetch 2 ,mem_led_dark_time 
+:      028390 in_ui_led_blink_timer_start:
+0x7d5a 028391 arg ui_led_blink ,queue 
+0x7d5b 028392 branch timer_init 
+:      028394 ui_timer_timeout:
+0x7d5c 028395 setarg 0x1000 
+0x7d5d 028396 lshift16 pdata ,pdata 
+0x7d5e 028397 iadd regb ,regb 
+0x7d5f 028398 rtn 
+:      028400 ui_timer_check:
+0x7d60 028401 set1 mark_ext_patch ,mark 
+0x7d61 028402 bpatch patch3e_2 ,mem_patch3e 
+0x7d62 028403 arg 0 ,rega 
+0x7d63 028404 fetcht 4 ,mem_ui_timer_last_btclk 
+0x7d64 028405 copy clkn_bt ,regb 
+0x7d65 028406 copy regb ,pdata 
+0x7d66 028407 isub temp ,null 
+0x7d67 028408 ncall ui_timer_timeout ,positive 
+:      028410 ui_timer_check_loop:
+0x7d68 028411 copy regb ,pdata 
+0x7d69 028412 increase 160 ,temp 
+0x7d6a 028413 increase 160 ,temp 
+0x7d6b 028414 isub temp ,null 
+0x7d6c 028415 nbranch ui_timer_check_end ,positive 
+0x7d6d 028416 increase 1 ,rega 
+0x7d6e 028417 and rega ,0x0f ,pdata 
+0x7d6f 028418 nbranch ui_timer_check_loop ,blank 
+0x7d70 028419 arg 0 ,rega 
+0x7d71 028420 call ui_timer_check_send_evt 
+:      028421 ui_timer_init:
+0x7d72 028422 copy clkn_bt ,pdata 
+0x7d73 028423 store 4 ,mem_ui_timer_last_btclk 
+0x7d74 028424 rtn 
+:      028425 ui_timer_check_end:
+0x7d75 028426 set1 mark_ext_patch ,mark 
+0x7d76 028427 bpatch patch3e_3 ,mem_patch3e 
+0x7d77 028428 copy rega ,pdata 
+0x7d78 028429 rtn blank 
+0x7d79 028430 increase -160 ,temp 
+0x7d7a 028431 increase -160 ,temp 
+0x7d7b 028432 set0 28 ,temp 
+0x7d7c 028433 storet 4 ,mem_ui_timer_last_btclk 
+:      028434 ui_timer_check_send_evt:
+0x7d7d 028435 increase bt_evt_timer_init ,pdata 
+0x7d7e 028436 store 1 ,mem_fifo_temp 
+0x7d7f 028437 branch ui_ipc_send_event 
+:      028443 ui_ipc_get_lock:
+0x7d80 028444 jam 1 ,mem_ipc_lock_bt 
+:      028445 ui_ipc_get_lock_wait:
+0x7d81 028446 fetch 1 ,mem_ipc_lock_c51 
+0x7d82 028447 nbranch ui_ipc_get_lock_wait ,blank 
+0x7d83 028448 rtn 
+:      028450 ui_ipc_put_lock:
+0x7d84 028451 jam 0 ,mem_ipc_lock_bt 
+0x7d85 028452 rtn 
+:      028456 ui_ipc_send_event:
+0x7d86 028457 set1 mark_ext_patch ,mark 
+0x7d87 028458 bpatch patch3e_4 ,mem_patch3e 
+0x7d88 028459 call ui_ipc_get_lock 
+0x7d89 028460 copy rega ,pdata 
+0x7d8a 028461 store 4 ,mem_ipc_rega_temp 
+0x7d8b 028462 arg mem_ipc_fifo_bt2c51 ,rega 
+0x7d8c 028463 call fifo_in 
+0x7d8d 028464 fetch 4 ,mem_ipc_rega_temp 
+0x7d8e 028465 copy pdata ,rega 
+0x7d8f 028466 branch ui_ipc_put_lock 
+:      028468 ui_ipc_send_cmd:
+0x7d90 028469 set1 mark_ext_patch ,mark 
+0x7d91 028470 bpatch patch3e_5 ,mem_patch3e 
+0x7d92 028471 call ui_ipc_get_lock 
+0x7d93 028472 copy rega ,pdata 
+0x7d94 028473 store 4 ,mem_ipc_rega_temp 
+0x7d95 028474 arg mem_ipc_fifo_c512bt ,rega 
+0x7d96 028475 call fifo_in 
+0x7d97 028476 fetch 4 ,mem_ipc_rega_temp 
+0x7d98 028477 copy pdata ,rega 
+0x7d99 028478 branch ui_ipc_put_lock 
+:      028480 ui_ipc_clean_all_fifo:
+0x7d9a 028481 setarg 0 
+0x7d9b 028482 store util_fifo_len ,mem_ipc_fifo_c512bt 
+0x7d9c 028483 store util_fifo_len ,mem_ipc_fifo_bt2c51 
+0x7d9d 028484 rtn 
+:      028486 check_51cmd:
+0x7d9e 028487 set1 mark_ext_patch ,mark 
+0x7d9f 028488 bpatch patch3e_6 ,mem_patch3e 
+0x7da0 028489 fetch 1 ,mem_hci_cmd 
+0x7da1 028490 nrtn blank 
+0x7da2 028491 arg mem_ipc_fifo_c512bt ,rega 
+0x7da3 028492 call fifo_is_empty 
+0x7da4 028493 rtn blank 
+0x7da5 028494 jam ipc_continue_process ,mem_ipc_skip_continue_proc 
+0x7da6 028495 call check_51cmd_once 
+0x7da7 028496 fetch 1 ,mem_ipc_skip_continue_proc 
+0x7da8 028497 branch check_51cmd ,blank 
+0x7da9 028498 rtn 
+:      028500 check_51cmd_once:
+0x7daa 028501 set1 mark_ext_patch ,mark 
+0x7dab 028502 bpatch patch3e_7 ,mem_patch3e 
+0x7dac 028503 call ui_ipc_get_lock 
+0x7dad 028504 arg mem_ipc_fifo_c512bt ,rega 
+0x7dae 028505 call fifo_out 
+0x7daf 028506 copy pdata ,temp 
+0x7db0 028507 call ui_ipc_put_lock 
+0x7db1 028508 copy temp ,pdata 
+0x7db2 028509 rtn blank 
+0x7db3 028510 beq bt_cmd_start_discovery ,check_51cmd_start_discovery 
+0x7db4 028511 beq bt_cmd_stop_discovery ,check_51cmd_stop_discovery 
+0x7db5 028512 beq bt_cmd_reconnect ,check_51cmd_reconnect 
+0x7db6 028513 beq bt_cmd_enter_sniff_subrating ,check_51cmd_enter_sniff_subrating 
+0x7db7 028514 beq bt_cmd_exit_sniff_subrating ,check_51cmd_exit_sniff_subrating 
+0x7db8 028515 beq bt_cmd_sniff_test ,check_51cmd_sniff_test 
+0x7db9 028516 beq bt_cmd_start_inquiry ,check_51cmd_inq 
+0x7dba 028517 beq bt_cmd_stop_inquiry ,check_51cmd_stop_inq 
+0x7dbb 028518 beq bt_cmd_start_adv ,check_51cmd_adv 
+0x7dbc 028519 beq bt_cmd_stop_adv ,check_51cmd_stop_adv 
+0x7dbd 028520 beq bt_cmd_start_direct_adv ,check_51cmd_direct_adv 
+0x7dbe 028521 beq bt_cmd_stop_direct_adv ,check_51cmd_stop_direct_adv 
+0x7dbf 028522 beq bt_cmd_led_blink ,ui_led_blink_start 
+0x7dc0 028523 beq bt_cmd_led_on ,ui_led_on 
+0x7dc1 028524 beq bt_cmd_led_off ,ui_led_blink_stop 
+0x7dc2 028525 beq bt_cmd_le_start_conn ,check_51cmd_le_start_con 
+0x7dc3 028526 beq bt_cmd_le_start_scan ,check_51cmd_start_scan 
+0x7dc4 028527 beq bt_cmd_le_stop_scan ,check_51cmd_stop_scan 
+0x7dc5 028528 beq bt_cmd_enter_hibernate ,check_51cmd_hibernate 
+0x7dc6 028529 beq bt_cmd_le_smp_security_request ,check_51cmd_le_smp_sec_req 
+0x7dc7 028530 beq bt_cmd_le_start_write ,check_51cmd_le_start_write 
+0x7dc8 028531 beq bt_cmd_bb_reconn_cancel ,check_51cmd_bb_reconn_cancel 
+0x7dc9 028533 store 1 ,mem_fifo_temp 
+0x7dca 028534 set1 mark_ext_patch ,mark 
+0x7dcb 028535 bpatch patch3f_0 ,mem_patch3f 
+0x7dcc 028536 call lmo_fifo_check 
+0x7dcd 028537 nbranch check_51cmd_restore ,blank 
+:      028538 check_51cmd_once_continue:
+0x7dce 028539 fetch 1 ,mem_fifo_temp 
+0x7dcf 028540 bmark0 mark_context ,check_51cmd_check_idle 
+0x7dd0 028541 beq bt_cmd_enter_sniff ,cmd_in_sniff 
+0x7dd1 028542 beq bt_cmd_exit_sniff ,cmd_exit_sniff 
+0x7dd2 028543 beq bt_cmd_set_pin_code ,check_51cmd_pincode 
+0x7dd3 028544 beq bt_cmd_disconnect ,check_51cmd_disconnect 
+0x7dd4 028545 beq bt_cmd_le_disconnect ,check_51cmd_le_disconnect 
+0x7dd5 028546 beq bt_cmd_role_switch ,check_51cmd_role_switch 
+0x7dd6 028547 beq bt_cmd_store_reconn_info_le ,eeprom_store_le_reconn_info 
+0x7dd7 028548 beq bt_cmd_store_reconn_info_bt ,eeprom_store_bd_reconn_info 
+0x7dd8 028549 beq bt_cmd_le_update_conn ,check_51cmd_ble_update_connect_param 
+0x7dd9 028550 beq bt_cmd_dhkey_not_accept ,check_51cmd_dhkey_not_accept 
+0x7dda 028551 rtn 
+:      028553 check_51cmd_dhkey_not_accept:
+0x7ddb 028554 call tid_set_reply 
+0x7ddc 028555 jam lmp_dhkey_check ,mem_lmi_opcode2 
+0x7ddd 028556 branch parse_lmp_dhkey_check_reject 
+:      028558 check_51cmd_ble_update_connect_param:
+0x7dde 028559 jam xt_ll_connection_param_req ,mem_fifo_temp 
+0x7ddf 028560 branch le_xtype_fifo_in 
+:      028561 check_51cmd_check_idle:
+0x7de0 028562 store 1 ,mem_fifo_temp 
+0x7de1 028563 call context_check_idle 
+0x7de2 028564 branch check_51cmd_restore ,zero 
+0x7de3 028565 call context_search_plap 
+0x7de4 028566 nrtn zero 
+:      028567 check_51cmd_restore:
+0x7de5 028568 jam ipc_skip_continue_process ,mem_ipc_skip_continue_proc 
+0x7de6 028569 branch ui_ipc_send_cmd 
+:      028572 check_51cmd_role_switch:
+0x7de7 028573 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x7de8 028574 set1 mark_switch_initiated ,mark 
+0x7de9 028575 nrtn master 
+0x7dea 028576 jam switch_flag_init ,mem_switch_flag 
+0x7deb 028577 jam lmp_switch_req ,mem_lmo_opcode2 
+0x7dec 028578 fetch 1 ,mem_connection_options 
+0x7ded 028579 set0 connection_switch ,pdata 
+0x7dee 028580 store 1 ,mem_connection_options 
+0x7def 028581 rtn 
+:      028583 check_51cmd_start_discovery:
+0x7df0 028584 fetch 2 ,mem_ui_state_map 
+0x7df1 028585 set1 ui_state_bt_discovery 
+0x7df2 028586 store 2 ,mem_ui_state_map 
+0x7df3 028587 jam 3 ,mem_scan_mode 
+0x7df4 028588 rtn 
+:      028590 check_51cmd_stop_discovery:
+0x7df5 028591 jam 0 ,mem_hid_handshake_timer_count 
+0x7df6 028592 jam 0 ,mem_scan_mode 
+0x7df7 028593 fetch 2 ,mem_ui_state_map 
+0x7df8 028594 set0 ui_state_bt_discovery 
+0x7df9 028595 store 2 ,mem_ui_state_map 
+0x7dfa 028596 rtn 
+:      028598 check_51cmd_reconnect:
+0x7dfb 028599 jam hci_cmd_create_conn ,mem_hci_cmd 
+0x7dfc 028600 rtn 
+:      028602 check_51cmd_disconnect:
+0x7dfd 028603 jam lmp_detach ,mem_lmo_opcode2 
+0x7dfe 028604 jam other_end_terminated ,mem_disconn_reason_send 
+0x7dff 028605 rtn 
+:      028608 check_51cmd_enter_sniff_subrating:
+0x7e00 028609 rtn 
+:      028611 check_51cmd_exit_sniff_subrating:
+0x7e01 028612 rtn 
+:      028614 check_51cmd_sniff_test:
+0x7e02 028615 rtn 
+:      028617 check_51cmd_pincode:
+0x7e03 028618 jam pincode_state_pincode_ready ,mem_pincode_state 
+0x7e04 028619 branch cmd_pair 
+:      028621 check_51cmd_inq:
+0x7e05 028622 rtn 
+:      028623 check_51cmd_stop_inq:
+0x7e06 028624 rtn 
+:      028625 check_51cmd_adv:
+0x7e07 028626 jam on ,mem_le_adv_enable 
+0x7e08 028627 jam adv_ind ,mem_le_adv_type 
+0x7e09 028628 fetch 2 ,mem_ui_state_map 
+0x7e0a 028629 set1 ui_state_ble_adv ,pdata 
+0x7e0b 028630 store 2 ,mem_ui_state_map 
+0x7e0c 028631 rtn 
+:      028632 check_51cmd_stop_adv:
+0x7e0d 028633 fetch 2 ,mem_ui_state_map 
+0x7e0e 028634 set0 ui_state_ble_adv ,pdata 
+0x7e0f 028635 store 2 ,mem_ui_state_map 
+0x7e10 028636 jam off ,mem_le_adv_enable 
+0x7e11 028637 rtn 
+:      028638 check_51cmd_direct_adv:
+0x7e12 028639 jam on ,mem_le_adv_enable 
+0x7e13 028640 jam adv_direct_ind ,mem_le_adv_type 
+0x7e14 028641 fetch 2 ,mem_ui_state_map 
+0x7e15 028642 set1 ui_state_ble_adv ,pdata 
+0x7e16 028643 store 2 ,mem_ui_state_map 
+0x7e17 028644 rtn 
+:      028645 check_51cmd_stop_direct_adv:
+0x7e18 028646 fetch 2 ,mem_ui_state_map 
+0x7e19 028647 set0 ui_state_ble_adv ,pdata 
+0x7e1a 028648 store 2 ,mem_ui_state_map 
+0x7e1b 028649 jam off ,mem_le_adv_enable 
+0x7e1c 028650 rtn 
+:      028651 check_51cmd_le_disconnect:
+0x7e1d 028652 setarg 10 
+0x7e1e 028653 store 2 ,mem_le_superto 
+0x7e1f 028654 jam xt_ll_terminate_ind ,mem_fifo_temp 
+0x7e20 028655 branch le_xtype_fifo_in 
+:      028656 check_51cmd_le_start_con:
+0x7e21 028657 jam on ,mem_le_scan_enable 
+0x7e22 028658 jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0x7e23 028661 rtn 
+:      028662 check_51cmd_start_scan:
+0x7e24 028663 jam on ,mem_le_scan_enable 
+0x7e25 028664 rtn 
+:      028665 check_51cmd_stop_scan:
+0x7e26 028666 jam off ,mem_le_scan_enable 
+0x7e27 028667 jam 0 ,mem_hci_cmd 
+0x7e28 028668 rtn 
+:      028669 check_51cmd_le_smp_sec_req:
+0x7e29 028670 jam xt_smp_security_request ,mem_fifo_temp 
+0x7e2a 028671 branch le_xtype_fifo_in 
+:      028672 check_51cmd_hibernate:
+0x7e2b 028673 set1 mark_ext_patch ,mark 
+0x7e2c 028674 bpatch patch3f_1 ,mem_patch3f 
+0x7e2d 028675 fetch 2 ,mem_cb_before_hibernate 
+0x7e2e 028676 call callback_func 
+0x7e2f 028677 enable user 
+0x7e30 028678 hfetch 4 ,0x8138 
+0x7e31 028679 setflag user ,26 ,pdata 
+0x7e32 028680 hstore 4 ,core_lpm_reg 
+0x7e33 028681 call lpm_write_ctrl 
+0x7e34 028682 fetch 1 ,mem_ui_button_gpio 
+0x7e35 028683 beq ui_button_gpio_disable ,check_51cmd_hibernate_btn_disabled 
+0x7e36 028684 copy pdata ,temp 
+0x7e37 028685 call gpio_config_input 
+:      028686 check_51cmd_hibernate_btn_disabled:
+0x7e38 028687 call ui_led_off 
+0x7e39 028688 call ui_ipc_clean_all_fifo 
+0x7e3a 028689 branch lpm_hibernate 
+:      028691 check_51cmd_le_start_write:
+0x7e3b 028692 jam 1 ,mem_le_switch_send_data 
+0x7e3c 028693 rtn 
+:      028695 check_51cmd_bb_reconn_cancel:
+0x7e3d 028696 force page_length_timer ,queue 
+0x7e3e 028697 branch timer_stop 
+:      028700 ui_check_paring_button:
+0x7e3f 028701 fetch 1 ,mem_ui_state_map 
+0x7e40 028702 rtnbit0 ui_state_btn_down 
+0x7e41 028703 rtnbit0 ui_state_bt_reconnect 
+0x7e42 028704 branch check_51cmd_bb_reconn_cancel 
+:      028708 right_shift_n:
+0x7e43 028709 sub loopcnt ,0 ,null 
+0x7e44 028710 rtn zero 
+:      028711 right_shift_n_loop:
+0x7e45 028712 rshift pdata ,pdata 
+0x7e46 028713 loop right_shift_n_loop 
+0x7e47 028714 rtn 
+:      028716 push_stack:
+0x7e48 028717 deposit contw 
+0x7e49 028718 store 2 ,mem_contw 
+0x7e4a 028719 storet 8 ,mem_temp 
+0x7e4b 028720 deposit timeup 
+0x7e4c 028721 store 4 ,mem_timeup 
+0x7e4d 028722 deposit rega 
+0x7e4e 028723 store 4 ,mem_rega 
+0x7e4f 028724 deposit regb 
+0x7e50 028725 store 4 ,mem_regb 
+0x7e51 028726 deposit regc 
+0x7e52 028727 store 3 ,mem_regc 
+0x7e53 028728 deposit contr 
+0x7e54 028729 store 2 ,mem_contr 
+0x7e55 028730 rtn 
+:      028731 pop_stack:
+0x7e56 028732 fetcht 8 ,mem_temp 
+0x7e57 028733 fetch 4 ,mem_timeup 
+0x7e58 028734 iforce timeup 
+0x7e59 028735 fetch 4 ,mem_rega 
+0x7e5a 028736 iforce rega 
+0x7e5b 028737 fetch 4 ,mem_regb 
+0x7e5c 028738 iforce regb 
+0x7e5d 028739 fetch 3 ,mem_regc 
+0x7e5e 028740 iforce regc 
+0x7e5f 028741 fetch 2 ,mem_contw 
+0x7e60 028742 iforce contw 
+0x7e61 028743 fetch 2 ,mem_contr 
+0x7e62 028744 iforce contr 
+0x7e63 028745 rtn 
+:      028747 get_contw:
+0x7e64 028748 fetch 2 ,mem_contw 
+0x7e65 028749 copy pdata ,contw 
+0x7e66 028750 rtn 
+:      028751 get_contr:
+0x7e67 028752 fetch 2 ,mem_contr 
+0x7e68 028753 copy pdata ,contr 
+0x7e69 028754 rtn 
+:      028755 store_contw:
+0x7e6a 028756 copy contw ,pdata 
+0x7e6b 028757 store 2 ,mem_contw 
+0x7e6c 028758 rtn 
+:      028759 store_contr:
+0x7e6d 028760 copy contr ,pdata 
+0x7e6e 028761 store 2 ,mem_contr 
+0x7e6f 028762 rtn 
+:      028766 save_cont_pointers:
+0x7e70 028767 copy contw ,pdata 
+0x7e71 028768 store 2 ,mem_hold_contw 
+0x7e72 028769 copy contr ,pdata 
+0x7e73 028770 store 2 ,mem_hold_contr 
+0x7e74 028771 rtn 
+:      028772 load_cont_pointers:
+0x7e75 028773 fetch 2 ,mem_hold_contw 
+0x7e76 028774 copy pdata ,contw 
+0x7e77 028775 fetch 2 ,mem_hold_contr 
+0x7e78 028776 copy pdata ,contr 
+0x7e79 028777 rtn 
+:      028779 memcpy96:
+0x7e7a 028780 call memcpy32 
+:      028781 memcpy64:
+0x7e7b 028782 call memcpy32 
+0x7e7c 028783 branch memcpy32 
+:      028784 memcpy12:
+0x7e7d 028785 call memcpy8 
+:      028786 memcpy4:
+0x7e7e 028787 ifetch 4 ,contr 
+0x7e7f 028788 istore 4 ,contw 
+0x7e80 028789 rtn 
+:      028790 memcpy8:
+0x7e81 028791 ifetch 8 ,contr 
+0x7e82 028792 istore 8 ,contw 
+0x7e83 028793 rtn 
+:      028795 memcpy48:
+0x7e84 028796 call memcpy16 
+:      028797 memcpy32:
+0x7e85 028798 call memcpy8 
+:      028799 memcpy24:
+0x7e86 028800 call memcpy8 
+:      028801 memcpy16:
+0x7e87 028802 call memcpy8 
+0x7e88 028803 branch memcpy8 
+:      028807 delay_10ms:
+0x7e89 028808 copy clkn_bt ,pdata 
+0x7e8a 028809 increase 16 ,pdata 
+0x7e8b 028810 increase 16 ,pdata 
+:      028811 delay_ms_wait:
+0x7e8c 028812 copy clkn_bt ,temp 
+0x7e8d 028813 isub temp ,null 
+0x7e8e 028814 branch delay_ms_wait ,positive 
+0x7e8f 028815 rtn 
+:      028817 bn_zero:
+0x7e90 028818 force 3 ,loopcnt 
+:      028819 memset0:
+0x7e91 028820 force 0 ,pdata 
+:      028821 memset8:
+0x7e92 028822 istore 8 ,contw 
+0x7e93 028823 loop memset8 
+0x7e94 028824 rtn 
+:      028826 memset0_8:
+0x7e95 028827 force 0 ,pdata 
+0x7e96 028828 istore 8 ,contw 
+0x7e97 028829 rtn 
+:      028830 memset0_4:
+0x7e98 028831 force 0 ,pdata 
+0x7e99 028832 istore 4 ,contw 
+0x7e9a 028833 rtn 
+:      028835 clear_mem_256:
+0x7e9b 028836 force 4 ,loopcnt 
+0x7e9c 028837 branch memset0 
+:      028838 clear_mem_512:
+0x7e9d 028839 force 8 ,loopcnt 
+0x7e9e 028840 branch memset0 
+:      028842 clear_mem:
+0x7e9f 028843 deposit loopcnt 
+0x7ea0 028844 rtn blank 
+0x7ea1 028845 setarg 0 
+:      028846 clear_mem_loop:
+0x7ea2 028847 istore 1 ,contw 
+0x7ea3 028848 loop clear_mem_loop 
+0x7ea4 028849 rtn 
+:      028852 clear_temp_block:
+0x7ea5 028853 arg 32 ,loopcnt 
+0x7ea6 028854 arg mem_temp_block0 ,contw 
+0x7ea7 028855 branch clear_mem 
+:      028857 xor_loop:
+0x7ea8 028858 ifetch 4 ,regc 
+0x7ea9 028859 ifetcht 4 ,rega 
+0x7eaa 028860 ixor temp ,pdata 
+0x7eab 028861 istore 4 ,contw 
+0x7eac 028862 increase 4 ,rega 
+0x7ead 028863 increase 4 ,regc 
+0x7eae 028864 loop xor_loop 
+0x7eaf 028865 rtn 
+:      028869 inverse_data:
+0x7eb0 028870 set1 mark_ext_patch ,mark 
+0x7eb1 028871 bpatch patch3f_2 ,mem_patch3f 
+0x7eb2 028872 copy loopcnt ,pdata 
+0x7eb3 028873 sub pdata ,1 ,null 
+0x7eb4 028874 rtn positive 
+0x7eb5 028875 iadd rega ,regb 
+0x7eb6 028876 increase -1 ,regb 
+0x7eb7 028877 rshift loopcnt ,loopcnt 
+:      028878 inverse_loop:
+0x7eb8 028879 ifetcht 1 ,rega 
+0x7eb9 028880 ifetch 1 ,regb 
+0x7eba 028881 istore 1 ,rega 
+0x7ebb 028882 istoret 1 ,regb 
+0x7ebc 028883 increase -1 ,regb 
+0x7ebd 028884 increase 1 ,rega 
+0x7ebe 028885 loop inverse_loop 
+0x7ebf 028886 rtn 
+:      028889 memcpy_fast:
+0x7ec0 028890 deposit loopcnt 
+0x7ec1 028891 rtn blank 
+:      028892 memcpy_fast_loop:
+0x7ec2 028893 increase -8 ,loopcnt 
+0x7ec3 028894 call memcpy8 ,positive 
+0x7ec4 028895 rtn zero 
+0x7ec5 028896 branch memcpy_fast_loop ,positive 
+0x7ec6 028897 increase 8 ,loopcnt 
+:      028898 memcpy_fast_loop_four:
+0x7ec7 028899 increase -4 ,loopcnt 
+0x7ec8 028900 call memcpy4 ,positive 
+0x7ec9 028901 rtn zero 
+0x7eca 028902 branch memcpy_fast_loop_four ,positive 
+0x7ecb 028903 increase 4 ,loopcnt 
+0x7ecc 028904 branch memcpy 
+:      028906 memcpy:
+0x7ecd 028907 deposit loopcnt 
+0x7ece 028908 rtn blank 
+:      028909 memcpy_loop:
+0x7ecf 028910 ifetch 1 ,contr 
+0x7ed0 028911 istore 1 ,contw 
+0x7ed1 028912 loop memcpy_loop 
+0x7ed2 028913 rtn 
+:      028915 timer_stop:
+0x7ed3 028916 setarg 0 
+:      028917 timer_init:
+0x7ed4 028918 rshift clkn_bt ,temp 
+0x7ed5 028919 storet 4 ,mem_last_clkn 
+0x7ed6 028920 arg mem_timers ,contw 
+0x7ed7 028921 iforce temp 
+0x7ed8 028922 lshift queue ,pdata 
+0x7ed9 028923 iadd contw ,contw 
+0x7eda 028924 istoret 2 ,contw 
+0x7edb 028925 set1 mark_ext_patch ,mark 
+0x7edc 028926 bpatch patch3f_3 ,mem_patch3f 
+0x7edd 028927 rtn 
+:      028929 timer_check_timeout:
+0x7ede 028930 arg 0x800 ,timeup 
+0x7edf 028931 lshift16 timeup ,timeup 
+0x7ee0 028932 iadd timeup ,pdata 
+0x7ee1 028933 rtn 
+:      028936 timer_check:
+0x7ee2 028937 set1 mark_ext_patch ,mark 
+0x7ee3 028938 bpatch patch3f_4 ,mem_patch3f 
+0x7ee4 028939 fetcht 4 ,mem_last_clkn 
+0x7ee5 028940 rshift clkn_bt ,pdata 
+0x7ee6 028941 store 4 ,mem_last_clkn 
+0x7ee7 028942 isub temp ,null 
+0x7ee8 028943 ncall timer_check_timeout ,positive 
+0x7ee9 028944 isub temp ,timeup 
+0x7eea 028945 copy timeup ,temp 
+0x7eeb 028946 arg mem_timers ,contr 
+0x7eec 028947 copy contr ,contw 
+0x7eed 028948 arg 16 ,loopcnt 
+:      028949 timer_loop:
+0x7eee 028950 ifetch 2 ,contr 
+0x7eef 028951 isub temp ,pdata 
+0x7ef0 028952 branch timer_counting ,positive 
+0x7ef1 028953 force 0 ,pdata 
+:      028954 timer_counting:
+0x7ef2 028955 istore 2 ,contw 
+0x7ef3 028956 loop timer_loop 
+0x7ef4 028957 arg mem_timers ,contr 
+0x7ef5 028958 lshift queue ,pdata 
+0x7ef6 028959 iadd contr ,contr 
+0x7ef7 028960 ifetch 2 ,contr 
+0x7ef8 028961 rtn 
+:      028966 clk_add:
+0x7ef9 028967 iadd temp ,temp 
+0x7efa 028968 copy temp ,loopcnt 
+0x7efb 028969 setarg 3750 
+0x7efc 028970 isub loopcnt ,pdata 
+0x7efd 028971 rtn positive 
+0x7efe 028972 sub pdata ,0 ,pdata 
+0x7eff 028973 rshift16 temp ,temp 
+0x7f00 028974 increase 1 ,temp 
+0x7f01 028975 lshift16 temp ,temp 
+0x7f02 028976 ior temp ,temp 
+0x7f03 028977 rtn 
+:      028979 clk_diff_rt:
+0x7f04 028980 call clk_diff 
+0x7f05 028981 branch clk2rt 
+:      028984 clk_diff:
+0x7f06 028985 disable user 
+0x7f07 028986 isub temp ,pdata 
+0x7f08 028987 branch clk_diff_pos ,positive 
+0x7f09 028988 enable user 
+0x7f0a 028989 sub pdata ,0 ,pdata 
+:      028990 clk_diff_pos:
+0x7f0b 028991 rtnbit0 15 
+0x7f0c 028992 arg -61786 ,temp 
+0x7f0d 028993 iadd temp ,pdata 
+0x7f0e 028994 set0 64 ,pdata 
+0x7f0f 028995 rtn 
+:      028997 clk2rt:
+0x7f10 028998 iforce contr 
+0x7f11 028999 rshift16 pdata ,pdata 
+0x7f12 029000 arg 3750 ,temp 
+0x7f13 029001 imul32 temp ,pdata 
+0x7f14 029002 iadd contr ,pdata 
+0x7f15 029003 rtn 
+:      029006 clk2lpo:
+0x7f16 029007 lshift8 pdata ,pdata 
+0x7f17 029008 lshift4 pdata ,pdata 
+0x7f18 029009 fetcht 3 ,mem_clks_per_lpo 
+0x7f19 029010 idiv temp 
+0x7f1a 029011 call wait_div_end 
+0x7f1b 029012 quotient temp 
+0x7f1c 029013 rtn 
+:      029016 clk2bt:
+0x7f1d 029017 arg 3750 ,temp 
+0x7f1e 029018 idiv temp 
+0x7f1f 029019 call wait_div_end 
+0x7f20 029020 quotient pdata 
+0x7f21 029021 lshift16 pdata ,pdata 
+0x7f22 029022 remainder temp 
+0x7f23 029023 ior temp ,temp 
+0x7f24 029024 rtn 
+:      029031 string2dec_from_uart:
+0x7f25 029032 arg 0 ,temp 
+:      029033 string2dec_from_uart_done:
+0x7f26 029034 copy temp ,regc 
+0x7f27 029035 ifetch 1 ,contru 
+0x7f28 029036 call uchar2dialog 
+0x7f29 029037 copy regc ,temp 
+0x7f2a 029038 call swap 
+0x7f2b 029039 arg 10 ,regb 
+0x7f2c 029040 imul32 regb ,pdata 
+0x7f2d 029041 iadd temp ,pdata 
+0x7f2e 029042 copy pdata ,temp 
+0x7f2f 029043 loop string2dec_from_uart_done 
+0x7f30 029044 rtn 
+:      029048 uchar2dialog:
+0x7f31 029049 arg 0x3a ,temp 
+0x7f32 029050 isub temp ,null 
+0x7f33 029051 nbranch uchar2dialog_number ,positive 
+0x7f34 029052 arg 0x61 ,temp 
+0x7f35 029053 isub temp ,null 
+0x7f36 029054 branch uchar2dialog_a2f ,positive 
+0x7f37 029055 arg 0x37 ,temp 
+0x7f38 029056 isub temp ,pdata 
+0x7f39 029057 rtn 
+:      029058 uchar2dialog_number:
+0x7f3a 029059 arg 0x30 ,temp 
+0x7f3b 029060 isub temp ,pdata 
+0x7f3c 029061 rtn 
+:      029062 uchar2dialog_a2f:
+0x7f3d 029063 arg 0x57 ,temp 
+0x7f3e 029064 isub temp ,pdata 
+0x7f3f 029065 rtn 
+:      029067 pn9:
+0x7f40 029068 copy temp ,alarm 
+0x7f41 029069 setarg 0x1ff 
+0x7f42 029070 force 0 ,regb 
+:      029071 pn9_loop:
+0x7f43 029072 rshift3 pdata ,rega 
+0x7f44 029073 rshift rega ,rega 
+0x7f45 029074 ixor rega ,rega 
+0x7f46 029075 isolate1 0 ,rega 
+0x7f47 029076 setflag true ,9 ,pdata 
+0x7f48 029077 rshift temp ,temp 
+0x7f49 029078 isolate1 0 ,pdata 
+0x7f4a 029079 setflag true ,7 ,temp 
+0x7f4b 029080 rshift pdata ,pdata 
+0x7f4c 029081 increase 1 ,regb 
+0x7f4d 029082 compare 0 ,regb ,0x7 
+0x7f4e 029083 nbranch pn9_loop ,true 
+0x7f4f 029084 istoret 1 ,contw 
+0x7f50 029085 loop pn9_loop 
+0x7f51 029086 copy alarm ,temp 
+0x7f52 029087 rtn 
+:      029090 wait_div_end:
+0x7f53 029091 rtn modone 
+0x7f54 029092 branch wait_div_end 
+:      029103 string_compare:
+0x7f55 029104 ifetch 1 ,rega 
+0x7f56 029105 ifetcht 1 ,regb 
+0x7f57 029106 isub temp ,null 
+0x7f58 029107 nrtn zero 
+0x7f59 029108 increase 1 ,rega 
+0x7f5a 029109 increase 1 ,regb 
+0x7f5b 029110 loop string_compare 
+0x7f5c 029111 force 0 ,null 
+0x7f5d 029112 rtn 
+:      029115 ceiling:
+0x7f5e 029116 isub temp ,null 
+0x7f5f 029117 nrtn positive 
+0x7f60 029118 deposit temp 
+0x7f61 029119 rtn 
+:      029121 swap:
+0x7f62 029122 iadd temp ,pdata 
+0x7f63 029123 isub temp ,temp 
+0x7f64 029124 isub temp ,pdata 
+0x7f65 029125 rtn 
+:      029127 clean_mem:
+0x7f66 029128 arg 0x200 ,loopcnt 
+0x7f67 029129 arg 0x4000 ,contw 
+0x7f68 029130 branch memset0 
+:      029182 callback_func:
+0x7f69 029183 rtn blank 
+0x7f6a 029184 copy pdata ,pc 
+:      029187 wait_uarttx:
+0x7f6b 029188 hfetch 2 ,core_uart_txitems 
+0x7f6c 029189 nbranch wait_uarttx ,blank 
+0x7f6d 029190 rtn 
+:      029192 get_uart_rrptr:
+0x7f6e 029193 hfetch 2 ,core_uart_rrptr 
+0x7f6f 029194 copy pdata ,contru 
+0x7f70 029195 rtn 
+:      029198 ice_break:
+0x7f71 029199 hjam 0x1 ,core_ice_ctrl 
+0x7f72 029200 rtn 
+:      029202 ice_setbp:
+0x7f73 029203 hstore 2 ,core_ice_break0 
+0x7f74 029204 hfetch 1 ,core_ice_ctrl 
+0x7f75 029205 set1 4 ,pdata 
+0x7f76 029206 hstore 1 ,core_ice_ctrl 
+0x7f77 029207 rtn 
+:      029208 ice_setbp2:
+0x7f78 029209 hstore 2 ,core_ice_break1 
+0x7f79 029210 hfetch 1 ,core_ice_ctrl 
+0x7f7a 029211 set1 6 ,pdata 
+0x7f7b 029212 hstore 1 ,core_ice_ctrl 
+0x7f7c 029213 rtn 
+:      029215 ice_set_write_bp:
+0x7f7d 029216 hstore 2 ,core_ice_break0 
+0x7f7e 029217 hjam 0x30 ,core_ice_ctrl 
+0x7f7f 029218 rtn 
+:      029222 test_enable_white:
+0x7f80 029223 hfetch 1 ,core_config 
+0x7f81 029224 set0 whiteoff_bit ,pdata 
+0x7f82 029225 hstore 1 ,core_config 
+0x7f83 029226 rtn 
+:      029228 check_uart_tx_buff:
+0x7f84 029229 hfetch 2 ,core_uart_txitems 
+0x7f85 029230 arg uart_air_control_threshold ,temp 
+:      029231 pdata_sub_temp:
+0x7f86 029232 isub temp ,null 
+0x7f87 029233 rtn 
+:      029239 fifo_in:
+0x7f88 029240 set1 mark_ext_patch ,mark 
+0x7f89 029241 bpatch patch3f_5 ,mem_patch3f 
+0x7f8a 029242 ifetcht util_fifo_len ,rega 
+0x7f8b 029243 and temp ,0xff ,pdata 
+0x7f8c 029244 nbranch fifo_in_push ,blank 
+0x7f8d 029245 rshift8 temp ,pdata 
+0x7f8e 029246 istore util_fifo_len ,rega 
+:      029247 fifo_in_push:
+0x7f8f 029248 increase util_fifo_len + util_fifo_offset ,rega 
+0x7f90 029249 ifetch 1 ,rega 
+0x7f91 029250 nbranch assert ,blank 
+0x7f92 029251 fetch 1 ,mem_fifo_temp 
+0x7f93 029252 istore 1 ,rega 
+0x7f94 029253 rtn 
+:      029258 fifo_out:
+0x7f95 029259 set1 mark_ext_patch ,mark 
+0x7f96 029260 bpatch patch3f_6 ,mem_patch3f 
+0x7f97 029261 arg util_fifo_len ,loopcnt 
+0x7f98 029262 ifetch util_fifo_len ,rega 
+0x7f99 029263 rtn blank 
+:      029264 fifo_out_loop:
+0x7f9a 029265 ifetch 1 ,rega 
+0x7f9b 029266 nbranch fifo_out_end ,blank 
+0x7f9c 029267 increase 1 ,rega 
+0x7f9d 029268 loop fifo_out_loop 
+0x7f9e 029269 branch assert 
+:      029270 fifo_out_end:
+0x7f9f 029271 arg 0 ,temp 
+0x7fa0 029272 istoret 1 ,rega 
+0x7fa1 029273 rtn 
+:      029278 fifo_is_empty:
+0x7fa2 029279 ifetch util_fifo_len ,rega 
+0x7fa3 029280 rtn 
+:      029285 fifo_is_full:
+0x7fa4 029286 ifetch 1 ,rega 
+0x7fa5 029287 rtn 
+:      029290 fifo_is_near_full:
+0x7fa6 029291 ifetch 2 ,rega 
+0x7fa7 029292 rtn 
+:      029296 fifo_content_count:
+0x7fa8 029297 arg 0 ,temp 
+:      029298 fifo_content_count_loop:
+0x7fa9 029299 fetch 1 ,contr 
+0x7faa 029300 loop fifo_content_count_loop ,blank 
+0x7fab 029301 increase 1 ,temp 
+0x7fac 029302 loop fifo_content_count_loop 
+0x7fad 029303 copy temp ,pdata 
+0x7fae 029304 rtn 
+:      029306 not_greater_than:
+0x7faf 029307 isub temp ,null 
+0x7fb0 029308 nrtn positive 
+0x7fb1 029309 copy temp ,pdata 
+0x7fb2 029310 rtn 
Index: btms/output/bt_program23.meta
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/bt_program23.meta	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/bt_program23.meta	(working copy)
@@ -0,0 +1,29312 @@
+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
+//define HID
+define BLE
+define P24G_YC
+//define P24G_LOG
+//define P24G_AUTO
+//define ADC_GPIO
+//define ADC_VINLPM
+//define ADC_HVIN
+//define TEST_MODE
+//define MS_TEST
+//define HCILOG
+//define KEYBORD_DATA
+//define TP_MAX
+//define OTA_ENABLE
+
+	bmark1 mark_ext_patch,patch_ext
+	beq patch00_0,p_soft_reset
+	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 patch14_7,p_lpm_recover_clk
+	beq patch15_0,p_lpm_dispatch
+	beq patch15_1,p_lpm_dispatch_next2
+	beq patch15_4,p_lpm_dispatch_unconn
+	beq patch16_4,p_device_init
+	beq patch16_5,p_app_lpm_init
+	beq patch16_6,p_app_process_bb_event
+	beq patch16_7,p_app_evt_timer
+	branch loop
+
+patch_ext:
+	beq patch20_5,p_le_slave_match
+	beq patch22_6,p_le_receive_skip
+	beq patch23_3,p_le_send_adv_ind
+	beq patch24_3,p_le_update_param
+	beq patch25_7,p_le_prepare_tx
+	beq patch26_1,p_le_prepare_tx_ll
+	beq patch26_2,p_le_prepare_smp0
+	beq patch26_3,p_le_prepare_att
+	beq patch27_1,p_le_send_packet
+	beq patch27_4,p_le_parse0
+	beq patch27_5,p_le_parse_smp
+	beq patch27_6,p_le_parse_att
+	beq patch27_7,p_le_adv
+	beq patch28_2,p_le_receive_window_size
+	beq patch29_5,p_le_lpm_set_mult
+	beq patch30_2,p_iicd_read_eep
+	beq patch32_5,p_gpio_set_before_lpm_common
+	beq patch3e_3,p_ui_timer_check_end
+	beq patch3e_7,p_check_51cmd_once
+	beq patch3f_0,p_check_51cmd_once_continue0
+	beq patch3f_1,p_check_enter_hibernate
+	branch loop
+
+p_soft_reset:
+	clear_stack
+	jam 0,mem_patch30
+	nbranch soft_reset+3,wake
+	fetch 1,mem_le_switch_send_data
+	nbranch p_soft_reset_start_51,blank
+	fetch 1,mem_short_lpm_enable
+	branch soft_reset+3,blank
+	jam 0,mem_ipc_is_ready
+	bmark0 mark_24g,soft_reset+3
+	nbranch soft_reset+3,wake
+p_soft_reset_start_51:
+	hjam START_C51_CORE,core_docd_ctrl	
+	branch soft_reset+3
+	
+p_main_loop:
+	call p_ipc_timer_check
+	call g24_transmit_process
+	call p_ipc_rx
+	fetch 1,mem_short_lpm_enable
+	nbranch p_24g_short_lpm_process_loop,blank
+	branch main_loop+2
+
+
+p_shutdown_radio:
+	branch shutdown_radio0,is_rx
+	hjam 0xd4, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4
+	branch shutdown_radio_pair
+	
+	fetch 1,mem_tx_power
+	beq TX_POWER_PAIR,shutdown_radio_pair
+	branch shutdown_radio_select
+
+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
+
+	branch p_set_tx_power_pair
+	
+	fetch 1,mem_tx_power
+	beq TX_POWER_PAIR,p_set_tx_power_pair
+	bbit1 TX_POWER_3DB,p_rx_high_sens
+	bbit1 TX_POWER_5DB,p_rx_high_sens
+p_rx_low_sens:
+	hjam 0x5b,0x894c 
+	hjam 0x96,0x894d
+	hjam 0x2c,0x894e 
+	hjam 0x46,0x894f 
+	branch p_txon_select_power_level
+p_rx_high_sens:
+	hjam 0xfb,0x894c 
+	hjam 0xef,0x894d
+	hjam 0xec,0x894e 
+	hjam 0x5e,0x894f 
+p_txon_select_power_level::
+	fetch 1,mem_tx_power
+	branch txon_power_select
+
+p_set_tx_power_pair:	//50-100cm distance
+ 	hjam 0xc5,0x8956
+ 	hjam 0xd0,0x8955
+	rtn
+
+p_initialize_radio_cont:
+	call lpm_cal_xtal_startup
+	call switchto_dpllclk
+	hjam clksel_rc,core_clksel
+	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
+	branch initialize_radio_cont+4
+
+p_lpm_recover_clk:
+	call lpm_recover_clk+2
+	fetch 1,mem_hibernate_flag
+	rtn blank
+	jam 0,mem_hibernate_flag
+	copy clkn_bt,pdata
+	store 4,mem_ipc_last_check_timer
+	rtn
+
+p_lpm_dispatch:
+	rtnmark1 mark_24g
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 2,mem_context + coffset_tsniff
+	arg 0xffff,temp
+	isub temp,null
+	rtn zero									/* role switch */
+	fetch 1,mem_lpm_mode
+	rtn blank
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank
+	call lpm_check_wake_lock
+	nrtn blank
+	call xtal_fast_wake
+	fetch 1,mem_ssp_enable
+	branch lpm_dispatch_next,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+	branch lpm_dispatch_next
+
+p_lpm_dispatch_next2:
+	fetch 1,mem_le_switch_send_data
+	branch p_lpm_dispatch_long_mult,blank
+	fetch 1,mem_lpm_current_mult
+	nbranch p_lpm_dispatch_long_mult,blank // short lpm, no gpio to wakeup
+	fetch 1,mem_bt_read_ipc_count
+	fetcht 1,mem_51_read_sensor_count
+	isub temp,null
+	nrtn zero
+	fetch 1,mem_ble_data_wheel
+	nrtn blank
+	setarg 0
+	store 8,mem_gpio_wakeup_low
+	branch lpm_dispatch_next2
+p_lpm_dispatch_long_mult:
+	call p_check_ipc_for_lpm
+	nrtn user
+	fetch 1,mem_c51_lmp_lock
+	nrtn blank
+	jam 0,mem_bt_wakeup_from_long_mult	//bt enter long mult,then 8051 execute  EVENT_WAKEUP
+	branch lpm_dispatch_next2
+
+p_lpm_dispatch_unconn:
+	call p_check_ipc_for_lpm
+	nrtn user
+	fetch 1,mem_c51_lmp_lock
+	nrtn blank
+	branch lpm_dispatch_unconn+2
+
+p_check_ipc_for_lpm:
+	call p_check_ipc_2bt
+	nrtn user
+	call p_check_ipc_2c51
+	nrtn user
+	jam 1,mem_c51_lmp_lock
+	jam SYC_TASK_LPM,mem_c51_flag
+	call p_c51_wait
+	branch p_check_ipc_2bt
+
+
+//user: no data
+p_check_ipc_2c51:
+	fetch 2,mem_ipc_2C51_read_index
+	fetcht 2,mem_ipc_2C51_write_index
+	branch p_check_ipc_common
+p_check_ipc_2bt:
+	fetch 2,mem_ipc_2bt_read_index
+	fetcht 2,mem_ipc_2bt_write_index
+p_check_ipc_common:
+	isub temp,null
+	branch enable_usr,zero
+	branch disable_usr
+	
+p_c51_wait:
+	fetch 1,mem_c51_flag
+	nop 10
+	bne 0,p_c51_wait
+	rtn	
+
+
+p_app_lpm_init:
+	jam 39,mem_le_ch_mapped
+	jam 0,mem_tester_emulate
+	jam 0,mem_debug_config
+	jam 0, mem_lch_code
+	setarg 0
+	store 5,mem_sp_state_start
+	rtn
+
+p_app_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 p_app_event_normal_process
+	branch app_process_bb_event_priority
+p_app_event_normal_process:
+	rtneq BT_EVT_LINKKEY_GENERATE
+	beq BT_EVT_LE_CONNECTED,p_device_le_conn
+	beq BT_EVT_LE_DISCONNECTED,p_device_le_discon
+	beq BT_EVT_LE_ENC_INFO,p_device_le_enc_info
+	branch app_event_normal_process
+
+
+p_device_le_conn:
+	jam 0,mem_bt_read_ipc_count
+	jam 0,mem_lpm_mult
+	jam 0,mem_mult_time_arrive_flag
+	jam 120,mem_le_slave_update_mult_timer
+	call app_ble_stop_adv
+	call app_bt_stop_discovery
+	call app_lpm_mult_enable
+	branch app_le_event_bb_connected
+
+p_device_le_discon:
+	jam 0,mem_ble_send_flag
+	call queue_init
+	jam 0,mem_ltk_exists
+	jam 0,mem_lpm_mult
+	jam 0,mem_mult_time_arrive_flag
+	jam 0,mem_le_slave_update_mult_timer
+//	jam 0,mem_le_slave_update_param_timer
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	fetcht 2,mem_le_att_report2
+	storet 2,mem_le_notify_handle
+	call le_clean_att_list_handle_enable
+	branch app_le_event_bb_disconn
+
+p_device_le_enc_info:
+	call p_app_updata_le_param
+	branch check_51cmd_le_start_write
+
+p_app_evt_timer:
+	storet 1,mem_app_evt_timer_count
+	fetch 1,mem_ipc_bt_100ms_timer
+	increase 1,pdata
+	store 1,mem_ipc_bt_100ms_timer
+p_app_evt_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count	
+//	call p_le_slave_update_param_timer
+	call p_le_slave_update_mult_timer
+	call p_check_mult_parameter
+	call p_le_reconn_enable_notify_timer
+//	call p_24g_enter_lpm_timer
+	call p_ble_data_wheel_lpm_timer
+
+	call p_led_gpio8_blink_timer
+	call p_led_gpio5_blink_timer
+
+	branch p_app_evt_100ms_loop
+
+
+p_led_gpio8_blink_timer:
+	fetch 1,mem_led_gpio8_blink_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_led_gpio8_blink_timer
+	nrtn blank
+	fetch 1,mem_led_gpio8_blink_cnt
+	increase 1,pdata
+	and_into 1,pdata
+	store 1,mem_led_gpio8_blink_cnt
+	beq 0,p_led_gpio8_off
+	beq 1,p_led_gpio8_on
+	rtn
+p_led_gpio8_off:
+	arg 8,temp
+	branch gpio_out_inactive
+p_led_gpio8_on:	
+	arg 8,temp
+	branch gpio_out_active
+
+p_led_gpio5_blink_timer:
+	fetch 1,mem_led_gpio5_blink_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_led_gpio5_blink_timer
+	nrtn blank
+	fetch 1,mem_led_gpio5_blink_cnt
+	increase 1,pdata
+	and_into 1,pdata
+	store 1,mem_led_gpio5_blink_cnt
+	beq 0,p_led_gpio5_off
+	beq 1,p_led_gpio5_on
+	rtn
+p_led_gpio5_off:
+	arg 5,temp
+	branch gpio_out_inactive
+p_led_gpio5_on:
+	arg 5,temp
+	branch gpio_out_active
+
+	
+
+p_check_mult_parameter:
+	fetch 1,mem_mult_time_arrive_flag
+	rtn blank
+	fetch 1,mem_lpm_mult
+	compare 0x20,pdata,0xff
+	ncall p_set_mult_para,true
+	fetch 1,mem_lpm_mode
+	call p_set_multmode,blank
+	rtn
+p_set_multmode:
+	jam 1,mem_lpm_mode
+	rtn
+p_set_mult_para:
+	jam 0x20,mem_lpm_mult
+	rtn
+p_24g_enter_lpm_timer:
+	fetch 1,mem_new_24g_enter_lpm_timer
+	rtn blank
+	jam 0,mem_short_data_wheel
+	increase -1,pdata
+	store 1,mem_new_24g_enter_lpm_timer
+	nrtn blank
+	rtn
+
+p_ble_data_wheel_lpm_timer:
+	fetch 1,mem_ble_data_wheel_lpm_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_ble_data_wheel_lpm_timer
+	nrtn blank
+	jam 0,mem_ble_data_wheel
+	rtn
+	
+//p_le_slave_update_param_timer:
+//	fetch 1,mem_le_slave_update_param_timer
+//	rtn blank
+//	increase -1,pdata
+//	store 1,mem_le_slave_update_param_timer
+//	nrtn blank
+p_app_updata_le_param:
+	call app_lpm_mult_enable
+	jam BT_CMD_LE_UPDATE_CONN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+p_le_slave_update_mult_timer:
+	fetch 1,mem_le_slave_update_mult_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_le_slave_update_mult_timer
+	nrtn blank
+	jam 0x20,mem_lpm_mult
+	jam 1,mem_lpm_mode
+	jam 1,mem_mult_time_arrive_flag
+	rtn
+
+p_le_reconn_enable_notify_timer:
+	fetch 1,mem_le_reconn_enable_notify_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_le_reconn_enable_notify_timer
+	nrtn blank
+	branch app_ble_start_write	
+
+
+
+p_le_slave_match:
+	call le_got_first_packet
+	call le_acknowledge
+	call le_prepare_tx
+	call power_ctrl_start
+	branch le_slave_match+5
+
+p_le_receive_skip:
+	call save_rssi
+	copy pdata,rega
+	call rssi_signal
+	branch le_receive_skip+3
+
+p_le_send_adv_ind:
+	fetch 4,mem_le_rx_winsows
+	store 4,mem_le_transmit_window// init first packate rx window
+	branch le_send_adv_ind+2
+
+p_le_update_param:
+	jam 1,mem_lpm_mode	
+	fetch 2,mem_le_event_count
+	fetcht 2,mem_le_instant
+	isub temp,pdata
+	store 2,mem_pdatatemp
+	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
+	storet 2,mem_temp
+	isub temp,rega
+	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
+	copy pdata,regab
+	fetch 2,mem_le_tsniff
+	fetcht 2,mem_temp	//last sniff
+	isub temp,pdata		//last sniff - new sniff
+	fetcht 2,mem_pdatatemp
+	imul32 temp,pdata
+	iadd regab,pdata
+	store 4,mem_le_anchor
+	call le_receive_window_size
+	fetch 2,mem_le_superto
+	store 2,mem_le_init_superto
+	rtn
+
+p_le_prepare_tx: 
+	fetch 1,mem_le_arq
+	bbit1 wak,p_le_prepare_tx_retansmited
+	call power_ctrl_pac_succ_incrs
+	jam 0,mem_le_prepare_tx_retransmited_number
+	fetch 1,mem_empty_count_user
+	nbranch p_le_send_empyt,blank
+	fetch 1,mem_mouse_le_pairing_flag
+	beq 1,p_le_smp_empty
+	fetch 1,mem_le_rxbuf+1  
+	branch le_prepare_tx_1,blank
+	branch le_send_empty      // send empty data when got non empty packet
+p_le_send_empyt:
+	fetch 1,mem_empty_count_user
+	increase -1,pdata
+	store 1,mem_empty_count_user
+	branch le_send_empty
+p_le_smp_empty:
+	jam 3,mem_empty_count_user
+	branch le_prepare_tx_1
+
+p_le_prepare_tx_retansmited:
+	fetch 1,mem_le_prepare_tx_retransmited_number
+	increase 1,pdata
+	store 1,mem_le_prepare_tx_retransmited_number
+	branch power_ctrl_pac_succ_decrs
+
+p_le_prepare_tx_ll:
+	fetch 1,mem_le_txpayload
+	beq LL_START_ENC_RSP,p_le_send_start_enc_rsp
+	beq LL_TERMINATE_IND,p_le_send_terminate_ind
+	branch le_prepare_tx_ll
+
+p_le_send_start_enc_rsp:
+	fetch 1,mem_le_reconn_flag
+	beq 1,p_le_send_reconn_start_enc_rsp
+	call app_ble_start_write
+//	force 1,temp
+//	branch le_send_packet,master
+//	fetch 1,mem_le_pairing_state
+//	bne FLAG_LE_PAIRING_AFTER_AUTH,le_send_start_enc_rsp_end
+//	branch le_send_start_enc_rsp+4
+	branch le_send_start_enc_rsp
+p_le_send_reconn_start_enc_rsp:
+	call p_app_updata_le_param
+	jam 3,mem_le_reconn_enable_notify_timer
+	branch le_send_start_enc_rsp_common
+
+p_le_send_terminate_ind:
+	setarg 0x13
+	istore 1,contw
+	call le_send_terminate_ind
+	setarg 10 // 100ms
+	store 2,mem_le_superto
+	store 2,mem_le_init_superto
+	rtn
+
+p_le_prepare_smp0:
+	fetch 1,mem_le_l2cap
+	beq SMP_PAIRING_RESPONSE,p_le_send_smp_pairing_response 
+	beq SMP_ENCRYPTION_INFORMATION,p_le_send_smp_encryption_information      
+	beq SMP_MASTER_IDENTIFICATION,p_le_send_smp_master_identification_only
+	branch le_prepare_smp0
+p_le_send_smp_master_identification_only:
+	jam 0,mem_mouse_le_pairing_flag
+	branch le_send_smp_master_identification_only
+	
+p_le_send_smp_pairing_response:
+	setarg param_smp_paring_response
+	store 3,mem_le_pres
+	setarg 0x01
+	istore 1,contw
+	setarg param_smp_key_dist0
+	istore 3,contw
+	branch le_send_smp_pairing_response_common
+
+p_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
+	branch le_send_smp_encryption_information_shutter
+
+p_le_prepare_att:
+	fetch 1,mem_le_l2cap
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,p_le_send_att_handle_value_notification
+	beq ATTOP_HANDLE_VALUE_INDICATION,p_le_send_att_handle_value_indication
+	branch le_prepare_att+5
+	
+p_le_send_att_handle_value_indication:
+p_le_send_att_handle_value_notification:
+	fetcht 2,mem_le_att_report2
+	storet 2,mem_le_l2cap+1
+	fetch 1,mem_queue_read_ptr
+	add pdata,1,temp
+	and temp,0x03,temp
+	storet 1,mem_queue_read_ptr
+	mul32 pdata,7,pdata
+	arg mem_queue_buffer0,contr
+	iadd contr,contr
+	ifetch 7,contr
+	store 7,mem_le_l2cap+3
+	arg 14,temp
+	branch le_send_packet
+
+p_le_send_packet:
+	storet 1,mem_le_txlen
+	compare 2,type,3
+	nbranch p_le_send_non_l2cap,true
+	add temp,-4,pdata
+	store 2,mem_le_txpayload
+p_le_send_non_l2cap:
+	fetcht 1,mem_le_arq
+	call p_le_send_check_md
+	branch le_send_non_l2cap1
+p_le_send_check_md:
+	fetch 1,mem_mouse_le_pairing_flag
+	beq 1,enable_blank
+	branch le_xtype_fifo_is_empty
+enable_blank:
+	setarg 0
+	rtn
+	
+p_le_parse0:
+	copy regc,pdata
+	beq LL_CONNECTION_UPDATE_REQ,p_le_parse_connection_update_req
+	beq LL_TERMINATE_IND,p_le_parse_terminate_ind
+	beq LL_ENC_REQ,p_le_parse_enc_req
+	beq LL_PAUSE_ENC_REQ,p_le_parse_pause_enc_rsq
+	branch le_parse0+6
+
+p_le_parse_connection_update_req:
+	jam 0,mem_lpm_mode
+	jam 60,mem_le_slave_update_mult_timer
+	branch le_parse_connection_update_req	
+
+p_le_parse_terminate_ind:
+	call le_parse_terminate_ind
+le_clear_xtype_fifo:
+	setarg 0
+	store 8,mem_le_xtype_fifo
+	rtn
+
+p_le_parse_enc_req:
+	call le_parse_enc_req
+	fetch 1,mem_le_pairing_state
+	rtneq FLAG_LE_PAIRING_AFTER_AUTH
+	branch load_device_list_mode_4_shutter
+
+p_le_parse_pause_enc_rsq:
+	jam XT_LL_PAUSE_ENC_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_le_parse_smp:
+	ifetch 1,contr
+	beq SMP_PAIRING_REQUEST,p_le_parse_smp_pairing_request
+	branch le_parse_smp+3
+p_le_parse_smp_pairing_request:
+	jam 1,mem_mouse_le_pairing_flag
+	jam 3,mem_empty_count_user
+	branch le_parse_smp_pairing_request
+
+p_le_parse_att:
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+	beq ATTOP_WRITE_REQUEST,p_le_parse_att_write_request
+	branch le_parse_att+4
+
+p_le_parse_att_write_request:
+	jam 1,mem_lpm_mode
+	call p_le_parse_att_write_common
+	call le_check_long_packet_patch
+	nrtn zero
+p_le_parse_att_write_request_end:
+	jam ATTOP_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+p_le_parse_att_write_common:
+	fetch 1,mem_le_rxbuf+1
+	increase -7,pdata
+	icopy loopcnt
+	copy loopcnt,regb
+	branch le_parse_att_write_common+6
+
+
+p_le_adv:
+	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 p_le_adv_not_match,match
+	fetch 1,mem_le_req_rcv
+	increase 1,pdata
+	store 1,mem_le_req_rcv
+	fetch 1,mem_le_rxbuf
+	and pdata,0x0f,pdata
+	beq SCAN_REQ,p_le_send_scan_response
+	beq CONNECT_REQ,le_parse_connect_req
+p_le_adv_not_match:	
+	fetch 1,mem_le_ch_mapped
+	bne 39,le_adv_loop
+	random pdata
+	arg 0x1ff,temp
+	iand temp,pdata
+	add pdata,250,pdata	
+p_adv_delay:	
+	increase -1,pdata
+	nop 38
+	nbranch p_adv_delay,blank
+	branch le_adv_not_match+3
+
+p_le_send_scan_response:
+	call le_send_scan_response
+	branch p_le_adv_not_match
+
+p_le_receive_window_size:
+	fetch 4,mem_le_transmit_window
+	arg 60000,temp
+	iadd temp,pdata
+	store 4,mem_le_transmit_window
+	branch le_receive_window_size+16	
+
+
+p_le_lpm_set_mult:
+	disable wake
+	branch p_le_lpm_set_mult_attempt,attempt
+	nbranch p_le_lpm_lost,match
+p_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
+	call le_xtype_fifo_is_empty
+	nbranch lpm_mult_short,blank
+	fetch 1,mem_le_prepare_tx_retransmited_number
+	sub pdata,1,null
+	nbranch lpm_mult_short,positive
+	branch le_lpm_set_mult_attempt+11
+	
+p_le_lpm_lost:
+	fetcht 2,mem_rx_window_sniff  
+	fetch 2,mem_le_rx_window_inc
+	iadd temp,temp 
+	rshift temp,temp
+	fetch 2,mem_le_receive_window 
+	iadd temp,pdata  
+	store 2,mem_le_receive_window  
+	branch lpm_lost
+
+
+p_iicd_read_eep:
+	bmark1 mark_eeprom_size,iicd_read_eep_size_2k_lcadcode
+	branch iicd_read_eep+4
+
+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
+	hstore 4,core_gpio_oe0
+	rtn
+
+p_ui_timer_check_end:
+	copy rega,pdata
+	rtn blank
+	increase -160,temp 	//320btclk = 100ms
+	increase -160,temp
+	set0 28,temp
+	storet 4,mem_ui_timer_last_btclk
+	copy pdata,temp
+	arg mem_ipc_fifo_bt2c51,rega
+	call fifo_is_near_full
+	nrtn blank
+	copy temp,pdata
+	branch ui_timer_check_send_evt
+
+
+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_START_24G,g24_check_51cmd_start_24g
+	beq BT_CMD_STOP_24G,g24_check_51cmd_stop_24g
+	beq BT_CMD_PAIR_24G,g24_check_51cmd_pair_24g
+	beq BT_CMD_START_ADV,p_check_51cmd_adv
+	beq BT_CMD_START_ADV_RECONN,p_check_51cmd_adv_reconn
+	branch check_51cmd_once+9
+
+g24_check_51cmd_start_24g:
+	fetch 1,mem_tx_power_temp
+	store 1,mem_tx_power
+	jam STATE_24G_PAIRING_SUCCESS,mem_new_24g_pairing_sm
+	branch g24_start_24g_mode
+g24_check_51cmd_stop_24g:
+	fetch 1,mem_tx_power_temp
+	store 1,mem_tx_power
+	set0 mark_24g,mark
+	branch le_disable
+g24_check_51cmd_pair_24g:
+	jam TX_POWER_PAIR,mem_tx_power
+	branch g24_start_pairing_sm1
+
+
+p_check_51cmd_adv:
+	set0 mark_24g,mark
+	jam 0,mem_lpm_mode
+	random pdata	//random ble addr
+	store 1,mem_le_lap
+	jam 0,mem_le_reconn_flag
+	fetcht 2,mem_le_att_report2
+	storet 2,mem_le_notify_handle
+	call le_clean_att_list_handle_enable
+	arg ADV_FLAG_BREDR_NOT_SUPPORTED |ADV_FLAG_LIMITED_DISCOVERABLE,regb
+p_le_start_adv:	
+	call p_le_check_adv_flag
+//	setarg ADV_FLAG_BREDR_NOT_SUPPORTED |ADV_FLAG_LIMITED_DISCOVERABLE
+	copy regb,pdata
+	istore 1,contr
+	branch check_51cmd_adv
+	
+p_check_51cmd_adv_reconn:
+	set0 mark_24g,mark
+	jam 0,mem_lpm_mode
+	jam 1,mem_le_reconn_flag
+	fetcht 2,mem_le_att_report2
+	call le_att_check_notification_enable
+	copy rega,contw
+	setarg 1
+	istore 1,contw
+	arg ADV_FLAG_BREDR_NOT_SUPPORTED,regb
+	branch p_le_start_adv
+//	call p_le_check_adv_flag
+//	setarg ADV_FLAG_BREDR_NOT_SUPPORTED
+//	istore 1,contr
+//	branch check_51cmd_adv
+	
+p_le_check_adv_flag:
+	arg mem_le_adv_data,rega
+p_le_check_adv_flag_loop:
+	ifetch 1,rega	//length
+	rtn blank
+	iadd contr,rega
+	ifetch 1,contr	//type
+	rtneq 0x01
+	branch p_le_check_adv_flag_loop
+
+
+p_check_51cmd_once_continue0:
+	call lmo_fifo_check
+	nbranch check_51cmd_restore,blank  //process this cmd next time while lmo fifo is full
+p_check_51cmd_once_continue:
+	fetch 1,mem_fifo_temp
+	bmark0 mark_context,check_51cmd_check_idle
+//	beq BT_CMD_DISCONNECT,p_check_51cmd_disconnect	
+//	beq BT_CMD_UPDATE_SUPERVISION_TO,p_check_51cmd_update_supervision_to
+	beq BT_CMD_STORE_RECONN_INFO_LE,p_rtn
+//	beq BT_CMD_STORE_RECONN_INFO_BT,p_check_51cmd_once_continue_rtn
+	branch check_51cmd_once_continue+2
+/*
+p_check_51cmd_disconnect:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BT_HID_HANDSHAKE,p_check_51cmd_quick_disconnect
+	branch check_51cmd_disconnect
+p_check_51cmd_quick_disconnect:
+	setarg 0
+	store 4,mem_supervision_to
+	rtn	
+p_check_51cmd_update_supervision_to:
+	jam LMP_SUPERVISION_TIMEOUT,mem_lmo_opcode2
+	fetch 2,mem_new_supervision_to
+	store 2,mem_supervision_to
+p_check_51cmd_once_continue_rtn:	
+	rtn
+*/
+p_check_enter_hibernate:
+	jam SYC_TASK_HIBERNATE,mem_c51_flag
+	call p_c51_wait
+p_enter_hibernate_continue:
+//	call pp_gpio_set_before_lpm_common
+	jam 0x5a,mem_hibernate_flag
+	call lpm_write_gpio_wakeup
+	hfetch 4,core_lpm_ctrl
+	set0 15,pdata					
+	hstore 4,core_lpm_reg
+	call lpm_write_ctrl
+	arg param_hibernate_clks,temp
+	branch lpm_sleep
+
+
+p_ipc_timer_check:
+	fetcht 4,mem_ipc_last_check_timer
+	copy clkn_bt,pdata
+	isub temp,pdata
+//	arg 3200,temp	//1s timer
+	arg 1600,temp	//500ms timer
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	rtn blank
+	copy clkn_bt,temp
+	storet 4,mem_ipc_last_check_timer
+	fetcht 2,mem_ipc_bt_timer
+	byteswap temp,temp
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_ipc_bt_timer
+	byteswap pdata,pdata
+	and pdata,0x3,pdata
+	rtnne 0
+	call p_read_adc_enable
+	nrtn user2
+p_adc_check_process:
+	fetch 1,mem_adc_config_flag
+p_rtn:
+	rtn
+
+
+
+
+p_read_adc:
+	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
+	byteswap temp,temp
+	storet 2,mem_adc_current_value
+	rtn
+
+enable_usr2:
+	enable user2
+	rtn
+p_read_adc_enable:
+	disable user2
+	call le_xtype_fifo_is_empty
+	call enable_usr2,blank
+	fetch 1,mem_new_24g_abort_pac
+	ncall enable_usr2,blank
+	rtn
+	
+p_user_le_connect_process:
+	jam 1,mem_ble_read_ipc_fifo_once
+	call p_ipc_rx
+	jam 0,mem_ble_read_ipc_fifo_once
+	rtn
+
+p_ipc_rx:
+	call p_check_ipc_2bt
+	rtn user
+	byteswap pdata,pdata
+	copy pdata,contr
+	call p_ipc_rx_byte
+	store 1,mem_ipc_rx_type
+	beq IPC_TYPE_CMD,p_ipc_rx_cmd
+	beq IPC_TYPE_24G,g24_ipc_rx_24g
+	copy pdata,temp
+	copy contr,rega
+	fetch 1,mem_context
+	bbit0 state_inconn,p_ipc_abondon_rx_data
+	copy rega,contr
+	rtnmark0 mark_context
+	copy temp,pdata
+	beq IPC_TYPE_BLE,p_ipc_rx_ble
+	branch assert
+
+p_ipc_rx_cmd:
+	call p_ipc_rx_byte
+	call p_ipc_rx_byte
+	store 1,mem_fifo_temp
+	call p_ipc_next_rx
+	branch ui_ipc_send_cmd
+
+p_ipc_next_rx:
+	call p_ipc_rx_updata_contr
+	copy contr,temp
+	byteswap temp,temp
+	storet 2,mem_ipc_2bt_read_index
+	rtn
+
+p_ipc_abondon_rx_data:
+	copy rega,contr
+	arg mem_tst_pktcnt_sync,contw
+	branch p_ipc_rx_cpy
+
+p_ipc_rx_cpy:
+	call p_ipc_rx_byte
+	copy pdata,loopcnt
+p_ipc_copy:
+	call p_ipc_cpy_loop
+	branch p_ipc_next_rx
+	
+p_ipc_cpy_loop:
+	call p_ipc_rx_byte
+	istore 1,contw
+	loop p_ipc_cpy_loop
+	rtn
+
+p_ipc_rx_byte:
+	call p_ipc_rx_updata_contr
+	ifetch 1,contr
+	rtn
+
+p_ipc_rx_updata_contr:
+	setarg mem_ipc_2bt_fifo_end
+	isub contr,null
+	nrtn zero
+	arg mem_ipc_2bt_fifo_head,contr
+	rtn
+	
+p_ipc_tx_evt:
+	arg 3,loopcnt
+	arg mem_ipc_tx_evt_buff,contr
+p_ipc_tx_cpy:
+	copy contr,rega
+	fetch 2,mem_ipc_2C51_write_index
+	byteswap pdata,pdata
+	copy pdata,contw
+	copy rega,contr
+p_ipc_tx_loop:
+	ifetch 1,contr
+	istore 1,contw
+	call p_ipc_tx_updata_contw
+	loop p_ipc_tx_loop
+	copy contw,pdata
+	byteswap pdata,pdata
+	store 2,mem_ipc_2C51_write_index
+	rtn
+p_ipc_tx_updata_contw:
+	setarg mem_ipc_2C51_fifo_end
+	isub contw,null
+	nrtn zero
+	arg mem_ipc_2C51_fifo_head,contw
+	rtn
+
+g24_ipc_rx_24g:
+	rtnmark0 mark_24g_conext
+	call p_ipc_rx_byte
+	icopy loopcnt
+	store 1,mem_new_uart_packet
+	branch p_ipc_copy
+
+
+queue_init:
+	setarg 0
+	store 3,mem_queue_write_prt
+	rtn
+
+p_ipc_rx_ble_data:
+	rtnmark1 mark_24g
+	fetch 1,mem_le_switch_send_data
+	rtn blank
+	call p_check_ipc_2bt
+	rtn user
+	byteswap pdata,pdata
+	copy pdata,contr
+	call p_ipc_rx_byte
+	store 1,mem_ipc_rx_type
+	copy contr,rega
+	bne IPC_TYPE_BLE,p_ipc_abondon_rx_data
+	copy contr,regb
+	call le_xtype_fifo_is_near_full
+	nrtn blank
+	branch p_ipc_rx_ble_read_fifo
+	
+p_ipc_rx_ble:
+	copy contr,regb
+	fetch 1,mem_ble_read_ipc_fifo_once
+	rtn blank
+	call le_xtype_fifo_is_empty
+	nrtn blank
+p_ipc_rx_ble_read_fifo:
+	fetcht 2,mem_le_att_report2
+	call le_att_check_notification_enable
+	rtnbit0 0
+	fetch 1,mem_le_switch_send_data
+	rtneq 0
+	fetch 1,mem_bt_read_ipc_count
+	pincrease 1
+	store 1,mem_bt_read_ipc_count
+	fetch 1,mem_queue_write_prt
+	add pdata,1,temp
+	and temp,0x03,temp
+	storet 1,mem_queue_write_prt
+	mul32 pdata,7,pdata
+	arg mem_queue_buffer0,contw
+	iadd contw,contw
+	copy regb,contr
+	call p_ipc_rx_byte
+	icopy loopcnt
+	call p_ipc_copy
+	call p_ipc_rx_ble_read_fifo_first_time
+	rtn user2
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_ipc_rx_ble_read_fifo_first_time:
+	disable user2
+	fetch 1,mem_ble_send_flag
+	rtneq 5
+	enable user2
+	increase 1,pdata
+	store 1,mem_ble_send_flag
+	sub pdata,1,null
+	nrtn positive
+	jam BT_EVT_LE_NOTIFY_ENABLE,mem_ipc_tx_evt
+	branch p_ipc_tx_evt
+
+//p_device_check_lock:
+//	fetch 2,mem_sdp_remote_cid
+//	branch app_put_lpm_wake_lock,blank
+//	branch app_get_lpm_wake_lock
+
+
+p_ipc_init:
+	setarg mem_ipc_2bt_fifo_head
+	byteswap pdata,pdata
+	store 2,mem_ipc_2bt_read_index
+	store 2,mem_ipc_2bt_write_index
+	setarg mem_ipc_2C51_fifo_head
+	byteswap pdata,pdata
+	store 2,mem_ipc_2C51_read_index
+	store 2,mem_ipc_2C51_write_index
+	rtn
+
+p_device_init:
+
+	arg 8,temp
+	call gpio_config_output
+	arg 5,temp
+	call gpio_config_output
+
+
+	call le_modified_name_adv
+//	setarg p_device_check_lock
+//	store 2,mem_cb_check_wakelock
+	jam 0,mem_c51_flag
+	jam 6,mem_connection_options
+	call app_lpm_mult_enable
+//	setarg p_device_bt_lpm_before
+//	store 2,mem_cb_before_lpm
+	setarg p_c51_user_event
+	store 2,mem_cb_bb_event_process
+//	setarg p_device_idle
+//	store 2,mem_cb_idle_process
+	setarg p_user_le_connect_process
+//	setarg p_ipc_rx
+	store 2,mem_cb_le_process
+	setarg p_device_before_hibernate
+	store 2,mem_cb_before_hibernate
+	ncall p_ipc_init,wake
+	call p_device_wakeup,wake
+	call lpm_disable_exen_output
+	fetch 1,mem_hibernate_flag
+	beq 0x5a,p_device_init_init_hibwake
+	branch p_deveice_init_wake,wake
+	fetch 1,mem_tx_power
+	store 1,mem_tx_power_temp
+	call power_ctrl_pac_succ_cnt_init
+	fetch 2,mem_adc_0v
+	byteswap pdata,pdata
+	store 2,mem_adc_0v
+	fetch 2,mem_adc_3v
+	byteswap pdata,pdata
+	store 2,mem_adc_3v
+	call p_init_adc_from_otp
+	call g24_set_device_addr
+	fetch 8,mem_temp
+	nbranch p_deveice_init_reset,blank
+	fetch 2,0x4ad4
+	byteswap pdata,pdata
+	branch p_deveice_init_reset,blank
+	store 2,mem_adc_3v
+p_deveice_init_reset:
+	jam BT_EVT_RESET,mem_ipc_tx_evt
+p_device_init_common:
+	fetch 1,mem_short_lpm_enable
+	nbranch p_24g_short_lpm_process,blank
+	call p_adc_check_process
+	call p_ipc_tx_evt
+	call p_ipc_rx_ble_data
+	hjam START_C51_CORE,core_docd_ctrl	
+	rtn
+p_24g_short_lpm_process:
+	call lpm_recover_clk,wake
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	copy clkn_bt,pdata
+	store 3,mem_ckln_24g_short_lpm
+p_24g_short_lpm_process_loop:
+	fetch 2,mem_ui_state_map
+	rtnbit1 UI_STATE_BLE_ADV
+	rtnbit1 UI_STATE_BT_DISCOVERY
+	call app_process_idle
+	call g24_short_lpm_transmit_process
+	branch p_24g_short_lpm_process_loop
+
+p_device_wakeup:
+	copy auxcnt,pdata
+	bmark0 mark_24g,p_device_bt_wakeup
+g24_delay_long_sleep:
+//	copy auxcnt,pdata
+	branch g24_direct_long_sleep,blank	//sleep timer wake
+g24_delay_long_sleep2:	
+	jam 0xbb,mem_new_24g_delay_long_sleep_maxcnt		//io int wake,abort 150ms
+	rtn
+g24_direct_long_sleep:
+	jam 0x00,mem_new_24g_delay_long_sleep_maxcnt
+	fetch 1,mem_new_24g_key_wheel_event
+	rtn blank
+	jam 0,mem_new_24g_key_wheel_event
+	branch g24_delay_long_sleep2
+
+p_device_bt_wakeup:
+//	copy auxcnt,pdata
+	branch p_device_bt_wakeup_check,blank	//sleep timer wake
+	jam 2,mem_bt_wakeup_from_long_mult
+	rtn
+p_device_bt_wakeup_check:
+	fetch 1,mem_bt_motion_event
+	rtn blank
+	jam 0,mem_bt_motion_event
+	jam 1,mem_bt_wakeup_from_long_mult
+	rtn
+	
+p_deveice_init_wake:
+	jam BT_EVT_WAKEUP,mem_ipc_tx_evt
+	branch p_device_init_common
+p_device_init_init_hibwake:
+	copy auxcnt,pdata
+	branch p_enter_hibernate_continue,blank
+	call init_lmp_work
+	call l2cap_init_work
+	setarg 0
+	store 8,mem_context
+	store 2,mem_ui_state_map
+	store 2,mem_ipc_bt_timer
+	store 2,mem_ipc_c51_timer
+	jam BT_EVT_HIBERNATE_WAKE,mem_ipc_tx_evt
+	branch p_device_init_common
+
+p_init_adc_from_otp:
+	call otp_enable_chgpump
+	setarg 0x7e2
+	arg mem_temp,rega
+	arg 12,temp
+	call otpd_read_data
+	call otp_disable_chgpump
+	fetch 8,mem_temp
+	rtn blank
+	fetch 1,mem_adc_config_flag
+	rtn
+
+
+
+	
+
+p_device_before_hibernate: 
+	enable user
+	hfetch 4,0x8138
+	setflag user,26,pdata
+	hstore 4,core_lpm_reg
+	call lpm_write_ctrl
+	jam 1,mem_lpm_current_mult
+p_device_bt_lpm_before:
+	rtn
+
+//p_device_idle:
+//	rtn
+
+p_c51_user_event:
+	copy regc,pdata
+	and_into BT_EVT_TIMER_MASK,pdata
+	rtneq BT_EVT_TIMER_INIT
+	copy regc,pdata
+	store 1,mem_ipc_tx_evt
+	branch p_ipc_tx_evt
+
+
+g24_pair_init:
+	jam 0,mem_new_24g_pid
+	jam G24_PAIR_CH,mem_new_24g_ch
+	fetch 4,mem_new_24g_paring_addr
+g24_update_addr_and_synccrc8:	
+	store 4,mem_new_24g_addr
+	branch g24_syncword_crc8
+		
+//2.4g freq hop related.
+g24_ch:
+	fetcht 1,mem_new_24g_current_ch_number
+	call g24_ch_calc
+	increase 1,temp
+	and_into 3,temp //map size =4
+	storet 1,mem_new_24g_current_ch_number
+	rtn
+	
+g24_ch_calc:
+	fetch 1,mem_new_24g_addr	
+	and_into 0x03,pdata
+	mul32 pdata,4,rega			//24addr low bit0 bit1 ,00-map1,01-map2,10-map3,11-map4
+	setarg mem_new_24g_ch_map1
+	iadd rega,pdata
+	iadd temp,contr
+	ifetch 1,contr
+	store 1,mem_new_24g_ch
+	rtn
+
+g24_set_device_addr:
+	fetch 4,mem_temp	//adc data from otp
+	store 4,mem_new_24g_device_addr	
+	nrtn blank
+	fetch 4,mem_lap
+	store 4,mem_new_24g_device_addr
+	rtn
+
+
+g24_transmit_rf_sta_init:
+	jam 1,mem_new_24g_rf_last_sta
+	jam 0,mem_new_24g_sync_cnt
+g24_transmit_rf_ctrl_clear:	
+	fetch 1,mem_new_24g_data_type
+	and_into bits_data,pdata
+	store 1,mem_new_24g_data_type
+	rtn
+	
+g24_hop_ch_enable:
+	fetch 1,mem_new_24g_data_type
+	set1 bit_hop,pdata
+	store 1,mem_new_24g_data_type
+	//update txpayload
+	store 1,mem_new_24g_txpayload
+	rtn
+g24_hop_ch_disable:
+	fetch 1,mem_new_24g_data_type
+	set0 bit_hop,pdata
+	store 1,mem_new_24g_data_type
+	rtn	
+
+g24_transmit_hop_pac_fail:
+	call power_ctrl_pac_succ_decrs
+	fetch 1,mem_new_24g_rf_work_stage
+	beq 1,g24_transmit_hop_pac_fail_wo_hop
+	beq 2,g24_transmit_hop_pac_fail_hop_stage2
+	rtn
+g24_transmit_hop_pac_fail_wo_hop:
+	jam 2,mem_new_24g_sync_cnt
+g24_transmit_hop_pac_fail_stage1:	
+	jam 0,mem_new_24g_hop_pac_retry
+	jam 0,mem_new_24g_rf_last_sta
+	branch g24_transmit_rf_ctrl_clear
+
+g24_transmit_hop_pac_fail_hop_stage2:
+	jam 0,mem_new_24g_rf_hop_ch
+	branch g24_transmit_hop_pac_fail_stage1
+
+g24_transmit_pac_fail_hop_stage3:
+	fetch 2,mem_new_24g_txfail_cnt
+	increase 1,pdata
+	store 2,mem_new_24g_txfail_cnt
+	bbit1 6,g24_tx_attempt_fail	//1024ms * 8
+	fetch 1,mem_new_24g_rf_hop_ch
+	beq 1,g24_rf_hop_fastly
+	jam 1,mem_new_24g_rf_hop_ch
+g24_rf_hop_attemp_again:
+	fetch 1,mem_new_24g_rf_hop_ch
+	bne 1,g24_transmit_rf_ctrl_clear
+g24_rf_hop_fastly:
+	fetch 1,mem_new_24g_hop_fastly_cnt
+	increase 1,pdata
+	store 1,mem_new_24g_hop_fastly_cnt
+	beq 4,g24_rf_hop_fastly_exit
+	call g24_ch
+	jam 2,mem_new_24g_max_retry
+	branch g24_transmit_packet
+
+g24_rf_hop_fastly_exit:
+	call power_ctrl_pac_succ_decrs
+	jam 0,mem_new_24g_hop_fastly_cnt
+	branch g24_transmit_rf_ctrl_clear
+
+g24_transmit_hop_pac_succ_wo_hop:
+	jam 2,mem_new_24g_sync_cnt
+g24_transmit_hop_pac_succ:
+	jam 1,mem_new_24g_rf_last_sta
+	jam 0,mem_new_24g_rf_hop_ch
+	branch g24_transmit_rf_ctrl_clear
+
+g24_transmit_succ_rf_config:
+	fetch 1,mem_new_24g_rf_work_stage
+	beq 3,g24_transmit_hop_pac_succ
+	fetch 1,mem_new_24g_data_type
+	isolate0 bit_hop,pdata
+	branch g24_transmit_rf_sta_init,true
+	fetch 1,mem_new_24g_rf_work_stage
+	beq 1,g24_transmit_hop_pac_succ_wo_hop
+	beq 2,g24_transmit_hop_pac_succ
+	rtn
+
+g24_rf_sta_check:
+	fetch 1,mem_new_24g_pairing_sm
+	rtnne STATE_24G_PAIRING_SUCCESS
+	call g24_rf_laststa_synccnt_check
+	ncall g24_rf_sync_cnt_check,user2
+	rtn
+
+g24_rf_laststa_synccnt_check:
+	disable user2
+	fetch 1,mem_new_24g_rf_last_sta
+	rtnne 1
+	fetch 1,mem_new_24g_sync_cnt
+	rtnne 0
+	jam 1,mem_new_24g_rf_work_stage
+	jam 4,mem_new_24g_max_retry
+	branch enable_usr2
+
+g24_rf_sync_cnt_check:
+	fetch 1,mem_new_24g_sync_cnt
+	branch g24_rf_hop_attemp,blank
+	increase -1,pdata
+	store 1,mem_new_24g_sync_cnt
+	jam 2,mem_new_24g_rf_work_stage
+	call g24_ch
+	jam 4,mem_new_24g_max_retry
+	rtn
+
+g24_rf_hop_attemp:
+	jam 3,mem_new_24g_rf_work_stage
+	fetch 1,mem_new_24g_rf_hop_ch
+	nbranch g24_rf_hop_attemp_again,blank
+	call g24_ch
+	jam 2,mem_new_24g_max_retry
+	rtn
+	
+
+g24_transmit_process:
+	rtnmark0 mark_24g
+	set1 mark_24g_conext,mark
+	fetcht 4,mem_new_24g_tx_btclk
+	copy clkn_bt,pdata
+	isub temp,null
+	ncall g24_timer_timeout,positive
+	copy pdata,regb
+	fetch 4,mem_new_24g_tx_btclk
+	fetcht 1,mem_new_24g_interval
+	iadd temp,temp
+	copy regb,pdata
+	isub temp,null
+	nbranch g24_transmit_exit,positive
+	set0 28,pdata
+	store 4,mem_new_24g_tx_btclk
+	call g24_interval_calibrate
+	call g24_txdata_prep
+	branch g24_no_data_to_tx,user
+	call g24_rf_sta_check
+g24_transmit_start:
+	call g24_transmit_packet
+	fetch 1,mem_new_24g_pairing_sm
+	sub pdata,STATE_24G_PAIRING_SUCCESS,null
+	call power_ctrl_start,zero
+g24_transmit_exit:
+	set0 mark_24g_conext,mark
+	rtn
+
+g24_timer_timeout:
+	rtn zero
+	set1 28,pdata
+	rtn
+
+g24_interval_calibrate:
+	fetch 1,mem_new_24g_pac_index
+	increase 1,pdata
+	store 1,mem_new_24g_pac_index
+	beq 4,g24_interval_max
+	beq 5,g24_interval_min
+	rtn
+g24_interval_max:
+	fetch 1,mem_new_24g_interval_max
+	store 1,mem_new_24g_interval
+	rtn
+g24_interval_min:
+	jam 0,mem_new_24g_pac_index
+	fetch 1,mem_new_24g_interval_min
+	store 1,mem_new_24g_interval
+	rtn
+
+	
+g24_txdata_prep:
+	fetch 1,mem_new_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,g24_pairing_sm	
+	//nop 1200 // wait for 8051 preparing data
+	call p_ipc_rx
+	branch g24_txdata_prep_ipc_nodata,user
+	fetch 1,mem_ipc_rx_type
+	bne IPC_TYPE_24G,enable_usr
+g24_txdata_prep_packeage_data:
+//ifdef OTA_ENABLE
+//	fetch 1,mem_new_24g_ota_enable
+//	beq 1,g24_txdata_skip_short_lpm
+//endif	
+//	fetch 1,mem_short_data_wheel
+//	call g24_lpm_short_increase,blank
+//g24_txdata_skip_short_lpm:
+//	fetch 1,mem_short_data_wheel
+//	ncall g24_enter_long_sleep,blank
+	call g24_package_data
+	call g24_transmit_prep
+g24_txdata_enable_tx:
+	jam ENSURE_ON_24G,mem_new_24g_ensure
+	rtn
+
+g24_enter_long_sleep:
+	jam 0,mem_short_lpm_tx_cnt
+	jam 0,mem_short_lpm_enable
+	jam 10,mem_new_24g_enter_lpm_timer
+	rtn
+	
+g24_txdata_prep_ipc_nodata:
+//	fetch 1,mem_short_lpm_enable
+//	nbranch g24_short_lpm_txdata_prep,blank
+g24_txdata_last_pac:
+	fetch 1,mem_new_24g_ensure
+	beq ENSURE_ON_24G,disable_usr
+	rtn
+
+
+g24_short_lpm_txdata_prep:
+g24_package_data:
+	fetch 1,mem_new_24g_delay_long_sleep_maxcnt
+	store 1,mem_new_24g_delay_long_sleep_cnt
+
+	fetch 1,mem_new_uart_packet
+	copy pdata,rega
+	arg mem_new_uart_packet+1,regb
+	jam 0,mem_new_24g_abort_pac
+g24_package_data_pc_bind:
+	call g24_transmit_rf_ctrl_clear
+	store 1,mem_new_24g_common_temp
+	//total length
+	add rega,1,temp
+	arg mem_new_24g_common_temp+1,contw
+g24_package_user_data:
+	//user data: max 30 bytes
+	copy rega,loopcnt
+	copy regb,contr
+	call memcpy
+	arg mem_new_24g_common_temp,rega
+g24_put_data_in_buff:
+	rtnmark0 mark_24g_conext
+	storet 1,mem_new_24g_datalen
+	copy temp,loopcnt
+	arg mem_new_24g_txbuf,contw
+	copy rega,contr
+	branch memcpy
+
+
+//output: 1BYTE crc8
+g24_syncword_crc8:
+	arg 0,rega
+	arg 4,loopcnt
+	arg mem_new_24g_addr,contr
+g24_syncword_crc8_loop:
+	ifetch 1,contr
+	iadd rega,rega
+	loop g24_syncword_crc8_loop
+	copy rega,pdata
+	store 2,mem_new_24g_syncword
+	fetch 1,mem_new_24g_syncword
+	fetcht 1,mem_new_24g_syncword+1
+	iadd temp,pdata
+	store 1,mem_new_24g_syncword_crc8
+	rtn
+
+g24_transmit_prep:
+// total length
+	fetch 1,mem_new_24g_datalen
+	increase 2,pdata
+	store 1,mem_new_24g_txlen
+// data type
+	fetch 1,mem_new_24g_data_type
+	store 1,mem_new_24g_txpayload
+//prepare 5bit payload length, 2bit PID, 1bit NO_ACK
+	fetch 1,mem_new_24g_datalen
+	lshift3 pdata,pdata
+	fetcht 1,mem_new_24g_pid
+	and temp,0x03,temp
+	lshift temp,temp
+	ior temp,pdata
+	fetcht 1,mem_new_24g_no_ack
+	iadd temp,pdata
+	istore 1,contw
+//prepare payload data
+	fetch 1,mem_new_24g_datalen
+	iforce loopcnt
+	arg mem_new_24g_txbuf,contr
+	branch memcpy
+
+g24_send_abort_packet:
+	jam 1,mem_new_24g_abort_pac
+	jam 0,mem_new_24g_rf_hop_ch
+	call g24_transmit_rf_ctrl_clear
+	store 1,mem_new_24g_common_temp
+	setarg 0
+	store 7,mem_new_24g_common_temp+1
+	fetch 4,mem_new_24g_device_addr
+	store 4,mem_new_24g_common_temp+8
+	arg 12,temp
+	arg mem_new_24g_common_temp,rega
+	call g24_put_data_in_buff
+	fetch 1,mem_new_24g_data_type
+	set1 bit_abort,pdata
+	store 1,mem_new_24g_data_type
+	call g24_transmit_prep
+	call g24_txdata_enable_tx
+	branch g24_transmit_start
+
+g24_no_data_to_tx:
+	rtn
+//	fetch 1,mem_short_lpm_enable
+//	branch g24_no_data_to_tx_short_lpm_disable,blank
+//	call g24_lpm_short_decrease
+//	branch g24_short_lpm_sleep
+	
+g24_no_data_to_tx_short_lpm_disable:
+	fetch 1,mem_new_24g_abort_pac
+	branch g24_send_abort_packet,blank
+	fetcht 1,mem_new_24g_delay_long_sleep_cnt
+	increase 1,temp
+	storet 1,mem_new_24g_delay_long_sleep_cnt
+	fetch 1,mem_new_24g_delay_long_sleep_maxcnt
+	isub temp,null
+	rtn positive
+	jam 0,mem_new_24g_delay_long_sleep_cnt
+g24_lpm_long_sleep:
+	call p_check_ipc_for_lpm
+	nrtn user
+	fetch 1,mem_c51_lmp_lock
+	nrtn blank
+	fetch 1,mem_new_24g_enter_lpm_timer
+	nrtn blank
+	jam 0,mem_short_data_wheel
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 8,mem_new_24g_enter_hibernate
+	call clk2lpo
+	storet 4,mem_sleep_counter
+  	branch lpm_sleep
+
+g24_lpm_short_increase:
+	fetch 1,mem_wakup_from_power_flag
+	isolate0 2,pdata
+	branch g24_lpm_short_increase_poweron,true
+	fetch 1,mem_short_lpm_tx_cnt
+	rtneq 5
+	increase 1,pdata
+	store 1,mem_short_lpm_tx_cnt
+	rtnne 5
+g24_lpm_short_enable:	
+	jam 1,mem_short_lpm_enable
+	rtn
+
+g24_lpm_short_increase_poweron:		//wait for lpo_calibration completely
+	fetch 1,mem_short_lpm_tx_cnt
+	rtneq 20
+	increase 1,pdata
+	store 1,mem_short_lpm_tx_cnt
+	rtnne 20
+	fetch 1,mem_wakup_from_power_flag
+	set1 2,pdata
+	store 1,mem_wakup_from_power_flag
+	branch g24_lpm_short_enable
+
+g24_lpm_short_decrease:
+	fetch 1,mem_short_lpm_tx_cnt
+	rtn blank
+	increase -1,pdata
+	store 1,mem_short_lpm_tx_cnt
+	nrtn blank
+	jam 0,mem_short_lpm_enable
+	rtn
+	
+g24_short_lpm_transmit_process:
+	set1 mark_24g_conext,mark
+	call p_ipc_rx
+	branch g24_short_lpm_transmit_process_ipc_nodata,user
+	fetch 1,mem_ipc_rx_type
+	beq IPC_TYPE_24G,g24_short_lpm_txdata_data_ready
+g24_short_lpm_transmit_process_ipc_nodata:
+	fetch 1,mem_send_data_24g_short_lpm
+	beq SHORT_LPM_STATE_DATA,g24_short_lpm_txdata_prep_buff_data
+	beq SHORT_LPM_STATE_NODATA,g24_no_data_to_tx
+	beq SHORT_LPM_STATE_BUTTON_WHEEL,g24_short_lpm_transmit_process_button_wheel
+	rtn
+
+g24_short_lpm_transmit_process_button_wheel:
+	jam 0,mem_short_lpm_tx_cnt
+	jam 0,mem_short_lpm_enable
+g24_short_lpm_txdata_prep_buff_data:
+	call g24_lpm_short_increase
+	jam 0,mem_send_data_24g_short_lpm
+	arg 7,loopcnt
+	copy loopcnt,pdata
+	store 1,mem_new_uart_packet
+	arg mem_hid_buff,contr
+	call memcpy
+	disable user
+g24_short_lpm_txdata_data_ready:
+	call g24_txdata_prep_packeage_data
+	call g24_rf_sta_check
+	call g24_transmit_packet
+	call power_ctrl_start
+g24_short_lpm_sleep:
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_lpm_mode
+	rtn blank
+	fetch 1,mem_short_data_wheel
+	beq 1,g24_short_lpm_sleep2
+	setarg 0
+	store 8,mem_gpio_wakeup_low
+g24_short_lpm_sleep2:
+	call g24_short_lpm_select_param
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	fetcht 3,mem_ckln_24g_short_lpm
+	copy clkn_bt,pdata
+	isub temp,pdata
+	and_into 0xff,pdata
+	arg 3750,temp		//312.5 x 12  = 1875
+	imul32 temp,temp  // btclk to system clk @ 12MHz
+	fetch 4,mem_short_lpm_interval_param
+	isub temp,pdata	//8ms - PassedTime
+	branch lpm_dispatch_sleep,positive
+	fetch 1,mem_lpm_xtalcnt // sleep the shortest time
+	increase 1,pdata
+	store 4,mem_sleep_counter
+	branch lpm_dispatch_sleep+7
+g24_short_lpm_select_param:
+	setarg G24_8125_INTERVAL_PARAM
+	store 4,mem_short_lpm_interval_param
+	fetch 1,mem_short_lpm_interval_cnt
+	increase 1,pdata
+	bne 5,g24_short_lpm_select_param_cont
+	setarg 0
+g24_short_lpm_select_param_cont:
+	store 1,mem_short_lpm_interval_cnt
+	rtnbit0 0
+	setarg G24_78125_INTERVAL_PARAM
+	store 4,mem_short_lpm_interval_param
+	rtn
+
+
+g24_transmit_packet:
+	jam 1,mem_led_gpio8_blink_timer
+	
+	jam 0,mem_new_24g_retry
+g24_transmit_loop:
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	call g24_transmit_receive_ack
+	fetch 1,mem_new_24g_no_ack	//tx noack
+	rtneq no_ack_24g
+	nbranch g24_retransmit,sync
+	nbranch g24_retransmit,user3
+
+	jam 1,mem_led_gpio5_blink_timer
+	
+	call g24_ackpayload_parse
+	call power_ctrl_pac_succ_incrs
+g24_transmit_next_packet:
+	fetch 1,mem_new_24g_pid
+	increase 1,pdata
+	store 1,mem_new_24g_pid
+	fetch 1,mem_new_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,g24_paring_mode_start
+	call g24_transmit_succ_rf_config
+g24_transmit_abandon:
+	setarg 0
+	store 2,mem_new_24g_txfail_cnt
+	store 1,mem_new_24g_get_ack_fail
+	store 1,mem_new_24g_hop_pac_retry
+	jam ENSURE_OFF_24G,mem_new_24g_ensure
+	rtn
+g24_paring_mode_start:
+	call power_ctrl_pac_succ_cnt_init
+	branch g24_paring_mode
+
+g24_transmit_receive_ack:
+	disable user3
+	call g24_transmit
+	fetch 1,mem_new_24g_no_ack
+	beq no_ack_24g,g24_transmit_no_ack	//tx no ack
+	force 0,radio_ctrl
+	fetch 4,mem_new_24g_addr
+	iforce access
+	fetcht 1,mem_last_freq
+	call set_freq_rx
+	call rf_rx_enable
+	call g24_receive_rxon
+	call g24_end_of_packet,user3
+	rtn
+g24_transmit_no_ack:
+	call g24_end_of_packet
+	branch g24_transmit_next_packet
+
+g24_retransmit:
+	fetch 1,mem_new_24g_get_ack_fail
+	increase 1,pdata
+	store 1,mem_new_24g_get_ack_fail
+	fetch 1,mem_new_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,g24_tx_paring_retry
+	fetcht 1,mem_new_24g_retry
+	increase 1,temp
+	storet 1,mem_new_24g_retry
+	fetch 1,mem_new_24g_max_retry
+	isub temp,pdata
+	nbranch g24_transmit_loop,blank
+	fetch 1,mem_new_24g_rf_work_stage
+	beq 3,g24_transmit_pac_fail_hop_stage3
+	fetch 1,mem_new_24g_hop_pac_retry
+	increase 1,pdata
+	store 1,mem_new_24g_hop_pac_retry
+	beq 2,g24_transmit_hop_pac_fail
+	call g24_hop_ch_enable
+	jam 1,mem_new_24g_max_retry
+	branch g24_transmit_packet
+
+g24_tx_paring_retry:
+	fetch 1,mem_new_24g_get_ack_fail
+	rtnne 0xff
+	jam 0,mem_new_24g_get_ack_fail
+	branch g24_stop_24g_mode
+
+g24_tx_attempt_fail:
+	setarg 0
+	store 2,mem_new_24g_txfail_cnt
+	jam 0,mem_lpm_mode
+	jam 0,mem_short_lpm_tx_cnt
+	jam 0,mem_short_lpm_enable
+g24_stop_24g_mode:
+	jam BT_EVT_24G_ATTEMPT_FAIL,mem_ipc_tx_evt
+	branch p_ipc_tx_evt
+
+g24_ackpayload_parse:
+	call g24_read_len_pid_crc
+	fetch 1,mem_new_24g_rxdata_length	//ack payload length 
+	rtn blank
+	iforce loopcnt
+	arg mem_new_24g_rxbuf+2,contr
+	arg mem_new_24g_rxpayload,contw	//ack payload buffer 
+	branch memcpy
+
+g24_read_len_pid_crc:
+//read control
+	fetch 1,mem_new_24g_rxbuf+1
+	rshift3 pdata,pdata
+	store 1,mem_new_24g_rxdata_length
+//get crc
+	increase 1,pdata
+	arg mem_new_24g_rxbuf+1,contr
+	iadd contr,contr
+	ifetch 3,contr
+	store 3,mem_new_24g_sta_crc
+//read pid
+	fetch 1,mem_new_24g_rxbuf+1
+	rshift pdata,pdata
+	and pdata,0x03,pdata
+	store 1,mem_new_24g_sta_pid
+	rtn
+
+
+g24_prep:
+	disable enable_crc
+	disable enable_white
+	setarg 0x555555
+	iforce crc24_init
+	fetch 1,mem_new_24g_ch
+	reverse pdata,temp
+	set1 1,temp
+	rshift temp,white_init	
+	rtn
+
+g24_set_freq_tx:
+	call set_sync_on
+	fetcht 1,mem_new_24g_ch
+	branch set_freq_tx
+
+g24_transmit:
+	call le_enable
+	fetch 4,mem_new_24g_addr
+	iforce access
+	call g24_prep
+	call g24_set_freq_tx
+	set1 TXGFSK,radio_ctrl
+	enable encode_fec0
+	enable is_tx
+	disable is_rx
+	rshift16 access,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	inject mod,40
+	disable encode_fec0
+	enable encode_fec1
+	enable enable_white
+	enable enable_crc
+
+	fetch 1,mem_new_24g_syncword_crc8
+	inject mod,8
+	
+	fetch 1,mem_new_24g_txlen
+	iforce loopcnt
+	arg mem_new_24g_txpayload,contr
+g24tr_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop g24tr_loop
+	enable enable_parity
+	inject mod,24	//crc
+	disable enable_parity
+	until null,tx_clear
+	nop 100
+	disable encode_fec0
+	disable encode_fec1
+	rtn
+
+g24_receive_packet:
+	call le_enable
+	fetch 4,mem_new_24g_addr
+	iforce access
+	call set_sync_on
+	fetcht 1,mem_new_24g_ch
+	call set_freq_rx
+	setarg param_pll_setup
+	call sleep
+	call rf_rx_enable
+g24_receive_rxon:
+	call g24_prep
+	disable user3
+	enable decode_fec0	
+	enable is_rx
+	disable is_tx
+	enable swfine
+	fetch 2,mem_new_24g_rx_window
+	iforce stop_watch
+	correlate null,timeout
+	nbranch g24_sync_timeout,sync
+	disable decode_fec0
+	enable decode_fec1
+	enable enable_white
+	enable enable_crc
+
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_new_24g_get_syncword_crc8
+	call g24_syncword_crc8
+	fetcht 1,mem_new_24g_get_syncword_crc8
+	isub temp,null
+	nbranch g24_end_of_packet,zero
+
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_new_24g_rxbuf	//device id
+	fetch 1,mem_new_24g_mode
+	sub pdata,rx_24g,null
+	branch g24_receive_skip,zero
+	fetch 1,mem_new_24g_rxbuf
+	fetcht 1,mem_new_24g_data_type
+	icompare bits_data,temp
+	nbranch g24_end_of_packet,true
+g24_receive_skip:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	rshift3 pdata,pdata
+	and pdata,0x1f,loopcnt	//max payload: 32bytes
+	branch g24rx_nopayload,zero
+g24rx_loop:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop g24rx_loop
+g24rx_nopayload:
+	//receive rssi hex
+	copy contw,rega
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_rssi_hex_received
+	copy rega,contw
+	
+	parse demod,bucket,24
+	enable swfine
+	arg param_sifs,stop_watch
+	rshift32 pdata,pdata
+	rshift16 pdata,pdata
+	istore 3,contw
+	disable decode_fec1
+	branch g24_end_of_packet,crc_failed
+	enable user3
+	fetch 1,mem_last_freq
+	add pdata,0,rega
+	call rf_write_freq
+	disable decode_fec0
+	call set_sync_on
+	fetch 1,mem_rssi_hex_received
+	copy pdata,rega
+	branch rssi_signal
+
+g24_end_of_packet:
+	disable encode_fec1
+	disable decode_fec1
+	branch end_of_packet
+
+g24_sync_timeout:
+	branch g24_end_of_packet
+
+power_ctrl_pac_succ_cnt_init:
+	jam 1,mem_power_ctrl_level
+	jam 0,mem_power_ctrl_pac_succ_cnt
+	rtn
+power_ctrl_pac_succ_incrs:
+	fetch 1,mem_power_ctrl_pac_succ_cnt
+	increase 1,pdata
+	store 1,mem_power_ctrl_pac_succ_cnt
+	rtn
+power_ctrl_pac_succ_decrs:
+	fetch 1,mem_power_ctrl_pac_succ_cnt
+	sub pdata,1,null
+	ncall power_ctrl_pac_succ_cnt_reinit,positive
+	fetch 1,mem_power_ctrl_pac_succ_cnt
+	rtneq 0
+	increase -1,pdata
+	store 1,mem_power_ctrl_pac_succ_cnt
+	rtn
+power_ctrl_pac_succ_cnt_reinit:
+	jam 2,mem_power_ctrl_pac_succ_cnt
+	rtn
+
+power_ctrl_start:
+	arg mem_rssi_signal_buf,rega
+	call rssi_average
+	storet 1,mem_rssi_avg_received
+	isolate1 mark_24g,mark
+	call power_ctrl_24g_dis_max,true
+	ncall power_ctrl_le_dis_max,true
+	isub temp,null
+	nbranch power_ctrl_txpower_incrs,positive
+
+	fetch 1,mem_power_ctrl_pac_succ_cnt
+	sub pdata,1,null
+	nbranch power_ctrl_txpower_decrs_check,positive
+	fetch 1,mem_power_ctrl_pac_succ_cnt
+	beq 0,power_ctrl_txpower_incrs
+	rtn
+
+power_ctrl_24g_dis_max:
+	setarg RSSI_DIS_MAX_24G
+	rtn
+power_ctrl_24g_dis_min:
+	setarg RSSI_DIS_MIN_24G
+	rtn	
+power_ctrl_le_dis_max:
+	setarg RSSI_DIS_MAX_BLE
+	rtn
+power_ctrl_le_dis_min:
+	setarg RSSI_DIS_MIN_BLE
+	rtn
+	
+power_ctrl_txpower_decrs_check:
+	fetch 1,mem_power_ctrl_pac_succ_cnt
+	rtnne 70
+	jam 0,mem_power_ctrl_pac_succ_cnt
+power_ctrl_txpower_decrs:
+	fetcht 1,mem_rssi_avg_received
+	isolate1 mark_24g,mark
+	call power_ctrl_24g_dis_min,true
+	ncall power_ctrl_le_dis_min,true
+	isub temp,null
+	nrtn positive
+	fetch 1,mem_power_ctrl_level
+	beq 0,power_ctrl_decrs_level0
+	increase -1,pdata
+	store 1,mem_power_ctrl_level
+	beq 0,power_ctrl_decrs_level0
+power_ctrl_decrs_level1:
+power_ctrl_incrs_level1:	//0dBm
+	hjam 0xd0,0x8955
+	hjam 0xe0,0x8956
+	hjam 0x4c,0x8957
+	hjam 0x6c,0x8958
+	hjam 0x50,0x8959
+	jam 0x01,mem_tx_power
+	rtn
+	
+power_ctrl_txpower_incrs:
+	fetch 1,mem_power_ctrl_level
+	beq 2,power_ctrl_incrs_level2
+	increase 1,pdata
+	store 1,mem_power_ctrl_level
+	beq 1,power_ctrl_incrs_level1
+power_ctrl_incrs_level2:	//+6dBm
+	hjam 0xd0,0x8955
+	hjam 0xe0,0x8956
+	hjam 0x4c,0x8957
+	hjam 0x3c,0x8958
+	hjam 0x10,0x8959
+	jam 0x04,mem_tx_power
+	rtn
+	
+power_ctrl_decrs_level0: //-5dBm
+	hjam 0xd0,0x8955
+	hjam 0xc0,0x8956
+	hjam 0x4c,0x8957
+	hjam 0x6c,0x8958
+	hjam 0x50,0x8959	
+	jam 0x10,mem_tx_power
+	rtn
+	
+rssi_signal:
+	fetcht 1,mem_rssi_signal_index
+	setarg mem_rssi_signal_buf
+	iadd temp,contw
+	copy rega,pdata
+	istore 1,contw
+	increase 1,temp
+	and_into RSSI_BUF_LEN,temp
+	storet 1,mem_rssi_signal_index
+	rtn
+rssi_average:
+	arg 0,temp
+	arg RSSI_BUF_LEN+1,loopcnt
+	copy rega,contr
+rssi_average_loop:	
+	ifetch 1,contr
+	iadd temp,temp
+	loop rssi_average_loop
+	rshift3 temp,pdata
+	copy pdata,temp
+	rtnmark0 mark_24g
+	//2BCD
+	div pdata,10
+	call wait_div_end
+	quotient pdata
+	lshift4 pdata,pdata
+	remainder temp
+	ior temp,temp
+	rtn
+
+
+g24_start_pairing_sm1:
+	set1 mark_24g,mark
+	call g24_pair_init
+g24_set_pairing_sm_1:
+	jam STATE_24G_PAIRING_1,mem_new_24g_pairing_sm
+	rtn
+
+g24_pairing_sm:
+	fetch 1,mem_new_24g_ensure
+	beq ENSURE_ON_24G,disable_usr
+	fetch 1,mem_new_24g_pairing_sm
+	beq STATE_24G_PAIRING_1,g24_pairing_sm_1
+	beq STATE_24G_PAIRING_2,g24_pairing_sm_2
+	beq STATE_24G_PAIRING_3,g24_pairing_sm_3
+	branch assert
+
+g24_pairing_sm_1:
+	jam STATE_24G_PAIRING_1_WAITING_ACK,mem_new_24g_pairing_sm
+	jam 0xaa,mem_new_24g_common_temp
+	branch g24_pairing_sm_common
+g24_pairing_sm_2:
+	jam STATE_24G_PAIRING_2_WAITING_ACK,mem_new_24g_pairing_sm
+	jam 0x55,mem_new_24g_common_temp
+	branch g24_pairing_sm_common
+g24_pairing_sm_3:
+	jam STATE_24G_PAIRING_3_WAITING_ACK,mem_new_24g_pairing_sm
+	jam 0x22,mem_new_24g_common_temp
+g24_pairing_sm_common:
+	fetch 1,mem_new_24g_data_type
+	and_into bits_data,pdata
+	store 1,mem_new_24g_common_temp+1
+	fetch 4,mem_new_24g_device_addr
+	store 4,mem_new_24g_common_temp+2
+g24_put_pairing_data_in_buff:
+	jam 0,mem_new_24g_common_temp+6
+	arg mem_new_24g_common_temp,rega
+	arg 7,temp
+	call g24_put_data_in_buff	
+	call g24_transmit_prep
+	call g24_txdata_enable_tx
+	branch disable_usr
+
+g24_paring_mode:
+	fetch 1,mem_new_24g_pairing_sm
+	rtneq STATE_24G_PAIRING_SUCCESS
+	beq STATE_24G_PAIRING_1_WAITING_ACK,g24_pairing_sm_1_waiting_ack
+	beq STATE_24G_PAIRING_2_WAITING_ACK,g24_pairing_sm_2_waiting_ack
+	beq STATE_24G_PAIRING_3_WAITING_ACK,g24_pairing_sm_3_waiting_ack
+	rtn
+
+g24_pairing_sm_1_waiting_ack:
+	jam STATE_24G_PAIRING_2,mem_new_24g_pairing_sm
+	branch g24_transmit_abandon
+g24_pairing_sm_2_waiting_ack:
+	jam STATE_24G_PAIRING_3,mem_new_24g_pairing_sm
+	branch g24_transmit_abandon
+g24_pairing_sm_3_waiting_ack:
+	jam STATE_24G_PAIRING_SUCCESS,mem_new_24g_pairing_sm
+	jam BT_EVT_24G_PAIRING_COMPLETE,mem_ipc_tx_evt
+	call p_ipc_tx_evt
+	fetch 4,mem_new_24g_rxpayload+2
+	call g24_update_addr_and_synccrc8
+	branch g24_transmit_abandon
+
+g24_start_24g_mode:
+	set0 mark_24g,mark
+	call g24_ch
+	fetch 4,mem_new_24g_addr
+	call g24_syncword_crc8
+	fetch 1,mem_new_24g_pairing_sm
+	rtnne STATE_24G_PAIRING_SUCCESS
+	call g24_tx_attemp_data_prep
+g24_tx_attemp_dongle:
+	setarg 0
+	store 2,mem_new_24g_check_dongle_times
+g24_tx_attemp_dongle_loop:
+	nop 2000
+	fetch 1,mem_new_24g_check_dongle_times
+	beq 0xff,g24_stop_24g_mode	//
+	call g24_transmit_receive_ack
+	nbranch g24_attemp_txdata_retry,sync
+	nbranch g24_attemp_txdata_retry,user3
+g24_tx_attemp_dongle_succ:
+	jam 1,mem_lpm_mode
+	set1 mark_24g,mark
+	setarg 0
+	store 2,mem_new_24g_check_dongle_times
+	jam BT_EVT_24G_ATTEMPT_SUCCESS,mem_fifo_temp
+	call ui_ipc_send_event
+	branch check_51cmd_stop_adv
+
+g24_tx_attemp_data_prep:
+	set1 mark_24g_conext,mark
+	jam 0xff,mem_new_24g_common_temp
+	fetch 1,mem_new_24g_data_type
+	store 1,mem_new_24g_common_temp+1
+	fetch 4,mem_new_24g_device_addr
+	store 4,mem_new_24g_common_temp+2
+	arg 6,temp
+	arg mem_new_24g_common_temp,rega
+	call g24_put_data_in_buff
+	branch g24_transmit_prep
+	
+g24_attemp_txdata_retry:
+	fetch 2,mem_new_24g_check_dongle_times
+	increase 1,pdata
+	store 2,mem_new_24g_check_dongle_times
+	call g24_ch
+	branch g24_tx_attemp_dongle_loop
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+/******************************************/
+/***********   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
+shutdown_radio_select:
+	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_pair:
+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
+txon_power_select:	
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch15_1,mem_patch15
+lpm_dispatch_next2:
+	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
+	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
+	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
+hid_handshake_event:	
+	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
+	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,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: btms/output/bt_program23.rom
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/bt_program23.rom	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/bt_program23.rom	(working copy)
@@ -0,0 +1,32691 @@
+11000101000100101000000000001111
+11000000000000000000000000100101
+11000000000000011000000000110001
+11000000010000110000000000110111
+11000000010001010000000001000010
+11000000010001011000000001100101
+11000000010100111000000001110001
+11000000010101000000000001111000
+11000000010101001000000010001100
+11000000010101100000000010011111
+11000000010110100000001100111011
+11000000010110101000000010111000
+11000000010110110000000010111111
+11000000010110111000000011011111
+00100000001000000011101100110100
+11000000000000101000000100111010
+11000000000010110000000100111111
+11000000000011011000000101000011
+11000000000100011000000101000110
+11000000000101111000000101101010
+11000000000110001000000101111111
+11000000000110010000000110010001
+11000000000110011000000110100100
+11000000000111001000000110110101
+11000000000111100000000111000010
+11000000000111101000000111010101
+11000000000111110000000111011011
+11000000000111111000000111101010
+11000000001000010000001000001000
+11000000001001101000001000001101
+11000000010000010000001000100111
+11000000010010101000001000101001
+11000000011110011000001000110000
+11000000011110111000001000111100
+11000000011111000000001001110001
+11000000011111001000001001110111
+00100000001000000011101100110100
+00100000100000000000000000000000
+01110000010000000011000000000000
+00100100001101011011000000000100
+01101000000000001100010110010101
+00100100001110100000000000101111
+01101000000000001100111001111000
+00100000001110100011000000000100
+01110000010011100111111100000000
+11000101100100110011000000000100
+00100100001101011011000000000100
+01110000100000101000000000000011
+00100000001000000011000000000100
+00100000010000000000001010000001
+00100000010000000000010000011000
+00100000010000000000001010110011
+01101000000000001100111001111000
+00100100001110100000001101101101
+00100000001000000011000000011011
+00100000001100001011100110100011
+01110000100010010101010111010100
+00100000000000000000000000000100
+01110000100010010101010111010010
+00100000000000000000000000000100
+01110000100010010101010111010001
+00100000000000000000000000000100
+00100000001000000011100110101110
+01101000000000001100001010000000
+11000000000010100011100110101110
+00100000001000000011100110011100
+01100000000010001000000000010111
+00011000010000001010001000000000
+00100000010000000011101000010011
+01011000000000000000010100000000
+00100000010000000011101100110101
+01110000100010010000011000000001
+01110000100010010000000000111100
+01110000100010010000000111100000
+01110000100010010110110100010010
+00100000000000000000000000001010
+01110000100010010000001000000001
+01110000100010010000001000111101
+00100000000000000000000000001010
+01110000100010010000001110110111
+00100000000000000000000000001010
+01110000100010010000001001111111
+00100000001000000000000001100010
+01101000000000001100001010000000
+11000000000010100000000001100010
+11000010100000001000000001011100
+11000010100000010000000001011100
+01110000100010010100110001011011
+01110000100010010100110110010110
+01110000100010010100111000101100
+01110000100010010100111101000110
+00100000001000000000000001100000
+01110000100010010100110011111011
+01110000100010010100110111101111
+01110000100010010100111011101100
+01110000100010010100111101011110
+01101000000000001100001010000000
+00100000001000000011100111011100
+01110000100010010101011011000101
+01110000100010010101010111010000
+00100000011000000000000000000000
+00100000010000000011110011010010
+00100000010000000011101001011111
+01110000100000000100001000000110
+01101000000100001000100101101000
+01111001001000000111111000000111
+01100000000100001000100101101000
+01111001001111111111111000000111
+01100000000100001000100101101000
+01111001001000000111111000000111
+01100000000100001000100101101000
+01110000100000000100001000000101
+00100000001000000011101000001100
+00100000010000000011110000101011
+01101000000000001100111001000101
+00100000011110100000000000000000
+01110000010011100100010100000000
+00011100010000100111111000000000
+01100000000000100100100010011110
+00100000011000000000000000000000
+11000110000100110000000000000000
+00100000010000000011101111100010
+01101000000000011100001000001111
+00100000011110100000000000000000
+01101000000000010100000001000010
+11011000010000001111111111111111
+10011000010001100111110000000000
+00100000011000101000000000000000
+01101000000000001100000100110001
+00100000011110100000000000000000
+00100000010000000100100000010110
+00100100011110100000000000000000
+00100000010000000011110100001110
+00100100011110100000000000000000
+00100000010000000011101001111011
+01101000000000001100011011100010
+00100000001110100011110001011110
+01101000000000001100011000111001
+00100000011110100000000000000000
+00100000001000000011110001011110
+01101000000000001100010110010101
+00100000001110100000000010011001
+01101000000000001000000010011111
+00100100001110100000000010011001
+01101000000000001100111010000011
+01101000000010001100111010000100
+10011000010001100111110000000000
+00100100011000101000000000000000
+01101000000000001100111010000001
+00100100011110100000000000000000
+01011000000000000000000000000000
+01100000000001000000000010100000
+00100000001000000011110001101010
+00100000010000000000000010100100
+00100100011101000000000000000000
+01101000000000001000101100101011
+00100100011110100000000000000000
+01110000010010011100000100000000
+00100000001000000011110001101010
+00100000010000000000000010100100
+00100100011101000000000000000000
+01101000000000001000101100101011
+00100100011110100000000000000000
+00100000001000000011110010001100
+00100000010000000000000010101111
+00100100011101000000000000000000
+00100000010000000000000010101100
+00100100011101000000000000000000
+01110000000010110010101100000001
+01110000000010110010101000000001
+00100000010000000000000010110100
+00100000001000000000000010101111
+01101000000000010100100000101100
+01101000000010010100100000101110
+00100000001000000000000010110001
+01101000000000010100011111000100
+01101000000010010100011111000110
+10011000010001100111110000000000
+00100000001000101110010011000000
+00100000001000000011000111010100
+01101000000000001000101100101010
+00100000000000000000000000001010
+11000000100000000000000010110100
+00100000011000000000000000000000
+01110000000000000001011000100111
+01110000000000010101000000000000
+01110000000000010111111000000000
+01110000000000010111111100000000
+01011000000000000000000000000000
+01100000000000101000100011010010
+00100000011000000000000000000000
+11011010001000000100011011110000
+00100000010000000111111110010101
+00100000011110100000000000000000
+00011111111000100010011000000000
+00100000010000000000000011000101
+00100000001000000011110110011011
+11000001000011000000000000000000
+11000000000010100000000011001010
+11000000000010101000000011010010
+11000000000101001000000011011101
+00100000001000000011110101110011
+01110000010011101000001100000000
+01110000010000100001001000000000
+01110000010011101010011000000000
+01110000010011100101000101111000
+00100000010000000011111001100001
+00100000010000000011111001011001
+00100000010000000011111001111111
+00100000001000000011110111000010
+01110000010011101010010000000000
+00100000010000000000001011111010
+01110000010001001011001000000000
+01110000010000100001001000000000
+01110000010011101010011000000000
+01110000010011100101000100000000
+01110000010001010110101000000000
+01101000000010010100111001001110
+01100000000010010100010011111000
+00100000010000000101001010100000
+00100000001000000011110111000110
+00100000010000000000000100101000
+00100000001000000111111000111011
+01100000000010001000001001001110
+01101000000000001100100010011100
+00011111111000001111111000000001
+01100000000000001100100010011100
+01101000000000001000001001001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001001110
+00100000010000000000000100101011
+00100000010000000000000100001110
+00100000010000000000000100110100
+00100000010000000000000100100001
+00100000010000000000000011101110
+00100000010000000000000011111110
+00100000001000000000000011100011
+01101000000000001100111010100111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100111010100111
+00100100011110100000000000000000
+01101000000000001100111010101000
+00011111111000001111111000000001
+00011111111000010111111000000001
+01100000000000001100111010101000
+11000000000000000000000011111010
+11000000000000001000000011111100
+00100000011000000000000000000000
+11011000010000000000000000001000
+00100000001000000110010011111101
+11011000010000000000000000001000
+00100000001000000110010011111111
+01101000000000001100111010101001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100111010101001
+00100100011110100000000000000000
+01101000000000001100111010101010
+00011111111000001111111000000001
+00011111111000010111111000000001
+01100000000000001100111010101010
+11000000000000000000000100001010
+11000000000000001000000100001100
+00100000011000000000000000000000
+11011000010000000000000000000101
+00100000001000000110010011111101
+11011000010000000000000000000101
+00100000001000000110010011111111
+01101000000000001100111010100110
+00100000011110100000000000000000
+01101000000000001100001000010010
+00101111111000011111111000100000
+00100100010000001000000100011000
+01101000000000001100000100110001
+00100000010110100000000100010110
+00100000011000000000000000000000
+01110000010000010011000100000001
+00100000011000000000000000000000
+01110000010000100001001000100000
+00100000011000000000000000000000
+01101000000000001100100110111010
+00100000011110100000000000000000
+01110000010011101000000000000000
+00011111111000001111111111111111
+01100000000000001100100110111010
+00100100011110100000000000000000
+00100000011000000000000000000000
+01101000000000001100111010000010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100111010000010
+00100100011110100000000000000000
+01110000010011101000000100000000
+00100000011000000000000000000000
+00100000010000000011111001111111
+01110000000010011011110100010010
+00100000001000000111110110010000
+01101000000000001100111001010001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100111001010001
+00100100011110100000000000000000
+01110000010000100001001000100000
+01110000010000010011000100000001
+01110000010011101010011000000001
+00100000011000000000000000000000
+01101000000000001100111001010010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100111001010010
+00100100011110100000000000000000
+00100000001000000011111001101101
+00100000010000000100100101101000
+00100000010000000100101101010001
+00100000010000000100101111011000
+00100000010000000000010111101010
+00100000001000000100100101000101
+00100000010000000011101001010000
+00011111111000100010001000000000
+00100000010000000000011000101000
+00100000001000000100101000111101
+01101000000000100100111001001000
+01100000000000100100010110010110
+00100000001000000100101010001100
+01110000010000010011000100000001
+01101000000000010000001101111100
+01101000000010010000001110000010
+10011000010001100111111000000000
+01100000000000010000100110111110
+01101000000000001000001101100010
+01111001001111111111111000000101
+01111001001111111111111000000011
+01100000000000001000001101100010
+01101000000000100000001101100110
+01101000000010010000001101100100
+01100000000010010000100111000110
+10011000010001100010001000000000
+01101000000000001100010001011011
+01100000000000001000001110001101
+11101000110010010000000000000000
+11101000110000010000000000000000
+00011111111010111111111000000000
+01100000000000010000001101100100
+00011000010010111000010000000000
+10011000010000001111111000000000
+11101000110010100000000000000000
+01100000000010100000001110001110
+10011010001000001111111000000000
+00011111111000100010100000000000
+01101000000000010000001101100100
+01101000000010010000100111000110
+10011000010001100111111000000000
+01101000000010010000100110111110
+10011000010011111111111000000000
+10011010100000001111111000000000
+01100000000000100000001101100110
+00100000010000000101000110011001
+01101000000000010000001110010000
+01100000000000010100010101100001
+00100000011000000000000000000000
+01101000000000001000001101111001
+11000010100000101000000101111011
+00100000010000000000010111011100
+01110000010011100110001000000000
+01101000000000001100111000100000
+00100100001110100000000101110101
+01101000000000001100111010100101
+11000000000000001000000101111001
+01101000000000001000001100000011
+00100000001110100100101111011110
+00100000001000000100111110000111
+01101000000000001100111000100000
+00011111111000001111111111111111
+01100000000000001100111000100000
+00100000001000000100111110000111
+01110000010011100010000000000011
+00100000001000000100101111011110
+01101000000000001100111001100010
+00011111111000001111111000000001
+01100000000000001100111001100010
+00100000001000000000010111100000
+01101000000000001100010001100111
+11000000000000110000000110000011
+11000000000000010000000110001010
+00100000001000000100101111111011
+01101000000000001100111001010011
+11000000000000001000000110000111
+00100000010000000011111001101101
+00100000001000000100110010000110
+00100000010000000000000100101000
+01110000010011100101001000000011
+00100000001000000100110010010000
+01011000000000000000000000010011
+11100000101000001000000000000000
+00100000010000000100110001011000
+01011000000000000000000000001010
+01100000000000010000001110010000
+01100000000000010100010101100001
+00100000011000000000000000000000
+01101000000000001100010001101011
+11000000000000010000000110011000
+11000000000000110000000110011111
+11000000000000111000000110010110
+00100000001000000100110000011000
+01110000010011101010010100000000
+00100000001000000100110100010111
+01011001000000000000001100000010
+01100000000000011100010011011100
+01011000000000000000000000000001
+11100000101000001000000000000000
+01011000000000010000000000010000
+11100000101000011000000000000000
+00100000001000000100110011001101
+01110000000010011011110100101001
+00100000010000000111110110000110
+01110000000010011011110101000111
+00100000010000000100101111010110
+00100000001000000100110100000001
+01101000000000001100010001101011
+11000000000011011000000110101000
+11000000000011101000000110101000
+00100000001000000100110000101011
+01101000000010010100111001001110
+01100000000010010100010001101100
+01101000000000001100111010000110
+00011111111000001000010000000001
+00011000010000010000010000000011
+01100000000010001100111010000110
+00011111111011111111111000000111
+11011000110000000100111010000111
+10011000110000001000110000000000
+11101000110000111000000000000000
+01100000000000111100010001101110
+11011000010000000000000000001110
+00100000001000000100111110001001
+01100000000010001100010001100110
+00101000001000000000011000000010
+00100100001000001000000110111010
+00011000010000001111111111111100
+01100000000000010100010001100111
+01101000000010001000001101111001
+00100000010000000000000110111101
+00100000001000000100111110010010
+01101000000000001100111010100101
+11000000000000001000000111000000
+00100000001000000100101111010000
+01011000000000000000000000000000
+00100000011000000000000000000000
+00011010011000100111111000000000
+11000000000000000000000111001000
+11000000000000010000000111001011
+11000000000000011000000111001111
+11000000000001010000000111010011
+00100000001000000100111110111001
+01110000010000010011000100000000
+01110000010011100101000100111100
+00100000001000000101000000011111
+00100000010000000101000000110011
+01011000000000000000000000000000
+01100000000001000100010101000100
+00100000011000000000000000000000
+00100000010000000101000000111001
+01101000000000001100010101101010
+11000001000000010000000000000000
+00100000001000000110010000011000
+01110000000010011011110100101011
+00100000001000000100101111010110
+11101000110000001000000000000000
+11000000000000001000000111011000
+00100000001000000100111111111110
+01110000010011101010010100000001
+01110000010011100010000000000011
+00100000001000000101000001101001
+11101000110000011000000000000000
+01100000000000011000001110011010
+11000000000010010000000111011111
+00100000001000000101000000010001
+01110000010000010011000100000001
+00100000010000000000000111100101
+00100000010000000101000100100101
+00100100011000101000000000000000
+01110000000010011011110100010011
+00100000001000000100101111010110
+01101000000000001000001100000011
+00011111111000001111111111111001
+00011111111000100111001000000000
+00011111001000100010010000000000
+00100000001000000101000100110101
+01101000000000001100001111111111
+00100000011110100000000000000000
+11011000111000000000000000000001
+00100000010000000111111011100010
+00100100011110100000000000000000
+01111000010101001111110000000000
+01111000001010000111110000000000
+00100000010000000100101100011110
+00100000010000000100100111010100
+00100000010000000100101010001010
+00100100001101101000000111111100
+01101000000000001000000000000011
+00011111111000001111111000000001
+01100000000000001000000000000011
+01101000000000001000001100000010
+00011111111000010111111000001111
+11000000000000011000001000000110
+11000000000000101101000110101111
+01101000000000001000000000010110
+11000000100100111101000101111101
+00011000000010100111111000000000
+11011000010000000000000111111111
+10011000010000010111111000000000
+00011111111000001111111011111010
+00011111111000001111111111111111
+00100000000000000000000000100110
+00100100001110100000001000000010
+00100000001000000101000110010110
+00100000010000000100101011000101
+00100000001000000000000111111100
+01101000000000100100010110010110
+11011000010000001110101001100000
+10011000010000001111111000000000
+01100000000000100100010110010110
+00100000001000000101000110101001
+01111000010101011111110000000000
+00100000001101110000001000010000
+00100100001101101000001000011111
+00100000010000000011110010110111
+01101000000000010100000101100001
+01100000000000010000001101110000
+01101000000000001000001100000010
+00101111111000000000011000000001
+00100100001000001011110011001011
+01101000000000001100010001100101
+00101111111000000000011000000001
+00100100001000001011110011001011
+00100000010000000100101111010000
+00100100001110100011110011001011
+01101000000000001100111001100010
+00011111111001100111110000000001
+00100100001000010011110011001011
+00100000001000000101001010010111
+01101000000010010100000101100001
+01101000000000010100111001100000
+10011000010000001000010000000000
+00011000010000110000010000000000
+01101000000000010000001101110000
+10011000010000001111111000000000
+01100000000000010000001101110000
+00100000001000000011110011000011
+11000101000101010110001000111101
+00100000001000000110001001010000
+01101000000100100000000001111000
+01101000000110100000000001111100
+10011000010000011111111000000000
+00011111111001000111111000000000
+10011010001000010111111000000000
+01100000000100100000000001110000
+00100000011000000000000000000000
+00011010001000100111111000000000
+00100000011110100000000000000000
+00011000010000001000010101100000
+00011000010000001000010101100000
+01111001001111111000010000011100
+01100000000010100100011100000011
+00011111111000100000010000000000
+11011010001000000100011011110000
+00100000010000000111111110100110
+00100100011110100000000000000000
+00011000010000100111111000000000
+00100000001000000111110101111101
+00100000010000000111110110000000
+11011010001000000100011011111000
+00100000010000000111111110010101
+00011111111000100000010000000000
+00100000010000000111110110000100
+00011000010000100111111000000000
+00100000011110100000000000000000
+11000000000100011000001001001001
+11000000000100100000001001001101
+11000000000100101000001001010001
+11000000000001101000001001010011
+11000000000100111000001001100000
+00100000001000000111110110110011
+01101000000000001100100111000011
+01100000000000001100001010000000
+01110000010010010011100011111111
+00100000001000000000011001110000
+01101000000000001100100111000011
+01100000000000001100001010000000
+01111001001111111000000000100110
+00100000001000000100100101111101
+01110000010000101000000000010100
+00100000001000000000011001000001
+01111001001111111000000000100110
+01110000010000010011000100000000
+00011000000010100111111000000000
+01100000000000001100010100111110
+01110000010011100101001100000000
+01101000000010010100111001001110
+01100000000010010100010011111000
+00100000010000000101001010100000
+11011010010000000000000000000101
+00100000010000000000001001101010
+00011010010000100111111000000000
+11100000110000001000000000000000
+00100000001000000111111000000111
+01111001001111111000000000100110
+01110000010000010011000100000000
+01110000010011100101001100000001
+01101000000010010100111001001110
+00100000010000000100111101101010
+00011010001000100000101000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+11011010010000000000000000000100
+00100000001000000000001001011100
+11011010001000000100010000000001
+11101010001000001000000000000000
+00100000011110100000000000000000
+10011000110000001010001000000000
+11101000110000001000000000000000
+11000001000000001000000000000000
+00100000001000000000001001101011
+00100000010000000101100011000101
+00100100001110100111110111100101
+01101000000000001000100110111101
+11000101100001001111110111100000
+11000000000011111000001010010110
+00100000001000000111110111010000
+01110000000010110010101000000011
+00100000010000000000000010110100
+01110000010011100100010101011010
+00100000010000000011110011111100
+01101000000100100000000100111000
+01111001001111111111111000001111
+01100000000100100000000001001100
+00100000010000000011110011110100
+11011000010111111111111111111111
+00100000001000000011110000010001
+01101000000010100100100010011110
+00011100010000100111111000000000
+10011000010001100111111000000000
+11011000010000000000011001000000
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+00100000011110100000000000000000
+00011100010000100000010000000000
+01100000000010100100100010011110
+01101000000010010100100010011000
+00011000010100001000010000000000
+10011000010000001111111000000000
+00011111111100001111111000000000
+01100000000000010100100010011000
+00011111111100001111111000000000
+00011111111000010111111000000011
+11000001100000000000000000000000
+00100000010000000000001010101001
+00100100011101100000000000000000
+01101000000000001100001011001111
+00100000011000000000000000000000
+01101000000100001000000001010011
+01111001001000000111111000000111
+01100000000100001000000001010011
+01101000000100001000100101110011
+00011111111000011111111000110000
+01100000000100001000100101110011
+01110000100010010000011001111100
+01110000100010010111001010101010
+00100000000000000001001110001000
+01101000000110010000000101010000
+01101000000100001000000001010011
+01111001001111111111111000000111
+01100000000100001000000001010011
+00011000010100001000010000000000
+01100000000010010100001011010001
+00100000011000000000000000000000
+01111000001101100111110000000000
+00100000011000000000000000000000
+01111000010101100111110000000000
+00100000010000000100101111010000
+00100000010110100000001010100111
+01101000000000001100100101010100
+00100100010110100000001010100111
+00100000011000000000000000000000
+01110000010011101010001100000001
+00100000010000000000001010110011
+01110000010011101010001100000000
+00100000011000000000000000000000
+00100000010000000000000010101111
+00100000011101000000000000000000
+00011111111100001111111000000000
+00011111111000100000110000000000
+00100000010000000000001011011001
+01100000000000001100100010010111
+11000000000000001000001011000100
+11000000000000110000001011110101
+00011111111000100000010000000000
+00011000110000100010001000000000
+01101000000000001100000001000000
+11000011000000000000001011001110
+00011010001000100000110000000000
+11000110100001001000000000000000
+00011000010000100111111000000000
+11000000000000101000001100001100
+00100000001000000011101100110001
+00100000010000000000001011011001
+00100000010000000000001011011001
+01100000000000001000100110111101
+00100000010000000000001011001001
+00100000001000000111110110010000
+00100000010000000000001011011100
+00011000110000100000010000000000
+00011000010100001000010000000000
+01100000000010010100011111000100
+00100000011000000000000000000000
+00011010001000100000110000000000
+11011000101000000000000011110101
+00100000001000000000001011010001
+00100000010000000000001011011001
+00011111111000100111001000000000
+00100000010000000000001011010101
+00100000001000000000001011001001
+00100000010000000000001011011001
+11100000101000001000000000000000
+11000010000000000000001011010101
+00100000011000000000000000000000
+00100000010000000000001011011100
+11101000110000001000000000000000
+00100000011000000000000000000000
+01011000000000000100011111000100
+10011000110001100111110000000000
+00100100011000101000000000000000
+11011000110000000100011100101110
+00100000011000000000000000000000
+11011111001000000000000000000011
+11011000110000000100100010010100
+00011000110000100010001000000000
+01101000000000010100100000101110
+00011111111100001111111000000000
+00011111111000100000101000000000
+00011010001000100000110000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00100000010000000000001011110000
+11000010000000000000001011101000
+00011000101000100111111000000000
+00011111111100001111111000000000
+01100000000000010100100000101110
+00100000011000000000000000000000
+01011000000000000100100000101100
+10011000101001100111110000000000
+00100100011000101000000000000000
+11011000101000000100011111001000
+00100000011000000000000000000000
+11000110100100111000000000000000
+00100000010000000000001011011001
+00011111111000100111001000000000
+01100000000000001100100101110000
+00100000001000000000001011010011
+01011000000000000000000000000000
+01100000000000011100111010000101
+00100000011000000000000000000000
+11000110000100110000000000000000
+01101000000000001100010110010101
+00100000011110100000000000000000
+00100000010000000000000010101111
+00100000011101000000000000000000
+00011111111100001111111000000000
+00011111111000100000110000000000
+00100000010000000000001011011001
+01100000000000001100100010010111
+00011000110000100010001000000000
+11000000100000101000001011001110
+00011000110000100010010000000000
+00100000010000000100101111010100
+00100100011110100000000000000000
+00100000001000000000001100010001
+00011000110000100010010000000000
+01101000000000001100111010100011
+00100000011110100000000000000000
+00100000010000000100101111010000
+00100100011110100000000000000000
+01101000000010010100111001001110
+00100000010000000100111101101010
+11000100000000000000000000000000
+01101000000000001100010110010101
+11000001000000000000000000000000
+01101000000000001100111010000011
+00011111111000001111111000000001
+01100000000000001100111010000011
+01101000000000001100111010000101
+00011111111000001000010000000001
+00011000010000010000010000000011
+01100000000010001100111010000101
+00011111111011111111111000000111
+11011000101000000100111010000111
+10011000101000001000101000000000
+00011010010000100000110000000000
+00100000010000000000001011011001
+00011111111000100111001000000000
+00100000010000000000001011010011
+00100000010000000000001100101000
+00100000011101100000000000000000
+01110000000010011011110100011011
+00100000001000000100101111010110
+01111000010101100111110000000000
+01101000000000001100111010100100
+11000001000000101000000000000000
+01111000001101100111110000000000
+00011111111000001111111000000001
+01100000000000001100111010100100
+00011111111001100111110000000001
+00100100011000010000000000000000
+01110000010010001001011001000000
+00100000001000000000001011100001
+01011000000000000100011100101110
+00011111111100001111111000000000
+01100000000000010100011111000100
+01100000000000010100011111000110
+01011000000000000100011111001000
+00011111111100001111111000000000
+01100000000000010100100000101100
+01100000000000010100100000101110
+00100000011000000000000000000000
+11011000010000000000000000001000
+00100000010000000110010011101000
+11011000010000000000000000000101
+00100000010000000110010011101000
+00100000010000000101001001001010
+01110000000010110010101000000000
+01110000000000010110110000000110
+00100000010000000011111001111111
+01011000000000000000001110100011
+01100000000000010100001010010110
+01011000000000000000001010101111
+01100000000000010100001010010000
+01011000000000000000001110011100
+01100000000000010100001010001100
+00100100010101011000001100110010
+00100000010101011000001101110011
+00100000010000000011110100111110
+01101000000000001100111001000101
+11000000001011010000001110000111
+00100000001101011000001110000101
+01101000000000001100001010000000
+01100000000000001100100111000011
+00100000010000000000010111011001
+01101000000000010100111001000001
+00011111111100001111111000000000
+01100000000000010100111001000001
+01101000000000010100111001000011
+00011111111100001111111000000000
+01100000000000010100111001000011
+00100000010000000000001110010010
+00100000010000000000001110111101
+01101000000001000000100111000110
+00100100001110100000001101100000
+01101000000000010100101011010100
+00011111111100001111111000000000
+00100000001110100000001101100000
+01100000000000010100111001000011
+01110000010010001001011000101111
+01101000000000001100111001111000
+00100100001110100000001101101000
+00100000010000000000001010010101
+00100000010000000000001011100001
+00100000010000000000001011111101
+01110000100000101000000000000011
+00100000011000000000000000000000
+00100000010101011011110000101001
+11011001011000000000110100000000
+00110100011100110000001000000000
+00011100010000100111111000000000
+01100000000000011100111001111010
+01101000000000010100011100001011
+11000011100001011000000000000000
+11000011100000110000000000000000
+00100000010000000011110101100000
+00100000010000000000010011001000
+00100000001000000000001101101101
+00011100111000100111111000000000
+11000101100100110000001101111101
+00100000001110100000001101111000
+01110000010010011011100110111011
+00100000011000000000000000000000
+01110000010010011011100100000000
+01101000000000001100100110110111
+00100000011110100000000000000000
+01110000010010011011011100000000
+00100000001000000000001101110110
+00100000001110100000001110000000
+01110000010010011100000100000010
+00100000011000000000000000000000
+01101000000000001100100111000010
+00100000011110100000000000000000
+01110000010010011100001000000000
+01110000010010011100000100000001
+00100000011000000000000000000000
+01110000010010001001011000111100
+00100000001000000000001101100001
+00011100111000100111111000000000
+00100000001110100000001001111001
+00100000010000000101001100001101
+00100000010000000100001011101011
+01011000000000000000000000000000
+01100000000001000100000001000000
+01100000000000010100011100001011
+01100000000000010100100010011000
+01100000000000010100100010011010
+01110000010010001001011000111101
+00100000001000000000001101100001
+00100000010000000110001011000100
+01011000000000000000011111100010
+11011010001000000000100111000110
+11011000010000000000000000001100
+00100000010000000110001100001101
+00100000010000000110001011000111
+01101000000001000000100111000110
+00100000011110100000000000000000
+01101000000000001100001011001111
+00100000011000000000000000000000
+01111000001101000111110000000000
+01101000000100100000000100111000
+01111001001101000111111000011010
+01100000000100100000000001001100
+00100000010000000011110011110100
+01110000000000001001111100000001
+00100000011000000000000000000000
+00011010011000100111111000000000
+00011111111000010111111011110000
+11000001001010000000000000000000
+00011010011000100111111000000000
+01100000000000001100100010010110
+00100000001000000000001011100001
+01110000010010010010011100000000
+01110000010010010011001001001110
+01101000000000100100100100110100
+01100000000000100100100101010000
+00100000001000000000010001100110
+01101000000010001100100100110011
+00100000010000000000001110110100
+00011000010000001000010000000001
+00011000010000010000010000000011
+01100000000010001100100100110011
+00100000011000000000000000000000
+01101000000000001100100101010000
+00011111111000010111111000000011
+00011111111011111010001000000100
+01011000000000000100100100111001
+10011010001000001111111000000000
+10011000010000001000110000000000
+11101000110000001000000000000000
+01100000000000001100100100110010
+00100000011000000000000000000000
+01101000000000100000100111000110
+01100000000000100100100101100000
+00100100011110100000000000000000
+01101000000000100100000101000000
+01100000000000100100100101100000
+00100000011000000000000000000000
+01110000010010011011000000000001
+01110000010010011011001000000000
+01101000000000001100100100101001
+00011111111000010111111000000111
+01100000000000001100100100101001
+00100000011000000000000000000000
+01101000000000001100100100101001
+01111001001000000111111000000100
+01100000000000001100100100101001
+01100000000000001100100011100100
+00100000011000000000000000000000
+01101000000000001100100100101001
+01111001001111111111111000000100
+01100000000000001100100100101001
+00100000011000000000000000000000
+00100000010000000000010111100000
+01101000000000001100100110110100
+11000000000000001000001111010111
+11000000000000010000001111011011
+00100000011000000000000000000000
+01110000010010011011001000000010
+01110000010010011011001100000000
+01110000010010011011000000000000
+00100000001000000000001111000101
+01110000010010011011000100000000
+00100000001000000000001111011000
+01101000000000010100100100101110
+00011111111000001111111000000001
+01100000000000010100100100101110
+11000010100000110000010101000101
+01101000000000001100100110110001
+11000000000000001000001111100110
+01110000010010011011000100000001
+01101000000000001100100110110001
+11000000100000001000001111000101
+01101000000000001100100110110101
+00011111111000001111111000000001
+01100000000000001100100110110101
+11000000000000100000001111101101
+00100000010000000000001110101110
+01110000010010010110111000000010
+00100000001000000000010100000100
+00100000010000000000010111100000
+01110000010010011011010100000000
+00100000001000000000001111000101
+01110000010010011011001000000010
+01110000010010011011000000000001
+01110000010010011011000100000000
+00100000001000000000001111000101
+01101000000000001100100110110100
+11000000000000011000001111110001
+01101000000000001100100100101001
+00101111111011000000000000000100
+00100000001000001000001111000011
+01101000000000001100100110110100
+11000000000000001000001111110000
+11000000000000010000001111110001
+00100000011000000000000000000000
+01101000000000001100100100111000
+11000001111111111000000000000000
+00100000010000000000010000000010
+00100100010101100000010000001010
+00100000011000000000000000000000
+01111000010101100111110000000000
+01101000000000001100100110110000
+11000001100000001000000000000000
+01101000000000001100100110110010
+11000001100000000000000000000000
+01110000010010011011010000000001
+01110000010010010110111000000100
+00100000001000000000001010100111
+01101000000000001100100110110010
+00100000001110100000010000010010
+00011111111000001111111111111111
+01100000000000001100100110110010
+01110000010010011011010000000010
+00100000010000000000001110101110
+01110000010010010110111000000100
+00100000011000000000000000000000
+01110000010010011011010000000011
+01101000000000001100100110110001
+00100100001110100000001111100100
+00100000010000000000001110101110
+01110000010010010110111000000010
+00100000011000000000000000000000
+11000110100100110000000000000000
+01111001001000000000000000100111
+01101000000010100100100101001001
+00011100010000100111111000000000
+10011000010001100111110000000000
+00100100010000010000010000110001
+00011111111000100010010000000000
+01101000000000100100100101001001
+01101000000010001100100101001101
+10011000010000001000010000000000
+00011010010000100111111000000000
+10011000010001100111110000000000
+00100100001000010000010000101111
+01111001001111111111111000011100
+01100000000000100100100101001001
+00100000010000000000010000110100
+00100000010000000000010001000001
+00100000001101000000010010010110
+00100000010000000000001111111101
+00100000010000000000010100000100
+01101000000000001100100100111000
+00011111111001100111110011111111
+00100000010000101000010111101010
+01111001001111111000000000100111
+00100000011000000000000000000000
+00100000011000101000000000000000
+01111001001000000111111000011100
+00100000011000000000000000000000
+01101000000000001100100101100100
+00011111111000001111111000000001
+01100000000000001100100101100100
+11000000000000100000010000111010
+11000000000000101000010000111101
+00100000011000000000000000000000
+01101000000000001100100101001111
+01100000000000001100100101001101
+00100000011000000000000000000000
+01110000010010010110010000000000
+01101000000000001100100101001110
+01100000000000001100100101001101
+00100000011000000000000000000000
+01101000000000001100100100111000
+11000000111111111000011001000101
+00100000010000000000001010110011
+00100000001101000000010001001111
+01101000000000001100100010010111
+11000000100000110110010011000000
+00100000010000000000010001010010
+00100000010000000000010001110011
+01110000010010010010110100000001
+00100000011000000000000000000000
+01110000010011100111100100000000
+01110000010011100111100000000000
+01110000010010011011101000001010
+00100000011000000000000000000000
+01101000000000001100100100101101
+11000000000000001011000111010100
+00100000011000000000000000000000
+01101000000000001100100110111001
+01100000000000001100100110111000
+01101000000000001100100101110000
+00011111111000100010001000000000
+11011010010000000100100101110001
+01110000010010010101010000000000
+00100000010000000000001111000101
+01100000000000001100100110010000
+00011010001000001000010000000001
+11011000101000000100100110010001
+00011010001000100111001000000000
+00011010010000100000110000000000
+00100000010000000111111011001101
+11011010001000000100100110010000
+11000110100100111000000000000000
+01100000000010001100100100101000
+00011000010000100111001000000000
+11011000101000000100100011000100
+00011010001000100000110000000000
+00100000001000000111111011001101
+11011010001000000000000000000000
+11011111001000000000000000000100
+11011000110000000100100101010000
+11101000110000001000000000000000
+10011010001000001010001000000000
+11000010000000000000010001101001
+00011010001000100111111000000000
+01100000000000010100100110111011
+01101000000000001100100110111011
+01101000000010001100100110111100
+10011000010000001111111000000000
+01100000000000001100100110111101
+00100000011000000000000000000000
+01101000000000001100100100101000
+00011111111000001111111000000010
+01100000000000001100100100101010
+01101000000000001100100100101001
+01100000000000001100100011100100
+01101000000000001100100100101000
+00011111111010011111111000000000
+01101000000010001100100100100111
+00011000010000010000010000000011
+00011000010000111000010000000000
+10011000010000011111111000000000
+01101000000010001100100101100101
+10011000010000001111111000000000
+11100000101000001000000000000000
+01101000000000001100100100101000
+10011000000000000111001000000000
+11011000110000000100100011000100
+00100000001000000111111011001101
+01110000010010010101010000000001
+01110000010010011011000100000000
+00100000010000000000001111000101
+01100000000000001100100110010000
+01011000000000000000000000000000
+01100000000000111100100110010001
+01101000000000100100100101100000
+01100000000000100100100110011000
+11011000010000000000000000001100
+11011010001000000100100110010000
+00100000010000000000010001100000
+01101000000000001100100100101001
+01111001001000000111111000000011
+01100000000000001100100100101001
+00100000010000000000010001110011
+00100000010000000000010001001001
+00100000001000000000010000101011
+00100000011000000000000000000000
+01101000000000001100100101010100
+00100000001110100000010010000101
+01101000000010001100100110111000
+00011000010000001000010000000001
+01100000000010001100100110111000
+01101000000000001100100110111001
+10011000010001100111110000000000
+00100000011000010000000000000000
+01110000010010011011100000000000
+00100000010000000000000010100100
+00100100011101000000000000000000
+01101000000000001000101100101011
+00100100011110100000000000000000
+01101000000000001100100110111010
+00100100011110100000000000000000
+01110000010011101000000000000000
+00100000010000000011101111100010
+01101000000000011100001000001111
+00100000011110100000000000000000
+01101000000001000100100101011000
+00100000010000000111111100010110
+01100000000010100100000111111011
+00100000001000000011110000010001
+01101000000000001100001010111000
+00101111111011000000000000000010
+00100000001000001000010010111000
+01101000000000001100111001111001
+11000001000000101000000000000000
+00011111111000001111111000000001
+01100000000000001100111001111001
+11000001100000101000000000000000
+01110000010011100111100000000001
+00100000011000000000000000000000
+01101000000000001100111001111001
+11000001000010100000000000000000
+00011111111000001111111000000001
+01100000000000001100111001111001
+11000001100010100000000000000000
+01101000000000001100001010111000
+01111001001000000111111000000010
+01100000000000001100001010111000
+00100000001000000000010010110110
+01101000000000001100111001111001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100111001111001
+00100100011110100000000000000000
+01110000010011100111100000000000
+00100000011000000000000000000000
+01111001001000000000000000100111
+00100000010000000000001010110011
+00100000001101000000010011001101
+01101000000000001100100010010111
+11000000000000110000010011011100
+01101000000000001100111001111101
+11000000000000001000010011010100
+11000000000000010000010010010110
+11000000000000011000010011010010
+00100000011000000000000000000000
+01110000010011100111100100000000
+01110000010011100111100000000000
+00100000010000000000010010101110
+01110000010011100111110100000000
+11011111001000000000000000000111
+00011111001000100111111000000000
+01100000000000001100100101110000
+11011000110000000100111000100001
+00100000010000000111111011001101
+01111000010101000111110000000000
+00100000010000000000010001000111
+00100000010000000000001111111101
+00100000010000000000010100000100
+00100000010000000000010111101010
+00100000010000000011101111100010
+01101000000000011100001000001111
+00100000011110100000000000000000
+01101000000000001100000100110001
+00100000011110100000000000000000
+01101000000000001100111010000000
+11000000000000001000010011101001
+01011000000000000000000000000000
+01100000000001000000000010100000
+00100000010000000000010011111001
+11011001011000000000110100000000
+00110100011100110000001000000000
+01101000000010011100111001111010
+00011100010000100111111000000000
+10011000010001100111111000000000
+00011111111000010111111011111111
+11011000010000000000111010100110
+10011000010011111000010000000000
+01101000000000100100111001110100
+10011000010001100111111000000000
+00100000001000010011110001111111
+01101000000000001100001000011000
+00011111111000001111111000000001
+01100000000000100100000111111011
+00100000001000000011110010000110
+01011000000000010011110001101000
+01100000000000100100111001110100
+01101000000000001100111001111110
+00011111111000001111111000000001
+11000000100000101000010011111111
+01011000000000000000000000000000
+01100000000000001100111001111110
+11000100000000000000000000000000
+01011000000000010011000010110000
+01100000000000100100111001110100
+00100000011000000000000000000000
+01110000010011101010011100000001
+01110000010010010011000100000000
+11011001011000000000110100000000
+00110100011100110000001000000000
+00100000010000000000010100011110
+01101000000000001100100101100101
+11000001000000001000000000000000
+00100100001011000000010100101101
+00100100001101111000010100101101
+01110000010011101010100100000001
+00100000010000000000010101001100
+00100000010000000000010111011100
+01101000000000001100100100100111
+00011111111000001111111000000001
+01100000000000001100100100100111
+01101000000000001100100100111000
+11000000111111111000010100011100
+00100000010000000000001111110100
+01011000000000000000000000000000
+01100000000000010100100100101110
+01100000000000001100100100110000
+01100000000000001100100110110011
+01110000010010010010110100000000
+00100000011000000000000000000000
+00100000010000000000010111011001
+00100000001000000000011001100000
+01111000010101111111110000000000
+00100000010000000000010101101100
+01101000000000001100100101100101
+11000000000000001000010100101011
+00011000000000000010101000000000
+01101000000000100100100101010000
+10011000000000000001001000000000
+01101000000010001000000000010111
+00100000010000000011100110111001
+00100000010000000011100110111111
+00100000010000000000010110010110
+00100000010101111000010111010101
+00100000011000000000000000000000
+00100000010000000000010111010101
+00100000001000000000010100010000
+01101000000000001100100100110000
+00011111111000001111111000000001
+01100000000000001100100100110000
+01101000000000001100100100111000
+11000000111111111000010101000001
+01101000000010001100100100110001
+00011000010000001000010000000001
+01100000000010001100100100110001
+01101000000000001100100101101110
+10011000010001100111111000000000
+00100100001110100000010100000110
+01101000000000001100100110110100
+11000000000000011000001111011101
+01101000000000001100100110110011
+00011111111000001111111000000001
+01100000000000001100100110110011
+11000000000000010000001111010010
+00100000010000000000001111001001
+01110000010010010110111000000001
+00100000001000000000010100000100
+01101000000000001100100100110000
+11000001111111111000000000000000
+01110000010010010011000000000000
+00100000001000000000010101001010
+01011000000000000000000000000000
+01100000000000010100100100101110
+01110000010000010011000100000000
+01110000010011100111100100000000
+01110000010011100111100000000000
+01110000010010001001011000111011
+00100000001000000000001011100001
+00100000010000000000010101010011
+01101000000000001100100100100110
+00100000011110100000000000000000
+10011000000000000111001000000000
+11011000110000000100100010100100
+11011000101000000100100100000110
+00100000001000000111111011001101
+01101000000000001100100010100011
+00011111111010010111111000000000
+01100000000000001100100100100110
+00011111111000001111111000000001
+11011000110000000100100010100011
+10011000110000001000110000000000
+11101000110000011000000000000000
+01100000000000011100100101100110
+01101000000000001100100010100011
+00011111111000110111111000000000
+00011111111000010111111000000011
+01100000000000001100100101101100
+00100000011000000000000000000000
+01111000010001001111110000000000
+01111000010000111111110000000000
+01011000010101010101010101010101
+10011000000000000001111000000000
+01101000000000001100100100110010
+00011111111011011000010000000000
+01111001001000000000010000000001
+00011000010000110001110000000000
+00100000011000000000000000000000
+00100000010000000011100110110001
+01101000000010001100100100110010
+00100000001000000011100111001001
+00100000010000000100100101110110
+01101000000000100100100101010000
+10011000000000000001001000000000
+00100000010000000000010101100000
+00100000010000000000010101101001
+01111001001000000010101000000000
+01111000001011101111110000000000
+01111000001100000111110000000000
+01111000010100001111110000000000
+00011001001100010111111000000000
+00011111111011001111111000000000
+00011111111100011111111000000000
+00001000000000001000011000101000
+01111000010011101111110000000000
+01111000001011011111110000000000
+01111000001000111111110000000000
+01111000001001001111110000000000
+01101000000000001100100110111101
+00001000000000001000011000001000
+01101000000000001100100100101010
+10011000000000000111001000000000
+11011000110000000100100011100100
+11101000110000001000000000000000
+00001000000000001000011000001000
+11000010000000000000010110000010
+01111000001001000111110000000000
+00001000000000001000011000011000
+01111000010001000111110000000000
+00110111110100111000001000000000
+00100000000000000000000001100100
+01111000010011101111110000000000
+01111000010011011111110000000000
+00100000011000000000000000000000
+00100000010000000100100101110110
+01101000000000100100100101010000
+10011000000000000001001000000000
+00100000010000000011100110110001
+01101000000010001100100100110010
+00100000010000000011100110111001
+01011000000000000000010100000000
+00100000010000000011101100110101
+00100000010000000011100110111111
+00100000010000000000010101100000
+01111000010101111111110000000000
+01111000001001101111110000000000
+01111000001100001111110000000000
+01111000010100000111110000000000
+01111000001010000111110000000000
+01101000000000010100100100101011
+10011000000000000011011000000000
+00110111110000011000010000000000
+00100100001011000000010111011000
+01111000010001101111110000000000
+01111000001001011111110000000000
+01111000001000111111110000000000
+01111000001001001111110000000000
+00001001100000000000000000001000
+00011001100010010111111000000000
+01100000000000001100100110111110
+00100000010000000000010001100110
+01101000000010001100100110111110
+10011000010001100111110000000000
+00100100001000101000010111010101
+00001001100000000000000000001000
+00011001100010010111111000000000
+01100000000000001100100010100010
+01101000000000001100100101101111
+00011111111001100111110000000010
+00100000001000101000010110110101
+01101000000000001100100010100010
+01101000000010001100100100101001
+10101000010000000000111000000000
+00100100001000001000010111010101
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+00011111111010010111111000000000
+00011111111000010111001000011111
+00100000001000101000010110111111
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+11000010000000000000010110111011
+00011000101000100010001000000000
+00001001100000000000000000001000
+00011001100010010111111000000000
+01100000000000001100100111001111
+00011010001000100000101000000000
+00001001100000000000000000011000
+01111000001010000111110000000000
+11011011011000000000011001100100
+00011111111011110111111000000000
+00011111111100010111111000000000
+11100000101000011000000000000000
+01111000010001011111110000000000
+00100000001000110000010111010101
+01111000001101111111110000000000
+01101000000000001000000000010111
+00011111111000001010001000000000
+00100000010000000011101000010011
+01111000010001101111110000000000
+00100000010000000011100110110001
+01101000000000001100100111001111
+00011111111000100010001000000000
+00100000001000000000011000101000
+01111000010011011111110000000000
+01111000010001011111110000000000
+00100000001000000011011011000110
+00100000001000000000010111010101
+01110000010010011100010000000001
+01110000010010011100010100000000
+00100000011000000000000000000000
+01101000000000001100100111000101
+00011111111000001111111000000001
+01100000000000001100100111000101
+00100000011000000000000000000000
+01101000000000001100100111000101
+00011111111001100111110000000001
+00100100010000010000010111101000
+01101000000000001100100111000101
+11000001000000000000000000000000
+00011111111000001111111111111111
+01100000000000001100100111000101
+00100000011000000000000000000000
+01110000010010011100010100000010
+00100000011000000000000000000000
+11011010001000000100100111000110
+00100000010000000000011000110001
+01100000000010001100100111010000
+00101000000011111111111000100110
+00100000010000001000010111111000
+00100100010000001000010111111100
+10011000010001100111110000000000
+00100100001000010000011000010101
+01101000000000001100100111000101
+00011111111001100111110000000001
+00100100001000010000011000000000
+01101000000000001100100111000101
+11000000000000000000011000010101
+00100000011000000000000000000000
+01011000000000000000000010000010
+00100000011000000000000000000000
+01011000000000000000000001110111
+00100000011000000000000000000000
+01011000000000000000000010000000
+00100000011000000000000000000000
+01011000000000000000000001110101
+00100000011000000000000000000000
+01101000000000001100100111000101
+11000001101000110000000000000000
+01110000010010011100010100000000
+01101000000010001100100111010000
+00101000000011111111111000100110
+00100000010000001000010111111010
+00100100010000001000010111111110
+10011000010001100111110000000000
+00100100011000010000000000000000
+01101000000000001100100111000100
+11000000000000000000011000100001
+00011111111000001111111111111111
+01100000000000001100100111000100
+11000000000000000000011000100001
+01110000100010010101010111010000
+01110000100010010101011011100000
+01110000100010010101011101001100
+01110000100010010101100001101100
+01110000100010010101100101010000
+01110000010000101000000000000001
+00100000011000000000000000000000
+01101000000000001100100111000100
+11000000000000010000011000011010
+00011111111000001111111000000001
+01100000000000001100100111000100
+11000000000000001000011000001110
+01110000100010010101010111010000
+01110000100010010101011011100000
+01110000100010010101011101001100
+01110000100010010101100000111100
+01110000100010010101100100010000
+01110000010000101000000000000100
+00100000011000000000000000000000
+01110000100010010101010111010000
+01110000100010010101011011000000
+01110000100010010101011101001100
+01110000100010010101100001101100
+01110000100010010101100101010000
+01110000010000101000000000010000
+00100000011000000000000000000000
+01101000000010001100100111001110
+01011000000000000100100111000110
+10011000010000001000101000000000
+00011010001000100111111000000000
+11100000101000001000000000000000
+00011000010000001000010000000001
+00011000010000010000010000000111
+01100000000010001100100111001110
+00100000011000000000000000000000
+11011000010000000000000000000000
+11011111001000000000000000001000
+00011010001000100000110000000000
+11101000110000001000000000000000
+10011000010000001000010000000000
+11000010000000000000011000110100
+00011000010010010111111000000000
+00011111111000100000010000000000
+11000110100100110000000000000000
+00011111111001101111110000001010
+00100000010000000111111101010011
+00011000000001111111111000000000
+00011111111100100111111000000000
+00011000000001110000010000000000
+10011000010000011000010000000000
+00100000011000000000000000000000
+01111001001000000000000000100110
+00100000010000000000001110101001
+01110000010010010011100000000001
+00100000011000000000000000000000
+01101000000000001100100100101101
+11000000000000001011000111010100
+01101000000000001100100100111000
+11000000000000001000011001001100
+11000000000000010000011001001111
+11000000000000011000011001010010
+00100000001000000011101100110001
+01110000010010010011100000010001
+01110000010010011001000010101010
+00100000001000000000011001010100
+01110000010010010011100000010010
+01110000010010011001000001010101
+00100000001000000000011001010100
+01110000010010010011100000010011
+01110000010010011001000000100010
+01101000000000001100100100101001
+00011111111000010111111000000111
+01100000000000001100100110010001
+01101000000000100100100101100000
+01100000000000100100100110010010
+01110000010010011001011000000000
+11011010001000000100100110010000
+11011000010000000000000000000111
+00100000010000000000010001100000
+00100000010000000000010001110011
+00100000010000000000010001001001
+00100000001000000011000111010100
+01101000000000001100100100111000
+11000001011111111000000000000000
+11000000000010001000011001100110
+11000000000010010000011001101000
+11000000000010011000011001101010
+00100000011000000000000000000000
+01110000010010010011100000000010
+00100000001000000000010100010110
+01110000010010010011100000000011
+00100000001000000000010100010110
+01110000010010010011100011111111
+01110000010010001001011000111001
+00100000010000000000001011100001
+01101000000000100100100100001000
+00100000010000000000001110101100
+00100000001000000000010100010110
+01111001001111111000000000100110
+00100000010000000000001110101110
+01101000000000100100100101010000
+00100000010000000000010001100110
+01101000000000001100100100111000
+11000001111111111000000000000000
+00100000010000000000011010000110
+01011000000000000000000000000000
+01100000000000010100100101010110
+00100000000000000000011111010000
+01101000000000001100100101010110
+11000000011111111000010101001010
+00100000010000000000010100011110
+00100100001011000000011010010000
+00100100001101111000011010010000
+01110000010000010011000100000001
+01111001001000000000000000100110
+01011000000000000000000000000000
+01100000000000010100100101010110
+01110000000010011011110100111010
+00100000010000000111110110000110
+00100000001000000111111000001101
+01111001001000000000000000100111
+01110000010010011001000011111111
+01101000000000001100100100101001
+01100000000000001100100110010001
+01101000000000100100100101100000
+01100000000000100100100110010010
+11011000010000000000000000000110
+11011010001000000100100110010000
+00100000010000000000010001100000
+00100000001000000000010001110011
+01101000000000010100100101010110
+00011111111000001111111000000001
+01100000000000010100100101010110
+00100000010000000000001110101110
+00100000001000000000011001111001
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+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: btms/output/eeprom.dat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/eeprom.dat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/eeprom.dat	(working copy)
@@ -0,0 +1,7872 @@
+00
+02
+aa
+55
+56
+1a
+c5
+12
+80
+0f
+c0
+00
+00
+25
+c0
+01
+80
+31
+c0
+43
+00
+37
+c0
+45
+00
+42
+c0
+45
+80
+65
+c0
+53
+80
+71
+c0
+54
+00
+78
+c0
+54
+80
+8c
+c0
+56
+00
+9f
+c0
+5a
+03
+3b
+c0
+5a
+80
+b8
+c0
+5b
+00
+bf
+c0
+5b
+80
+df
+20
+20
+3b
+34
+c0
+02
+81
+3a
+c0
+0b
+01
+3f
+c0
+0d
+81
+43
+c0
+11
+81
+46
+c0
+17
+81
+6a
+c0
+18
+81
+7f
+c0
+19
+01
+91
+c0
+19
+81
+a4
+c0
+1c
+81
+b5
+c0
+1e
+01
+c2
+c0
+1e
+81
+d5
+c0
+1f
+01
+db
+c0
+1f
+81
+ea
+c0
+21
+02
+08
+c0
+26
+82
+0d
+c0
+41
+02
+27
+c0
+4a
+82
+29
+c0
+79
+82
+30
+c0
+7b
+82
+3c
+c0
+7c
+02
+71
+c0
+7c
+82
+77
+20
+20
+3b
+34
+20
+80
+00
+00
+70
+40
+30
+00
+24
+35
+b0
+04
+68
+00
+c5
+95
+24
+3a
+00
+2f
+68
+00
+ce
+78
+20
+3a
+30
+04
+70
+4e
+7f
+00
+c5
+93
+30
+04
+24
+35
+b0
+04
+70
+82
+80
+03
+20
+20
+30
+04
+20
+40
+02
+81
+20
+40
+04
+18
+20
+40
+02
+b3
+68
+00
+ce
+78
+24
+3a
+03
+6d
+20
+20
+30
+1b
+20
+30
+b9
+a3
+70
+89
+55
+d4
+20
+00
+00
+04
+70
+89
+55
+d2
+20
+00
+00
+04
+70
+89
+55
+d1
+20
+00
+00
+04
+20
+20
+39
+ae
+68
+00
+c2
+80
+c0
+0a
+39
+ae
+20
+20
+39
+9c
+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
+20
+20
+00
+62
+68
+00
+c2
+80
+c0
+0a
+00
+62
+c2
+80
+80
+5c
+c2
+81
+00
+5c
+70
+89
+4c
+5b
+70
+89
+4d
+96
+70
+89
+4e
+2c
+70
+89
+4f
+46
+20
+20
+00
+60
+70
+89
+4c
+fb
+70
+89
+4d
+ef
+70
+89
+4e
+ec
+70
+89
+4f
+5e
+68
+00
+c2
+80
+20
+20
+39
+dc
+70
+89
+56
+c5
+70
+89
+55
+d0
+20
+60
+00
+00
+20
+40
+3c
+d2
+20
+40
+3a
+5f
+70
+80
+42
+06
+68
+10
+89
+68
+79
+20
+7e
+07
+60
+10
+89
+68
+79
+3f
+fe
+07
+60
+10
+89
+68
+79
+20
+7e
+07
+60
+10
+89
+68
+70
+80
+42
+05
+20
+20
+3a
+0c
+20
+40
+3c
+2b
+68
+00
+ce
+45
+20
+7a
+00
+00
+70
+4e
+45
+00
+1c
+42
+7e
+00
+60
+02
+48
+9e
+20
+60
+00
+00
+c6
+13
+00
+00
+20
+40
+3b
+e2
+68
+01
+c2
+0f
+20
+7a
+00
+00
+68
+01
+40
+42
+d8
+40
+ff
+ff
+98
+46
+7c
+00
+20
+62
+80
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+20
+40
+48
+16
+24
+7a
+00
+00
+20
+40
+3d
+0e
+24
+7a
+00
+00
+20
+40
+3a
+7b
+68
+00
+c6
+e2
+20
+3a
+3c
+5e
+68
+00
+c6
+39
+20
+7a
+00
+00
+20
+20
+3c
+5e
+68
+00
+c5
+95
+20
+3a
+00
+99
+68
+00
+80
+9f
+24
+3a
+00
+99
+68
+00
+ce
+83
+68
+08
+ce
+84
+98
+46
+7c
+00
+24
+62
+80
+00
+68
+00
+ce
+81
+24
+7a
+00
+00
+58
+00
+00
+00
+60
+04
+00
+a0
+20
+20
+3c
+6a
+20
+40
+00
+a4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+70
+49
+c1
+00
+20
+20
+3c
+6a
+20
+40
+00
+a4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+20
+20
+3c
+8c
+20
+40
+00
+af
+24
+74
+00
+00
+20
+40
+00
+ac
+24
+74
+00
+00
+70
+0b
+2b
+01
+70
+0b
+2a
+01
+20
+40
+00
+b4
+20
+20
+00
+af
+68
+01
+48
+2c
+68
+09
+48
+2e
+20
+20
+00
+b1
+68
+01
+47
+c4
+68
+09
+47
+c6
+98
+46
+7c
+00
+20
+22
+e4
+c0
+20
+20
+31
+d4
+68
+00
+8b
+2a
+20
+00
+00
+0a
+c0
+80
+00
+b4
+20
+60
+00
+00
+70
+00
+16
+27
+70
+01
+50
+00
+70
+01
+7e
+00
+70
+01
+7f
+00
+58
+00
+00
+00
+60
+02
+88
+d2
+20
+60
+00
+00
+da
+20
+46
+f0
+20
+40
+7f
+95
+20
+7a
+00
+00
+1f
+e2
+26
+00
+20
+40
+00
+c5
+20
+20
+3d
+9b
+c1
+0c
+00
+00
+c0
+0a
+00
+ca
+c0
+0a
+80
+d2
+c0
+14
+80
+dd
+20
+20
+3d
+73
+70
+4e
+83
+00
+70
+42
+12
+00
+70
+4e
+a6
+00
+70
+4e
+51
+78
+20
+40
+3e
+61
+20
+40
+3e
+59
+20
+40
+3e
+7f
+20
+20
+3d
+c2
+70
+4e
+a4
+00
+20
+40
+02
+fa
+70
+44
+b2
+00
+70
+42
+12
+00
+70
+4e
+a6
+00
+70
+4e
+51
+00
+70
+45
+6a
+00
+68
+09
+4e
+4e
+60
+09
+44
+f8
+20
+40
+52
+a0
+20
+20
+3d
+c6
+20
+40
+01
+28
+20
+20
+7e
+3b
+60
+08
+82
+4e
+68
+00
+c8
+9c
+1f
+e0
+fe
+01
+60
+00
+c8
+9c
+68
+00
+82
+4e
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+82
+4e
+20
+40
+01
+2b
+20
+40
+01
+0e
+20
+40
+01
+34
+20
+40
+01
+21
+20
+40
+00
+ee
+20
+40
+00
+fe
+20
+20
+00
+e3
+68
+00
+ce
+a7
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+a7
+24
+7a
+00
+00
+68
+00
+ce
+a8
+1f
+e0
+fe
+01
+1f
+e1
+7e
+01
+60
+00
+ce
+a8
+c0
+00
+00
+fa
+c0
+00
+80
+fc
+20
+60
+00
+00
+d8
+40
+00
+08
+20
+20
+64
+fd
+d8
+40
+00
+08
+20
+20
+64
+ff
+68
+00
+ce
+a9
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+a9
+24
+7a
+00
+00
+68
+00
+ce
+aa
+1f
+e0
+fe
+01
+1f
+e1
+7e
+01
+60
+00
+ce
+aa
+c0
+00
+01
+0a
+c0
+00
+81
+0c
+20
+60
+00
+00
+d8
+40
+00
+05
+20
+20
+64
+fd
+d8
+40
+00
+05
+20
+20
+64
+ff
+68
+00
+ce
+a6
+20
+7a
+00
+00
+68
+00
+c2
+12
+2f
+e1
+fe
+20
+24
+40
+81
+18
+68
+00
+c1
+31
+20
+5a
+01
+16
+20
+60
+00
+00
+70
+41
+31
+01
+20
+60
+00
+00
+70
+42
+12
+20
+20
+60
+00
+00
+68
+00
+c9
+ba
+20
+7a
+00
+00
+70
+4e
+80
+00
+1f
+e0
+ff
+ff
+60
+00
+c9
+ba
+24
+7a
+00
+00
+20
+60
+00
+00
+68
+00
+ce
+82
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+82
+24
+7a
+00
+00
+70
+4e
+81
+00
+20
+60
+00
+00
+20
+40
+3e
+7f
+70
+09
+bd
+12
+20
+20
+7d
+90
+68
+00
+ce
+51
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+51
+24
+7a
+00
+00
+70
+42
+12
+20
+70
+41
+31
+01
+70
+4e
+a6
+01
+20
+60
+00
+00
+68
+00
+ce
+52
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+52
+24
+7a
+00
+00
+20
+20
+3e
+6d
+20
+40
+49
+68
+20
+40
+4b
+51
+20
+40
+4b
+d8
+20
+40
+05
+ea
+20
+20
+49
+45
+20
+40
+3a
+50
+1f
+e2
+22
+00
+20
+40
+06
+28
+20
+20
+4a
+3d
+68
+02
+4e
+48
+60
+02
+45
+96
+20
+20
+4a
+8c
+70
+41
+31
+01
+68
+01
+03
+7c
+68
+09
+03
+82
+98
+46
+7e
+00
+60
+01
+09
+be
+68
+00
+83
+62
+79
+3f
+fe
+05
+79
+3f
+fe
+03
+60
+00
+83
+62
+68
+02
+03
+66
+68
+09
+03
+64
+60
+09
+09
+c6
+98
+46
+22
+00
+68
+00
+c4
+5b
+60
+00
+83
+8d
+e8
+c9
+00
+00
+e8
+c1
+00
+00
+1f
+eb
+fe
+00
+60
+01
+03
+64
+18
+4b
+84
+00
+98
+40
+fe
+00
+e8
+ca
+00
+00
+60
+0a
+03
+8e
+9a
+20
+fe
+00
+1f
+e2
+28
+00
+68
+01
+03
+64
+68
+09
+09
+c6
+98
+46
+7e
+00
+68
+09
+09
+be
+98
+4f
+fe
+00
+9a
+80
+fe
+00
+60
+02
+03
+66
+20
+40
+51
+99
+68
+01
+03
+90
+60
+01
+45
+61
+20
+60
+00
+00
+68
+00
+83
+79
+c2
+82
+81
+7b
+20
+40
+05
+dc
+70
+4e
+62
+00
+68
+00
+ce
+20
+24
+3a
+01
+75
+68
+00
+ce
+a5
+c0
+00
+81
+79
+68
+00
+83
+03
+20
+3a
+4b
+de
+20
+20
+4f
+87
+68
+00
+ce
+20
+1f
+e0
+ff
+ff
+60
+00
+ce
+20
+20
+20
+4f
+87
+70
+4e
+20
+03
+20
+20
+4b
+de
+68
+00
+ce
+62
+1f
+e0
+fe
+01
+60
+00
+ce
+62
+20
+20
+05
+e0
+68
+00
+c4
+67
+c0
+03
+01
+83
+c0
+01
+01
+8a
+20
+20
+4b
+fb
+68
+00
+ce
+53
+c0
+00
+81
+87
+20
+40
+3e
+6d
+20
+20
+4c
+86
+20
+40
+01
+28
+70
+4e
+52
+03
+20
+20
+4c
+90
+58
+00
+00
+13
+e0
+a0
+80
+00
+20
+40
+4c
+58
+58
+00
+00
+0a
+60
+01
+03
+90
+60
+01
+45
+61
+20
+60
+00
+00
+68
+00
+c4
+6b
+c0
+01
+01
+98
+c0
+03
+01
+9f
+c0
+03
+81
+96
+20
+20
+4c
+18
+70
+4e
+a5
+00
+20
+20
+4d
+17
+59
+00
+03
+02
+60
+01
+c4
+dc
+58
+00
+00
+01
+e0
+a0
+80
+00
+58
+01
+00
+10
+e0
+a1
+80
+00
+20
+20
+4c
+cd
+70
+09
+bd
+29
+20
+40
+7d
+86
+70
+09
+bd
+47
+20
+40
+4b
+d6
+20
+20
+4d
+01
+68
+00
+c4
+6b
+c0
+0d
+81
+a8
+c0
+0e
+81
+a8
+20
+20
+4c
+2b
+68
+09
+4e
+4e
+60
+09
+44
+6c
+68
+00
+ce
+86
+1f
+e0
+84
+01
+18
+41
+04
+03
+60
+08
+ce
+86
+1f
+ef
+fe
+07
+d8
+c0
+4e
+87
+98
+c0
+8c
+00
+e8
+c3
+80
+00
+60
+03
+c4
+6e
+d8
+40
+00
+0e
+20
+20
+4f
+89
+60
+08
+c4
+66
+28
+20
+06
+02
+24
+20
+81
+ba
+18
+40
+ff
+fc
+60
+01
+44
+67
+68
+08
+83
+79
+20
+40
+01
+bd
+20
+20
+4f
+92
+68
+00
+ce
+a5
+c0
+00
+81
+c0
+20
+20
+4b
+d0
+58
+00
+00
+00
+20
+60
+00
+00
+1a
+62
+7e
+00
+c0
+00
+01
+c8
+c0
+01
+01
+cb
+c0
+01
+81
+cf
+c0
+05
+01
+d3
+20
+20
+4f
+b9
+70
+41
+31
+00
+70
+4e
+51
+3c
+20
+20
+50
+1f
+20
+40
+50
+33
+58
+00
+00
+00
+60
+04
+45
+44
+20
+60
+00
+00
+20
+40
+50
+39
+68
+00
+c5
+6a
+c1
+01
+00
+00
+20
+20
+64
+18
+70
+09
+bd
+2b
+20
+20
+4b
+d6
+e8
+c0
+80
+00
+c0
+00
+81
+d8
+20
+20
+4f
+fe
+70
+4e
+a5
+01
+70
+4e
+20
+03
+20
+20
+50
+69
+e8
+c1
+80
+00
+60
+01
+83
+9a
+c0
+09
+01
+df
+20
+20
+50
+11
+70
+41
+31
+01
+20
+40
+01
+e5
+20
+40
+51
+25
+24
+62
+80
+00
+70
+09
+bd
+13
+20
+20
+4b
+d6
+68
+00
+83
+03
+1f
+e0
+ff
+f9
+1f
+e2
+72
+00
+1f
+22
+24
+00
+20
+20
+51
+35
+68
+00
+c3
+ff
+20
+7a
+00
+00
+d8
+e0
+00
+01
+20
+40
+7e
+e2
+24
+7a
+00
+00
+78
+54
+fc
+00
+78
+28
+7c
+00
+20
+40
+4b
+1e
+20
+40
+49
+d4
+20
+40
+4a
+8a
+24
+36
+81
+fc
+68
+00
+80
+03
+1f
+e0
+fe
+01
+60
+00
+80
+03
+68
+00
+83
+02
+1f
+e1
+7e
+0f
+c0
+01
+82
+06
+c0
+02
+d1
+af
+68
+00
+80
+16
+c0
+93
+d1
+7d
+18
+0a
+7e
+00
+d8
+40
+01
+ff
+98
+41
+7e
+00
+1f
+e0
+fe
+fa
+1f
+e0
+ff
+ff
+20
+00
+00
+26
+24
+3a
+02
+02
+20
+20
+51
+96
+20
+40
+4a
+c5
+20
+20
+01
+fc
+68
+02
+45
+96
+d8
+40
+ea
+60
+98
+40
+fe
+00
+60
+02
+45
+96
+20
+20
+51
+a9
+78
+55
+fc
+00
+20
+37
+02
+10
+24
+36
+82
+1f
+20
+40
+3c
+b7
+68
+01
+41
+61
+60
+01
+03
+70
+68
+00
+83
+02
+2f
+e0
+06
+01
+24
+20
+bc
+cb
+68
+00
+c4
+65
+2f
+e0
+06
+01
+24
+20
+bc
+cb
+20
+40
+4b
+d0
+24
+3a
+3c
+cb
+68
+00
+ce
+62
+1f
+e6
+7c
+01
+24
+21
+3c
+cb
+20
+20
+52
+97
+68
+09
+41
+61
+68
+01
+4e
+60
+98
+40
+84
+00
+18
+43
+04
+00
+68
+01
+03
+70
+98
+40
+fe
+00
+60
+01
+03
+70
+20
+20
+3c
+c3
+c5
+15
+62
+3d
+20
+20
+62
+50
+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
+1a
+22
+7e
+00
+20
+7a
+00
+00
+18
+40
+85
+60
+18
+40
+85
+60
+79
+3f
+84
+1c
+60
+0a
+47
+03
+1f
+e2
+04
+00
+da
+20
+46
+f0
+20
+40
+7f
+a6
+24
+7a
+00
+00
+18
+42
+7e
+00
+20
+20
+7d
+7d
+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
+11
+82
+49
+c0
+12
+02
+4d
+c0
+12
+82
+51
+c0
+06
+82
+53
+c0
+13
+82
+60
+20
+20
+7d
+b3
+68
+00
+c9
+c3
+60
+00
+c2
+80
+70
+49
+38
+ff
+20
+20
+06
+70
+68
+00
+c9
+c3
+60
+00
+c2
+80
+79
+3f
+80
+26
+20
+20
+49
+7d
+70
+42
+80
+14
+20
+20
+06
+41
+79
+3f
+80
+26
+70
+41
+31
+00
+18
+0a
+7e
+00
+60
+00
+c5
+3e
+70
+4e
+53
+00
+68
+09
+4e
+4e
+60
+09
+44
+f8
+20
+40
+52
+a0
+da
+40
+00
+05
+20
+40
+02
+6a
+1a
+42
+7e
+00
+e0
+c0
+80
+00
+20
+20
+7e
+07
+79
+3f
+80
+26
+70
+41
+31
+00
+70
+4e
+53
+01
+68
+09
+4e
+4e
+20
+40
+4f
+6a
+1a
+22
+0a
+00
+58
+00
+00
+01
+e0
+a0
+80
+00
+da
+40
+00
+04
+20
+20
+02
+5c
+da
+20
+44
+01
+ea
+20
+80
+00
+20
+7a
+00
+00
+98
+c0
+a2
+00
+e8
+c0
+80
+00
+c1
+00
+80
+00
+20
+20
+02
+6b
+20
+40
+58
+c5
+24
+3a
+7d
+e5
+68
+00
+89
+bd
+c5
+84
+fd
+e0
+c0
+0f
+82
+96
+20
+20
+7d
+d0
+70
+0b
+2a
+03
+20
+40
+00
+b4
+70
+4e
+45
+5a
+20
+40
+3c
+fc
+68
+12
+01
+38
+79
+3f
+fe
+0f
+60
+12
+00
+4c
+20
+40
+3c
+f4
+d8
+5f
+ff
+ff
+20
+20
+3c
+11
+68
+0a
+48
+9e
+1c
+42
+7e
+00
+98
+46
+7e
+00
+d8
+40
+06
+40
+98
+46
+fc
+00
+20
+40
+7f
+53
+18
+07
+fe
+00
+20
+7a
+00
+00
+1c
+42
+04
+00
+60
+0a
+48
+9e
+68
+09
+48
+98
+18
+50
+84
+00
+98
+40
+fe
+00
+1f
+f0
+fe
+00
+60
+01
+48
+98
+1f
+f0
+fe
+00
+1f
+e1
+7e
+03
+c1
+80
+00
+00
+20
+40
+02
+a9
+24
+76
+00
+00
+68
+00
+c2
+cf
+20
+60
+00
+00
+68
+10
+80
+53
+79
+20
+7e
+07
+60
+10
+80
+53
+68
+10
+89
+73
+1f
+e1
+fe
+30
+60
+10
+89
+73
+70
+89
+06
+7c
+70
+89
+72
+aa
+20
+00
+13
+88
+68
+19
+01
+50
+68
+10
+80
+53
+79
+3f
+fe
+07
+60
+10
+80
+53
+18
+50
+84
+00
+60
+09
+42
+d1
+20
+60
+00
+00
+78
+36
+7c
+00
+20
+60
+00
+00
+78
+56
+7c
+00
+20
+40
+4b
+d0
+20
+5a
+02
+a7
+68
+00
+c9
+54
+24
+5a
+02
+a7
+20
+60
+00
+00
+70
+4e
+a3
+01
+20
+40
+02
+b3
+70
+4e
+a3
+00
+20
+60
+00
+00
+20
+40
+00
+af
+20
+74
+00
+00
+1f
+f0
+fe
+00
+1f
+e2
+0c
+00
+20
+40
+02
+d9
+60
+00
+c8
+97
+c0
+00
+82
+c4
+c0
+03
+02
+f5
+1f
+e2
+04
+00
+18
+c2
+22
+00
+68
+00
+c0
+40
+c3
+00
+02
+ce
+1a
+22
+0c
+00
+c6
+84
+80
+00
+18
+42
+7e
+00
+c0
+02
+83
+0c
+20
+20
+3b
+31
+20
+40
+02
+d9
+20
+40
+02
+d9
+60
+00
+89
+bd
+20
+40
+02
+c9
+20
+20
+7d
+90
+20
+40
+02
+dc
+18
+c2
+04
+00
+18
+50
+84
+00
+60
+09
+47
+c4
+20
+60
+00
+00
+1a
+22
+0c
+00
+d8
+a0
+00
+f5
+20
+20
+02
+d1
+20
+40
+02
+d9
+1f
+e2
+72
+00
+20
+40
+02
+d5
+20
+20
+02
+c9
+20
+40
+02
+d9
+e0
+a0
+80
+00
+c2
+00
+02
+d5
+20
+60
+00
+00
+20
+40
+02
+dc
+e8
+c0
+80
+00
+20
+60
+00
+00
+58
+00
+47
+c4
+98
+c6
+7c
+00
+24
+62
+80
+00
+d8
+c0
+47
+2e
+20
+60
+00
+00
+df
+20
+00
+03
+d8
+c0
+48
+94
+18
+c2
+22
+00
+68
+01
+48
+2e
+1f
+f0
+fe
+00
+1f
+e2
+0a
+00
+1a
+22
+0c
+00
+e8
+c0
+80
+00
+e0
+a0
+80
+00
+20
+40
+02
+f0
+c2
+00
+02
+e8
+18
+a2
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+48
+2e
+20
+60
+00
+00
+58
+00
+48
+2c
+98
+a6
+7c
+00
+24
+62
+80
+00
+d8
+a0
+47
+c8
+20
+60
+00
+00
+c6
+93
+80
+00
+20
+40
+02
+d9
+1f
+e2
+72
+00
+60
+00
+c9
+70
+20
+20
+02
+d3
+58
+00
+00
+00
+60
+01
+ce
+85
+20
+60
+00
+00
+c6
+13
+00
+00
+68
+00
+c5
+95
+20
+7a
+00
+00
+20
+40
+00
+af
+20
+74
+00
+00
+1f
+f0
+fe
+00
+1f
+e2
+0c
+00
+20
+40
+02
+d9
+60
+00
+c8
+97
+18
+c2
+22
+00
+c0
+82
+82
+ce
+18
+c2
+24
+00
+20
+40
+4b
+d4
+24
+7a
+00
+00
+20
+20
+03
+11
+18
+c2
+24
+00
+68
+00
+ce
+a3
+20
+7a
+00
+00
+20
+40
+4b
+d0
+24
+7a
+00
+00
+68
+09
+4e
+4e
+20
+40
+4f
+6a
+c4
+00
+00
+00
+68
+00
+c5
+95
+c1
+00
+00
+00
+68
+00
+ce
+83
+1f
+e0
+fe
+01
+60
+00
+ce
+83
+68
+00
+ce
+85
+1f
+e0
+84
+01
+18
+41
+04
+03
+60
+08
+ce
+85
+1f
+ef
+fe
+07
+d8
+a0
+4e
+87
+98
+a0
+8a
+00
+1a
+42
+0c
+00
+20
+40
+02
+d9
+1f
+e2
+72
+00
+20
+40
+02
+d3
+20
+40
+03
+28
+20
+76
+00
+00
+70
+09
+bd
+1b
+20
+20
+4b
+d6
+78
+56
+7c
+00
+68
+00
+ce
+a4
+c1
+02
+80
+00
+78
+36
+7c
+00
+1f
+e0
+fe
+01
+60
+00
+ce
+a4
+1f
+e6
+7c
+01
+24
+61
+00
+00
+70
+48
+96
+40
+20
+20
+02
+e1
+58
+00
+47
+2e
+1f
+f0
+fe
+00
+60
+01
+47
+c4
+60
+01
+47
+c6
+58
+00
+47
+c8
+1f
+f0
+fe
+00
+60
+01
+48
+2c
+60
+01
+48
+2e
+20
+60
+00
+00
+d8
+40
+00
+08
+20
+40
+64
+e8
+d8
+40
+00
+05
+20
+40
+64
+e8
+20
+40
+52
+4a
+70
+0b
+2a
+00
+70
+01
+6c
+06
+20
+40
+3e
+7f
+58
+00
+03
+a3
+60
+01
+42
+96
+58
+00
+02
+af
+60
+01
+42
+90
+58
+00
+03
+9c
+60
+01
+42
+8c
+24
+55
+83
+32
+20
+55
+83
+73
+20
+40
+3d
+3e
+68
+00
+ce
+45
+c0
+2d
+03
+87
+20
+35
+83
+85
+68
+00
+c2
+80
+60
+00
+c9
+c3
+20
+40
+05
+d9
+68
+01
+4e
+41
+1f
+f0
+fe
+00
+60
+01
+4e
+41
+68
+01
+4e
+43
+1f
+f0
+fe
+00
+60
+01
+4e
+43
+20
+40
+03
+92
+20
+40
+03
+bd
+68
+04
+09
+c6
+24
+3a
+03
+60
+68
+01
+4a
+d4
+1f
+f0
+fe
+00
+20
+3a
+03
+60
+60
+01
+4e
+43
+70
+48
+96
+2f
+68
+00
+ce
+78
+24
+3a
+03
+68
+20
+40
+02
+95
+20
+40
+02
+e1
+20
+40
+02
+fd
+70
+82
+80
+03
+20
+60
+00
+00
+20
+55
+bc
+29
+d9
+60
+0d
+00
+34
+73
+02
+00
+1c
+42
+7e
+00
+60
+01
+ce
+7a
+68
+01
+47
+0b
+c3
+85
+80
+00
+c3
+83
+00
+00
+20
+40
+3d
+60
+20
+40
+04
+c8
+20
+20
+03
+6d
+1c
+e2
+7e
+00
+c5
+93
+03
+7d
+20
+3a
+03
+78
+70
+49
+b9
+bb
+20
+60
+00
+00
+70
+49
+b9
+00
+68
+00
+c9
+b7
+20
+7a
+00
+00
+70
+49
+b7
+00
+20
+20
+03
+76
+20
+3a
+03
+80
+70
+49
+c1
+02
+20
+60
+00
+00
+68
+00
+c9
+c2
+20
+7a
+00
+00
+70
+49
+c2
+00
+70
+49
+c1
+01
+20
+60
+00
+00
+70
+48
+96
+3c
+20
+20
+03
+61
+1c
+e2
+7e
+00
+20
+3a
+02
+79
+20
+40
+53
+0d
+20
+40
+42
+eb
+58
+00
+00
+00
+60
+04
+40
+40
+60
+01
+47
+0b
+60
+01
+48
+98
+60
+01
+48
+9a
+70
+48
+96
+3d
+20
+20
+03
+61
+20
+40
+62
+c4
+58
+00
+07
+e2
+da
+20
+09
+c6
+d8
+40
+00
+0c
+20
+40
+63
+0d
+20
+40
+62
+c7
+68
+04
+09
+c6
+20
+7a
+00
+00
+68
+00
+c2
+cf
+20
+60
+00
+00
+78
+34
+7c
+00
+68
+12
+01
+38
+79
+34
+7e
+1a
+60
+12
+00
+4c
+20
+40
+3c
+f4
+70
+00
+9f
+01
+20
+60
+00
+00
+1a
+62
+7e
+00
+1f
+e1
+7e
+f0
+c1
+28
+00
+00
+1a
+62
+7e
+00
+60
+00
+c8
+96
+20
+20
+02
+e1
+70
+49
+27
+00
+70
+49
+32
+4e
+68
+02
+49
+34
+60
+02
+49
+50
+20
+20
+04
+66
+68
+08
+c9
+33
+20
+40
+03
+b4
+18
+40
+84
+01
+18
+41
+04
+03
+60
+08
+c9
+33
+20
+60
+00
+00
+68
+00
+c9
+50
+1f
+e1
+7e
+03
+1f
+ef
+a2
+04
+58
+00
+49
+39
+9a
+20
+fe
+00
+98
+40
+8c
+00
+e8
+c0
+80
+00
+60
+00
+c9
+32
+20
+60
+00
+00
+68
+02
+09
+c6
+60
+02
+49
+60
+24
+7a
+00
+00
+68
+02
+41
+40
+60
+02
+49
+60
+20
+60
+00
+00
+70
+49
+b0
+01
+70
+49
+b2
+00
+68
+00
+c9
+29
+1f
+e1
+7e
+07
+60
+00
+c9
+29
+20
+60
+00
+00
+68
+00
+c9
+29
+79
+20
+7e
+04
+60
+00
+c9
+29
+60
+00
+c8
+e4
+20
+60
+00
+00
+68
+00
+c9
+29
+79
+3f
+fe
+04
+60
+00
+c9
+29
+20
+60
+00
+00
+20
+40
+05
+e0
+68
+00
+c9
+b4
+c0
+00
+83
+d7
+c0
+01
+03
+db
+20
+60
+00
+00
+70
+49
+b2
+02
+70
+49
+b3
+00
+70
+49
+b0
+00
+20
+20
+03
+c5
+70
+49
+b1
+00
+20
+20
+03
+d8
+68
+01
+49
+2e
+1f
+e0
+fe
+01
+60
+01
+49
+2e
+c2
+83
+05
+45
+68
+00
+c9
+b1
+c0
+00
+83
+e6
+70
+49
+b1
+01
+68
+00
+c9
+b1
+c0
+80
+83
+c5
+68
+00
+c9
+b5
+1f
+e0
+fe
+01
+60
+00
+c9
+b5
+c0
+02
+03
+ed
+20
+40
+03
+ae
+70
+49
+6e
+02
+20
+20
+05
+04
+20
+40
+05
+e0
+70
+49
+b5
+00
+20
+20
+03
+c5
+70
+49
+b2
+02
+70
+49
+b0
+01
+70
+49
+b1
+00
+20
+20
+03
+c5
+68
+00
+c9
+b4
+c0
+01
+83
+f1
+68
+00
+c9
+29
+2f
+ec
+00
+04
+20
+20
+83
+c3
+68
+00
+c9
+b4
+c0
+00
+83
+f0
+c0
+01
+03
+f1
+20
+60
+00
+00
+68
+00
+c9
+38
+c1
+ff
+80
+00
+20
+40
+04
+02
+24
+56
+04
+0a
+20
+60
+00
+00
+78
+56
+7c
+00
+68
+00
+c9
+b0
+c1
+80
+80
+00
+68
+00
+c9
+b2
+c1
+80
+00
+00
+70
+49
+b4
+01
+70
+49
+6e
+04
+20
+20
+02
+a7
+68
+00
+c9
+b2
+20
+3a
+04
+12
+1f
+e0
+ff
+ff
+60
+00
+c9
+b2
+70
+49
+b4
+02
+20
+40
+03
+ae
+70
+49
+6e
+04
+20
+60
+00
+00
+70
+49
+b4
+03
+68
+00
+c9
+b1
+24
+3a
+03
+e4
+20
+40
+03
+ae
+70
+49
+6e
+02
+20
+60
+00
+00
+c6
+93
+00
+00
+79
+20
+00
+27
+68
+0a
+49
+49
+1c
+42
+7e
+00
+98
+46
+7c
+00
+24
+41
+04
+31
+1f
+e2
+24
+00
+68
+02
+49
+49
+68
+08
+c9
+4d
+98
+40
+84
+00
+1a
+42
+7e
+00
+98
+46
+7c
+00
+24
+21
+04
+2f
+79
+3f
+fe
+1c
+60
+02
+49
+49
+20
+40
+04
+34
+20
+40
+04
+41
+20
+34
+04
+96
+20
+40
+03
+fd
+20
+40
+05
+04
+68
+00
+c9
+38
+1f
+e6
+7c
+ff
+20
+42
+85
+ea
+79
+3f
+80
+27
+20
+60
+00
+00
+20
+62
+80
+00
+79
+20
+7e
+1c
+20
+60
+00
+00
+68
+00
+c9
+64
+1f
+e0
+fe
+01
+60
+00
+c9
+64
+c0
+02
+04
+3a
+c0
+02
+84
+3d
+20
+60
+00
+00
+68
+00
+c9
+4f
+60
+00
+c9
+4d
+20
+60
+00
+00
+70
+49
+64
+00
+68
+00
+c9
+4e
+60
+00
+c9
+4d
+20
+60
+00
+00
+68
+00
+c9
+38
+c0
+ff
+86
+45
+20
+40
+02
+b3
+20
+34
+04
+4f
+68
+00
+c8
+97
+c0
+83
+64
+c0
+20
+40
+04
+52
+20
+40
+04
+73
+70
+49
+2d
+01
+20
+60
+00
+00
+70
+4e
+79
+00
+70
+4e
+78
+00
+70
+49
+ba
+0a
+20
+60
+00
+00
+68
+00
+c9
+2d
+c0
+00
+b1
+d4
+20
+60
+00
+00
+68
+00
+c9
+b9
+60
+00
+c9
+b8
+68
+00
+c9
+70
+1f
+e2
+22
+00
+da
+40
+49
+71
+70
+49
+54
+00
+20
+40
+03
+c5
+60
+00
+c9
+90
+1a
+20
+84
+01
+d8
+a0
+49
+91
+1a
+22
+72
+00
+1a
+42
+0c
+00
+20
+40
+7e
+cd
+da
+20
+49
+90
+c6
+93
+80
+00
+60
+08
+c9
+28
+18
+42
+72
+00
+d8
+a0
+48
+c4
+1a
+22
+0c
+00
+20
+20
+7e
+cd
+da
+20
+00
+00
+df
+20
+00
+04
+d8
+c0
+49
+50
+e8
+c0
+80
+00
+9a
+20
+a2
+00
+c2
+00
+04
+69
+1a
+22
+7e
+00
+60
+01
+49
+bb
+68
+00
+c9
+bb
+68
+08
+c9
+bc
+98
+40
+fe
+00
+60
+00
+c9
+bd
+20
+60
+00
+00
+68
+00
+c9
+28
+1f
+e0
+fe
+02
+60
+00
+c9
+2a
+68
+00
+c9
+29
+60
+00
+c8
+e4
+68
+00
+c9
+28
+1f
+e9
+fe
+00
+68
+08
+c9
+27
+18
+41
+04
+03
+18
+43
+84
+00
+98
+41
+fe
+00
+68
+08
+c9
+65
+98
+40
+fe
+00
+e0
+a0
+80
+00
+68
+00
+c9
+28
+98
+00
+72
+00
+d8
+c0
+48
+c4
+20
+20
+7e
+cd
+70
+49
+54
+01
+70
+49
+b1
+00
+20
+40
+03
+c5
+60
+00
+c9
+90
+58
+00
+00
+00
+60
+03
+c9
+91
+68
+02
+49
+60
+60
+02
+49
+98
+d8
+40
+00
+0c
+da
+20
+49
+90
+20
+40
+04
+60
+68
+00
+c9
+29
+79
+20
+7e
+03
+60
+00
+c9
+29
+20
+40
+04
+73
+20
+40
+04
+49
+20
+20
+04
+2b
+20
+60
+00
+00
+68
+00
+c9
+54
+20
+3a
+04
+85
+68
+08
+c9
+b8
+18
+40
+84
+01
+60
+08
+c9
+b8
+68
+00
+c9
+b9
+98
+46
+7c
+00
+20
+61
+00
+00
+70
+49
+b8
+00
+20
+40
+00
+a4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+68
+00
+c9
+ba
+24
+7a
+00
+00
+70
+4e
+80
+00
+20
+40
+3b
+e2
+68
+01
+c2
+0f
+20
+7a
+00
+00
+68
+04
+49
+58
+20
+40
+7f
+16
+60
+0a
+41
+fb
+20
+20
+3c
+11
+68
+00
+c2
+b8
+2f
+ec
+00
+02
+20
+20
+84
+b8
+68
+00
+ce
+79
+c1
+02
+80
+00
+1f
+e0
+fe
+01
+60
+00
+ce
+79
+c1
+82
+80
+00
+70
+4e
+78
+01
+20
+60
+00
+00
+68
+00
+ce
+79
+c1
+0a
+00
+00
+1f
+e0
+fe
+01
+60
+00
+ce
+79
+c1
+8a
+00
+00
+68
+00
+c2
+b8
+79
+20
+7e
+02
+60
+00
+c2
+b8
+20
+20
+04
+b6
+68
+00
+ce
+79
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+79
+24
+7a
+00
+00
+70
+4e
+78
+00
+20
+60
+00
+00
+79
+20
+00
+27
+20
+40
+02
+b3
+20
+34
+04
+cd
+68
+00
+c8
+97
+c0
+03
+04
+dc
+68
+00
+ce
+7d
+c0
+00
+84
+d4
+c0
+01
+04
+96
+c0
+01
+84
+d2
+20
+60
+00
+00
+70
+4e
+79
+00
+70
+4e
+78
+00
+20
+40
+04
+ae
+70
+4e
+7d
+00
+df
+20
+00
+07
+1f
+22
+7e
+00
+60
+00
+c9
+70
+d8
+c0
+4e
+21
+20
+40
+7e
+cd
+78
+54
+7c
+00
+20
+40
+04
+47
+20
+40
+03
+fd
+20
+40
+05
+04
+20
+40
+05
+ea
+20
+40
+3b
+e2
+68
+01
+c2
+0f
+20
+7a
+00
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+68
+00
+ce
+80
+c0
+00
+84
+e9
+58
+00
+00
+00
+60
+04
+00
+a0
+20
+40
+04
+f9
+d9
+60
+0d
+00
+34
+73
+02
+00
+68
+09
+ce
+7a
+1c
+42
+7e
+00
+98
+46
+7e
+00
+1f
+e1
+7e
+ff
+d8
+40
+0e
+a6
+98
+4f
+84
+00
+68
+02
+4e
+74
+98
+46
+7e
+00
+20
+21
+3c
+7f
+68
+00
+c2
+18
+1f
+e0
+fe
+01
+60
+02
+41
+fb
+20
+20
+3c
+86
+58
+01
+3c
+68
+60
+02
+4e
+74
+68
+00
+ce
+7e
+1f
+e0
+fe
+01
+c0
+82
+84
+ff
+58
+00
+00
+00
+60
+00
+ce
+7e
+c4
+00
+00
+00
+58
+01
+30
+b0
+60
+02
+4e
+74
+20
+60
+00
+00
+70
+4e
+a7
+01
+70
+49
+31
+00
+d9
+60
+0d
+00
+34
+73
+02
+00
+20
+40
+05
+1e
+68
+00
+c9
+65
+c1
+00
+80
+00
+24
+2c
+05
+2d
+24
+37
+85
+2d
+70
+4e
+a9
+01
+20
+40
+05
+4c
+20
+40
+05
+dc
+68
+00
+c9
+27
+1f
+e0
+fe
+01
+60
+00
+c9
+27
+68
+00
+c9
+38
+c0
+ff
+85
+1c
+20
+40
+03
+f4
+58
+00
+00
+00
+60
+01
+49
+2e
+60
+00
+c9
+30
+60
+00
+c9
+b3
+70
+49
+2d
+00
+20
+60
+00
+00
+20
+40
+05
+d9
+20
+20
+06
+60
+78
+57
+fc
+00
+20
+40
+05
+6c
+68
+00
+c9
+65
+c0
+00
+85
+2b
+18
+00
+2a
+00
+68
+02
+49
+50
+98
+00
+12
+00
+68
+08
+80
+17
+20
+40
+39
+b9
+20
+40
+39
+bf
+20
+40
+05
+96
+20
+57
+85
+d5
+20
+60
+00
+00
+20
+40
+05
+d5
+20
+20
+05
+10
+68
+00
+c9
+30
+1f
+e0
+fe
+01
+60
+00
+c9
+30
+68
+00
+c9
+38
+c0
+ff
+85
+41
+68
+08
+c9
+31
+18
+40
+84
+01
+60
+08
+c9
+31
+68
+00
+c9
+6e
+98
+46
+7e
+00
+24
+3a
+05
+06
+68
+00
+c9
+b4
+c0
+01
+83
+dd
+68
+00
+c9
+b3
+1f
+e0
+fe
+01
+60
+00
+c9
+b3
+c0
+01
+03
+d2
+20
+40
+03
+c9
+70
+49
+6e
+01
+20
+20
+05
+04
+68
+00
+c9
+30
+c1
+ff
+80
+00
+70
+49
+30
+00
+20
+20
+05
+4a
+58
+00
+00
+00
+60
+01
+49
+2e
+70
+41
+31
+00
+70
+4e
+79
+00
+70
+4e
+78
+00
+70
+48
+96
+3b
+20
+20
+02
+e1
+20
+40
+05
+53
+68
+00
+c9
+26
+20
+7a
+00
+00
+98
+00
+72
+00
+d8
+c0
+48
+a4
+d8
+a0
+49
+06
+20
+20
+7e
+cd
+68
+00
+c8
+a3
+1f
+e9
+7e
+00
+60
+00
+c9
+26
+1f
+e0
+fe
+01
+d8
+c0
+48
+a3
+98
+c0
+8c
+00
+e8
+c1
+80
+00
+60
+01
+c9
+66
+68
+00
+c8
+a3
+1f
+e3
+7e
+00
+1f
+e1
+7e
+03
+60
+00
+c9
+6c
+20
+60
+00
+00
+78
+44
+fc
+00
+78
+43
+fc
+00
+58
+55
+55
+55
+98
+00
+1e
+00
+68
+00
+c9
+32
+1f
+ed
+84
+00
+79
+20
+04
+01
+18
+43
+1c
+00
+20
+60
+00
+00
+20
+40
+39
+b1
+68
+08
+c9
+32
+20
+20
+39
+c9
+20
+40
+49
+76
+68
+02
+49
+50
+98
+00
+12
+00
+20
+40
+05
+60
+20
+40
+05
+69
+79
+20
+2a
+00
+78
+2e
+fc
+00
+78
+30
+7c
+00
+78
+50
+fc
+00
+19
+31
+7e
+00
+1f
+ec
+fe
+00
+1f
+f1
+fe
+00
+08
+00
+86
+28
+78
+4e
+fc
+00
+78
+2d
+fc
+00
+78
+23
+fc
+00
+78
+24
+fc
+00
+68
+00
+c9
+bd
+08
+00
+86
+08
+68
+00
+c9
+2a
+98
+00
+72
+00
+d8
+c0
+48
+e4
+e8
+c0
+80
+00
+08
+00
+86
+08
+c2
+00
+05
+82
+78
+24
+7c
+00
+08
+00
+86
+18
+78
+44
+7c
+00
+37
+d3
+82
+00
+20
+00
+00
+64
+78
+4e
+fc
+00
+78
+4d
+fc
+00
+20
+60
+00
+00
+20
+40
+49
+76
+68
+02
+49
+50
+98
+00
+12
+00
+20
+40
+39
+b1
+68
+08
+c9
+32
+20
+40
+39
+b9
+58
+00
+05
+00
+20
+40
+3b
+35
+20
+40
+39
+bf
+20
+40
+05
+60
+78
+57
+fc
+00
+78
+26
+fc
+00
+78
+30
+fc
+00
+78
+50
+7c
+00
+78
+28
+7c
+00
+68
+01
+49
+2b
+98
+00
+36
+00
+37
+c1
+84
+00
+24
+2c
+05
+d8
+78
+46
+fc
+00
+78
+25
+fc
+00
+78
+23
+fc
+00
+78
+24
+fc
+00
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+c9
+be
+20
+40
+04
+66
+68
+08
+c9
+be
+98
+46
+7c
+00
+24
+22
+85
+d5
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+c8
+a2
+68
+00
+c9
+6f
+1f
+e6
+7c
+02
+20
+22
+85
+b5
+68
+00
+c8
+a2
+68
+08
+c9
+29
+a8
+40
+0e
+00
+24
+20
+85
+d5
+09
+80
+00
+08
+19
+89
+7e
+00
+e0
+a0
+80
+00
+1f
+e9
+7e
+00
+1f
+e1
+72
+1f
+20
+22
+85
+bf
+09
+80
+00
+08
+19
+89
+7e
+00
+e0
+a0
+80
+00
+c2
+00
+05
+bb
+18
+a2
+22
+00
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+c9
+cf
+1a
+22
+0a
+00
+09
+80
+00
+18
+78
+28
+7c
+00
+db
+60
+06
+64
+1f
+ef
+7e
+00
+1f
+f1
+7e
+00
+e0
+a1
+80
+00
+78
+45
+fc
+00
+20
+23
+05
+d5
+78
+37
+fc
+00
+68
+00
+80
+17
+1f
+e0
+a2
+00
+20
+40
+3a
+13
+78
+46
+fc
+00
+20
+40
+39
+b1
+68
+00
+c9
+cf
+1f
+e2
+22
+00
+20
+20
+06
+28
+78
+4d
+fc
+00
+78
+45
+fc
+00
+20
+20
+36
+c6
+20
+20
+05
+d5
+70
+49
+c4
+01
+70
+49
+c5
+00
+20
+60
+00
+00
+68
+00
+c9
+c5
+1f
+e0
+fe
+01
+60
+00
+c9
+c5
+20
+60
+00
+00
+68
+00
+c9
+c5
+1f
+e6
+7c
+01
+24
+41
+05
+e8
+68
+00
+c9
+c5
+c1
+00
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+c9
+c5
+20
+60
+00
+00
+70
+49
+c5
+02
+20
+60
+00
+00
+da
+20
+49
+c6
+20
+40
+06
+31
+60
+08
+c9
+d0
+28
+0f
+fe
+26
+20
+40
+85
+f8
+24
+40
+85
+fc
+98
+46
+7c
+00
+24
+21
+06
+15
+68
+00
+c9
+c5
+1f
+e6
+7c
+01
+24
+21
+06
+00
+68
+00
+c9
+c5
+c0
+00
+06
+15
+20
+60
+00
+00
+58
+00
+00
+82
+20
+60
+00
+00
+58
+00
+00
+77
+20
+60
+00
+00
+58
+00
+00
+80
+20
+60
+00
+00
+58
+00
+00
+75
+20
+60
+00
+00
+68
+00
+c9
+c5
+c1
+a3
+00
+00
+70
+49
+c5
+00
+68
+08
+c9
+d0
+28
+0f
+fe
+26
+20
+40
+85
+fa
+24
+40
+85
+fe
+98
+46
+7c
+00
+24
+61
+00
+00
+68
+00
+c9
+c4
+c0
+00
+06
+21
+1f
+e0
+ff
+ff
+60
+00
+c9
+c4
+c0
+00
+06
+21
+70
+89
+55
+d0
+70
+89
+56
+e0
+70
+89
+57
+4c
+70
+89
+58
+6c
+70
+89
+59
+50
+70
+42
+80
+01
+20
+60
+00
+00
+68
+00
+c9
+c4
+c0
+01
+06
+1a
+1f
+e0
+fe
+01
+60
+00
+c9
+c4
+c0
+00
+86
+0e
+70
+89
+55
+d0
+70
+89
+56
+e0
+70
+89
+57
+4c
+70
+89
+58
+3c
+70
+89
+59
+10
+70
+42
+80
+04
+20
+60
+00
+00
+70
+89
+55
+d0
+70
+89
+56
+c0
+70
+89
+57
+4c
+70
+89
+58
+6c
+70
+89
+59
+50
+70
+42
+80
+10
+20
+60
+00
+00
+68
+08
+c9
+ce
+58
+00
+49
+c6
+98
+40
+8a
+00
+1a
+22
+7e
+00
+e0
+a0
+80
+00
+18
+40
+84
+01
+18
+41
+04
+07
+60
+08
+c9
+ce
+20
+60
+00
+00
+d8
+40
+00
+00
+df
+20
+00
+08
+1a
+22
+0c
+00
+e8
+c0
+80
+00
+98
+40
+84
+00
+c2
+00
+06
+34
+18
+49
+7e
+00
+1f
+e2
+04
+00
+c6
+93
+00
+00
+1f
+e6
+fc
+0a
+20
+40
+7f
+53
+18
+07
+fe
+00
+1f
+f2
+7e
+00
+18
+07
+04
+00
+98
+41
+84
+00
+20
+60
+00
+00
+79
+20
+00
+26
+20
+40
+03
+a9
+70
+49
+38
+01
+20
+60
+00
+00
+68
+00
+c9
+2d
+c0
+00
+b1
+d4
+68
+00
+c9
+38
+c0
+00
+86
+4c
+c0
+01
+06
+4f
+c0
+01
+86
+52
+20
+20
+3b
+31
+70
+49
+38
+11
+70
+49
+90
+aa
+20
+20
+06
+54
+70
+49
+38
+12
+70
+49
+90
+55
+20
+20
+06
+54
+70
+49
+38
+13
+70
+49
+90
+22
+68
+00
+c9
+29
+1f
+e1
+7e
+07
+60
+00
+c9
+91
+68
+02
+49
+60
+60
+02
+49
+92
+70
+49
+96
+00
+da
+20
+49
+90
+d8
+40
+00
+07
+20
+40
+04
+60
+20
+40
+04
+73
+20
+40
+04
+49
+20
+20
+31
+d4
+68
+00
+c9
+38
+c1
+7f
+80
+00
+c0
+08
+86
+66
+c0
+09
+06
+68
+c0
+09
+86
+6a
+20
+60
+00
+00
+70
+49
+38
+02
+20
+20
+05
+16
+70
+49
+38
+03
+20
+20
+05
+16
+70
+49
+38
+ff
+70
+48
+96
+39
+20
+40
+02
+e1
+68
+02
+49
+08
+20
+40
+03
+ac
+20
+20
+05
+16
+79
+3f
+80
+26
+20
+40
+03
+ae
+68
+02
+49
+50
+20
+40
+04
+66
+68
+00
+c9
+38
+c1
+ff
+80
+00
+20
+40
+06
+86
+58
+00
+00
+00
+60
+01
+49
+56
+20
+00
+07
+d0
+68
+00
+c9
+56
+c0
+7f
+85
+4a
+20
+40
+05
+1e
+24
+2c
+06
+90
+24
+37
+86
+90
+70
+41
+31
+01
+79
+20
+00
+26
+58
+00
+00
+00
+60
+01
+49
+56
+70
+09
+bd
+3a
+20
+40
+7d
+86
+20
+20
+7e
+0d
+79
+20
+00
+27
+70
+49
+90
+ff
+68
+00
+c9
+29
+60
+00
+c9
+91
+68
+02
+49
+60
+60
+02
+49
+92
+d8
+40
+00
+06
+da
+20
+49
+90
+20
+40
+04
+60
+20
+20
+04
+73
+68
+01
+49
+56
+1f
+e0
+fe
+01
+60
+01
+49
+56
+20
+40
+03
+ae
+20
+20
+06
+79
+15
+16
+aa
+55
+00
+00
+aa
+55
+01
+00
+30
+40
+04
+aa
+55
+01
+00
+00
+40
+09
+aa
+55
+02
+00
+10
+40
+40
+0c
+aa
+55
+03
+00
+14
+40
+80
+13
+f0
+aa
+55
+01
+00
+20
+40
+20
+aa
+55
+08
+00
+22
+40
+40
+08
+08
+80
+0e
+f2
+04
+20
+aa
+55
+01
+00
+32
+40
+20
+aa
+55
+02
+00
+3e
+40
+88
+03
+aa
+55
+03
+00
+15
+42
+8f
+1b
+ce
+aa
+55
+04
+00
+19
+42
+0a
+0b
+ef
+0f
+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
+02
+12
+00
+00
+02
+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
+02
+00
+60
+4e
+00
+40
+aa
+55
+05
+00
+a9
+45
+09
+59
+00
+b0
+00
+aa
+55
+02
+00
+a8
+42
+30
+6f
+aa
+55
+01
+00
+b6
+42
+20
+aa
+55
+01
+00
+81
+42
+01
+aa
+55
+0b
+00
+69
+4e
+55
+d0
+56
+c0
+57
+4c
+58
+3c
+59
+50
+ff
+aa
+55
+02
+00
+63
+41
+69
+4e
+aa
+55
+01
+00
+e2
+46
+00
+aa
+55
+01
+00
+0d
+47
+01
+aa
+55
+01
+00
+25
+46
+00
+aa
+55
+01
+00
+32
+41
+42
+aa
+55
+01
+00
+d4
+08
+00
+aa
+55
+01
+00
+9f
+00
+00
+aa
+55
+01
+00
+d5
+08
+00
+aa
+55
+01
+00
+16
+00
+27
+aa
+55
+01
+00
+15
+47
+ff
+aa
+55
+01
+00
+0e
+47
+ff
+aa
+55
+01
+00
+31
+41
+01
+aa
+55
+02
+00
+12
+42
+20
+03
+aa
+55
+01
+00
+f6
+41
+08
+aa
+55
+02
+00
+f4
+41
+00
+00
+aa
+55
+01
+00
+33
+41
+00
+aa
+55
+02
+00
+94
+48
+02
+01
+aa
+55
+02
+00
+cf
+42
+04
+30
+aa
+55
+04
+00
+41
+4e
+9f
+3e
+cd
+4d
+aa
+55
+01
+00
+21
+45
+00
+aa
+55
+02
+00
+29
+45
+07
+00
+aa
+55
+01
+00
+96
+45
+50
+aa
+55
+01
+00
+f8
+44
+1a
+aa
+55
+06
+00
+3e
+45
+ab
+b9
+12
+0e
+10
+26
+aa
+55
+0a
+00
+40
+44
+09
+42
+4c
+45
+20
+4d
+6f
+75
+73
+65
+aa
+55
+01
+00
+4c
+45
+17
+aa
+55
+01
+00
+20
+45
+00
+aa
+55
+07
+00
+22
+45
+01
+00
+00
+00
+00
+00
+00
+aa
+55
+18
+00
+ff
+43
+00
+1f
+03
+19
+c2
+03
+03
+03
+12
+18
+02
+01
+05
+0a
+09
+42
+4c
+45
+20
+4d
+6f
+75
+73
+65
+aa
+55
+0c
+00
+20
+44
+1f
+0a
+09
+42
+4c
+45
+20
+4d
+6f
+75
+73
+65
+aa
+55
+b5
+01
+40
+4c
+01
+00
+02
+00
+28
+02
+00
+18
+02
+00
+02
+03
+28
+01
+0a
+03
+00
+02
+00
+2a
+09
+42
+4c
+45
+20
+4d
+6f
+75
+73
+65
+04
+00
+02
+03
+28
+01
+02
+05
+00
+02
+01
+2a
+02
+c2
+03
+06
+00
+02
+03
+28
+01
+02
+07
+00
+02
+04
+2a
+08
+06
+00
+06
+00
+64
+00
+2c
+01
+08
+00
+02
+00
+28
+02
+01
+18
+09
+00
+02
+03
+28
+01
+20
+0a
+00
+02
+05
+2a
+00
+0b
+00
+02
+02
+29
+02
+00
+00
+0c
+00
+02
+00
+28
+02
+0a
+18
+0d
+00
+02
+03
+28
+01
+02
+0e
+00
+02
+29
+2a
+06
+59
+69
+43
+68
+69
+70
+0f
+00
+02
+03
+28
+01
+02
+10
+00
+02
+50
+2a
+07
+02
+35
+12
+22
+aa
+01
+00
+11
+00
+02
+00
+28
+02
+0f
+18
+12
+00
+02
+03
+28
+01
+02
+13
+00
+02
+19
+2a
+01
+33
+14
+00
+02
+02
+29
+02
+00
+00
+15
+00
+02
+00
+28
+02
+12
+18
+16
+00
+02
+03
+28
+01
+06
+17
+00
+02
+4e
+2a
+01
+01
+18
+00
+02
+03
+28
+01
+1a
+19
+00
+02
+4d
+2a
+07
+00
+00
+00
+00
+00
+00
+00
+1a
+00
+02
+02
+29
+02
+00
+00
+1b
+00
+02
+08
+29
+02
+01
+01
+1c
+00
+02
+03
+28
+01
+0a
+1d
+00
+02
+4b
+2a
+45
+05
+01
+09
+02
+a1
+01
+85
+01
+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
+95
+01
+81
+06
+c0
+c0
+1e
+00
+02
+03
+28
+01
+1a
+1f
+00
+02
+33
+2a
+08
+00
+00
+00
+00
+00
+00
+00
+00
+20
+00
+02
+02
+29
+02
+01
+00
+21
+00
+02
+03
+28
+01
+02
+22
+00
+02
+4a
+2a
+04
+01
+01
+00
+03
+23
+00
+02
+03
+28
+01
+04
+24
+00
+02
+4c
+2a
+00
+25
+00
+02
+03
+28
+01
+12
+26
+00
+02
+4d
+2a
+07
+00
+00
+00
+00
+00
+00
+00
+27
+00
+02
+02
+29
+02
+00
+00
+28
+00
+02
+08
+29
+02
+11
+01
+29
+00
+02
+03
+28
+01
+0e
+2a
+00
+02
+4d
+2a
+07
+00
+00
+00
+00
+00
+00
+00
+2b
+00
+02
+08
+29
+02
+11
+02
+00
+00
+aa
+55
+02
+00
+37
+46
+40
+4c
+aa
+55
+01
+00
+48
+4e
+50
+aa
+55
+08
+00
+8d
+45
+07
+00
+07
+00
+05
+00
+2c
+01
+aa
+55
+01
+00
+20
+4e
+00
+aa
+55
+02
+00
+4e
+4e
+19
+00
+aa
+55
+02
+00
+8b
+45
+22
+00
+aa
+55
+01
+00
+6c
+45
+01
+aa
+55
+01
+00
+a8
+45
+01
+aa
+55
+01
+00
+80
+42
+02
+aa
+55
+01
+00
+6f
+49
+01
+aa
+55
+01
+00
+29
+49
+01
+aa
+55
+01
+00
+6e
+49
+04
+aa
+55
+01
+00
+65
+49
+00
+aa
+55
+02
+00
+2b
+49
+c0
+12
+aa
+55
+03
+00
+4d
+49
+19
+19
+1c
+aa
+55
+10
+00
+39
+49
+00
+13
+2c
+42
+06
+15
+36
+48
+0f
+1a
+3a
+4c
+11
+23
+31
+4d
+aa
+55
+01
+00
+38
+49
+ff
+aa
+55
+04
+00
+34
+49
+20
+15
+10
+05
+aa
+55
+0a
+00
+90
+49
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+aa
+55
+08
+00
+58
+49
+00
+48
+60
+00
+00
+00
+00
+00
+c6
+5e
Index: btms/output/memmap.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/memmap.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/memmap.format	(working copy)
@@ -0,0 +1,1489 @@
+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
+0x0b2a mem_c51_flag
+0x0b2b mem_c51_lmp_lock
+0x0b2c mem_lmp_bb_disconnect_reason
+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
+0x4a5c mem_mouse_uuid_list_end
+0x4a5c mem_mouse_le_att_list
+0x4cb4 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
+0x4729 mem_current_event
+0x472a mem_ipc_lock_rx_data_bt
+0x472b mem_ipc_lock_rx_data_c51
+0x472c mem_ipc_lock_tx_data_bt
+0x472d mem_ipc_lock_tx_data_c51
+0x472e mem_ipc_2bt_fifo_head
+0x47c4 mem_ipc_2bt_fifo_end
+0x47c4 mem_ipc_2bt_read_index
+0x47c6 mem_ipc_2bt_write_index
+0x47c8 mem_ipc_2C51_fifo_head
+0x482c mem_ipc_2C51_fifo_end
+0x482c mem_ipc_2C51_read_index
+0x482e mem_ipc_2C51_write_index
+0x4830 mem_c51_private_area
+0x4894 mem_ipc_tx_evt_buff
+0x4896 mem_ipc_tx_evt
+0x4897 mem_ipc_rx_type
+0x4898 mem_ipc_bt_timer
+0x489a mem_ipc_c51_timer
+0x489c mem_ipc_bt_100ms_timer
+0x489d mem_ipc_c51_100ms_timer
+0x489e mem_ipc_last_check_timer
+0x48a2 mem_new_24g_rxbuf
+0x48c4 mem_new_24g_txbuf
+0x48e4 mem_new_24g_txpayload
+0x4906 mem_new_24g_rxpayload
+0x4926 mem_new_24g_rxdata_length
+0x4927 mem_new_24g_pid
+0x4928 mem_new_24g_datalen
+0x4929 mem_new_24g_data_type
+0x492a mem_new_24g_txlen
+0x492b mem_new_24g_rx_window
+0x492d mem_new_24g_ensure
+0x492e mem_new_24g_txfail_cnt
+0x4930 mem_new_24g_get_ack_fail
+0x4931 mem_new_24g_retry
+0x4932 mem_new_24g_ch
+0x4933 mem_new_24g_current_ch_number
+0x4934 mem_new_24g_paring_addr
+0x4938 mem_new_24g_pairing_sm
+0x4939 mem_new_24g_ch_map1
+0x493d mem_new_24g_ch_map2
+0x4941 mem_new_24g_ch_map3
+0x4945 mem_new_24g_ch_map4
+0x4949 mem_new_24g_tx_btclk
+0x494d mem_new_24g_interval
+0x494e mem_new_24g_interval_min
+0x494f mem_new_24g_interval_max
+0x4950 mem_new_24g_addr
+0x4954 mem_new_24g_abort_pac
+0x4955 mem_new_24g_sync_pac
+0x4956 mem_new_24g_check_dongle_times
+0x4958 mem_new_24g_enter_hibernate
+0x4960 mem_new_24g_device_addr
+0x4964 mem_new_24g_pac_index
+0x4965 mem_new_24g_no_ack
+0x4966 mem_new_24g_sta_crc
+0x4969 mem_new_24g_last_crc
+0x496c mem_new_24g_sta_pid
+0x496d mem_new_24g_last_pid
+0x496e mem_new_24g_max_retry
+0x496f mem_new_24g_mode
+0x4970 mem_new_uart_packet
+0x4990 mem_new_24g_common_temp
+0x49b0 mem_new_24g_rf_last_sta
+0x49b1 mem_new_24g_rf_hop_ch
+0x49b2 mem_new_24g_sync_cnt
+0x49b3 mem_new_24g_hop_pac_retry
+0x49b4 mem_new_24g_rf_work_stage
+0x49b5 mem_new_24g_hop_fastly_cnt
+0x49b6 mem_new_24g_auto_paring_switch
+0x49b7 mem_new_24g_key_wheel_event
+0x49b8 mem_new_24g_delay_long_sleep_cnt
+0x49b9 mem_new_24g_delay_long_sleep_maxcnt
+0x49ba mem_new_24g_enter_lpm_timer
+0x49bb mem_new_24g_syncword
+0x49bd mem_new_24g_syncword_crc8
+0x49be mem_new_24g_get_syncword_crc8
+0x49bf mem_new_24g_paccnt
+0x49c0 mem_new_24g_ota_enable
+0x49c1 mem_bt_wakeup_from_long_mult
+0x49c2 mem_bt_motion_event
+0x49c3 mem_tx_power_temp
+0x49c4 mem_power_ctrl_level
+0x49c5 mem_power_ctrl_pac_succ_cnt
+0x49c6 mem_rssi_signal_buf
+0x49ce mem_rssi_signal_index
+0x49cf mem_rssi_hex_received
+0x49d0 mem_rssi_avg_received
+0x49d1 mem_last_txlch
+0x49d2 mem_last_txlen
+0x49d4 mem_last_txdata
+0x49e8 mem_device_uuid_list
+0x4c40 mem_device_uuid_list_end
+0x4c40 mem_device_le_att_list
+0x4e20 mem_device_le_att_list_end
+0x4e20 mem_empty_count_user
+0x4e21 mem_hid_buff
+0x4e41 mem_adc_0v
+0x4e43 mem_adc_3v
+0x4e45 mem_hibernate_flag
+0x4e46 mem_new_supervision_to
+0x4e48 mem_le_rx_winsows
+0x4e4c mem_le_att_report1
+0x4e4e mem_le_att_report2
+0x4e50 mem_le_slave_update_param_timer
+0x4e51 mem_le_slave_update_mult_timer
+0x4e52 mem_le_reconn_enable_notify_timer
+0x4e53 mem_le_reconn_flag
+0x4e54 mem_le_buff_temp
+0x4e60 mem_le_rx_window_inc
+0x4e62 mem_le_prepare_tx_retransmited_number
+0x4e63 mem_last_check_clk
+0x4e67 mem_hid_send_handshake
+0x4e68 mem_feature_ext_page_number
+0x4e69 mem_rf_init_data_new
+0x4e74 mem_short_lpm_interval_param
+0x4e78 mem_short_lpm_enable
+0x4e79 mem_short_lpm_tx_cnt
+0x4e7a mem_ckln_24g_short_lpm
+0x4e7d mem_send_data_24g_short_lpm
+0x4e7e mem_short_lpm_interval_cnt
+0x4e7f mem_ipc_is_ready
+0x4e80 mem_short_data_wheel
+0x4e81 mem_ble_data_wheel
+0x4e82 mem_ble_data_wheel_lpm_timer
+0x4e83 mem_bt_read_ipc_count
+0x4e84 mem_51_read_sensor_count
+0x4e85 mem_queue_write_prt
+0x4e86 mem_queue_read_ptr
+0x4e87 mem_queue_buffer0
+0x4e8e mem_queue_buffer1
+0x4e95 mem_queue_buffer2
+0x4e9c mem_queue_buffer3
+0x4ea3 mem_ble_read_ipc_fifo_once
+0x4ea4 mem_ble_send_flag
+0x4ea5 mem_mouse_le_pairing_flag
+0x4ea6 mem_mult_time_arrive_flag
+0x4ea7 mem_led_gpio8_blink_timer
+0x4ea8 mem_led_gpio8_blink_cnt
+0x4ea9 mem_led_gpio5_blink_timer
+0x4eaa mem_led_gpio5_blink_cnt
+0x4eab mem_32asm_data_end
Index: btms/output/otp.dat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/otp.dat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/otp.dat	(working copy)
@@ -0,0 +1,12 @@
+00
+02
+aa
+55
+00
+00
+aa
+55
+00
+00
+82
+78
Index: btms/output/program.lis
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/program.lis	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/program.lis	(working copy)
@@ -0,0 +1,28498 @@
+include "bt_format "
+org 0x0000
+0000 c512800f bmark1 mark_ext_patch ,patch_ext 
+0001 c0000025 beq patch00_0 ,p_soft_reset 
+0002 c0018031 beq patch00_3 ,p_main_loop 
+0003 c0430037 beq patch10_6 ,p_shutdown_radio 
+0004 c0450042 beq patch11_2 ,p_set_freq_tx 
+0005 c0458065 beq patch11_3 ,p_initialize_radio_cont 
+0006 c0538071 beq patch14_7 ,p_lpm_recover_clk 
+0007 c0540078 beq patch15_0 ,p_lpm_dispatch 
+0008 c054808c beq patch15_1 ,p_lpm_dispatch_next2 
+0009 c056009f beq patch15_4 ,p_lpm_dispatch_unconn 
+000a c05a033b beq patch16_4 ,p_device_init 
+000b c05a80b8 beq patch16_5 ,p_app_lpm_init 
+000c c05b00bf beq patch16_6 ,p_app_process_bb_event 
+000d c05b80df beq patch16_7 ,p_app_evt_timer 
+000e 20203b34 branch loop 
+
+patch_ext:
+000f c002813a beq patch20_5 ,p_le_slave_match 
+0010 c00b013f beq patch22_6 ,p_le_receive_skip 
+0011 c00d8143 beq patch23_3 ,p_le_send_adv_ind 
+0012 c0118146 beq patch24_3 ,p_le_update_param 
+0013 c017816a beq patch25_7 ,p_le_prepare_tx 
+0014 c018817f beq patch26_1 ,p_le_prepare_tx_ll 
+0015 c0190191 beq patch26_2 ,p_le_prepare_smp0 
+0016 c01981a4 beq patch26_3 ,p_le_prepare_att 
+0017 c01c81b5 beq patch27_1 ,p_le_send_packet 
+0018 c01e01c2 beq patch27_4 ,p_le_parse0 
+0019 c01e81d5 beq patch27_5 ,p_le_parse_smp 
+001a c01f01db beq patch27_6 ,p_le_parse_att 
+001b c01f81ea beq patch27_7 ,p_le_adv 
+001c c0210208 beq patch28_2 ,p_le_receive_window_size 
+001d c026820d beq patch29_5 ,p_le_lpm_set_mult 
+001e c0410227 beq patch30_2 ,p_iicd_read_eep 
+001f c04a8229 beq patch32_5 ,p_gpio_set_before_lpm_common 
+0020 c0798230 beq patch3e_3 ,p_ui_timer_check_end 
+0021 c07b823c beq patch3e_7 ,p_check_51cmd_once 
+0022 c07c0271 beq patch3f_0 ,p_check_51cmd_once_continue0 
+0023 c07c8277 beq patch3f_1 ,p_check_enter_hibernate 
+0024 20203b34 branch loop 
+
+p_soft_reset:
+0025 20800000 clear_stack 
+0026 70403000 jam 0 ,mem_patch30 
+0027 2435b004 nbranch soft_reset + 3 ,wake 
+0028 6800c595 fetch 1 ,mem_le_switch_send_data 
+0029 243a002f nbranch p_soft_reset_start_51 ,blank 
+002a 6800ce78 fetch 1 ,mem_short_lpm_enable 
+002b 203a3004 branch soft_reset + 3 ,blank 
+002c 704e7f00 jam 0 ,mem_ipc_is_ready 
+002d c5933004 bmark0 mark_24g ,soft_reset + 3 
+002e 2435b004 nbranch soft_reset + 3 ,wake 
+
+p_soft_reset_start_51:
+002f 70828003 hjam start_c51_core ,core_docd_ctrl 
+0030 20203004 branch soft_reset + 3 
+
+p_main_loop:
+0031 20400281 call p_ipc_timer_check 
+0032 20400418 call g24_transmit_process 
+0033 204002b3 call p_ipc_rx 
+0034 6800ce78 fetch 1 ,mem_short_lpm_enable 
+0035 243a036d nbranch p_24g_short_lpm_process_loop ,blank 
+0036 2020301b branch main_loop + 2 
+
+p_shutdown_radio:
+0037 2030b9a3 branch shutdown_radio0 ,is_rx 
+0038 708955d4 hjam 0xd4 ,0x955 
+0039 20000004 nop 4 
+003a 708955d2 hjam 0xd2 ,0x955 
+003b 20000004 nop 4 
+003c 708955d1 hjam 0xd1 ,0x955 
+003d 20000004 nop 4 
+003e 202039ae branch shutdown_radio_pair 
+003f 6800c280 fetch 1 ,mem_tx_power 
+0040 c00a39ae beq tx_power_pair ,shutdown_radio_pair 
+0041 2020399c branch shutdown_radio_select 
+
+p_set_freq_tx:
+0042 60088017 storet 1 ,mem_last_freq 
+0043 1840a200 add temp ,0 ,rega 
+0044 20403a13 call rf_write_freq 
+0045 58000500 setarg param_pll_setup 
+0046 20403b35 call sleep 
+
+p_txon:
+0047 70890601 hjam 0x1 ,rfen_adc 
+0048 7089003c hjam 0x3c ,rfen_rx 
+0049 708901e0 hjam 0xe0 ,rfen_tx 
+004a 70896d12 hjam 0x12 ,0x96d 
+004b 2000000a nop 10 
+004c 70890201 hjam 0x01 ,rfen_mdm 
+004d 7089023d hjam 0x3d ,rfen_mdm 
+004e 2000000a nop 10 
+004f 708903b7 hjam 0xb7 ,rfen_sn 
+0050 2000000a nop 10 
+0051 7089027f hjam 0x7f ,rfen_mdm 
+0052 20200062 branch p_set_tx_power_pair 
+0053 6800c280 fetch 1 ,mem_tx_power 
+0054 c00a0062 beq tx_power_pair ,p_set_tx_power_pair 
+0055 c280805c bbit1 tx_power_3db ,p_rx_high_sens 
+0056 c281005c bbit1 tx_power_5db ,p_rx_high_sens 
+
+p_rx_low_sens:
+0057 70894c5b hjam 0x5b ,0x894c 
+0058 70894d96 hjam 0x96 ,0x894d 
+0059 70894e2c hjam 0x2c ,0x894e 
+005a 70894f46 hjam 0x46 ,0x894f 
+005b 20200060 branch p_txon_select_power_level 
+
+p_rx_high_sens:
+005c 70894cfb hjam 0xfb ,0x894c 
+005d 70894def hjam 0xef ,0x894d 
+005e 70894eec hjam 0xec ,0x894e 
+005f 70894f5e hjam 0x5e ,0x894f 
+
+p_txon_select_power_level:
+0060 6800c280 fetch 1 ,mem_tx_power 
+0061 202039dc branch txon_power_select 
+
+p_set_tx_power_pair:
+0062 708956c5 hjam 0xc5 ,0x8956 
+0063 708955d0 hjam 0xd0 ,0x8955 
+0064 20600000 rtn 
+
+p_initialize_radio_cont:
+0065 20403cd2 call lpm_cal_xtal_startup 
+0066 20403a5f call switchto_dpllclk 
+0067 70804206 hjam clksel_rc ,core_clksel 
+0068 68108968 hfetch 1 ,rf_clkpll_int 
+0069 79207e07 set1 7 ,pdata 
+006a 60108968 hstore 1 ,rf_clkpll_int 
+006b 793ffe07 set0 7 ,pdata 
+006c 60108968 hstore 1 ,rf_clkpll_int 
+006d 79207e07 set1 7 ,pdata 
+006e 60108968 hstore 1 ,rf_clkpll_int 
+006f 70804205 hjam clksel_dpll ,core_clksel 
+0070 20203a0c branch initialize_radio_cont + 4 
+
+p_lpm_recover_clk:
+0071 20403c2b call lpm_recover_clk + 2 
+0072 6800ce45 fetch 1 ,mem_hibernate_flag 
+0073 207a0000 rtn blank 
+0074 704e4500 jam 0 ,mem_hibernate_flag 
+0075 1c427e00 copy clkn_bt ,pdata 
+0076 6002489e store 4 ,mem_ipc_last_check_timer 
+0077 20600000 rtn 
+
+p_lpm_dispatch:
+0078 c6130000 rtnmark1 mark_24g 
+0079 20403be2 call lpo_calibration 
+007a 6801c20f fetch 3 ,mem_clks_per_lpo 
+007b 207a0000 rtn blank 
+007c 68014042 fetch 2 ,mem_context + coffset_tsniff 
+007d d840ffff arg 0xffff ,temp 
+007e 98467c00 isub temp ,null 
+007f 20628000 rtn zero 
+0080 6800c131 fetch 1 ,mem_lpm_mode 
+0081 207a0000 rtn blank 
+0082 20404816 call l2cap_malloc_is_fifo_empty 
+0083 247a0000 nrtn blank 
+0084 20403d0e call lpm_check_wake_lock 
+0085 247a0000 nrtn blank 
+0086 20403a7b call xtal_fast_wake 
+0087 6800c6e2 fetch 1 ,mem_ssp_enable 
+0088 203a3c5e branch lpm_dispatch_next ,blank 
+0089 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+008a 207a0000 rtn blank 
+008b 20203c5e branch lpm_dispatch_next 
+
+p_lpm_dispatch_next2:
+008c 6800c595 fetch 1 ,mem_le_switch_send_data 
+008d 203a0099 branch p_lpm_dispatch_long_mult ,blank 
+008e 6800809f fetch 1 ,mem_lpm_current_mult 
+008f 243a0099 nbranch p_lpm_dispatch_long_mult ,blank 
+0090 6800ce83 fetch 1 ,mem_bt_read_ipc_count 
+0091 6808ce84 fetcht 1 ,mem_51_read_sensor_count 
+0092 98467c00 isub temp ,null 
+0093 24628000 nrtn zero 
+0094 6800ce81 fetch 1 ,mem_ble_data_wheel 
+0095 247a0000 nrtn blank 
+0096 58000000 setarg 0 
+0097 600400a0 store 8 ,mem_gpio_wakeup_low 
+0098 20203c6a branch lpm_dispatch_next2 
+
+p_lpm_dispatch_long_mult:
+0099 204000a4 call p_check_ipc_for_lpm 
+009a 24740000 nrtn user 
+009b 68008b2b fetch 1 ,mem_c51_lmp_lock 
+009c 247a0000 nrtn blank 
+009d 7049c100 jam 0 ,mem_bt_wakeup_from_long_mult 
+009e 20203c6a branch lpm_dispatch_next2 
+
+p_lpm_dispatch_unconn:
+009f 204000a4 call p_check_ipc_for_lpm 
+00a0 24740000 nrtn user 
+00a1 68008b2b fetch 1 ,mem_c51_lmp_lock 
+00a2 247a0000 nrtn blank 
+00a3 20203c8c branch lpm_dispatch_unconn + 2 
+
+p_check_ipc_for_lpm:
+00a4 204000af call p_check_ipc_2bt 
+00a5 24740000 nrtn user 
+00a6 204000ac call p_check_ipc_2c51 
+00a7 24740000 nrtn user 
+00a8 700b2b01 jam 1 ,mem_c51_lmp_lock 
+00a9 700b2a01 jam syc_task_lpm ,mem_c51_flag 
+00aa 204000b4 call p_c51_wait 
+00ab 202000af branch p_check_ipc_2bt 
+
+p_check_ipc_2c51:
+00ac 6801482c fetch 2 ,mem_ipc_2c51_read_index 
+00ad 6809482e fetcht 2 ,mem_ipc_2c51_write_index 
+00ae 202000b1 branch p_check_ipc_common 
+
+p_check_ipc_2bt:
+00af 680147c4 fetch 2 ,mem_ipc_2bt_read_index 
+00b0 680947c6 fetcht 2 ,mem_ipc_2bt_write_index 
+
+p_check_ipc_common:
+00b1 98467c00 isub temp ,null 
+00b2 2022e4c0 branch enable_usr ,zero 
+00b3 202031d4 branch disable_usr 
+
+p_c51_wait:
+00b4 68008b2a fetch 1 ,mem_c51_flag 
+00b5 2000000a nop 10 
+00b6 c08000b4 bne 0 ,p_c51_wait 
+00b7 20600000 rtn 
+
+p_app_lpm_init:
+00b8 70001627 jam 39 ,mem_le_ch_mapped 
+00b9 70015000 jam 0 ,mem_tester_emulate 
+00ba 70017e00 jam 0 ,mem_debug_config 
+00bb 70017f00 jam 0 ,mem_lch_code 
+00bc 58000000 setarg 0 
+00bd 600288d2 store 5 ,mem_sp_state_start 
+00be 20600000 rtn 
+
+p_app_process_bb_event:
+00bf da2046f0 arg mem_ipc_fifo_bt2c51 ,rega 
+00c0 20407f95 call fifo_out 
+00c1 207a0000 rtn blank 
+00c2 1fe22600 copy pdata ,regc 
+00c3 204000c5 call p_app_event_normal_process 
+00c4 20203d9b branch app_process_bb_event_priority 
+
+p_app_event_normal_process:
+00c5 c10c0000 rtneq bt_evt_linkkey_generate 
+00c6 c00a00ca beq bt_evt_le_connected ,p_device_le_conn 
+00c7 c00a80d2 beq bt_evt_le_disconnected ,p_device_le_discon 
+00c8 c01480dd beq bt_evt_le_enc_info ,p_device_le_enc_info 
+00c9 20203d73 branch app_event_normal_process 
+
+p_device_le_conn:
+00ca 704e8300 jam 0 ,mem_bt_read_ipc_count 
+00cb 70421200 jam 0 ,mem_lpm_mult 
+00cc 704ea600 jam 0 ,mem_mult_time_arrive_flag 
+00cd 704e5178 jam 120 ,mem_le_slave_update_mult_timer 
+00ce 20403e61 call app_ble_stop_adv 
+00cf 20403e59 call app_bt_stop_discovery 
+00d0 20403e7f call app_lpm_mult_enable 
+00d1 20203dc2 branch app_le_event_bb_connected 
+
+p_device_le_discon:
+00d2 704ea400 jam 0 ,mem_ble_send_flag 
+00d3 204002fa call queue_init 
+00d4 7044b200 jam 0 ,mem_ltk_exists 
+00d5 70421200 jam 0 ,mem_lpm_mult 
+00d6 704ea600 jam 0 ,mem_mult_time_arrive_flag 
+00d7 704e5100 jam 0 ,mem_le_slave_update_mult_timer 
+00d8 70456a00 jam flag_le_pairing_null ,mem_le_pairing_state 
+00d9 68094e4e fetcht 2 ,mem_le_att_report2 
+00da 600944f8 storet 2 ,mem_le_notify_handle 
+00db 204052a0 call le_clean_att_list_handle_enable 
+00dc 20203dc6 branch app_le_event_bb_disconn 
+
+p_device_le_enc_info:
+00dd 20400128 call p_app_updata_le_param 
+00de 20207e3b branch check_51cmd_le_start_write 
+
+p_app_evt_timer:
+00df 6008824e storet 1 ,mem_app_evt_timer_count 
+00e0 6800c89c fetch 1 ,mem_ipc_bt_100ms_timer 
+00e1 1fe0fe01 increase 1 ,pdata 
+00e2 6000c89c store 1 ,mem_ipc_bt_100ms_timer 
+
+p_app_evt_100ms_loop:
+00e3 6800824e fetch 1 ,mem_app_evt_timer_count 
+00e4 207a0000 rtn blank 
+00e5 1fe0ffff increase -1 ,pdata 
+00e6 6000824e store 1 ,mem_app_evt_timer_count 
+00e7 2040012b call p_le_slave_update_mult_timer 
+00e8 2040010e call p_check_mult_parameter 
+00e9 20400134 call p_le_reconn_enable_notify_timer 
+00ea 20400121 call p_ble_data_wheel_lpm_timer 
+00eb 204000ee call p_led_gpio8_blink_timer 
+00ec 204000fe call p_led_gpio5_blink_timer 
+00ed 202000e3 branch p_app_evt_100ms_loop 
+
+p_led_gpio8_blink_timer:
+00ee 6800cea7 fetch 1 ,mem_led_gpio8_blink_timer 
+00ef 207a0000 rtn blank 
+00f0 1fe0ffff increase -1 ,pdata 
+00f1 6000cea7 store 1 ,mem_led_gpio8_blink_timer 
+00f2 247a0000 nrtn blank 
+00f3 6800cea8 fetch 1 ,mem_led_gpio8_blink_cnt 
+00f4 1fe0fe01 increase 1 ,pdata 
+00f5 1fe17e01 and_into 1 ,pdata 
+00f6 6000cea8 store 1 ,mem_led_gpio8_blink_cnt 
+00f7 c00000fa beq 0 ,p_led_gpio8_off 
+00f8 c00080fc beq 1 ,p_led_gpio8_on 
+00f9 20600000 rtn 
+
+p_led_gpio8_off:
+00fa d8400008 arg 8 ,temp 
+00fb 202064fd branch gpio_out_inactive 
+
+p_led_gpio8_on:
+00fc d8400008 arg 8 ,temp 
+00fd 202064ff branch gpio_out_active 
+
+p_led_gpio5_blink_timer:
+00fe 6800cea9 fetch 1 ,mem_led_gpio5_blink_timer 
+00ff 207a0000 rtn blank 
+0100 1fe0ffff increase -1 ,pdata 
+0101 6000cea9 store 1 ,mem_led_gpio5_blink_timer 
+0102 247a0000 nrtn blank 
+0103 6800ceaa fetch 1 ,mem_led_gpio5_blink_cnt 
+0104 1fe0fe01 increase 1 ,pdata 
+0105 1fe17e01 and_into 1 ,pdata 
+0106 6000ceaa store 1 ,mem_led_gpio5_blink_cnt 
+0107 c000010a beq 0 ,p_led_gpio5_off 
+0108 c000810c beq 1 ,p_led_gpio5_on 
+0109 20600000 rtn 
+
+p_led_gpio5_off:
+010a d8400005 arg 5 ,temp 
+010b 202064fd branch gpio_out_inactive 
+
+p_led_gpio5_on:
+010c d8400005 arg 5 ,temp 
+010d 202064ff branch gpio_out_active 
+
+p_check_mult_parameter:
+010e 6800cea6 fetch 1 ,mem_mult_time_arrive_flag 
+010f 207a0000 rtn blank 
+0110 6800c212 fetch 1 ,mem_lpm_mult 
+0111 2fe1fe20 compare 0x20 ,pdata ,0xff 
+0112 24408118 ncall p_set_mult_para ,true 
+0113 6800c131 fetch 1 ,mem_lpm_mode 
+0114 205a0116 call p_set_multmode ,blank 
+0115 20600000 rtn 
+
+p_set_multmode:
+0116 70413101 jam 1 ,mem_lpm_mode 
+0117 20600000 rtn 
+
+p_set_mult_para:
+0118 70421220 jam 0x20 ,mem_lpm_mult 
+0119 20600000 rtn 
+
+p_24g_enter_lpm_timer:
+011a 6800c9ba fetch 1 ,mem_new_24g_enter_lpm_timer 
+011b 207a0000 rtn blank 
+011c 704e8000 jam 0 ,mem_short_data_wheel 
+011d 1fe0ffff increase -1 ,pdata 
+011e 6000c9ba store 1 ,mem_new_24g_enter_lpm_timer 
+011f 247a0000 nrtn blank 
+0120 20600000 rtn 
+
+p_ble_data_wheel_lpm_timer:
+0121 6800ce82 fetch 1 ,mem_ble_data_wheel_lpm_timer 
+0122 207a0000 rtn blank 
+0123 1fe0ffff increase -1 ,pdata 
+0124 6000ce82 store 1 ,mem_ble_data_wheel_lpm_timer 
+0125 247a0000 nrtn blank 
+0126 704e8100 jam 0 ,mem_ble_data_wheel 
+0127 20600000 rtn 
+
+p_app_updata_le_param:
+0128 20403e7f call app_lpm_mult_enable 
+0129 7009bd12 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+012a 20207d90 branch ui_ipc_send_cmd 
+
+p_le_slave_update_mult_timer:
+012b 6800ce51 fetch 1 ,mem_le_slave_update_mult_timer 
+012c 207a0000 rtn blank 
+012d 1fe0ffff increase -1 ,pdata 
+012e 6000ce51 store 1 ,mem_le_slave_update_mult_timer 
+012f 247a0000 nrtn blank 
+0130 70421220 jam 0x20 ,mem_lpm_mult 
+0131 70413101 jam 1 ,mem_lpm_mode 
+0132 704ea601 jam 1 ,mem_mult_time_arrive_flag 
+0133 20600000 rtn 
+
+p_le_reconn_enable_notify_timer:
+0134 6800ce52 fetch 1 ,mem_le_reconn_enable_notify_timer 
+0135 207a0000 rtn blank 
+0136 1fe0ffff increase -1 ,pdata 
+0137 6000ce52 store 1 ,mem_le_reconn_enable_notify_timer 
+0138 247a0000 nrtn blank 
+0139 20203e6d branch app_ble_start_write 
+
+p_le_slave_match:
+013a 20404968 call le_got_first_packet 
+013b 20404b51 call le_acknowledge 
+013c 20404bd8 call le_prepare_tx 
+013d 204005ea call power_ctrl_start 
+013e 20204945 branch le_slave_match + 5 
+
+p_le_receive_skip:
+013f 20403a50 call save_rssi 
+0140 1fe22200 copy pdata ,rega 
+0141 20400628 call rssi_signal 
+0142 20204a3d branch le_receive_skip + 3 
+
+p_le_send_adv_ind:
+0143 68024e48 fetch 4 ,mem_le_rx_winsows 
+0144 60024596 store 4 ,mem_le_transmit_window 
+0145 20204a8c branch le_send_adv_ind + 2 
+
+p_le_update_param:
+0146 70413101 jam 1 ,mem_lpm_mode 
+0147 6801037c fetch 2 ,mem_le_event_count 
+0148 68090382 fetcht 2 ,mem_le_instant 
+0149 98467e00 isub temp ,pdata 
+014a 600109be store 2 ,mem_pdatatemp 
+014b 68008362 fetch 1 ,mem_le_state 
+014c 793ffe05 set0 lestate_update_param ,pdata 
+014d 793ffe03 set0 lestate_got_first_packet ,pdata 
+014e 60008362 store 1 ,mem_le_state 
+014f 68020366 fetch 4 ,mem_le_anchor 
+0150 68090364 fetcht 2 ,mem_le_tsniff 
+0151 600909c6 storet 2 ,mem_temp 
+0152 98462200 isub temp ,rega 
+0153 6800c45b fetch 1 ,mem_le_new_param 
+0154 6000838d store 1 ,mem_le_window_size 
+0155 e8c90000 ifetcht 2 ,contr 
+0156 e8c10000 ifetch 2 ,contr 
+0157 1febfe00 lshift2 pdata ,pdata 
+0158 60010364 store 2 ,mem_le_tsniff 
+0159 184b8400 lshift2 temp ,temp 
+015a 9840fe00 iadd temp ,pdata 
+015b e8ca0000 ifetcht 4 ,contr 
+015c 600a038e storet 4 ,mem_le_slave_latency 
+015d 9a20fe00 iadd rega ,pdata 
+015e 1fe22800 copy pdata ,regab 
+015f 68010364 fetch 2 ,mem_le_tsniff 
+0160 680909c6 fetcht 2 ,mem_temp 
+0161 98467e00 isub temp ,pdata 
+0162 680909be fetcht 2 ,mem_pdatatemp 
+0163 984ffe00 imul32 temp ,pdata 
+0164 9a80fe00 iadd regab ,pdata 
+0165 60020366 store 4 ,mem_le_anchor 
+0166 20405199 call le_receive_window_size 
+0167 68010390 fetch 2 ,mem_le_superto 
+0168 60014561 store 2 ,mem_le_init_superto 
+0169 20600000 rtn 
+
+p_le_prepare_tx:
+016a 68008379 fetch 1 ,mem_le_arq 
+016b c282817b bbit1 wak ,p_le_prepare_tx_retansmited 
+016c 204005dc call power_ctrl_pac_succ_incrs 
+016d 704e6200 jam 0 ,mem_le_prepare_tx_retransmited_number 
+016e 6800ce20 fetch 1 ,mem_empty_count_user 
+016f 243a0175 nbranch p_le_send_empyt ,blank 
+0170 6800cea5 fetch 1 ,mem_mouse_le_pairing_flag 
+0171 c0008179 beq 1 ,p_le_smp_empty 
+0172 68008303 fetch 1 ,mem_le_rxbuf + 1 
+0173 203a4bde branch le_prepare_tx_1 ,blank 
+0174 20204f87 branch le_send_empty 
+
+p_le_send_empyt:
+0175 6800ce20 fetch 1 ,mem_empty_count_user 
+0176 1fe0ffff increase -1 ,pdata 
+0177 6000ce20 store 1 ,mem_empty_count_user 
+0178 20204f87 branch le_send_empty 
+
+p_le_smp_empty:
+0179 704e2003 jam 3 ,mem_empty_count_user 
+017a 20204bde branch le_prepare_tx_1 
+
+p_le_prepare_tx_retansmited:
+017b 6800ce62 fetch 1 ,mem_le_prepare_tx_retransmited_number 
+017c 1fe0fe01 increase 1 ,pdata 
+017d 6000ce62 store 1 ,mem_le_prepare_tx_retransmited_number 
+017e 202005e0 branch power_ctrl_pac_succ_decrs 
+
+p_le_prepare_tx_ll:
+017f 6800c467 fetch 1 ,mem_le_txpayload 
+0180 c0030183 beq ll_start_enc_rsp ,p_le_send_start_enc_rsp 
+0181 c001018a beq ll_terminate_ind ,p_le_send_terminate_ind 
+0182 20204bfb branch le_prepare_tx_ll 
+
+p_le_send_start_enc_rsp:
+0183 6800ce53 fetch 1 ,mem_le_reconn_flag 
+0184 c0008187 beq 1 ,p_le_send_reconn_start_enc_rsp 
+0185 20403e6d call app_ble_start_write 
+0186 20204c86 branch le_send_start_enc_rsp 
+
+p_le_send_reconn_start_enc_rsp:
+0187 20400128 call p_app_updata_le_param 
+0188 704e5203 jam 3 ,mem_le_reconn_enable_notify_timer 
+0189 20204c90 branch le_send_start_enc_rsp_common 
+
+p_le_send_terminate_ind:
+018a 58000013 setarg 0x13 
+018b e0a08000 istore 1 ,contw 
+018c 20404c58 call le_send_terminate_ind 
+018d 5800000a setarg 10 
+018e 60010390 store 2 ,mem_le_superto 
+018f 60014561 store 2 ,mem_le_init_superto 
+0190 20600000 rtn 
+
+p_le_prepare_smp0:
+0191 6800c46b fetch 1 ,mem_le_l2cap 
+0192 c0010198 beq smp_pairing_response ,p_le_send_smp_pairing_response 
+0193 c003019f beq smp_encryption_information ,p_le_send_smp_encryption_information 
+0194 c0038196 beq smp_master_identification ,p_le_send_smp_master_identification_only 
+0195 20204c18 branch le_prepare_smp0 
+
+p_le_send_smp_master_identification_only:
+0196 704ea500 jam 0 ,mem_mouse_le_pairing_flag 
+0197 20204d17 branch le_send_smp_master_identification_only 
+
+p_le_send_smp_pairing_response:
+0198 59000302 setarg param_smp_paring_response 
+0199 6001c4dc store 3 ,mem_le_pres 
+019a 58000001 setarg 0x01 
+019b e0a08000 istore 1 ,contw 
+019c 58010010 setarg param_smp_key_dist0 
+019d e0a18000 istore 3 ,contw 
+019e 20204ccd branch le_send_smp_pairing_response_common 
+
+p_le_send_smp_encryption_information:
+019f 7009bd29 jam bt_evt_le_enc_info ,mem_fifo_temp 
+01a0 20407d86 call ui_ipc_send_event 
+01a1 7009bd47 jam xt_smp_master_identification ,mem_fifo_temp 
+01a2 20404bd6 call le_xtype_fifo_in 
+01a3 20204d01 branch le_send_smp_encryption_information_shutter 
+
+p_le_prepare_att:
+01a4 6800c46b fetch 1 ,mem_le_l2cap 
+01a5 c00d81a8 beq attop_handle_value_notification ,p_le_send_att_handle_value_notification 
+01a6 c00e81a8 beq attop_handle_value_indication ,p_le_send_att_handle_value_indication 
+01a7 20204c2b branch le_prepare_att + 5 
+
+p_le_send_att_handle_value_indication:
+
+p_le_send_att_handle_value_notification:
+01a8 68094e4e fetcht 2 ,mem_le_att_report2 
+01a9 6009446c storet 2 ,mem_le_l2cap + 1 
+01aa 6800ce86 fetch 1 ,mem_queue_read_ptr 
+01ab 1fe08401 add pdata ,1 ,temp 
+01ac 18410403 and temp ,0x03 ,temp 
+01ad 6008ce86 storet 1 ,mem_queue_read_ptr 
+01ae 1feffe07 mul32 pdata ,7 ,pdata 
+01af d8c04e87 arg mem_queue_buffer0 ,contr 
+01b0 98c08c00 iadd contr ,contr 
+01b1 e8c38000 ifetch 7 ,contr 
+01b2 6003c46e store 7 ,mem_le_l2cap + 3 
+01b3 d840000e arg 14 ,temp 
+01b4 20204f89 branch le_send_packet 
+
+p_le_send_packet:
+01b5 6008c466 storet 1 ,mem_le_txlen 
+01b6 28200602 compare 2 ,type ,3 
+01b7 242081ba nbranch p_le_send_non_l2cap ,true 
+01b8 1840fffc add temp ,-4 ,pdata 
+01b9 60014467 store 2 ,mem_le_txpayload 
+
+p_le_send_non_l2cap:
+01ba 68088379 fetcht 1 ,mem_le_arq 
+01bb 204001bd call p_le_send_check_md 
+01bc 20204f92 branch le_send_non_l2cap1 
+
+p_le_send_check_md:
+01bd 6800cea5 fetch 1 ,mem_mouse_le_pairing_flag 
+01be c00081c0 beq 1 ,enable_blank 
+01bf 20204bd0 branch le_xtype_fifo_is_empty 
+
+enable_blank:
+01c0 58000000 setarg 0 
+01c1 20600000 rtn 
+
+p_le_parse0:
+01c2 1a627e00 copy regc ,pdata 
+01c3 c00001c8 beq ll_connection_update_req ,p_le_parse_connection_update_req 
+01c4 c00101cb beq ll_terminate_ind ,p_le_parse_terminate_ind 
+01c5 c00181cf beq ll_enc_req ,p_le_parse_enc_req 
+01c6 c00501d3 beq ll_pause_enc_req ,p_le_parse_pause_enc_rsq 
+01c7 20204fb9 branch le_parse0 + 6 
+
+p_le_parse_connection_update_req:
+01c8 70413100 jam 0 ,mem_lpm_mode 
+01c9 704e513c jam 60 ,mem_le_slave_update_mult_timer 
+01ca 2020501f branch le_parse_connection_update_req 
+
+p_le_parse_terminate_ind:
+01cb 20405033 call le_parse_terminate_ind 
+
+le_clear_xtype_fifo:
+01cc 58000000 setarg 0 
+01cd 60044544 store 8 ,mem_le_xtype_fifo 
+01ce 20600000 rtn 
+
+p_le_parse_enc_req:
+01cf 20405039 call le_parse_enc_req 
+01d0 6800c56a fetch 1 ,mem_le_pairing_state 
+01d1 c1010000 rtneq flag_le_pairing_after_auth 
+01d2 20206418 branch load_device_list_mode_4_shutter 
+
+p_le_parse_pause_enc_rsq:
+01d3 7009bd2b jam xt_ll_pause_enc_rsp ,mem_fifo_temp 
+01d4 20204bd6 branch le_xtype_fifo_in 
+
+p_le_parse_smp:
+01d5 e8c08000 ifetch 1 ,contr 
+01d6 c00081d8 beq smp_pairing_request ,p_le_parse_smp_pairing_request 
+01d7 20204ffe branch le_parse_smp + 3 
+
+p_le_parse_smp_pairing_request:
+01d8 704ea501 jam 1 ,mem_mouse_le_pairing_flag 
+01d9 704e2003 jam 3 ,mem_empty_count_user 
+01da 20205069 branch le_parse_smp_pairing_request 
+
+p_le_parse_att:
+01db e8c18000 ifetch 3 ,contr 
+01dc 6001839a store 3 ,mem_le_att_opcode 
+01dd c00901df beq attop_write_request ,p_le_parse_att_write_request 
+01de 20205011 branch le_parse_att + 4 
+
+p_le_parse_att_write_request:
+01df 70413101 jam 1 ,mem_lpm_mode 
+01e0 204001e5 call p_le_parse_att_write_common 
+01e1 20405125 call le_check_long_packet_patch 
+01e2 24628000 nrtn zero 
+
+p_le_parse_att_write_request_end:
+01e3 7009bd13 jam attop_write_response ,mem_fifo_temp 
+01e4 20204bd6 branch le_xtype_fifo_in 
+
+p_le_parse_att_write_common:
+01e5 68008303 fetch 1 ,mem_le_rxbuf + 1 
+01e6 1fe0fff9 increase -7 ,pdata 
+01e7 1fe27200 icopy loopcnt 
+01e8 1f222400 copy loopcnt ,regb 
+01e9 20205135 branch le_parse_att_write_common + 6 
+
+p_le_adv:
+01ea 6800c3ff fetch 1 ,mem_le_adv_enable 
+01eb 207a0000 rtn blank 
+01ec d8e00001 arg le_adv_interval_timer ,queue 
+01ed 20407ee2 call timer_check 
+01ee 247a0000 nrtn blank 
+01ef 7854fc00 disable master 
+01f0 78287c00 enable swfine 
+01f1 20404b1e call le_init_adv 
+01f2 204049d4 call le_next_adv_channel 
+01f3 20404a8a call le_send_adv_ind 
+01f4 243681fc nbranch p_le_adv_not_match ,match 
+01f5 68008003 fetch 1 ,mem_le_req_rcv 
+01f6 1fe0fe01 increase 1 ,pdata 
+01f7 60008003 store 1 ,mem_le_req_rcv 
+01f8 68008302 fetch 1 ,mem_le_rxbuf 
+01f9 1fe17e0f and pdata ,0x0f ,pdata 
+01fa c0018206 beq scan_req ,p_le_send_scan_response 
+01fb c002d1af beq connect_req ,le_parse_connect_req 
+
+p_le_adv_not_match:
+01fc 68008016 fetch 1 ,mem_le_ch_mapped 
+01fd c093d17d bne 39 ,le_adv_loop 
+01fe 180a7e00 random pdata 
+01ff d84001ff arg 0x1ff ,temp 
+0200 98417e00 iand temp ,pdata 
+0201 1fe0fefa add pdata ,250 ,pdata 
+
+p_adv_delay:
+0202 1fe0ffff increase -1 ,pdata 
+0203 20000026 nop 38 
+0204 243a0202 nbranch p_adv_delay ,blank 
+0205 20205196 branch le_adv_not_match + 3 
+
+p_le_send_scan_response:
+0206 20404ac5 call le_send_scan_response 
+0207 202001fc branch p_le_adv_not_match 
+
+p_le_receive_window_size:
+0208 68024596 fetch 4 ,mem_le_transmit_window 
+0209 d840ea60 arg 60000 ,temp 
+020a 9840fe00 iadd temp ,pdata 
+020b 60024596 store 4 ,mem_le_transmit_window 
+020c 202051a9 branch le_receive_window_size + 16 
+
+p_le_lpm_set_mult:
+020d 7855fc00 disable wake 
+020e 20370210 branch p_le_lpm_set_mult_attempt ,attempt 
+020f 2436821f nbranch p_le_lpm_lost ,match 
+
+p_le_lpm_set_mult_attempt:
+0210 20403cb7 call lpm_match 
+0211 68014161 fetch 2 ,mem_rx_window_sniff 
+0212 60010370 store 2 ,mem_le_receive_window 
+0213 68008302 fetch 1 ,mem_le_rxbuf 
+0214 2fe00601 compare 1 ,pdata ,3 
+0215 2420bccb nbranch lpm_mult_short ,true 
+0216 6800c465 fetch 1 ,mem_le_txheader 
+0217 2fe00601 compare 1 ,pdata ,3 
+0218 2420bccb nbranch lpm_mult_short ,true 
+0219 20404bd0 call le_xtype_fifo_is_empty 
+021a 243a3ccb nbranch lpm_mult_short ,blank 
+021b 6800ce62 fetch 1 ,mem_le_prepare_tx_retransmited_number 
+021c 1fe67c01 sub pdata ,1 ,null 
+021d 24213ccb nbranch lpm_mult_short ,positive 
+021e 20205297 branch le_lpm_set_mult_attempt + 11 
+
+p_le_lpm_lost:
+021f 68094161 fetcht 2 ,mem_rx_window_sniff 
+0220 68014e60 fetch 2 ,mem_le_rx_window_inc 
+0221 98408400 iadd temp ,temp 
+0222 18430400 rshift temp ,temp 
+0223 68010370 fetch 2 ,mem_le_receive_window 
+0224 9840fe00 iadd temp ,pdata 
+0225 60010370 store 2 ,mem_le_receive_window 
+0226 20203cc3 branch lpm_lost 
+
+p_iicd_read_eep:
+0227 c515623d bmark1 mark_eeprom_size ,iicd_read_eep_size_2k_lcadcode 
+0228 20206250 branch iicd_read_eep + 4 
+
+p_gpio_set_before_lpm_common:
+0229 68120078 hfetch 4 ,core_gpio_pu0 
+022a 681a007c hfetcht 4 ,core_gpio_pd0 
+022b 9841fe00 ior temp ,pdata 
+022c 1fe47e00 invert pdata ,pdata 
+022d 9a217e00 iand rega ,pdata 
+022e 60120070 hstore 4 ,core_gpio_oe0 
+022f 20600000 rtn 
+
+p_ui_timer_check_end:
+0230 1a227e00 copy rega ,pdata 
+0231 207a0000 rtn blank 
+0232 18408560 increase -160 ,temp 
+0233 18408560 increase -160 ,temp 
+0234 793f841c set0 28 ,temp 
+0235 600a4703 storet 4 ,mem_ui_timer_last_btclk 
+0236 1fe20400 copy pdata ,temp 
+0237 da2046f0 arg mem_ipc_fifo_bt2c51 ,rega 
+0238 20407fa6 call fifo_is_near_full 
+0239 247a0000 nrtn blank 
+023a 18427e00 copy temp ,pdata 
+023b 20207d7d branch ui_timer_check_send_evt 
+
+p_check_51cmd_once:
+023c 20407d80 call ui_ipc_get_lock 
+023d da2046f8 arg mem_ipc_fifo_c512bt ,rega 
+023e 20407f95 call fifo_out 
+023f 1fe20400 copy pdata ,temp 
+0240 20407d84 call ui_ipc_put_lock 
+0241 18427e00 copy temp ,pdata 
+0242 207a0000 rtn blank 
+0243 c0118249 beq bt_cmd_start_24g ,g24_check_51cmd_start_24g 
+0244 c012024d beq bt_cmd_stop_24g ,g24_check_51cmd_stop_24g 
+0245 c0128251 beq bt_cmd_pair_24g ,g24_check_51cmd_pair_24g 
+0246 c0068253 beq bt_cmd_start_adv ,p_check_51cmd_adv 
+0247 c0138260 beq bt_cmd_start_adv_reconn ,p_check_51cmd_adv_reconn 
+0248 20207db3 branch check_51cmd_once + 9 
+
+g24_check_51cmd_start_24g:
+0249 6800c9c3 fetch 1 ,mem_tx_power_temp 
+024a 6000c280 store 1 ,mem_tx_power 
+024b 704938ff jam state_24g_pairing_success ,mem_new_24g_pairing_sm 
+024c 20200670 branch g24_start_24g_mode 
+
+g24_check_51cmd_stop_24g:
+024d 6800c9c3 fetch 1 ,mem_tx_power_temp 
+024e 6000c280 store 1 ,mem_tx_power 
+024f 793f8026 set0 mark_24g ,mark 
+0250 2020497d branch le_disable 
+
+g24_check_51cmd_pair_24g:
+0251 70428014 jam tx_power_pair ,mem_tx_power 
+0252 20200641 branch g24_start_pairing_sm1 
+
+p_check_51cmd_adv:
+0253 793f8026 set0 mark_24g ,mark 
+0254 70413100 jam 0 ,mem_lpm_mode 
+0255 180a7e00 random pdata 
+0256 6000c53e store 1 ,mem_le_lap 
+0257 704e5300 jam 0 ,mem_le_reconn_flag 
+0258 68094e4e fetcht 2 ,mem_le_att_report2 
+0259 600944f8 storet 2 ,mem_le_notify_handle 
+025a 204052a0 call le_clean_att_list_handle_enable 
+025b da400005 arg adv_flag_bredr_not_supported | adv_flag_limited_discoverable ,regb 
+
+p_le_start_adv:
+025c 2040026a call p_le_check_adv_flag 
+025d 1a427e00 copy regb ,pdata 
+025e e0c08000 istore 1 ,contr 
+025f 20207e07 branch check_51cmd_adv 
+
+p_check_51cmd_adv_reconn:
+0260 793f8026 set0 mark_24g ,mark 
+0261 70413100 jam 0 ,mem_lpm_mode 
+0262 704e5301 jam 1 ,mem_le_reconn_flag 
+0263 68094e4e fetcht 2 ,mem_le_att_report2 
+0264 20404f6a call le_att_check_notification_enable 
+0265 1a220a00 copy rega ,contw 
+0266 58000001 setarg 1 
+0267 e0a08000 istore 1 ,contw 
+0268 da400004 arg adv_flag_bredr_not_supported ,regb 
+0269 2020025c branch p_le_start_adv 
+
+p_le_check_adv_flag:
+026a da204401 arg mem_le_adv_data ,rega 
+
+p_le_check_adv_flag_loop:
+026b ea208000 ifetch 1 ,rega 
+026c 207a0000 rtn blank 
+026d 98c0a200 iadd contr ,rega 
+026e e8c08000 ifetch 1 ,contr 
+026f c1008000 rtneq 0x01 
+0270 2020026b branch p_le_check_adv_flag_loop 
+
+p_check_51cmd_once_continue0:
+0271 204058c5 call lmo_fifo_check 
+0272 243a7de5 nbranch check_51cmd_restore ,blank 
+
+p_check_51cmd_once_continue:
+0273 680089bd fetch 1 ,mem_fifo_temp 
+0274 c584fde0 bmark0 mark_context ,check_51cmd_check_idle 
+0275 c00f8296 beq bt_cmd_store_reconn_info_le ,p_rtn 
+0276 20207dd0 branch check_51cmd_once_continue + 2 
+
+p_check_enter_hibernate:
+0277 700b2a03 jam syc_task_hibernate ,mem_c51_flag 
+0278 204000b4 call p_c51_wait 
+
+p_enter_hibernate_continue:
+0279 704e455a jam 0x5a ,mem_hibernate_flag 
+027a 20403cfc call lpm_write_gpio_wakeup 
+027b 68120138 hfetch 4 ,core_lpm_ctrl 
+027c 793ffe0f set0 15 ,pdata 
+027d 6012004c hstore 4 ,core_lpm_reg 
+027e 20403cf4 call lpm_write_ctrl 
+027f d85fffff arg param_hibernate_clks ,temp 
+0280 20203c11 branch lpm_sleep 
+
+p_ipc_timer_check:
+0281 680a489e fetcht 4 ,mem_ipc_last_check_timer 
+0282 1c427e00 copy clkn_bt ,pdata 
+0283 98467e00 isub temp ,pdata 
+0284 d8400640 arg 1600 ,temp 
+0285 9846fc00 idiv temp 
+0286 20407f53 call wait_div_end 
+0287 1807fe00 quotient pdata 
+0288 207a0000 rtn blank 
+0289 1c420400 copy clkn_bt ,temp 
+028a 600a489e storet 4 ,mem_ipc_last_check_timer 
+028b 68094898 fetcht 2 ,mem_ipc_bt_timer 
+028c 18508400 byteswap temp ,temp 
+028d 9840fe00 iadd temp ,pdata 
+028e 1ff0fe00 byteswap pdata ,pdata 
+028f 60014898 store 2 ,mem_ipc_bt_timer 
+0290 1ff0fe00 byteswap pdata ,pdata 
+0291 1fe17e03 and pdata ,0x3 ,pdata 
+0292 c1800000 rtnne 0 
+0293 204002a9 call p_read_adc_enable 
+0294 24760000 nrtn user2 
+
+p_adc_check_process:
+0295 6800c2cf fetch 1 ,mem_adc_config_flag 
+
+p_rtn:
+0296 20600000 rtn 
+
+p_read_adc:
+0297 68108053 hfetch 1 ,core_uart_baud + 1 
+0298 79207e07 set1 7 ,pdata 
+0299 60108053 hstore 1 ,core_uart_baud + 1 
+029a 68108973 hfetch 1 ,rf_adc_ch 
+029b 1fe1fe30 or_into 0x30 ,pdata 
+029c 60108973 hstore 1 ,rf_adc_ch 
+029d 7089067c hjam 0x7c ,rfen_adc 
+029e 708972aa hjam 0xaa ,rf_adc_gc 
+029f 20001388 nop 5000 
+02a0 68190150 hfetcht 2 ,core_adc_sum 
+02a1 68108053 hfetch 1 ,core_uart_baud + 1 
+02a2 793ffe07 set0 7 ,pdata 
+02a3 60108053 hstore 1 ,core_uart_baud + 1 
+02a4 18508400 byteswap temp ,temp 
+02a5 600942d1 storet 2 ,mem_adc_current_value 
+02a6 20600000 rtn 
+
+enable_usr2:
+02a7 78367c00 enable user2 
+02a8 20600000 rtn 
+
+p_read_adc_enable:
+02a9 78567c00 disable user2 
+02aa 20404bd0 call le_xtype_fifo_is_empty 
+02ab 205a02a7 call enable_usr2 ,blank 
+02ac 6800c954 fetch 1 ,mem_new_24g_abort_pac 
+02ad 245a02a7 ncall enable_usr2 ,blank 
+02ae 20600000 rtn 
+
+p_user_le_connect_process:
+02af 704ea301 jam 1 ,mem_ble_read_ipc_fifo_once 
+02b0 204002b3 call p_ipc_rx 
+02b1 704ea300 jam 0 ,mem_ble_read_ipc_fifo_once 
+02b2 20600000 rtn 
+
+p_ipc_rx:
+02b3 204000af call p_check_ipc_2bt 
+02b4 20740000 rtn user 
+02b5 1ff0fe00 byteswap pdata ,pdata 
+02b6 1fe20c00 copy pdata ,contr 
+02b7 204002d9 call p_ipc_rx_byte 
+02b8 6000c897 store 1 ,mem_ipc_rx_type 
+02b9 c00082c4 beq ipc_type_cmd ,p_ipc_rx_cmd 
+02ba c00302f5 beq ipc_type_24g ,g24_ipc_rx_24g 
+02bb 1fe20400 copy pdata ,temp 
+02bc 18c22200 copy contr ,rega 
+02bd 6800c040 fetch 1 ,mem_context 
+02be c30002ce bbit0 state_inconn ,p_ipc_abondon_rx_data 
+02bf 1a220c00 copy rega ,contr 
+02c0 c6848000 rtnmark0 mark_context 
+02c1 18427e00 copy temp ,pdata 
+02c2 c002830c beq ipc_type_ble ,p_ipc_rx_ble 
+02c3 20203b31 branch assert 
+
+p_ipc_rx_cmd:
+02c4 204002d9 call p_ipc_rx_byte 
+02c5 204002d9 call p_ipc_rx_byte 
+02c6 600089bd store 1 ,mem_fifo_temp 
+02c7 204002c9 call p_ipc_next_rx 
+02c8 20207d90 branch ui_ipc_send_cmd 
+
+p_ipc_next_rx:
+02c9 204002dc call p_ipc_rx_updata_contr 
+02ca 18c20400 copy contr ,temp 
+02cb 18508400 byteswap temp ,temp 
+02cc 600947c4 storet 2 ,mem_ipc_2bt_read_index 
+02cd 20600000 rtn 
+
+p_ipc_abondon_rx_data:
+02ce 1a220c00 copy rega ,contr 
+02cf d8a000f5 arg mem_tst_pktcnt_sync ,contw 
+02d0 202002d1 branch p_ipc_rx_cpy 
+
+p_ipc_rx_cpy:
+02d1 204002d9 call p_ipc_rx_byte 
+02d2 1fe27200 copy pdata ,loopcnt 
+
+p_ipc_copy:
+02d3 204002d5 call p_ipc_cpy_loop 
+02d4 202002c9 branch p_ipc_next_rx 
+
+p_ipc_cpy_loop:
+02d5 204002d9 call p_ipc_rx_byte 
+02d6 e0a08000 istore 1 ,contw 
+02d7 c20002d5 loop p_ipc_cpy_loop 
+02d8 20600000 rtn 
+
+p_ipc_rx_byte:
+02d9 204002dc call p_ipc_rx_updata_contr 
+02da e8c08000 ifetch 1 ,contr 
+02db 20600000 rtn 
+
+p_ipc_rx_updata_contr:
+02dc 580047c4 setarg mem_ipc_2bt_fifo_end 
+02dd 98c67c00 isub contr ,null 
+02de 24628000 nrtn zero 
+02df d8c0472e arg mem_ipc_2bt_fifo_head ,contr 
+02e0 20600000 rtn 
+
+p_ipc_tx_evt:
+02e1 df200003 arg 3 ,loopcnt 
+02e2 d8c04894 arg mem_ipc_tx_evt_buff ,contr 
+
+p_ipc_tx_cpy:
+02e3 18c22200 copy contr ,rega 
+02e4 6801482e fetch 2 ,mem_ipc_2c51_write_index 
+02e5 1ff0fe00 byteswap pdata ,pdata 
+02e6 1fe20a00 copy pdata ,contw 
+02e7 1a220c00 copy rega ,contr 
+
+p_ipc_tx_loop:
+02e8 e8c08000 ifetch 1 ,contr 
+02e9 e0a08000 istore 1 ,contw 
+02ea 204002f0 call p_ipc_tx_updata_contw 
+02eb c20002e8 loop p_ipc_tx_loop 
+02ec 18a27e00 copy contw ,pdata 
+02ed 1ff0fe00 byteswap pdata ,pdata 
+02ee 6001482e store 2 ,mem_ipc_2c51_write_index 
+02ef 20600000 rtn 
+
+p_ipc_tx_updata_contw:
+02f0 5800482c setarg mem_ipc_2c51_fifo_end 
+02f1 98a67c00 isub contw ,null 
+02f2 24628000 nrtn zero 
+02f3 d8a047c8 arg mem_ipc_2c51_fifo_head ,contw 
+02f4 20600000 rtn 
+
+g24_ipc_rx_24g:
+02f5 c6938000 rtnmark0 mark_24g_conext 
+02f6 204002d9 call p_ipc_rx_byte 
+02f7 1fe27200 icopy loopcnt 
+02f8 6000c970 store 1 ,mem_new_uart_packet 
+02f9 202002d3 branch p_ipc_copy 
+
+queue_init:
+02fa 58000000 setarg 0 
+02fb 6001ce85 store 3 ,mem_queue_write_prt 
+02fc 20600000 rtn 
+
+p_ipc_rx_ble_data:
+02fd c6130000 rtnmark1 mark_24g 
+02fe 6800c595 fetch 1 ,mem_le_switch_send_data 
+02ff 207a0000 rtn blank 
+0300 204000af call p_check_ipc_2bt 
+0301 20740000 rtn user 
+0302 1ff0fe00 byteswap pdata ,pdata 
+0303 1fe20c00 copy pdata ,contr 
+0304 204002d9 call p_ipc_rx_byte 
+0305 6000c897 store 1 ,mem_ipc_rx_type 
+0306 18c22200 copy contr ,rega 
+0307 c08282ce bne ipc_type_ble ,p_ipc_abondon_rx_data 
+0308 18c22400 copy contr ,regb 
+0309 20404bd4 call le_xtype_fifo_is_near_full 
+030a 247a0000 nrtn blank 
+030b 20200311 branch p_ipc_rx_ble_read_fifo 
+
+p_ipc_rx_ble:
+030c 18c22400 copy contr ,regb 
+030d 6800cea3 fetch 1 ,mem_ble_read_ipc_fifo_once 
+030e 207a0000 rtn blank 
+030f 20404bd0 call le_xtype_fifo_is_empty 
+0310 247a0000 nrtn blank 
+
+p_ipc_rx_ble_read_fifo:
+0311 68094e4e fetcht 2 ,mem_le_att_report2 
+0312 20404f6a call le_att_check_notification_enable 
+0313 c4000000 rtnbit0 0 
+0314 6800c595 fetch 1 ,mem_le_switch_send_data 
+0315 c1000000 rtneq 0 
+0316 6800ce83 fetch 1 ,mem_bt_read_ipc_count 
+0317 1fe0fe01 pincrease 1 
+0318 6000ce83 store 1 ,mem_bt_read_ipc_count 
+0319 6800ce85 fetch 1 ,mem_queue_write_prt 
+031a 1fe08401 add pdata ,1 ,temp 
+031b 18410403 and temp ,0x03 ,temp 
+031c 6008ce85 storet 1 ,mem_queue_write_prt 
+031d 1feffe07 mul32 pdata ,7 ,pdata 
+031e d8a04e87 arg mem_queue_buffer0 ,contw 
+031f 98a08a00 iadd contw ,contw 
+0320 1a420c00 copy regb ,contr 
+0321 204002d9 call p_ipc_rx_byte 
+0322 1fe27200 icopy loopcnt 
+0323 204002d3 call p_ipc_copy 
+0324 20400328 call p_ipc_rx_ble_read_fifo_first_time 
+0325 20760000 rtn user2 
+0326 7009bd1b jam attop_handle_value_notification ,mem_fifo_temp 
+0327 20204bd6 branch le_xtype_fifo_in 
+
+p_ipc_rx_ble_read_fifo_first_time:
+0328 78567c00 disable user2 
+0329 6800cea4 fetch 1 ,mem_ble_send_flag 
+032a c1028000 rtneq 5 
+032b 78367c00 enable user2 
+032c 1fe0fe01 increase 1 ,pdata 
+032d 6000cea4 store 1 ,mem_ble_send_flag 
+032e 1fe67c01 sub pdata ,1 ,null 
+032f 24610000 nrtn positive 
+0330 70489640 jam bt_evt_le_notify_enable ,mem_ipc_tx_evt 
+0331 202002e1 branch p_ipc_tx_evt 
+
+p_ipc_init:
+0332 5800472e setarg mem_ipc_2bt_fifo_head 
+0333 1ff0fe00 byteswap pdata ,pdata 
+0334 600147c4 store 2 ,mem_ipc_2bt_read_index 
+0335 600147c6 store 2 ,mem_ipc_2bt_write_index 
+0336 580047c8 setarg mem_ipc_2c51_fifo_head 
+0337 1ff0fe00 byteswap pdata ,pdata 
+0338 6001482c store 2 ,mem_ipc_2c51_read_index 
+0339 6001482e store 2 ,mem_ipc_2c51_write_index 
+033a 20600000 rtn 
+
+p_device_init:
+033b d8400008 arg 8 ,temp 
+033c 204064e8 call gpio_config_output 
+033d d8400005 arg 5 ,temp 
+033e 204064e8 call gpio_config_output 
+033f 2040524a call le_modified_name_adv 
+0340 700b2a00 jam 0 ,mem_c51_flag 
+0341 70016c06 jam 6 ,mem_connection_options 
+0342 20403e7f call app_lpm_mult_enable 
+0343 580003a3 setarg p_c51_user_event 
+0344 60014296 store 2 ,mem_cb_bb_event_process 
+0345 580002af setarg p_user_le_connect_process 
+0346 60014290 store 2 ,mem_cb_le_process 
+0347 5800039c setarg p_device_before_hibernate 
+0348 6001428c store 2 ,mem_cb_before_hibernate 
+0349 24558332 ncall p_ipc_init ,wake 
+034a 20558373 call p_device_wakeup ,wake 
+034b 20403d3e call lpm_disable_exen_output 
+034c 6800ce45 fetch 1 ,mem_hibernate_flag 
+034d c02d0387 beq 0x5a ,p_device_init_init_hibwake 
+034e 20358385 branch p_deveice_init_wake ,wake 
+034f 6800c280 fetch 1 ,mem_tx_power 
+0350 6000c9c3 store 1 ,mem_tx_power_temp 
+0351 204005d9 call power_ctrl_pac_succ_cnt_init 
+0352 68014e41 fetch 2 ,mem_adc_0v 
+0353 1ff0fe00 byteswap pdata ,pdata 
+0354 60014e41 store 2 ,mem_adc_0v 
+0355 68014e43 fetch 2 ,mem_adc_3v 
+0356 1ff0fe00 byteswap pdata ,pdata 
+0357 60014e43 store 2 ,mem_adc_3v 
+0358 20400392 call p_init_adc_from_otp 
+0359 204003bd call g24_set_device_addr 
+035a 680409c6 fetch 8 ,mem_temp 
+035b 243a0360 nbranch p_deveice_init_reset ,blank 
+035c 68014ad4 fetch 2 ,0x4ad4 
+035d 1ff0fe00 byteswap pdata ,pdata 
+035e 203a0360 branch p_deveice_init_reset ,blank 
+035f 60014e43 store 2 ,mem_adc_3v 
+
+p_deveice_init_reset:
+0360 7048962f jam bt_evt_reset ,mem_ipc_tx_evt 
+
+p_device_init_common:
+0361 6800ce78 fetch 1 ,mem_short_lpm_enable 
+0362 243a0368 nbranch p_24g_short_lpm_process ,blank 
+0363 20400295 call p_adc_check_process 
+0364 204002e1 call p_ipc_tx_evt 
+0365 204002fd call p_ipc_rx_ble_data 
+0366 70828003 hjam start_c51_core ,core_docd_ctrl 
+0367 20600000 rtn 
+
+p_24g_short_lpm_process:
+0368 2055bc29 call lpm_recover_clk ,wake 
+0369 d9600d00 arg param_rx_setup ,timeup 
+036a 34730200 until clkn_rt ,meet 
+036b 1c427e00 copy clkn_bt ,pdata 
+036c 6001ce7a store 3 ,mem_ckln_24g_short_lpm 
+
+p_24g_short_lpm_process_loop:
+036d 6801470b fetch 2 ,mem_ui_state_map 
+036e c3858000 rtnbit1 ui_state_ble_adv 
+036f c3830000 rtnbit1 ui_state_bt_discovery 
+0370 20403d60 call app_process_idle 
+0371 204004c8 call g24_short_lpm_transmit_process 
+0372 2020036d branch p_24g_short_lpm_process_loop 
+
+p_device_wakeup:
+0373 1ce27e00 copy auxcnt ,pdata 
+0374 c593037d bmark0 mark_24g ,p_device_bt_wakeup 
+
+g24_delay_long_sleep:
+0375 203a0378 branch g24_direct_long_sleep ,blank 
+
+g24_delay_long_sleep2:
+0376 7049b9bb jam 0xbb ,mem_new_24g_delay_long_sleep_maxcnt 
+0377 20600000 rtn 
+
+g24_direct_long_sleep:
+0378 7049b900 jam 0x00 ,mem_new_24g_delay_long_sleep_maxcnt 
+0379 6800c9b7 fetch 1 ,mem_new_24g_key_wheel_event 
+037a 207a0000 rtn blank 
+037b 7049b700 jam 0 ,mem_new_24g_key_wheel_event 
+037c 20200376 branch g24_delay_long_sleep2 
+
+p_device_bt_wakeup:
+037d 203a0380 branch p_device_bt_wakeup_check ,blank 
+037e 7049c102 jam 2 ,mem_bt_wakeup_from_long_mult 
+037f 20600000 rtn 
+
+p_device_bt_wakeup_check:
+0380 6800c9c2 fetch 1 ,mem_bt_motion_event 
+0381 207a0000 rtn blank 
+0382 7049c200 jam 0 ,mem_bt_motion_event 
+0383 7049c101 jam 1 ,mem_bt_wakeup_from_long_mult 
+0384 20600000 rtn 
+
+p_deveice_init_wake:
+0385 7048963c jam bt_evt_wakeup ,mem_ipc_tx_evt 
+0386 20200361 branch p_device_init_common 
+
+p_device_init_init_hibwake:
+0387 1ce27e00 copy auxcnt ,pdata 
+0388 203a0279 branch p_enter_hibernate_continue ,blank 
+0389 2040530d call init_lmp_work 
+038a 204042eb call l2cap_init_work 
+038b 58000000 setarg 0 
+038c 60044040 store 8 ,mem_context 
+038d 6001470b store 2 ,mem_ui_state_map 
+038e 60014898 store 2 ,mem_ipc_bt_timer 
+038f 6001489a store 2 ,mem_ipc_c51_timer 
+0390 7048963d jam bt_evt_hibernate_wake ,mem_ipc_tx_evt 
+0391 20200361 branch p_device_init_common 
+
+p_init_adc_from_otp:
+0392 204062c4 call otp_enable_chgpump 
+0393 580007e2 setarg 0x7e2 
+0394 da2009c6 arg mem_temp ,rega 
+0395 d840000c arg 12 ,temp 
+0396 2040630d call otpd_read_data 
+0397 204062c7 call otp_disable_chgpump 
+0398 680409c6 fetch 8 ,mem_temp 
+0399 207a0000 rtn blank 
+039a 6800c2cf fetch 1 ,mem_adc_config_flag 
+039b 20600000 rtn 
+
+p_device_before_hibernate:
+039c 78347c00 enable user 
+039d 68120138 hfetch 4 ,0x8138 
+039e 79347e1a setflag user ,26 ,pdata 
+039f 6012004c hstore 4 ,core_lpm_reg 
+03a0 20403cf4 call lpm_write_ctrl 
+03a1 70009f01 jam 1 ,mem_lpm_current_mult 
+
+p_device_bt_lpm_before:
+03a2 20600000 rtn 
+
+p_c51_user_event:
+03a3 1a627e00 copy regc ,pdata 
+03a4 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+03a5 c1280000 rtneq bt_evt_timer_init 
+03a6 1a627e00 copy regc ,pdata 
+03a7 6000c896 store 1 ,mem_ipc_tx_evt 
+03a8 202002e1 branch p_ipc_tx_evt 
+
+g24_pair_init:
+03a9 70492700 jam 0 ,mem_new_24g_pid 
+03aa 7049324e jam g24_pair_ch ,mem_new_24g_ch 
+03ab 68024934 fetch 4 ,mem_new_24g_paring_addr 
+
+g24_update_addr_and_synccrc8:
+03ac 60024950 store 4 ,mem_new_24g_addr 
+03ad 20200466 branch g24_syncword_crc8 
+
+g24_ch:
+03ae 6808c933 fetcht 1 ,mem_new_24g_current_ch_number 
+03af 204003b4 call g24_ch_calc 
+03b0 18408401 increase 1 ,temp 
+03b1 18410403 and_into 3 ,temp 
+03b2 6008c933 storet 1 ,mem_new_24g_current_ch_number 
+03b3 20600000 rtn 
+
+g24_ch_calc:
+03b4 6800c950 fetch 1 ,mem_new_24g_addr 
+03b5 1fe17e03 and_into 0x03 ,pdata 
+03b6 1fefa204 mul32 pdata ,4 ,rega 
+03b7 58004939 setarg mem_new_24g_ch_map1 
+03b8 9a20fe00 iadd rega ,pdata 
+03b9 98408c00 iadd temp ,contr 
+03ba e8c08000 ifetch 1 ,contr 
+03bb 6000c932 store 1 ,mem_new_24g_ch 
+03bc 20600000 rtn 
+
+g24_set_device_addr:
+03bd 680209c6 fetch 4 ,mem_temp 
+03be 60024960 store 4 ,mem_new_24g_device_addr 
+03bf 247a0000 nrtn blank 
+03c0 68024140 fetch 4 ,mem_lap 
+03c1 60024960 store 4 ,mem_new_24g_device_addr 
+03c2 20600000 rtn 
+
+g24_transmit_rf_sta_init:
+03c3 7049b001 jam 1 ,mem_new_24g_rf_last_sta 
+03c4 7049b200 jam 0 ,mem_new_24g_sync_cnt 
+
+g24_transmit_rf_ctrl_clear:
+03c5 6800c929 fetch 1 ,mem_new_24g_data_type 
+03c6 1fe17e07 and_into bits_data ,pdata 
+03c7 6000c929 store 1 ,mem_new_24g_data_type 
+03c8 20600000 rtn 
+
+g24_hop_ch_enable:
+03c9 6800c929 fetch 1 ,mem_new_24g_data_type 
+03ca 79207e04 set1 bit_hop ,pdata 
+03cb 6000c929 store 1 ,mem_new_24g_data_type 
+03cc 6000c8e4 store 1 ,mem_new_24g_txpayload 
+03cd 20600000 rtn 
+
+g24_hop_ch_disable:
+03ce 6800c929 fetch 1 ,mem_new_24g_data_type 
+03cf 793ffe04 set0 bit_hop ,pdata 
+03d0 6000c929 store 1 ,mem_new_24g_data_type 
+03d1 20600000 rtn 
+
+g24_transmit_hop_pac_fail:
+03d2 204005e0 call power_ctrl_pac_succ_decrs 
+03d3 6800c9b4 fetch 1 ,mem_new_24g_rf_work_stage 
+03d4 c00083d7 beq 1 ,g24_transmit_hop_pac_fail_wo_hop 
+03d5 c00103db beq 2 ,g24_transmit_hop_pac_fail_hop_stage2 
+03d6 20600000 rtn 
+
+g24_transmit_hop_pac_fail_wo_hop:
+03d7 7049b202 jam 2 ,mem_new_24g_sync_cnt 
+
+g24_transmit_hop_pac_fail_stage1:
+03d8 7049b300 jam 0 ,mem_new_24g_hop_pac_retry 
+03d9 7049b000 jam 0 ,mem_new_24g_rf_last_sta 
+03da 202003c5 branch g24_transmit_rf_ctrl_clear 
+
+g24_transmit_hop_pac_fail_hop_stage2:
+03db 7049b100 jam 0 ,mem_new_24g_rf_hop_ch 
+03dc 202003d8 branch g24_transmit_hop_pac_fail_stage1 
+
+g24_transmit_pac_fail_hop_stage3:
+03dd 6801492e fetch 2 ,mem_new_24g_txfail_cnt 
+03de 1fe0fe01 increase 1 ,pdata 
+03df 6001492e store 2 ,mem_new_24g_txfail_cnt 
+03e0 c2830545 bbit1 6 ,g24_tx_attempt_fail 
+03e1 6800c9b1 fetch 1 ,mem_new_24g_rf_hop_ch 
+03e2 c00083e6 beq 1 ,g24_rf_hop_fastly 
+03e3 7049b101 jam 1 ,mem_new_24g_rf_hop_ch 
+
+g24_rf_hop_attemp_again:
+03e4 6800c9b1 fetch 1 ,mem_new_24g_rf_hop_ch 
+03e5 c08083c5 bne 1 ,g24_transmit_rf_ctrl_clear 
+
+g24_rf_hop_fastly:
+03e6 6800c9b5 fetch 1 ,mem_new_24g_hop_fastly_cnt 
+03e7 1fe0fe01 increase 1 ,pdata 
+03e8 6000c9b5 store 1 ,mem_new_24g_hop_fastly_cnt 
+03e9 c00203ed beq 4 ,g24_rf_hop_fastly_exit 
+03ea 204003ae call g24_ch 
+03eb 70496e02 jam 2 ,mem_new_24g_max_retry 
+03ec 20200504 branch g24_transmit_packet 
+
+g24_rf_hop_fastly_exit:
+03ed 204005e0 call power_ctrl_pac_succ_decrs 
+03ee 7049b500 jam 0 ,mem_new_24g_hop_fastly_cnt 
+03ef 202003c5 branch g24_transmit_rf_ctrl_clear 
+
+g24_transmit_hop_pac_succ_wo_hop:
+03f0 7049b202 jam 2 ,mem_new_24g_sync_cnt 
+
+g24_transmit_hop_pac_succ:
+03f1 7049b001 jam 1 ,mem_new_24g_rf_last_sta 
+03f2 7049b100 jam 0 ,mem_new_24g_rf_hop_ch 
+03f3 202003c5 branch g24_transmit_rf_ctrl_clear 
+
+g24_transmit_succ_rf_config:
+03f4 6800c9b4 fetch 1 ,mem_new_24g_rf_work_stage 
+03f5 c00183f1 beq 3 ,g24_transmit_hop_pac_succ 
+03f6 6800c929 fetch 1 ,mem_new_24g_data_type 
+03f7 2fec0004 isolate0 bit_hop ,pdata 
+03f8 202083c3 branch g24_transmit_rf_sta_init ,true 
+03f9 6800c9b4 fetch 1 ,mem_new_24g_rf_work_stage 
+03fa c00083f0 beq 1 ,g24_transmit_hop_pac_succ_wo_hop 
+03fb c00103f1 beq 2 ,g24_transmit_hop_pac_succ 
+03fc 20600000 rtn 
+
+g24_rf_sta_check:
+03fd 6800c938 fetch 1 ,mem_new_24g_pairing_sm 
+03fe c1ff8000 rtnne state_24g_pairing_success 
+03ff 20400402 call g24_rf_laststa_synccnt_check 
+0400 2456040a ncall g24_rf_sync_cnt_check ,user2 
+0401 20600000 rtn 
+
+g24_rf_laststa_synccnt_check:
+0402 78567c00 disable user2 
+0403 6800c9b0 fetch 1 ,mem_new_24g_rf_last_sta 
+0404 c1808000 rtnne 1 
+0405 6800c9b2 fetch 1 ,mem_new_24g_sync_cnt 
+0406 c1800000 rtnne 0 
+0407 7049b401 jam 1 ,mem_new_24g_rf_work_stage 
+0408 70496e04 jam 4 ,mem_new_24g_max_retry 
+0409 202002a7 branch enable_usr2 
+
+g24_rf_sync_cnt_check:
+040a 6800c9b2 fetch 1 ,mem_new_24g_sync_cnt 
+040b 203a0412 branch g24_rf_hop_attemp ,blank 
+040c 1fe0ffff increase -1 ,pdata 
+040d 6000c9b2 store 1 ,mem_new_24g_sync_cnt 
+040e 7049b402 jam 2 ,mem_new_24g_rf_work_stage 
+040f 204003ae call g24_ch 
+0410 70496e04 jam 4 ,mem_new_24g_max_retry 
+0411 20600000 rtn 
+
+g24_rf_hop_attemp:
+0412 7049b403 jam 3 ,mem_new_24g_rf_work_stage 
+0413 6800c9b1 fetch 1 ,mem_new_24g_rf_hop_ch 
+0414 243a03e4 nbranch g24_rf_hop_attemp_again ,blank 
+0415 204003ae call g24_ch 
+0416 70496e02 jam 2 ,mem_new_24g_max_retry 
+0417 20600000 rtn 
+
+g24_transmit_process:
+0418 c6930000 rtnmark0 mark_24g 
+0419 79200027 set1 mark_24g_conext ,mark 
+041a 680a4949 fetcht 4 ,mem_new_24g_tx_btclk 
+041b 1c427e00 copy clkn_bt ,pdata 
+041c 98467c00 isub temp ,null 
+041d 24410431 ncall g24_timer_timeout ,positive 
+041e 1fe22400 copy pdata ,regb 
+041f 68024949 fetch 4 ,mem_new_24g_tx_btclk 
+0420 6808c94d fetcht 1 ,mem_new_24g_interval 
+0421 98408400 iadd temp ,temp 
+0422 1a427e00 copy regb ,pdata 
+0423 98467c00 isub temp ,null 
+0424 2421042f nbranch g24_transmit_exit ,positive 
+0425 793ffe1c set0 28 ,pdata 
+0426 60024949 store 4 ,mem_new_24g_tx_btclk 
+0427 20400434 call g24_interval_calibrate 
+0428 20400441 call g24_txdata_prep 
+0429 20340496 branch g24_no_data_to_tx ,user 
+042a 204003fd call g24_rf_sta_check 
+
+g24_transmit_start:
+042b 20400504 call g24_transmit_packet 
+042c 6800c938 fetch 1 ,mem_new_24g_pairing_sm 
+042d 1fe67cff sub pdata ,state_24g_pairing_success ,null 
+042e 204285ea call power_ctrl_start ,zero 
+
+g24_transmit_exit:
+042f 793f8027 set0 mark_24g_conext ,mark 
+0430 20600000 rtn 
+
+g24_timer_timeout:
+0431 20628000 rtn zero 
+0432 79207e1c set1 28 ,pdata 
+0433 20600000 rtn 
+
+g24_interval_calibrate:
+0434 6800c964 fetch 1 ,mem_new_24g_pac_index 
+0435 1fe0fe01 increase 1 ,pdata 
+0436 6000c964 store 1 ,mem_new_24g_pac_index 
+0437 c002043a beq 4 ,g24_interval_max 
+0438 c002843d beq 5 ,g24_interval_min 
+0439 20600000 rtn 
+
+g24_interval_max:
+043a 6800c94f fetch 1 ,mem_new_24g_interval_max 
+043b 6000c94d store 1 ,mem_new_24g_interval 
+043c 20600000 rtn 
+
+g24_interval_min:
+043d 70496400 jam 0 ,mem_new_24g_pac_index 
+043e 6800c94e fetch 1 ,mem_new_24g_interval_min 
+043f 6000c94d store 1 ,mem_new_24g_interval 
+0440 20600000 rtn 
+
+g24_txdata_prep:
+0441 6800c938 fetch 1 ,mem_new_24g_pairing_sm 
+0442 c0ff8645 bne state_24g_pairing_success ,g24_pairing_sm 
+0443 204002b3 call p_ipc_rx 
+0444 2034044f branch g24_txdata_prep_ipc_nodata ,user 
+0445 6800c897 fetch 1 ,mem_ipc_rx_type 
+0446 c08364c0 bne ipc_type_24g ,enable_usr 
+
+g24_txdata_prep_packeage_data:
+0447 20400452 call g24_package_data 
+0448 20400473 call g24_transmit_prep 
+
+g24_txdata_enable_tx:
+0449 70492d01 jam ensure_on_24g ,mem_new_24g_ensure 
+044a 20600000 rtn 
+
+g24_enter_long_sleep:
+044b 704e7900 jam 0 ,mem_short_lpm_tx_cnt 
+044c 704e7800 jam 0 ,mem_short_lpm_enable 
+044d 7049ba0a jam 10 ,mem_new_24g_enter_lpm_timer 
+044e 20600000 rtn 
+
+g24_txdata_prep_ipc_nodata:
+
+g24_txdata_last_pac:
+044f 6800c92d fetch 1 ,mem_new_24g_ensure 
+0450 c000b1d4 beq ensure_on_24g ,disable_usr 
+0451 20600000 rtn 
+
+g24_short_lpm_txdata_prep:
+
+g24_package_data:
+0452 6800c9b9 fetch 1 ,mem_new_24g_delay_long_sleep_maxcnt 
+0453 6000c9b8 store 1 ,mem_new_24g_delay_long_sleep_cnt 
+0454 6800c970 fetch 1 ,mem_new_uart_packet 
+0455 1fe22200 copy pdata ,rega 
+0456 da404971 arg mem_new_uart_packet + 1 ,regb 
+0457 70495400 jam 0 ,mem_new_24g_abort_pac 
+
+g24_package_data_pc_bind:
+0458 204003c5 call g24_transmit_rf_ctrl_clear 
+0459 6000c990 store 1 ,mem_new_24g_common_temp 
+045a 1a208401 add rega ,1 ,temp 
+045b d8a04991 arg mem_new_24g_common_temp + 1 ,contw 
+
+g24_package_user_data:
+045c 1a227200 copy rega ,loopcnt 
+045d 1a420c00 copy regb ,contr 
+045e 20407ecd call memcpy 
+045f da204990 arg mem_new_24g_common_temp ,rega 
+
+g24_put_data_in_buff:
+0460 c6938000 rtnmark0 mark_24g_conext 
+0461 6008c928 storet 1 ,mem_new_24g_datalen 
+0462 18427200 copy temp ,loopcnt 
+0463 d8a048c4 arg mem_new_24g_txbuf ,contw 
+0464 1a220c00 copy rega ,contr 
+0465 20207ecd branch memcpy 
+
+g24_syncword_crc8:
+0466 da200000 arg 0 ,rega 
+0467 df200004 arg 4 ,loopcnt 
+0468 d8c04950 arg mem_new_24g_addr ,contr 
+
+g24_syncword_crc8_loop:
+0469 e8c08000 ifetch 1 ,contr 
+046a 9a20a200 iadd rega ,rega 
+046b c2000469 loop g24_syncword_crc8_loop 
+046c 1a227e00 copy rega ,pdata 
+046d 600149bb store 2 ,mem_new_24g_syncword 
+046e 6800c9bb fetch 1 ,mem_new_24g_syncword 
+046f 6808c9bc fetcht 1 ,mem_new_24g_syncword + 1 
+0470 9840fe00 iadd temp ,pdata 
+0471 6000c9bd store 1 ,mem_new_24g_syncword_crc8 
+0472 20600000 rtn 
+
+g24_transmit_prep:
+0473 6800c928 fetch 1 ,mem_new_24g_datalen 
+0474 1fe0fe02 increase 2 ,pdata 
+0475 6000c92a store 1 ,mem_new_24g_txlen 
+0476 6800c929 fetch 1 ,mem_new_24g_data_type 
+0477 6000c8e4 store 1 ,mem_new_24g_txpayload 
+0478 6800c928 fetch 1 ,mem_new_24g_datalen 
+0479 1fe9fe00 lshift3 pdata ,pdata 
+047a 6808c927 fetcht 1 ,mem_new_24g_pid 
+047b 18410403 and temp ,0x03 ,temp 
+047c 18438400 lshift temp ,temp 
+047d 9841fe00 ior temp ,pdata 
+047e 6808c965 fetcht 1 ,mem_new_24g_no_ack 
+047f 9840fe00 iadd temp ,pdata 
+0480 e0a08000 istore 1 ,contw 
+0481 6800c928 fetch 1 ,mem_new_24g_datalen 
+0482 98007200 iforce loopcnt 
+0483 d8c048c4 arg mem_new_24g_txbuf ,contr 
+0484 20207ecd branch memcpy 
+
+g24_send_abort_packet:
+0485 70495401 jam 1 ,mem_new_24g_abort_pac 
+0486 7049b100 jam 0 ,mem_new_24g_rf_hop_ch 
+0487 204003c5 call g24_transmit_rf_ctrl_clear 
+0488 6000c990 store 1 ,mem_new_24g_common_temp 
+0489 58000000 setarg 0 
+048a 6003c991 store 7 ,mem_new_24g_common_temp + 1 
+048b 68024960 fetch 4 ,mem_new_24g_device_addr 
+048c 60024998 store 4 ,mem_new_24g_common_temp + 8 
+048d d840000c arg 12 ,temp 
+048e da204990 arg mem_new_24g_common_temp ,rega 
+048f 20400460 call g24_put_data_in_buff 
+0490 6800c929 fetch 1 ,mem_new_24g_data_type 
+0491 79207e03 set1 bit_abort ,pdata 
+0492 6000c929 store 1 ,mem_new_24g_data_type 
+0493 20400473 call g24_transmit_prep 
+0494 20400449 call g24_txdata_enable_tx 
+0495 2020042b branch g24_transmit_start 
+
+g24_no_data_to_tx:
+0496 20600000 rtn 
+
+g24_no_data_to_tx_short_lpm_disable:
+0497 6800c954 fetch 1 ,mem_new_24g_abort_pac 
+0498 203a0485 branch g24_send_abort_packet ,blank 
+0499 6808c9b8 fetcht 1 ,mem_new_24g_delay_long_sleep_cnt 
+049a 18408401 increase 1 ,temp 
+049b 6008c9b8 storet 1 ,mem_new_24g_delay_long_sleep_cnt 
+049c 6800c9b9 fetch 1 ,mem_new_24g_delay_long_sleep_maxcnt 
+049d 98467c00 isub temp ,null 
+049e 20610000 rtn positive 
+049f 7049b800 jam 0 ,mem_new_24g_delay_long_sleep_cnt 
+
+g24_lpm_long_sleep:
+04a0 204000a4 call p_check_ipc_for_lpm 
+04a1 24740000 nrtn user 
+04a2 68008b2b fetch 1 ,mem_c51_lmp_lock 
+04a3 247a0000 nrtn blank 
+04a4 6800c9ba fetch 1 ,mem_new_24g_enter_lpm_timer 
+04a5 247a0000 nrtn blank 
+04a6 704e8000 jam 0 ,mem_short_data_wheel 
+04a7 20403be2 call lpo_calibration 
+04a8 6801c20f fetch 3 ,mem_clks_per_lpo 
+04a9 207a0000 rtn blank 
+04aa 68044958 fetch 8 ,mem_new_24g_enter_hibernate 
+04ab 20407f16 call clk2lpo 
+04ac 600a41fb storet 4 ,mem_sleep_counter 
+04ad 20203c11 branch lpm_sleep 
+
+g24_lpm_short_increase:
+04ae 6800c2b8 fetch 1 ,mem_wakup_from_power_flag 
+04af 2fec0002 isolate0 2 ,pdata 
+04b0 202084b8 branch g24_lpm_short_increase_poweron ,true 
+04b1 6800ce79 fetch 1 ,mem_short_lpm_tx_cnt 
+04b2 c1028000 rtneq 5 
+04b3 1fe0fe01 increase 1 ,pdata 
+04b4 6000ce79 store 1 ,mem_short_lpm_tx_cnt 
+04b5 c1828000 rtnne 5 
+
+g24_lpm_short_enable:
+04b6 704e7801 jam 1 ,mem_short_lpm_enable 
+04b7 20600000 rtn 
+
+g24_lpm_short_increase_poweron:
+04b8 6800ce79 fetch 1 ,mem_short_lpm_tx_cnt 
+04b9 c10a0000 rtneq 20 
+04ba 1fe0fe01 increase 1 ,pdata 
+04bb 6000ce79 store 1 ,mem_short_lpm_tx_cnt 
+04bc c18a0000 rtnne 20 
+04bd 6800c2b8 fetch 1 ,mem_wakup_from_power_flag 
+04be 79207e02 set1 2 ,pdata 
+04bf 6000c2b8 store 1 ,mem_wakup_from_power_flag 
+04c0 202004b6 branch g24_lpm_short_enable 
+
+g24_lpm_short_decrease:
+04c1 6800ce79 fetch 1 ,mem_short_lpm_tx_cnt 
+04c2 207a0000 rtn blank 
+04c3 1fe0ffff increase -1 ,pdata 
+04c4 6000ce79 store 1 ,mem_short_lpm_tx_cnt 
+04c5 247a0000 nrtn blank 
+04c6 704e7800 jam 0 ,mem_short_lpm_enable 
+04c7 20600000 rtn 
+
+g24_short_lpm_transmit_process:
+04c8 79200027 set1 mark_24g_conext ,mark 
+04c9 204002b3 call p_ipc_rx 
+04ca 203404cd branch g24_short_lpm_transmit_process_ipc_nodata ,user 
+04cb 6800c897 fetch 1 ,mem_ipc_rx_type 
+04cc c00304dc beq ipc_type_24g ,g24_short_lpm_txdata_data_ready 
+
+g24_short_lpm_transmit_process_ipc_nodata:
+04cd 6800ce7d fetch 1 ,mem_send_data_24g_short_lpm 
+04ce c00084d4 beq short_lpm_state_data ,g24_short_lpm_txdata_prep_buff_data 
+04cf c0010496 beq short_lpm_state_nodata ,g24_no_data_to_tx 
+04d0 c00184d2 beq short_lpm_state_button_wheel ,g24_short_lpm_transmit_process_button_wheel 
+04d1 20600000 rtn 
+
+g24_short_lpm_transmit_process_button_wheel:
+04d2 704e7900 jam 0 ,mem_short_lpm_tx_cnt 
+04d3 704e7800 jam 0 ,mem_short_lpm_enable 
+
+g24_short_lpm_txdata_prep_buff_data:
+04d4 204004ae call g24_lpm_short_increase 
+04d5 704e7d00 jam 0 ,mem_send_data_24g_short_lpm 
+04d6 df200007 arg 7 ,loopcnt 
+04d7 1f227e00 copy loopcnt ,pdata 
+04d8 6000c970 store 1 ,mem_new_uart_packet 
+04d9 d8c04e21 arg mem_hid_buff ,contr 
+04da 20407ecd call memcpy 
+04db 78547c00 disable user 
+
+g24_short_lpm_txdata_data_ready:
+04dc 20400447 call g24_txdata_prep_packeage_data 
+04dd 204003fd call g24_rf_sta_check 
+04de 20400504 call g24_transmit_packet 
+04df 204005ea call power_ctrl_start 
+
+g24_short_lpm_sleep:
+04e0 20403be2 call lpo_calibration 
+04e1 6801c20f fetch 3 ,mem_clks_per_lpo 
+04e2 207a0000 rtn blank 
+04e3 6800c131 fetch 1 ,mem_lpm_mode 
+04e4 207a0000 rtn blank 
+04e5 6800ce80 fetch 1 ,mem_short_data_wheel 
+04e6 c00084e9 beq 1 ,g24_short_lpm_sleep2 
+04e7 58000000 setarg 0 
+04e8 600400a0 store 8 ,mem_gpio_wakeup_low 
+
+g24_short_lpm_sleep2:
+04e9 204004f9 call g24_short_lpm_select_param 
+04ea d9600d00 arg param_rx_setup ,timeup 
+04eb 34730200 until clkn_rt ,meet 
+04ec 6809ce7a fetcht 3 ,mem_ckln_24g_short_lpm 
+04ed 1c427e00 copy clkn_bt ,pdata 
+04ee 98467e00 isub temp ,pdata 
+04ef 1fe17eff and_into 0xff ,pdata 
+04f0 d8400ea6 arg 3750 ,temp 
+04f1 984f8400 imul32 temp ,temp 
+04f2 68024e74 fetch 4 ,mem_short_lpm_interval_param 
+04f3 98467e00 isub temp ,pdata 
+04f4 20213c7f branch lpm_dispatch_sleep ,positive 
+04f5 6800c218 fetch 1 ,mem_lpm_xtalcnt 
+04f6 1fe0fe01 increase 1 ,pdata 
+04f7 600241fb store 4 ,mem_sleep_counter 
+04f8 20203c86 branch lpm_dispatch_sleep + 7 
+
+g24_short_lpm_select_param:
+04f9 58013c68 setarg g24_8125_interval_param 
+04fa 60024e74 store 4 ,mem_short_lpm_interval_param 
+04fb 6800ce7e fetch 1 ,mem_short_lpm_interval_cnt 
+04fc 1fe0fe01 increase 1 ,pdata 
+04fd c08284ff bne 5 ,g24_short_lpm_select_param_cont 
+04fe 58000000 setarg 0 
+
+g24_short_lpm_select_param_cont:
+04ff 6000ce7e store 1 ,mem_short_lpm_interval_cnt 
+0500 c4000000 rtnbit0 0 
+0501 580130b0 setarg g24_78125_interval_param 
+0502 60024e74 store 4 ,mem_short_lpm_interval_param 
+0503 20600000 rtn 
+
+g24_transmit_packet:
+0504 704ea701 jam 1 ,mem_led_gpio8_blink_timer 
+0505 70493100 jam 0 ,mem_new_24g_retry 
+
+g24_transmit_loop:
+0506 d9600d00 arg param_rx_setup ,timeup 
+0507 34730200 until clkn_rt ,meet 
+0508 2040051e call g24_transmit_receive_ack 
+0509 6800c965 fetch 1 ,mem_new_24g_no_ack 
+050a c1008000 rtneq no_ack_24g 
+050b 242c052d nbranch g24_retransmit ,sync 
+050c 2437852d nbranch g24_retransmit ,user3 
+050d 704ea901 jam 1 ,mem_led_gpio5_blink_timer 
+050e 2040054c call g24_ackpayload_parse 
+050f 204005dc call power_ctrl_pac_succ_incrs 
+
+g24_transmit_next_packet:
+0510 6800c927 fetch 1 ,mem_new_24g_pid 
+0511 1fe0fe01 increase 1 ,pdata 
+0512 6000c927 store 1 ,mem_new_24g_pid 
+0513 6800c938 fetch 1 ,mem_new_24g_pairing_sm 
+0514 c0ff851c bne state_24g_pairing_success ,g24_paring_mode_start 
+0515 204003f4 call g24_transmit_succ_rf_config 
+
+g24_transmit_abandon:
+0516 58000000 setarg 0 
+0517 6001492e store 2 ,mem_new_24g_txfail_cnt 
+0518 6000c930 store 1 ,mem_new_24g_get_ack_fail 
+0519 6000c9b3 store 1 ,mem_new_24g_hop_pac_retry 
+051a 70492d00 jam ensure_off_24g ,mem_new_24g_ensure 
+051b 20600000 rtn 
+
+g24_paring_mode_start:
+051c 204005d9 call power_ctrl_pac_succ_cnt_init 
+051d 20200660 branch g24_paring_mode 
+
+g24_transmit_receive_ack:
+051e 7857fc00 disable user3 
+051f 2040056c call g24_transmit 
+0520 6800c965 fetch 1 ,mem_new_24g_no_ack 
+0521 c000852b beq no_ack_24g ,g24_transmit_no_ack 
+0522 18002a00 force 0 ,radio_ctrl 
+0523 68024950 fetch 4 ,mem_new_24g_addr 
+0524 98001200 iforce access 
+0525 68088017 fetcht 1 ,mem_last_freq 
+0526 204039b9 call set_freq_rx 
+0527 204039bf call rf_rx_enable 
+0528 20400596 call g24_receive_rxon 
+0529 205785d5 call g24_end_of_packet ,user3 
+052a 20600000 rtn 
+
+g24_transmit_no_ack:
+052b 204005d5 call g24_end_of_packet 
+052c 20200510 branch g24_transmit_next_packet 
+
+g24_retransmit:
+052d 6800c930 fetch 1 ,mem_new_24g_get_ack_fail 
+052e 1fe0fe01 increase 1 ,pdata 
+052f 6000c930 store 1 ,mem_new_24g_get_ack_fail 
+0530 6800c938 fetch 1 ,mem_new_24g_pairing_sm 
+0531 c0ff8541 bne state_24g_pairing_success ,g24_tx_paring_retry 
+0532 6808c931 fetcht 1 ,mem_new_24g_retry 
+0533 18408401 increase 1 ,temp 
+0534 6008c931 storet 1 ,mem_new_24g_retry 
+0535 6800c96e fetch 1 ,mem_new_24g_max_retry 
+0536 98467e00 isub temp ,pdata 
+0537 243a0506 nbranch g24_transmit_loop ,blank 
+0538 6800c9b4 fetch 1 ,mem_new_24g_rf_work_stage 
+0539 c00183dd beq 3 ,g24_transmit_pac_fail_hop_stage3 
+053a 6800c9b3 fetch 1 ,mem_new_24g_hop_pac_retry 
+053b 1fe0fe01 increase 1 ,pdata 
+053c 6000c9b3 store 1 ,mem_new_24g_hop_pac_retry 
+053d c00103d2 beq 2 ,g24_transmit_hop_pac_fail 
+053e 204003c9 call g24_hop_ch_enable 
+053f 70496e01 jam 1 ,mem_new_24g_max_retry 
+0540 20200504 branch g24_transmit_packet 
+
+g24_tx_paring_retry:
+0541 6800c930 fetch 1 ,mem_new_24g_get_ack_fail 
+0542 c1ff8000 rtnne 0xff 
+0543 70493000 jam 0 ,mem_new_24g_get_ack_fail 
+0544 2020054a branch g24_stop_24g_mode 
+
+g24_tx_attempt_fail:
+0545 58000000 setarg 0 
+0546 6001492e store 2 ,mem_new_24g_txfail_cnt 
+0547 70413100 jam 0 ,mem_lpm_mode 
+0548 704e7900 jam 0 ,mem_short_lpm_tx_cnt 
+0549 704e7800 jam 0 ,mem_short_lpm_enable 
+
+g24_stop_24g_mode:
+054a 7048963b jam bt_evt_24g_attempt_fail ,mem_ipc_tx_evt 
+054b 202002e1 branch p_ipc_tx_evt 
+
+g24_ackpayload_parse:
+054c 20400553 call g24_read_len_pid_crc 
+054d 6800c926 fetch 1 ,mem_new_24g_rxdata_length 
+054e 207a0000 rtn blank 
+054f 98007200 iforce loopcnt 
+0550 d8c048a4 arg mem_new_24g_rxbuf + 2 ,contr 
+0551 d8a04906 arg mem_new_24g_rxpayload ,contw 
+0552 20207ecd branch memcpy 
+
+g24_read_len_pid_crc:
+0553 6800c8a3 fetch 1 ,mem_new_24g_rxbuf + 1 
+0554 1fe97e00 rshift3 pdata ,pdata 
+0555 6000c926 store 1 ,mem_new_24g_rxdata_length 
+0556 1fe0fe01 increase 1 ,pdata 
+0557 d8c048a3 arg mem_new_24g_rxbuf + 1 ,contr 
+0558 98c08c00 iadd contr ,contr 
+0559 e8c18000 ifetch 3 ,contr 
+055a 6001c966 store 3 ,mem_new_24g_sta_crc 
+055b 6800c8a3 fetch 1 ,mem_new_24g_rxbuf + 1 
+055c 1fe37e00 rshift pdata ,pdata 
+055d 1fe17e03 and pdata ,0x03 ,pdata 
+055e 6000c96c store 1 ,mem_new_24g_sta_pid 
+055f 20600000 rtn 
+
+g24_prep:
+0560 7844fc00 disable enable_crc 
+0561 7843fc00 disable enable_white 
+0562 58555555 setarg 0x555555 
+0563 98001e00 iforce crc24_init 
+0564 6800c932 fetch 1 ,mem_new_24g_ch 
+0565 1fed8400 reverse pdata ,temp 
+0566 79200401 set1 1 ,temp 
+0567 18431c00 rshift temp ,white_init 
+0568 20600000 rtn 
+
+g24_set_freq_tx:
+0569 204039b1 call set_sync_on 
+056a 6808c932 fetcht 1 ,mem_new_24g_ch 
+056b 202039c9 branch set_freq_tx 
+
+g24_transmit:
+056c 20404976 call le_enable 
+056d 68024950 fetch 4 ,mem_new_24g_addr 
+056e 98001200 iforce access 
+056f 20400560 call g24_prep 
+0570 20400569 call g24_set_freq_tx 
+0571 79202a00 set1 txgfsk ,radio_ctrl 
+0572 782efc00 enable encode_fec0 
+0573 78307c00 enable is_tx 
+0574 7850fc00 disable is_rx 
+0575 19317e00 rshift16 access ,pdata 
+0576 1fecfe00 rshift8 pdata ,pdata 
+0577 1ff1fe00 rshift4 pdata ,pdata 
+0578 08008628 inject mod ,40 
+0579 784efc00 disable encode_fec0 
+057a 782dfc00 enable encode_fec1 
+057b 7823fc00 enable enable_white 
+057c 7824fc00 enable enable_crc 
+057d 6800c9bd fetch 1 ,mem_new_24g_syncword_crc8 
+057e 08008608 inject mod ,8 
+057f 6800c92a fetch 1 ,mem_new_24g_txlen 
+0580 98007200 iforce loopcnt 
+0581 d8c048e4 arg mem_new_24g_txpayload ,contr 
+
+g24tr_loop:
+0582 e8c08000 ifetch 1 ,contr 
+0583 08008608 inject mod ,8 
+0584 c2000582 loop g24tr_loop 
+0585 78247c00 enable enable_parity 
+0586 08008618 inject mod ,24 
+0587 78447c00 disable enable_parity 
+0588 37d38200 until null ,tx_clear 
+0589 20000064 nop 100 
+058a 784efc00 disable encode_fec0 
+058b 784dfc00 disable encode_fec1 
+058c 20600000 rtn 
+
+g24_receive_packet:
+058d 20404976 call le_enable 
+058e 68024950 fetch 4 ,mem_new_24g_addr 
+058f 98001200 iforce access 
+0590 204039b1 call set_sync_on 
+0591 6808c932 fetcht 1 ,mem_new_24g_ch 
+0592 204039b9 call set_freq_rx 
+0593 58000500 setarg param_pll_setup 
+0594 20403b35 call sleep 
+0595 204039bf call rf_rx_enable 
+
+g24_receive_rxon:
+0596 20400560 call g24_prep 
+0597 7857fc00 disable user3 
+0598 7826fc00 enable decode_fec0 
+0599 7830fc00 enable is_rx 
+059a 78507c00 disable is_tx 
+059b 78287c00 enable swfine 
+059c 6801492b fetch 2 ,mem_new_24g_rx_window 
+059d 98003600 iforce stop_watch 
+059e 37c18400 correlate null ,timeout 
+059f 242c05d8 nbranch g24_sync_timeout ,sync 
+05a0 7846fc00 disable decode_fec0 
+05a1 7825fc00 enable decode_fec1 
+05a2 7823fc00 enable enable_white 
+05a3 7824fc00 enable enable_crc 
+05a4 09800008 parse demod ,bucket ,8 
+05a5 19897e00 rshift3 pwindow ,pdata 
+05a6 6000c9be store 1 ,mem_new_24g_get_syncword_crc8 
+05a7 20400466 call g24_syncword_crc8 
+05a8 6808c9be fetcht 1 ,mem_new_24g_get_syncword_crc8 
+05a9 98467c00 isub temp ,null 
+05aa 242285d5 nbranch g24_end_of_packet ,zero 
+05ab 09800008 parse demod ,bucket ,8 
+05ac 19897e00 rshift3 pwindow ,pdata 
+05ad 6000c8a2 store 1 ,mem_new_24g_rxbuf 
+05ae 6800c96f fetch 1 ,mem_new_24g_mode 
+05af 1fe67c02 sub pdata ,rx_24g ,null 
+05b0 202285b5 branch g24_receive_skip ,zero 
+05b1 6800c8a2 fetch 1 ,mem_new_24g_rxbuf 
+05b2 6808c929 fetcht 1 ,mem_new_24g_data_type 
+05b3 a8400e00 icompare bits_data ,temp 
+05b4 242085d5 nbranch g24_end_of_packet ,true 
+
+g24_receive_skip:
+05b5 09800008 parse demod ,bucket ,8 
+05b6 19897e00 rshift3 pwindow ,pdata 
+05b7 e0a08000 istore 1 ,contw 
+05b8 1fe97e00 rshift3 pdata ,pdata 
+05b9 1fe1721f and pdata ,0x1f ,loopcnt 
+05ba 202285bf branch g24rx_nopayload ,zero 
+
+g24rx_loop:
+05bb 09800008 parse demod ,bucket ,8 
+05bc 19897e00 rshift3 pwindow ,pdata 
+05bd e0a08000 istore 1 ,contw 
+05be c20005bb loop g24rx_loop 
+
+g24rx_nopayload:
+05bf 18a22200 copy contw ,rega 
+05c0 09800008 parse demod ,bucket ,8 
+05c1 19897e00 rshift3 pwindow ,pdata 
+05c2 6000c9cf store 1 ,mem_rssi_hex_received 
+05c3 1a220a00 copy rega ,contw 
+05c4 09800018 parse demod ,bucket ,24 
+05c5 78287c00 enable swfine 
+05c6 db600664 arg param_sifs ,stop_watch 
+05c7 1fef7e00 rshift32 pdata ,pdata 
+05c8 1ff17e00 rshift16 pdata ,pdata 
+05c9 e0a18000 istore 3 ,contw 
+05ca 7845fc00 disable decode_fec1 
+05cb 202305d5 branch g24_end_of_packet ,crc_failed 
+05cc 7837fc00 enable user3 
+05cd 68008017 fetch 1 ,mem_last_freq 
+05ce 1fe0a200 add pdata ,0 ,rega 
+05cf 20403a13 call rf_write_freq 
+05d0 7846fc00 disable decode_fec0 
+05d1 204039b1 call set_sync_on 
+05d2 6800c9cf fetch 1 ,mem_rssi_hex_received 
+05d3 1fe22200 copy pdata ,rega 
+05d4 20200628 branch rssi_signal 
+
+g24_end_of_packet:
+05d5 784dfc00 disable encode_fec1 
+05d6 7845fc00 disable decode_fec1 
+05d7 202036c6 branch end_of_packet 
+
+g24_sync_timeout:
+05d8 202005d5 branch g24_end_of_packet 
+
+power_ctrl_pac_succ_cnt_init:
+05d9 7049c401 jam 1 ,mem_power_ctrl_level 
+05da 7049c500 jam 0 ,mem_power_ctrl_pac_succ_cnt 
+05db 20600000 rtn 
+
+power_ctrl_pac_succ_incrs:
+05dc 6800c9c5 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+05dd 1fe0fe01 increase 1 ,pdata 
+05de 6000c9c5 store 1 ,mem_power_ctrl_pac_succ_cnt 
+05df 20600000 rtn 
+
+power_ctrl_pac_succ_decrs:
+05e0 6800c9c5 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+05e1 1fe67c01 sub pdata ,1 ,null 
+05e2 244105e8 ncall power_ctrl_pac_succ_cnt_reinit ,positive 
+05e3 6800c9c5 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+05e4 c1000000 rtneq 0 
+05e5 1fe0ffff increase -1 ,pdata 
+05e6 6000c9c5 store 1 ,mem_power_ctrl_pac_succ_cnt 
+05e7 20600000 rtn 
+
+power_ctrl_pac_succ_cnt_reinit:
+05e8 7049c502 jam 2 ,mem_power_ctrl_pac_succ_cnt 
+05e9 20600000 rtn 
+
+power_ctrl_start:
+05ea da2049c6 arg mem_rssi_signal_buf ,rega 
+05eb 20400631 call rssi_average 
+05ec 6008c9d0 storet 1 ,mem_rssi_avg_received 
+05ed 280ffe26 isolate1 mark_24g ,mark 
+05ee 204085f8 call power_ctrl_24g_dis_max ,true 
+05ef 244085fc ncall power_ctrl_le_dis_max ,true 
+05f0 98467c00 isub temp ,null 
+05f1 24210615 nbranch power_ctrl_txpower_incrs ,positive 
+05f2 6800c9c5 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+05f3 1fe67c01 sub pdata ,1 ,null 
+05f4 24210600 nbranch power_ctrl_txpower_decrs_check ,positive 
+05f5 6800c9c5 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+05f6 c0000615 beq 0 ,power_ctrl_txpower_incrs 
+05f7 20600000 rtn 
+
+power_ctrl_24g_dis_max:
+05f8 58000082 setarg rssi_dis_max_24g 
+05f9 20600000 rtn 
+
+power_ctrl_24g_dis_min:
+05fa 58000077 setarg rssi_dis_min_24g 
+05fb 20600000 rtn 
+
+power_ctrl_le_dis_max:
+05fc 58000080 setarg rssi_dis_max_ble 
+05fd 20600000 rtn 
+
+power_ctrl_le_dis_min:
+05fe 58000075 setarg rssi_dis_min_ble 
+05ff 20600000 rtn 
+
+power_ctrl_txpower_decrs_check:
+0600 6800c9c5 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0601 c1a30000 rtnne 70 
+0602 7049c500 jam 0 ,mem_power_ctrl_pac_succ_cnt 
+
+power_ctrl_txpower_decrs:
+0603 6808c9d0 fetcht 1 ,mem_rssi_avg_received 
+0604 280ffe26 isolate1 mark_24g ,mark 
+0605 204085fa call power_ctrl_24g_dis_min ,true 
+0606 244085fe ncall power_ctrl_le_dis_min ,true 
+0607 98467c00 isub temp ,null 
+0608 24610000 nrtn positive 
+0609 6800c9c4 fetch 1 ,mem_power_ctrl_level 
+060a c0000621 beq 0 ,power_ctrl_decrs_level0 
+060b 1fe0ffff increase -1 ,pdata 
+060c 6000c9c4 store 1 ,mem_power_ctrl_level 
+060d c0000621 beq 0 ,power_ctrl_decrs_level0 
+
+power_ctrl_decrs_level1:
+
+power_ctrl_incrs_level1:
+060e 708955d0 hjam 0xd0 ,0x8955 
+060f 708956e0 hjam 0xe0 ,0x8956 
+0610 7089574c hjam 0x4c ,0x8957 
+0611 7089586c hjam 0x6c ,0x8958 
+0612 70895950 hjam 0x50 ,0x8959 
+0613 70428001 jam 0x01 ,mem_tx_power 
+0614 20600000 rtn 
+
+power_ctrl_txpower_incrs:
+0615 6800c9c4 fetch 1 ,mem_power_ctrl_level 
+0616 c001061a beq 2 ,power_ctrl_incrs_level2 
+0617 1fe0fe01 increase 1 ,pdata 
+0618 6000c9c4 store 1 ,mem_power_ctrl_level 
+0619 c000860e beq 1 ,power_ctrl_incrs_level1 
+
+power_ctrl_incrs_level2:
+061a 708955d0 hjam 0xd0 ,0x8955 
+061b 708956e0 hjam 0xe0 ,0x8956 
+061c 7089574c hjam 0x4c ,0x8957 
+061d 7089583c hjam 0x3c ,0x8958 
+061e 70895910 hjam 0x10 ,0x8959 
+061f 70428004 jam 0x04 ,mem_tx_power 
+0620 20600000 rtn 
+
+power_ctrl_decrs_level0:
+0621 708955d0 hjam 0xd0 ,0x8955 
+0622 708956c0 hjam 0xc0 ,0x8956 
+0623 7089574c hjam 0x4c ,0x8957 
+0624 7089586c hjam 0x6c ,0x8958 
+0625 70895950 hjam 0x50 ,0x8959 
+0626 70428010 jam 0x10 ,mem_tx_power 
+0627 20600000 rtn 
+
+rssi_signal:
+0628 6808c9ce fetcht 1 ,mem_rssi_signal_index 
+0629 580049c6 setarg mem_rssi_signal_buf 
+062a 98408a00 iadd temp ,contw 
+062b 1a227e00 copy rega ,pdata 
+062c e0a08000 istore 1 ,contw 
+062d 18408401 increase 1 ,temp 
+062e 18410407 and_into rssi_buf_len ,temp 
+062f 6008c9ce storet 1 ,mem_rssi_signal_index 
+0630 20600000 rtn 
+
+rssi_average:
+0631 d8400000 arg 0 ,temp 
+0632 df200008 arg rssi_buf_len + 1 ,loopcnt 
+0633 1a220c00 copy rega ,contr 
+
+rssi_average_loop:
+0634 e8c08000 ifetch 1 ,contr 
+0635 98408400 iadd temp ,temp 
+0636 c2000634 loop rssi_average_loop 
+0637 18497e00 rshift3 temp ,pdata 
+0638 1fe20400 copy pdata ,temp 
+0639 c6930000 rtnmark0 mark_24g 
+063a 1fe6fc0a div pdata ,10 
+063b 20407f53 call wait_div_end 
+063c 1807fe00 quotient pdata 
+063d 1ff27e00 lshift4 pdata ,pdata 
+063e 18070400 remainder temp 
+063f 98418400 ior temp ,temp 
+0640 20600000 rtn 
+
+g24_start_pairing_sm1:
+0641 79200026 set1 mark_24g ,mark 
+0642 204003a9 call g24_pair_init 
+
+g24_set_pairing_sm_1:
+0643 70493801 jam state_24g_pairing_1 ,mem_new_24g_pairing_sm 
+0644 20600000 rtn 
+
+g24_pairing_sm:
+0645 6800c92d fetch 1 ,mem_new_24g_ensure 
+0646 c000b1d4 beq ensure_on_24g ,disable_usr 
+0647 6800c938 fetch 1 ,mem_new_24g_pairing_sm 
+0648 c000864c beq state_24g_pairing_1 ,g24_pairing_sm_1 
+0649 c001064f beq state_24g_pairing_2 ,g24_pairing_sm_2 
+064a c0018652 beq state_24g_pairing_3 ,g24_pairing_sm_3 
+064b 20203b31 branch assert 
+
+g24_pairing_sm_1:
+064c 70493811 jam state_24g_pairing_1_waiting_ack ,mem_new_24g_pairing_sm 
+064d 704990aa jam 0xaa ,mem_new_24g_common_temp 
+064e 20200654 branch g24_pairing_sm_common 
+
+g24_pairing_sm_2:
+064f 70493812 jam state_24g_pairing_2_waiting_ack ,mem_new_24g_pairing_sm 
+0650 70499055 jam 0x55 ,mem_new_24g_common_temp 
+0651 20200654 branch g24_pairing_sm_common 
+
+g24_pairing_sm_3:
+0652 70493813 jam state_24g_pairing_3_waiting_ack ,mem_new_24g_pairing_sm 
+0653 70499022 jam 0x22 ,mem_new_24g_common_temp 
+
+g24_pairing_sm_common:
+0654 6800c929 fetch 1 ,mem_new_24g_data_type 
+0655 1fe17e07 and_into bits_data ,pdata 
+0656 6000c991 store 1 ,mem_new_24g_common_temp + 1 
+0657 68024960 fetch 4 ,mem_new_24g_device_addr 
+0658 60024992 store 4 ,mem_new_24g_common_temp + 2 
+
+g24_put_pairing_data_in_buff:
+0659 70499600 jam 0 ,mem_new_24g_common_temp + 6 
+065a da204990 arg mem_new_24g_common_temp ,rega 
+065b d8400007 arg 7 ,temp 
+065c 20400460 call g24_put_data_in_buff 
+065d 20400473 call g24_transmit_prep 
+065e 20400449 call g24_txdata_enable_tx 
+065f 202031d4 branch disable_usr 
+
+g24_paring_mode:
+0660 6800c938 fetch 1 ,mem_new_24g_pairing_sm 
+0661 c17f8000 rtneq state_24g_pairing_success 
+0662 c0088666 beq state_24g_pairing_1_waiting_ack ,g24_pairing_sm_1_waiting_ack 
+0663 c0090668 beq state_24g_pairing_2_waiting_ack ,g24_pairing_sm_2_waiting_ack 
+0664 c009866a beq state_24g_pairing_3_waiting_ack ,g24_pairing_sm_3_waiting_ack 
+0665 20600000 rtn 
+
+g24_pairing_sm_1_waiting_ack:
+0666 70493802 jam state_24g_pairing_2 ,mem_new_24g_pairing_sm 
+0667 20200516 branch g24_transmit_abandon 
+
+g24_pairing_sm_2_waiting_ack:
+0668 70493803 jam state_24g_pairing_3 ,mem_new_24g_pairing_sm 
+0669 20200516 branch g24_transmit_abandon 
+
+g24_pairing_sm_3_waiting_ack:
+066a 704938ff jam state_24g_pairing_success ,mem_new_24g_pairing_sm 
+066b 70489639 jam bt_evt_24g_pairing_complete ,mem_ipc_tx_evt 
+066c 204002e1 call p_ipc_tx_evt 
+066d 68024908 fetch 4 ,mem_new_24g_rxpayload + 2 
+066e 204003ac call g24_update_addr_and_synccrc8 
+066f 20200516 branch g24_transmit_abandon 
+
+g24_start_24g_mode:
+0670 793f8026 set0 mark_24g ,mark 
+0671 204003ae call g24_ch 
+0672 68024950 fetch 4 ,mem_new_24g_addr 
+0673 20400466 call g24_syncword_crc8 
+0674 6800c938 fetch 1 ,mem_new_24g_pairing_sm 
+0675 c1ff8000 rtnne state_24g_pairing_success 
+0676 20400686 call g24_tx_attemp_data_prep 
+
+g24_tx_attemp_dongle:
+0677 58000000 setarg 0 
+0678 60014956 store 2 ,mem_new_24g_check_dongle_times 
+
+g24_tx_attemp_dongle_loop:
+0679 200007d0 nop 2000 
+067a 6800c956 fetch 1 ,mem_new_24g_check_dongle_times 
+067b c07f854a beq 0xff ,g24_stop_24g_mode 
+067c 2040051e call g24_transmit_receive_ack 
+067d 242c0690 nbranch g24_attemp_txdata_retry ,sync 
+067e 24378690 nbranch g24_attemp_txdata_retry ,user3 
+
+g24_tx_attemp_dongle_succ:
+067f 70413101 jam 1 ,mem_lpm_mode 
+0680 79200026 set1 mark_24g ,mark 
+0681 58000000 setarg 0 
+0682 60014956 store 2 ,mem_new_24g_check_dongle_times 
+0683 7009bd3a jam bt_evt_24g_attempt_success ,mem_fifo_temp 
+0684 20407d86 call ui_ipc_send_event 
+0685 20207e0d branch check_51cmd_stop_adv 
+
+g24_tx_attemp_data_prep:
+0686 79200027 set1 mark_24g_conext ,mark 
+0687 704990ff jam 0xff ,mem_new_24g_common_temp 
+0688 6800c929 fetch 1 ,mem_new_24g_data_type 
+0689 6000c991 store 1 ,mem_new_24g_common_temp + 1 
+068a 68024960 fetch 4 ,mem_new_24g_device_addr 
+068b 60024992 store 4 ,mem_new_24g_common_temp + 2 
+068c d8400006 arg 6 ,temp 
+068d da204990 arg mem_new_24g_common_temp ,rega 
+068e 20400460 call g24_put_data_in_buff 
+068f 20200473 branch g24_transmit_prep 
+
+g24_attemp_txdata_retry:
+0690 68014956 fetch 2 ,mem_new_24g_check_dongle_times 
+0691 1fe0fe01 increase 1 ,pdata 
+0692 60014956 store 2 ,mem_new_24g_check_dongle_times 
+0693 204003ae call g24_ch 
+0694 20200679 branch g24_tx_attemp_dongle_loop 
+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 
+
+shutdown_radio_select:
+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_pair:
+
+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 
+
+txon_power_select:
+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 
+3c68 793f8025 set0 mark_ext_patch ,mark 
+3c69 44d4c015 bpatch patch15_1 ,mem_patch15 
+
+lpm_dispatch_next2:
+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 
+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 
+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 
+
+hid_handshake_event:
+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 
+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: btms/output/ramcode.rom
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/ramcode.rom	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/ramcode.rom	(working copy)
@@ -0,0 +1,1685 @@
+c512800f
+c0000025
+c0018031
+c0430037
+c0450042
+c0458065
+c0538071
+c0540078
+c054808c
+c056009f
+c05a033b
+c05a80b8
+c05b00bf
+c05b80df
+20203b34
+c002813a
+c00b013f
+c00d8143
+c0118146
+c017816a
+c018817f
+c0190191
+c01981a4
+c01c81b5
+c01e01c2
+c01e81d5
+c01f01db
+c01f81ea
+c0210208
+c026820d
+c0410227
+c04a8229
+c0798230
+c07b823c
+c07c0271
+c07c8277
+20203b34
+20800000
+70403000
+2435b004
+6800c595
+243a002f
+6800ce78
+203a3004
+704e7f00
+c5933004
+2435b004
+70828003
+20203004
+20400281
+20400418
+204002b3
+6800ce78
+243a036d
+2020301b
+2030b9a3
+708955d4
+20000004
+708955d2
+20000004
+708955d1
+20000004
+202039ae
+6800c280
+c00a39ae
+2020399c
+60088017
+1840a200
+20403a13
+58000500
+20403b35
+70890601
+7089003c
+708901e0
+70896d12
+2000000a
+70890201
+7089023d
+2000000a
+708903b7
+2000000a
+7089027f
+20200062
+6800c280
+c00a0062
+c280805c
+c281005c
+70894c5b
+70894d96
+70894e2c
+70894f46
+20200060
+70894cfb
+70894def
+70894eec
+70894f5e
+6800c280
+202039dc
+708956c5
+708955d0
+20600000
+20403cd2
+20403a5f
+70804206
+68108968
+79207e07
+60108968
+793ffe07
+60108968
+79207e07
+60108968
+70804205
+20203a0c
+20403c2b
+6800ce45
+207a0000
+704e4500
+1c427e00
+6002489e
+20600000
+c6130000
+20403be2
+6801c20f
+207a0000
+68014042
+d840ffff
+98467c00
+20628000
+6800c131
+207a0000
+20404816
+247a0000
+20403d0e
+247a0000
+20403a7b
+6800c6e2
+203a3c5e
+6800c639
+207a0000
+20203c5e
+6800c595
+203a0099
+6800809f
+243a0099
+6800ce83
+6808ce84
+98467c00
+24628000
+6800ce81
+247a0000
+58000000
+600400a0
+20203c6a
+204000a4
+24740000
+68008b2b
+247a0000
+7049c100
+20203c6a
+204000a4
+24740000
+68008b2b
+247a0000
+20203c8c
+204000af
+24740000
+204000ac
+24740000
+700b2b01
+700b2a01
+204000b4
+202000af
+6801482c
+6809482e
+202000b1
+680147c4
+680947c6
+98467c00
+2022e4c0
+202031d4
+68008b2a
+2000000a
+c08000b4
+20600000
+70001627
+70015000
+70017e00
+70017f00
+58000000
+600288d2
+20600000
+da2046f0
+20407f95
+207a0000
+1fe22600
+204000c5
+20203d9b
+c10c0000
+c00a00ca
+c00a80d2
+c01480dd
+20203d73
+704e8300
+70421200
+704ea600
+704e5178
+20403e61
+20403e59
+20403e7f
+20203dc2
+704ea400
+204002fa
+7044b200
+70421200
+704ea600
+704e5100
+70456a00
+68094e4e
+600944f8
+204052a0
+20203dc6
+20400128
+20207e3b
+6008824e
+6800c89c
+1fe0fe01
+6000c89c
+6800824e
+207a0000
+1fe0ffff
+6000824e
+2040012b
+2040010e
+20400134
+20400121
+204000ee
+204000fe
+202000e3
+6800cea7
+207a0000
+1fe0ffff
+6000cea7
+247a0000
+6800cea8
+1fe0fe01
+1fe17e01
+6000cea8
+c00000fa
+c00080fc
+20600000
+d8400008
+202064fd
+d8400008
+202064ff
+6800cea9
+207a0000
+1fe0ffff
+6000cea9
+247a0000
+6800ceaa
+1fe0fe01
+1fe17e01
+6000ceaa
+c000010a
+c000810c
+20600000
+d8400005
+202064fd
+d8400005
+202064ff
+6800cea6
+207a0000
+6800c212
+2fe1fe20
+24408118
+6800c131
+205a0116
+20600000
+70413101
+20600000
+70421220
+20600000
+6800c9ba
+207a0000
+704e8000
+1fe0ffff
+6000c9ba
+247a0000
+20600000
+6800ce82
+207a0000
+1fe0ffff
+6000ce82
+247a0000
+704e8100
+20600000
+20403e7f
+7009bd12
+20207d90
+6800ce51
+207a0000
+1fe0ffff
+6000ce51
+247a0000
+70421220
+70413101
+704ea601
+20600000
+6800ce52
+207a0000
+1fe0ffff
+6000ce52
+247a0000
+20203e6d
+20404968
+20404b51
+20404bd8
+204005ea
+20204945
+20403a50
+1fe22200
+20400628
+20204a3d
+68024e48
+60024596
+20204a8c
+70413101
+6801037c
+68090382
+98467e00
+600109be
+68008362
+793ffe05
+793ffe03
+60008362
+68020366
+68090364
+600909c6
+98462200
+6800c45b
+6000838d
+e8c90000
+e8c10000
+1febfe00
+60010364
+184b8400
+9840fe00
+e8ca0000
+600a038e
+9a20fe00
+1fe22800
+68010364
+680909c6
+98467e00
+680909be
+984ffe00
+9a80fe00
+60020366
+20405199
+68010390
+60014561
+20600000
+68008379
+c282817b
+204005dc
+704e6200
+6800ce20
+243a0175
+6800cea5
+c0008179
+68008303
+203a4bde
+20204f87
+6800ce20
+1fe0ffff
+6000ce20
+20204f87
+704e2003
+20204bde
+6800ce62
+1fe0fe01
+6000ce62
+202005e0
+6800c467
+c0030183
+c001018a
+20204bfb
+6800ce53
+c0008187
+20403e6d
+20204c86
+20400128
+704e5203
+20204c90
+58000013
+e0a08000
+20404c58
+5800000a
+60010390
+60014561
+20600000
+6800c46b
+c0010198
+c003019f
+c0038196
+20204c18
+704ea500
+20204d17
+59000302
+6001c4dc
+58000001
+e0a08000
+58010010
+e0a18000
+20204ccd
+7009bd29
+20407d86
+7009bd47
+20404bd6
+20204d01
+6800c46b
+c00d81a8
+c00e81a8
+20204c2b
+68094e4e
+6009446c
+6800ce86
+1fe08401
+18410403
+6008ce86
+1feffe07
+d8c04e87
+98c08c00
+e8c38000
+6003c46e
+d840000e
+20204f89
+6008c466
+28200602
+242081ba
+1840fffc
+60014467
+68088379
+204001bd
+20204f92
+6800cea5
+c00081c0
+20204bd0
+58000000
+20600000
+1a627e00
+c00001c8
+c00101cb
+c00181cf
+c00501d3
+20204fb9
+70413100
+704e513c
+2020501f
+20405033
+58000000
+60044544
+20600000
+20405039
+6800c56a
+c1010000
+20206418
+7009bd2b
+20204bd6
+e8c08000
+c00081d8
+20204ffe
+704ea501
+704e2003
+20205069
+e8c18000
+6001839a
+c00901df
+20205011
+70413101
+204001e5
+20405125
+24628000
+7009bd13
+20204bd6
+68008303
+1fe0fff9
+1fe27200
+1f222400
+20205135
+6800c3ff
+207a0000
+d8e00001
+20407ee2
+247a0000
+7854fc00
+78287c00
+20404b1e
+204049d4
+20404a8a
+243681fc
+68008003
+1fe0fe01
+60008003
+68008302
+1fe17e0f
+c0018206
+c002d1af
+68008016
+c093d17d
+180a7e00
+d84001ff
+98417e00
+1fe0fefa
+1fe0ffff
+20000026
+243a0202
+20205196
+20404ac5
+202001fc
+68024596
+d840ea60
+9840fe00
+60024596
+202051a9
+7855fc00
+20370210
+2436821f
+20403cb7
+68014161
+60010370
+68008302
+2fe00601
+2420bccb
+6800c465
+2fe00601
+2420bccb
+20404bd0
+243a3ccb
+6800ce62
+1fe67c01
+24213ccb
+20205297
+68094161
+68014e60
+98408400
+18430400
+68010370
+9840fe00
+60010370
+20203cc3
+c515623d
+20206250
+68120078
+681a007c
+9841fe00
+1fe47e00
+9a217e00
+60120070
+20600000
+1a227e00
+207a0000
+18408560
+18408560
+793f841c
+600a4703
+1fe20400
+da2046f0
+20407fa6
+247a0000
+18427e00
+20207d7d
+20407d80
+da2046f8
+20407f95
+1fe20400
+20407d84
+18427e00
+207a0000
+c0118249
+c012024d
+c0128251
+c0068253
+c0138260
+20207db3
+6800c9c3
+6000c280
+704938ff
+20200670
+6800c9c3
+6000c280
+793f8026
+2020497d
+70428014
+20200641
+793f8026
+70413100
+180a7e00
+6000c53e
+704e5300
+68094e4e
+600944f8
+204052a0
+da400005
+2040026a
+1a427e00
+e0c08000
+20207e07
+793f8026
+70413100
+704e5301
+68094e4e
+20404f6a
+1a220a00
+58000001
+e0a08000
+da400004
+2020025c
+da204401
+ea208000
+207a0000
+98c0a200
+e8c08000
+c1008000
+2020026b
+204058c5
+243a7de5
+680089bd
+c584fde0
+c00f8296
+20207dd0
+700b2a03
+204000b4
+704e455a
+20403cfc
+68120138
+793ffe0f
+6012004c
+20403cf4
+d85fffff
+20203c11
+680a489e
+1c427e00
+98467e00
+d8400640
+9846fc00
+20407f53
+1807fe00
+207a0000
+1c420400
+600a489e
+68094898
+18508400
+9840fe00
+1ff0fe00
+60014898
+1ff0fe00
+1fe17e03
+c1800000
+204002a9
+24760000
+6800c2cf
+20600000
+68108053
+79207e07
+60108053
+68108973
+1fe1fe30
+60108973
+7089067c
+708972aa
+20001388
+68190150
+68108053
+793ffe07
+60108053
+18508400
+600942d1
+20600000
+78367c00
+20600000
+78567c00
+20404bd0
+205a02a7
+6800c954
+245a02a7
+20600000
+704ea301
+204002b3
+704ea300
+20600000
+204000af
+20740000
+1ff0fe00
+1fe20c00
+204002d9
+6000c897
+c00082c4
+c00302f5
+1fe20400
+18c22200
+6800c040
+c30002ce
+1a220c00
+c6848000
+18427e00
+c002830c
+20203b31
+204002d9
+204002d9
+600089bd
+204002c9
+20207d90
+204002dc
+18c20400
+18508400
+600947c4
+20600000
+1a220c00
+d8a000f5
+202002d1
+204002d9
+1fe27200
+204002d5
+202002c9
+204002d9
+e0a08000
+c20002d5
+20600000
+204002dc
+e8c08000
+20600000
+580047c4
+98c67c00
+24628000
+d8c0472e
+20600000
+df200003
+d8c04894
+18c22200
+6801482e
+1ff0fe00
+1fe20a00
+1a220c00
+e8c08000
+e0a08000
+204002f0
+c20002e8
+18a27e00
+1ff0fe00
+6001482e
+20600000
+5800482c
+98a67c00
+24628000
+d8a047c8
+20600000
+c6938000
+204002d9
+1fe27200
+6000c970
+202002d3
+58000000
+6001ce85
+20600000
+c6130000
+6800c595
+207a0000
+204000af
+20740000
+1ff0fe00
+1fe20c00
+204002d9
+6000c897
+18c22200
+c08282ce
+18c22400
+20404bd4
+247a0000
+20200311
+18c22400
+6800cea3
+207a0000
+20404bd0
+247a0000
+68094e4e
+20404f6a
+c4000000
+6800c595
+c1000000
+6800ce83
+1fe0fe01
+6000ce83
+6800ce85
+1fe08401
+18410403
+6008ce85
+1feffe07
+d8a04e87
+98a08a00
+1a420c00
+204002d9
+1fe27200
+204002d3
+20400328
+20760000
+7009bd1b
+20204bd6
+78567c00
+6800cea4
+c1028000
+78367c00
+1fe0fe01
+6000cea4
+1fe67c01
+24610000
+70489640
+202002e1
+5800472e
+1ff0fe00
+600147c4
+600147c6
+580047c8
+1ff0fe00
+6001482c
+6001482e
+20600000
+d8400008
+204064e8
+d8400005
+204064e8
+2040524a
+700b2a00
+70016c06
+20403e7f
+580003a3
+60014296
+580002af
+60014290
+5800039c
+6001428c
+24558332
+20558373
+20403d3e
+6800ce45
+c02d0387
+20358385
+6800c280
+6000c9c3
+204005d9
+68014e41
+1ff0fe00
+60014e41
+68014e43
+1ff0fe00
+60014e43
+20400392
+204003bd
+680409c6
+243a0360
+68014ad4
+1ff0fe00
+203a0360
+60014e43
+7048962f
+6800ce78
+243a0368
+20400295
+204002e1
+204002fd
+70828003
+20600000
+2055bc29
+d9600d00
+34730200
+1c427e00
+6001ce7a
+6801470b
+c3858000
+c3830000
+20403d60
+204004c8
+2020036d
+1ce27e00
+c593037d
+203a0378
+7049b9bb
+20600000
+7049b900
+6800c9b7
+207a0000
+7049b700
+20200376
+203a0380
+7049c102
+20600000
+6800c9c2
+207a0000
+7049c200
+7049c101
+20600000
+7048963c
+20200361
+1ce27e00
+203a0279
+2040530d
+204042eb
+58000000
+60044040
+6001470b
+60014898
+6001489a
+7048963d
+20200361
+204062c4
+580007e2
+da2009c6
+d840000c
+2040630d
+204062c7
+680409c6
+207a0000
+6800c2cf
+20600000
+78347c00
+68120138
+79347e1a
+6012004c
+20403cf4
+70009f01
+20600000
+1a627e00
+1fe17ef0
+c1280000
+1a627e00
+6000c896
+202002e1
+70492700
+7049324e
+68024934
+60024950
+20200466
+6808c933
+204003b4
+18408401
+18410403
+6008c933
+20600000
+6800c950
+1fe17e03
+1fefa204
+58004939
+9a20fe00
+98408c00
+e8c08000
+6000c932
+20600000
+680209c6
+60024960
+247a0000
+68024140
+60024960
+20600000
+7049b001
+7049b200
+6800c929
+1fe17e07
+6000c929
+20600000
+6800c929
+79207e04
+6000c929
+6000c8e4
+20600000
+6800c929
+793ffe04
+6000c929
+20600000
+204005e0
+6800c9b4
+c00083d7
+c00103db
+20600000
+7049b202
+7049b300
+7049b000
+202003c5
+7049b100
+202003d8
+6801492e
+1fe0fe01
+6001492e
+c2830545
+6800c9b1
+c00083e6
+7049b101
+6800c9b1
+c08083c5
+6800c9b5
+1fe0fe01
+6000c9b5
+c00203ed
+204003ae
+70496e02
+20200504
+204005e0
+7049b500
+202003c5
+7049b202
+7049b001
+7049b100
+202003c5
+6800c9b4
+c00183f1
+6800c929
+2fec0004
+202083c3
+6800c9b4
+c00083f0
+c00103f1
+20600000
+6800c938
+c1ff8000
+20400402
+2456040a
+20600000
+78567c00
+6800c9b0
+c1808000
+6800c9b2
+c1800000
+7049b401
+70496e04
+202002a7
+6800c9b2
+203a0412
+1fe0ffff
+6000c9b2
+7049b402
+204003ae
+70496e04
+20600000
+7049b403
+6800c9b1
+243a03e4
+204003ae
+70496e02
+20600000
+c6930000
+79200027
+680a4949
+1c427e00
+98467c00
+24410431
+1fe22400
+68024949
+6808c94d
+98408400
+1a427e00
+98467c00
+2421042f
+793ffe1c
+60024949
+20400434
+20400441
+20340496
+204003fd
+20400504
+6800c938
+1fe67cff
+204285ea
+793f8027
+20600000
+20628000
+79207e1c
+20600000
+6800c964
+1fe0fe01
+6000c964
+c002043a
+c002843d
+20600000
+6800c94f
+6000c94d
+20600000
+70496400
+6800c94e
+6000c94d
+20600000
+6800c938
+c0ff8645
+204002b3
+2034044f
+6800c897
+c08364c0
+20400452
+20400473
+70492d01
+20600000
+704e7900
+704e7800
+7049ba0a
+20600000
+6800c92d
+c000b1d4
+20600000
+6800c9b9
+6000c9b8
+6800c970
+1fe22200
+da404971
+70495400
+204003c5
+6000c990
+1a208401
+d8a04991
+1a227200
+1a420c00
+20407ecd
+da204990
+c6938000
+6008c928
+18427200
+d8a048c4
+1a220c00
+20207ecd
+da200000
+df200004
+d8c04950
+e8c08000
+9a20a200
+c2000469
+1a227e00
+600149bb
+6800c9bb
+6808c9bc
+9840fe00
+6000c9bd
+20600000
+6800c928
+1fe0fe02
+6000c92a
+6800c929
+6000c8e4
+6800c928
+1fe9fe00
+6808c927
+18410403
+18438400
+9841fe00
+6808c965
+9840fe00
+e0a08000
+6800c928
+98007200
+d8c048c4
+20207ecd
+70495401
+7049b100
+204003c5
+6000c990
+58000000
+6003c991
+68024960
+60024998
+d840000c
+da204990
+20400460
+6800c929
+79207e03
+6000c929
+20400473
+20400449
+2020042b
+20600000
+6800c954
+203a0485
+6808c9b8
+18408401
+6008c9b8
+6800c9b9
+98467c00
+20610000
+7049b800
+204000a4
+24740000
+68008b2b
+247a0000
+6800c9ba
+247a0000
+704e8000
+20403be2
+6801c20f
+207a0000
+68044958
+20407f16
+600a41fb
+20203c11
+6800c2b8
+2fec0002
+202084b8
+6800ce79
+c1028000
+1fe0fe01
+6000ce79
+c1828000
+704e7801
+20600000
+6800ce79
+c10a0000
+1fe0fe01
+6000ce79
+c18a0000
+6800c2b8
+79207e02
+6000c2b8
+202004b6
+6800ce79
+207a0000
+1fe0ffff
+6000ce79
+247a0000
+704e7800
+20600000
+79200027
+204002b3
+203404cd
+6800c897
+c00304dc
+6800ce7d
+c00084d4
+c0010496
+c00184d2
+20600000
+704e7900
+704e7800
+204004ae
+704e7d00
+df200007
+1f227e00
+6000c970
+d8c04e21
+20407ecd
+78547c00
+20400447
+204003fd
+20400504
+204005ea
+20403be2
+6801c20f
+207a0000
+6800c131
+207a0000
+6800ce80
+c00084e9
+58000000
+600400a0
+204004f9
+d9600d00
+34730200
+6809ce7a
+1c427e00
+98467e00
+1fe17eff
+d8400ea6
+984f8400
+68024e74
+98467e00
+20213c7f
+6800c218
+1fe0fe01
+600241fb
+20203c86
+58013c68
+60024e74
+6800ce7e
+1fe0fe01
+c08284ff
+58000000
+6000ce7e
+c4000000
+580130b0
+60024e74
+20600000
+704ea701
+70493100
+d9600d00
+34730200
+2040051e
+6800c965
+c1008000
+242c052d
+2437852d
+704ea901
+2040054c
+204005dc
+6800c927
+1fe0fe01
+6000c927
+6800c938
+c0ff851c
+204003f4
+58000000
+6001492e
+6000c930
+6000c9b3
+70492d00
+20600000
+204005d9
+20200660
+7857fc00
+2040056c
+6800c965
+c000852b
+18002a00
+68024950
+98001200
+68088017
+204039b9
+204039bf
+20400596
+205785d5
+20600000
+204005d5
+20200510
+6800c930
+1fe0fe01
+6000c930
+6800c938
+c0ff8541
+6808c931
+18408401
+6008c931
+6800c96e
+98467e00
+243a0506
+6800c9b4
+c00183dd
+6800c9b3
+1fe0fe01
+6000c9b3
+c00103d2
+204003c9
+70496e01
+20200504
+6800c930
+c1ff8000
+70493000
+2020054a
+58000000
+6001492e
+70413100
+704e7900
+704e7800
+7048963b
+202002e1
+20400553
+6800c926
+207a0000
+98007200
+d8c048a4
+d8a04906
+20207ecd
+6800c8a3
+1fe97e00
+6000c926
+1fe0fe01
+d8c048a3
+98c08c00
+e8c18000
+6001c966
+6800c8a3
+1fe37e00
+1fe17e03
+6000c96c
+20600000
+7844fc00
+7843fc00
+58555555
+98001e00
+6800c932
+1fed8400
+79200401
+18431c00
+20600000
+204039b1
+6808c932
+202039c9
+20404976
+68024950
+98001200
+20400560
+20400569
+79202a00
+782efc00
+78307c00
+7850fc00
+19317e00
+1fecfe00
+1ff1fe00
+08008628
+784efc00
+782dfc00
+7823fc00
+7824fc00
+6800c9bd
+08008608
+6800c92a
+98007200
+d8c048e4
+e8c08000
+08008608
+c2000582
+78247c00
+08008618
+78447c00
+37d38200
+20000064
+784efc00
+784dfc00
+20600000
+20404976
+68024950
+98001200
+204039b1
+6808c932
+204039b9
+58000500
+20403b35
+204039bf
+20400560
+7857fc00
+7826fc00
+7830fc00
+78507c00
+78287c00
+6801492b
+98003600
+37c18400
+242c05d8
+7846fc00
+7825fc00
+7823fc00
+7824fc00
+09800008
+19897e00
+6000c9be
+20400466
+6808c9be
+98467c00
+242285d5
+09800008
+19897e00
+6000c8a2
+6800c96f
+1fe67c02
+202285b5
+6800c8a2
+6808c929
+a8400e00
+242085d5
+09800008
+19897e00
+e0a08000
+1fe97e00
+1fe1721f
+202285bf
+09800008
+19897e00
+e0a08000
+c20005bb
+18a22200
+09800008
+19897e00
+6000c9cf
+1a220a00
+09800018
+78287c00
+db600664
+1fef7e00
+1ff17e00
+e0a18000
+7845fc00
+202305d5
+7837fc00
+68008017
+1fe0a200
+20403a13
+7846fc00
+204039b1
+6800c9cf
+1fe22200
+20200628
+784dfc00
+7845fc00
+202036c6
+202005d5
+7049c401
+7049c500
+20600000
+6800c9c5
+1fe0fe01
+6000c9c5
+20600000
+6800c9c5
+1fe67c01
+244105e8
+6800c9c5
+c1000000
+1fe0ffff
+6000c9c5
+20600000
+7049c502
+20600000
+da2049c6
+20400631
+6008c9d0
+280ffe26
+204085f8
+244085fc
+98467c00
+24210615
+6800c9c5
+1fe67c01
+24210600
+6800c9c5
+c0000615
+20600000
+58000082
+20600000
+58000077
+20600000
+58000080
+20600000
+58000075
+20600000
+6800c9c5
+c1a30000
+7049c500
+6808c9d0
+280ffe26
+204085fa
+244085fe
+98467c00
+24610000
+6800c9c4
+c0000621
+1fe0ffff
+6000c9c4
+c0000621
+708955d0
+708956e0
+7089574c
+7089586c
+70895950
+70428001
+20600000
+6800c9c4
+c001061a
+1fe0fe01
+6000c9c4
+c000860e
+708955d0
+708956e0
+7089574c
+7089583c
+70895910
+70428004
+20600000
+708955d0
+708956c0
+7089574c
+7089586c
+70895950
+70428010
+20600000
+6808c9ce
+580049c6
+98408a00
+1a227e00
+e0a08000
+18408401
+18410407
+6008c9ce
+20600000
+d8400000
+df200008
+1a220c00
+e8c08000
+98408400
+c2000634
+18497e00
+1fe20400
+c6930000
+1fe6fc0a
+20407f53
+1807fe00
+1ff27e00
+18070400
+98418400
+20600000
+79200026
+204003a9
+70493801
+20600000
+6800c92d
+c000b1d4
+6800c938
+c000864c
+c001064f
+c0018652
+20203b31
+70493811
+704990aa
+20200654
+70493812
+70499055
+20200654
+70493813
+70499022
+6800c929
+1fe17e07
+6000c991
+68024960
+60024992
+70499600
+da204990
+d8400007
+20400460
+20400473
+20400449
+202031d4
+6800c938
+c17f8000
+c0088666
+c0090668
+c009866a
+20600000
+70493802
+20200516
+70493803
+20200516
+704938ff
+70489639
+204002e1
+68024908
+204003ac
+20200516
+793f8026
+204003ae
+68024950
+20400466
+6800c938
+c1ff8000
+20400686
+58000000
+60014956
+200007d0
+6800c956
+c07f854a
+2040051e
+242c0690
+24378690
+70413101
+79200026
+58000000
+60014956
+7009bd3a
+20407d86
+20207e0d
+79200027
+704990ff
+6800c929
+6000c991
+68024960
+60024992
+d8400006
+da204990
+20400460
+20200473
+68014956
+1fe0fe01
+60014956
+204003ae
+20200679
Index: btms/output/romcode.rom
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/romcode.rom	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/output/sched.rom
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/sched.rom	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/output/sched.rom	(working copy)
@@ -0,0 +1,937 @@
+mem_patch30:04 #must be the fisrt row
+mem_patch00:09
+mem_patch10:40
+mem_patch11:0c
+mem_patch14:80
+mem_patch15:13
+mem_patch16:f0
+mem_patch20:20
+mem_patch22:40
+mem_patch23:08
+mem_patch24:08
+mem_patch25:80
+mem_patch26:0e
+mem_patch27:f2
+mem_patch28:04
+mem_patch29:20
+mem_patch32:20
+mem_patch3e:88
+mem_patch3f:03
+
+##49   #mem_patch00	#49 enable HID
+##02   #mem_patch01	#02 enable HID
+##00   #mem_patch02
+##00   #mem_patch03
+##60   #mem_patch04	#60 enable HID
+##02   #mem_patch05	#02 enable HID
+##00   #mem_patch06
+##80   #mem_patch07	#80 enable HID
+##00   #mem_patch08
+##10   #mem_patch09	#10 enable HID
+##01   #mem_patch0A	#01 enable HID
+##00   #mem_patch0B
+##00   #mem_patch0C
+##00   #mem_patch0D
+##00   #mem_patch0E
+##00   #mem_patch0F
+##40   #mem_patch10
+##0c   #mem_patch11
+##00   #mem_patch12
+##00   #mem_patch13
+##80   #mem_patch14
+##13   #mem_patch15
+##f0   #mem_patch16
+##00   #mem_patch17
+##00   #mem_patch18
+##01   #mem_patch19	#01 enable HID
+##00   #mem_patch1A
+##00   #mem_patch1B
+##00   #mem_patch1C
+##00   #mem_patch1D
+##00   #mem_patch1E
+##00   #mem_patch1F
+##20   #mem_patch20
+##00   #mem_patch21
+##40   #mem_patch22
+##08   #mem_patch23
+##08   #mem_patch24
+##80   #mem_patch25
+##0e   #mem_patch26
+##d0   #mem_patch27
+##04   #mem_patch28
+##20   #mem_patch29
+##60   #mem_patch2A	#60 enable HID
+##41   #mem_patch2B	#41 enable HID
+##00   #mem_patch2C
+##00   #mem_patch2D
+##00   #mem_patch2E
+##00   #mem_patch2F
+##00   #mem_patch30
+##00   #mem_patch31
+##20   #mem_patch32
+##00   #mem_patch33
+##00   #mem_patch34
+##40   #mem_patch35	#40 enable HID
+##00   #mem_patch36
+##00   #mem_patch37
+##00   #mem_patch38
+##01   #mem_patch39	#01 enable HID
+##00   #mem_patch3A
+##00   #mem_patch3B
+##00   #mem_patch3C
+##00   #mem_patch3D
+##88   #mem_patch3E
+##03   #mem_patch3F
+
+mem_lpm_config:8f 1b ce
+mem_lpm_buckcnt:0a 0b ef 0f
+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 02
+mem_pscan_window:12 00
+mem_pscan_interval:00 02
+
+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_le_rx_window_inc:00 40
+
+mem_lmp_version: 09 59 00 B0 00    #04 0a 00 e9 12
+
+mem_eeprom_base:30 6f
+mem_eeprom_block_size:20
+
+mem_context_number:01
+
+mem_rf_init_data_new:
+# tx power
+55 d0
+56 c0
+57 4c
+58 3c
+59 50
+ff
+mem_rf_init_ptr:mem_rf_init_data_new
+
+#mem_class: 80 25 00
+#mem_lap:ab ab 66 63 5d 6c
+#mem_local_name_length:
+#'bt mouse
+#mem_sniff_param_interval:0c 00
+#mem_sniff_param_attempt:01
+#mem_sniff_param_timeout:01
+#mem_unsniff2sniff_timer:0a
+mem_ssp_enable:00
+#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
+#1100 0001 0210 2411  0012  0100
+
+mem_all_uuid_128bits:00
+
+#mouse uuid
+#mem_device_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_device_uuid_list
+#Auto reconnection after power on
+mem_device_option:42
+#mem_ptt:0
+#mem_features:
+#ff
+#ff
+#8f
+#f8	#fe--EDR  F8--BR
+#9b	#AFHclose 83
+#9d
+#51
+#82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+#2=mouse 4=dongle 6=ukey 7=ir
+mem_lpm_mode:01
+mem_lpm_mult:20
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:08
+mem_lpm_interval:00 00
+mem_scan_mode:00
+mem_ipc_tx_evt_buff:02 01
+
+mem_adc_config_flag:04
+mem_adc_channel:30
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+
+
+mem_le_adv_own_addr_type:00
+mem_le_adv_channel_map:07 
+mem_le_adv_filter_policy:00
+mem_le_transmit_window:50
+mem_le_notify_handle:1a
+mem_le_lap:ab b9 12 0e 10 26			#bluetooth MAC address
+mem_le_name_len:			#bluetooth name
+'BLE Mouse
+
+mem_le_local_mtu:17
+mem_le_adv_type:00
+mem_le_adv_direct_addr_type:01
+mem_le_adv_direct_addr:00 00 00 00 00 00
+mem_le_adv_enable:00
+
+mem_le_adv_data_len:1f
+mem_le_adv_data:
+#appearance
+03 19 c2 03
+
+#uuid
+03 03 12 18
+
+#flag 
+02 01 05
+
+#name
+'\09BLE Mouse
+
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+#name
+'\09BLE Mouse
+
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_device_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
+'BLE Mouse
+
+#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 01 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
+
+25 00 02 03 28 01 12 
+26 00 02 4d 2a 07 00 00 00 00 00 00 00 
+27 00 02 02 29 02 00 00
+28 00 02 08 29 02 11 01
+29 00 02 03 28 01 0e 
+2a 00 02 4d 2a 07 00 00 00 00 00 00 00
+2b 00 02 08 29 02 11 02
+
+#End of Attribute list
+00 00
+
+mem_ui_le_uuid_table:mem_device_le_att_list
+
+mem_le_rx_winsows:50
+
+mem_le_interal_min:
+07 00 #min interval
+07 00 #max interval
+05 00 #latency
+2c 01 #timeout
+
+mem_empty_count_user:00
+#mem_le_att_report1:13 00
+mem_le_att_report2:19 00
+mem_le_pairing_handle:22 00
+mem_le_pairing_mode:01
+mem_le_flag:01
+
+mem_tx_power:02#3dbm
+
+#24g init
+mem_new_24g_mode:01#tx
+mem_new_24g_data_type:01	#mouse 1,kb 2
+mem_new_24g_max_retry:04#max tx retry
+mem_new_24g_no_ack:00#with ack
+mem_new_24g_rx_window:c0 12	#400us
+mem_new_24g_interval:19
+mem_new_24g_interval_min:19
+mem_new_24g_interval_max:1c
+mem_new_24g_ch_map1:00 13 2c 42
+mem_new_24g_ch_map2:06 15 36 48
+mem_new_24g_ch_map3:0f 1a 3a 4c
+mem_new_24g_ch_map4:11 23 31 4d
+mem_new_24g_pairing_sm:ff
+mem_new_24g_paring_addr:20 15 10 05
+mem_new_24g_common_temp:00 00 00 00 00 00 00 00 00 00
+mem_new_24g_enter_hibernate:00 48 60 00 00 00 00 00#10 min
+
+
Index: btms/program/24g.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/24g.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/24g.prog	(working copy)
@@ -0,0 +1,6 @@
+ifdef COMPILE_24G
+
+
+
+endif
+
Index: btms/program/app.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/app.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/bt.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/bt.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/bt.prog	(working copy)
@@ -0,0 +1,4558 @@
+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
+shutdown_radio_select:
+	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_pair:
+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
+txon_power_select:	
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch15_1,mem_patch15
+lpm_dispatch_next2:
+	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
+	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
+	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: btms/program/hci_h4.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/hci_h4.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/hci_main.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/hci_main.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/hid.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/hid.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/hid.prog	(working copy)
@@ -0,0 +1,95 @@
+/**
+* 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
+hid_handshake_event:	
+	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: btms/program/keyboard.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/keyboard.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/l2cap.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/l2cap.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/le.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/le.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/lmp.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/lmp.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/module.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/module.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/mouse.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/mouse.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/patch.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/patch.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/patch.prog	(working copy)
@@ -0,0 +1,3047 @@
+//define HID
+define BLE
+define P24G_YC
+//define P24G_LOG
+//define P24G_AUTO
+//define ADC_GPIO
+//define ADC_VINLPM
+//define ADC_HVIN
+//define TEST_MODE
+//define MS_TEST
+//define HCILOG
+//define KEYBORD_DATA
+//define TP_MAX
+//define OTA_ENABLE
+
+ifdef PATCH
+	bmark1 mark_ext_patch,patch_ext
+	beq patch00_0,p_soft_reset
+	beq patch00_3,p_main_loop
+ifdef HID	
+	beq patch00_6,p_connection_nosniff
+	beq patch01_1,p_idle_page_mode_r0
+	beq patch04_5,p_role_switch_check
+	beq patch04_6,p_role_switch_prepare
+	beq patch05_1,p_roles_replyto_fhs
+	beq patch07_7,p_slave_notmatch
+	beq patch09_4,p_prepare_tx_not_sco
+	beq patch0a_0,p_tx_l2cap_type
+	beq patch19_0,p_hid_rx_process
+endif	
+	beq patch10_6,p_shutdown_radio
+	beq patch11_2,p_set_freq_tx
+	beq patch11_3,p_initialize_radio_cont
+	beq patch14_7,p_lpm_recover_clk
+	beq patch15_0,p_lpm_dispatch
+	beq patch15_1,p_lpm_dispatch_next2
+	beq patch15_4,p_lpm_dispatch_unconn
+	beq patch16_4,p_device_init
+	beq patch16_5,p_app_lpm_init
+	beq patch16_6,p_app_process_bb_event
+	beq patch16_7,p_app_evt_timer
+	branch loop
+
+patch_ext:
+ifdef BLE
+	beq patch20_5,p_le_slave_match
+	beq patch22_6,p_le_receive_skip
+	beq patch23_3,p_le_send_adv_ind
+	beq patch24_3,p_le_update_param
+	beq patch25_7,p_le_prepare_tx
+	beq patch26_1,p_le_prepare_tx_ll
+	beq patch26_2,p_le_prepare_smp0
+	beq patch26_3,p_le_prepare_att
+	beq patch27_1,p_le_send_packet
+	beq patch27_4,p_le_parse0
+	beq patch27_5,p_le_parse_smp
+	beq patch27_6,p_le_parse_att
+	beq patch27_7,p_le_adv
+	beq patch28_2,p_le_receive_window_size
+	beq patch29_5,p_le_lpm_set_mult
+endif
+ifdef HID
+	beq patch2a_5,p_parse_lmp_escape
+	beq patch2a_6,p_parse_lmp_accepted
+	beq patch2b_0,p_send_lmp
+	beq patch2b_6,p_process_conn_sm
+	beq patch35_6,p_scheduler_process0
+	beq patch39_0,p_ask_serviceclassid
+endif
+	beq patch30_2,p_iicd_read_eep
+	beq patch32_5,p_gpio_set_before_lpm_common
+	beq patch3e_3,p_ui_timer_check_end
+	beq patch3e_7,p_check_51cmd_once
+	beq patch3f_0,p_check_51cmd_once_continue0
+	beq patch3f_1,p_check_enter_hibernate
+	branch loop
+
+p_soft_reset:
+	clear_stack
+	jam 0,mem_patch30
+	nbranch soft_reset+3,wake
+	fetch 1,mem_le_switch_send_data
+	nbranch p_soft_reset_start_51,blank
+	fetch 1,mem_short_lpm_enable
+	branch soft_reset+3,blank
+	jam 0,mem_ipc_is_ready
+	bmark0 mark_24g,soft_reset+3
+	nbranch soft_reset+3,wake
+p_soft_reset_start_51:
+	hjam START_C51_CORE,core_docd_ctrl	
+	branch soft_reset+3
+	
+p_main_loop:
+	call p_ipc_timer_check
+ifdef P24G_YC
+	call g24_transmit_process
+endif
+	call p_ipc_rx
+	fetch 1,mem_short_lpm_enable
+	nbranch p_24g_short_lpm_process_loop,blank
+	branch main_loop+2
+
+ifdef HID
+p_connection_nosniff:
+	call p_context_get_next
+	branch connection_nosniff+3
+p_context_get_next:
+	fetcht 1,mem_current_context
+	arg context_num,loopcnt
+	arg mem_context,rega
+	increase 1,temp
+	compare context_num,temp,0xff
+	nbranch p_context_get_next_cont,true
+	arg 0,temp
+p_context_get_next_cont:
+	storet 1,mem_current_context
+	mul32 temp,context_size,pdata
+	iadd rega,contr
+	ifetch 1,contr
+	bbit0 state_insniff,context_get_next_cont+6
+	increase 1,contr
+	ifetch 2,contr
+	branch context_get_next_cont+6,blank		// switch, not sniff, do connection 
+	branch context_get_next_sniff
+	
+p_idle_page_mode_r0:
+	storet 8,mem_temp
+	call timer_check
+	fetcht 8,mem_temp
+	branch idle_page_mode_r0+13		//warning!!!timer_check
+
+p_role_switch_check:
+	disable user
+	fetch 2,mem_tsniff
+	arg 0xffff,temp
+	isub temp,null
+	nrtn zero
+	fetch 4,mem_sniff_anchor
+	branch p_role_switch_clkn,clknt
+	isub clke_bt,pdata
+	branch p_role_switch_clke
+p_role_switch_clkn:
+	isub clkn_bt,pdata
+p_role_switch_clke:
+	sub pdata,4,null
+	nrtn positive
+	force 0,pdata
+	store 2,mem_tsniff
+	enable user
+	rtn
+
+p_role_switch_prepare:
+	storet 4,mem_sniff_anchor
+p_role_switch_prepare0:
+	jam SWITCH_FLAG_ACCEPT,mem_switch_flag
+	setarg 0xffff
+	store 2,mem_tsniff	
+	jam 1,mem_sniff_attempt
+	rtn
+
+p_roles_replyto_fhs:
+	call rf_setup_time_slave_slot
+	call p_master_send_packet
+	branch roles_replyto_fhs+4
+p_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	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	branch end_of_packet
+
+p_slave_notmatch:
+	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+3,blank
+	rtn
+
+p_prepare_tx_not_sco:
+	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
+	fetch 1,mem_last_type
+	beq type_lmp,prepare_tx_retransmit+7
+	fetch 2,mem_last_txlen
+	sub pdata,20,null
+	nbranch prepare_tx_retransmit+7,positive 
+	store 2,mem_tx_len
+	fetch 1,mem_last_txlch
+	store 1,mem_tx_lch
+	setarg mem_last_txdata
+	store 2,mem_txptr
+	branch prepare_tx_retransmit+7	
+
+p_tx_l2cap_type:
+	fetch 2,mem_tx_len
+	store 2,mem_last_txlen
+	sub pdata,20,null
+	nbranch tx_l2cap_type+2,positive
+	iforce loopcnt
+	fetch 1,mem_tx_lch
+	store 1,mem_last_txlch
+	fetch 2,mem_txptr
+	iforce contr
+	arg mem_last_txdata,contw
+	call memcpy
+	branch tx_l2cap_type+2
+endif
+
+p_shutdown_radio:
+	branch shutdown_radio0,is_rx
+	hjam 0xd4, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4
+	branch shutdown_radio_pair
+	
+	fetch 1,mem_tx_power
+	beq TX_POWER_PAIR,shutdown_radio_pair
+	branch shutdown_radio_select
+
+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
+
+	branch p_set_tx_power_pair
+	
+	fetch 1,mem_tx_power
+	beq TX_POWER_PAIR,p_set_tx_power_pair
+	bbit1 TX_POWER_3DB,p_rx_high_sens
+	bbit1 TX_POWER_5DB,p_rx_high_sens
+p_rx_low_sens:
+	hjam 0x5b,0x894c 
+	hjam 0x96,0x894d
+	hjam 0x2c,0x894e 
+	hjam 0x46,0x894f 
+	branch p_txon_select_power_level
+p_rx_high_sens:
+	hjam 0xfb,0x894c 
+	hjam 0xef,0x894d
+	hjam 0xec,0x894e 
+	hjam 0x5e,0x894f 
+p_txon_select_power_level::
+	fetch 1,mem_tx_power
+	branch txon_power_select
+
+p_set_tx_power_pair:	//50-100cm distance
+ 	hjam 0xc5,0x8956
+ 	hjam 0xd0,0x8955
+	rtn
+
+p_initialize_radio_cont:
+	call lpm_cal_xtal_startup
+	call switchto_dpllclk
+	hjam clksel_rc,core_clksel
+	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
+	branch initialize_radio_cont+4
+
+p_lpm_recover_clk:
+	call lpm_recover_clk+2
+	fetch 1,mem_hibernate_flag
+	rtn blank
+	jam 0,mem_hibernate_flag
+	copy clkn_bt,pdata
+	store 4,mem_ipc_last_check_timer
+	rtn
+
+p_lpm_dispatch:
+	rtnmark1 mark_24g
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 2,mem_context + coffset_tsniff
+	arg 0xffff,temp
+	isub temp,null
+	rtn zero									/* role switch */
+	fetch 1,mem_lpm_mode
+	rtn blank
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank
+	call lpm_check_wake_lock
+	nrtn blank
+	call xtal_fast_wake
+	fetch 1,mem_ssp_enable
+	branch lpm_dispatch_next,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+	branch lpm_dispatch_next
+
+p_lpm_dispatch_next2:
+	fetch 1,mem_le_switch_send_data
+	branch p_lpm_dispatch_long_mult,blank
+	fetch 1,mem_lpm_current_mult
+	nbranch p_lpm_dispatch_long_mult,blank // short lpm, no gpio to wakeup
+	fetch 1,mem_bt_read_ipc_count
+	fetcht 1,mem_51_read_sensor_count
+	isub temp,null
+	nrtn zero
+	fetch 1,mem_ble_data_wheel
+	nrtn blank
+	setarg 0
+	store 8,mem_gpio_wakeup_low
+	branch lpm_dispatch_next2
+p_lpm_dispatch_long_mult:
+	call p_check_ipc_for_lpm
+	nrtn user
+	fetch 1,mem_c51_lmp_lock
+	nrtn blank
+	jam 0,mem_bt_wakeup_from_long_mult	//bt enter long mult,then 8051 execute  EVENT_WAKEUP
+	branch lpm_dispatch_next2
+
+p_lpm_dispatch_unconn:
+	call p_check_ipc_for_lpm
+	nrtn user
+	fetch 1,mem_c51_lmp_lock
+	nrtn blank
+	branch lpm_dispatch_unconn+2
+
+p_check_ipc_for_lpm:
+	call p_check_ipc_2bt
+	nrtn user
+	call p_check_ipc_2c51
+	nrtn user
+	jam 1,mem_c51_lmp_lock
+	jam SYC_TASK_LPM,mem_c51_flag
+	call p_c51_wait
+	branch p_check_ipc_2bt
+
+
+//user: no data
+p_check_ipc_2c51:
+	fetch 2,mem_ipc_2C51_read_index
+	fetcht 2,mem_ipc_2C51_write_index
+	branch p_check_ipc_common
+p_check_ipc_2bt:
+	fetch 2,mem_ipc_2bt_read_index
+	fetcht 2,mem_ipc_2bt_write_index
+p_check_ipc_common:
+	isub temp,null
+	branch enable_usr,zero
+	branch disable_usr
+	
+p_c51_wait:
+	fetch 1,mem_c51_flag
+	nop 10
+	bne 0,p_c51_wait
+	rtn	
+
+
+p_app_lpm_init:
+	jam 39,mem_le_ch_mapped
+	jam 0,mem_tester_emulate
+	jam 0,mem_debug_config
+	jam 0, mem_lch_code
+	setarg 0
+	store 5,mem_sp_state_start
+	rtn
+
+p_app_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 p_app_event_normal_process
+	branch app_process_bb_event_priority
+p_app_event_normal_process:
+	rtneq BT_EVT_LINKKEY_GENERATE
+ifdef HID
+	beq BT_EVT_HID_CONNECTED,p_device_bt_hid_connected
+	beq BT_EVT_BB_DISCONNECTED,p_app_bb_event_bb_disconn
+endif
+ifdef BLE	
+	beq BT_EVT_LE_CONNECTED,p_device_le_conn
+	beq BT_EVT_LE_DISCONNECTED,p_device_le_discon
+	beq BT_EVT_LE_ENC_INFO,p_device_le_enc_info
+endif
+	branch app_event_normal_process
+
+ifdef HID
+p_device_bt_hid_connected:
+	branch mouse_hid_connected
+p_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
+	branch app_bb_event_bb_reconn_disconn
+endif
+
+ifdef BLE
+p_device_le_conn:
+	jam 0,mem_bt_read_ipc_count
+	jam 0,mem_lpm_mult
+	jam 0,mem_mult_time_arrive_flag
+	jam 120,mem_le_slave_update_mult_timer
+	call app_ble_stop_adv
+	call app_bt_stop_discovery
+	call app_lpm_mult_enable
+	branch app_le_event_bb_connected
+
+p_device_le_discon:
+	jam 0,mem_ble_send_flag
+	call queue_init
+	jam 0,mem_ltk_exists
+	jam 0,mem_lpm_mult
+	jam 0,mem_mult_time_arrive_flag
+	jam 0,mem_le_slave_update_mult_timer
+//	jam 0,mem_le_slave_update_param_timer
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	fetcht 2,mem_le_att_report2
+	storet 2,mem_le_notify_handle
+	call le_clean_att_list_handle_enable
+	branch app_le_event_bb_disconn
+
+p_device_le_enc_info:
+	call p_app_updata_le_param
+	branch check_51cmd_le_start_write
+endif
+
+p_app_evt_timer:
+	storet 1,mem_app_evt_timer_count
+	fetch 1,mem_ipc_bt_100ms_timer
+	increase 1,pdata
+	store 1,mem_ipc_bt_100ms_timer
+p_app_evt_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count	
+ifdef HID	
+	call p_device_check_hid_handshake_timer
+endif	
+ifdef BLE	
+//	call p_le_slave_update_param_timer
+	call p_le_slave_update_mult_timer
+	call p_check_mult_parameter
+	call p_le_reconn_enable_notify_timer
+endif
+//	call p_24g_enter_lpm_timer
+	call p_ble_data_wheel_lpm_timer
+
+	call p_led_gpio8_blink_timer
+	call p_led_gpio5_blink_timer
+
+	branch p_app_evt_100ms_loop
+
+
+p_led_gpio8_blink_timer:
+	fetch 1,mem_led_gpio8_blink_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_led_gpio8_blink_timer
+	nrtn blank
+	fetch 1,mem_led_gpio8_blink_cnt
+	increase 1,pdata
+	and_into 1,pdata
+	store 1,mem_led_gpio8_blink_cnt
+	beq 0,p_led_gpio8_off
+	beq 1,p_led_gpio8_on
+	rtn
+p_led_gpio8_off:
+	arg 8,temp
+	branch gpio_out_inactive
+p_led_gpio8_on:	
+	arg 8,temp
+	branch gpio_out_active
+
+p_led_gpio5_blink_timer:
+	fetch 1,mem_led_gpio5_blink_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_led_gpio5_blink_timer
+	nrtn blank
+	fetch 1,mem_led_gpio5_blink_cnt
+	increase 1,pdata
+	and_into 1,pdata
+	store 1,mem_led_gpio5_blink_cnt
+	beq 0,p_led_gpio5_off
+	beq 1,p_led_gpio5_on
+	rtn
+p_led_gpio5_off:
+	arg 5,temp
+	branch gpio_out_inactive
+p_led_gpio5_on:
+	arg 5,temp
+	branch gpio_out_active
+
+	
+
+p_check_mult_parameter:
+	fetch 1,mem_mult_time_arrive_flag
+	rtn blank
+	fetch 1,mem_lpm_mult
+	compare 0x20,pdata,0xff
+	ncall p_set_mult_para,true
+	fetch 1,mem_lpm_mode
+	call p_set_multmode,blank
+	rtn
+p_set_multmode:
+	jam 1,mem_lpm_mode
+	rtn
+p_set_mult_para:
+	jam 0x20,mem_lpm_mult
+	rtn
+p_24g_enter_lpm_timer:
+	fetch 1,mem_new_24g_enter_lpm_timer
+	rtn blank
+	jam 0,mem_short_data_wheel
+	increase -1,pdata
+	store 1,mem_new_24g_enter_lpm_timer
+	nrtn blank
+	rtn
+
+p_ble_data_wheel_lpm_timer:
+	fetch 1,mem_ble_data_wheel_lpm_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_ble_data_wheel_lpm_timer
+	nrtn blank
+	jam 0,mem_ble_data_wheel
+	rtn
+	
+ifdef BLE	
+//p_le_slave_update_param_timer:
+//	fetch 1,mem_le_slave_update_param_timer
+//	rtn blank
+//	increase -1,pdata
+//	store 1,mem_le_slave_update_param_timer
+//	nrtn blank
+p_app_updata_le_param:
+	call app_lpm_mult_enable
+	jam BT_CMD_LE_UPDATE_CONN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+p_le_slave_update_mult_timer:
+	fetch 1,mem_le_slave_update_mult_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_le_slave_update_mult_timer
+	nrtn blank
+	jam 0x20,mem_lpm_mult
+	jam 1,mem_lpm_mode
+	jam 1,mem_mult_time_arrive_flag
+	rtn
+
+p_le_reconn_enable_notify_timer:
+	fetch 1,mem_le_reconn_enable_notify_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_le_reconn_enable_notify_timer
+	nrtn blank
+	branch app_ble_start_write	
+endif
+
+ifdef HID
+p_device_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
+	fetch 1,mem_hid_send_handshake
+	nbranch p_mem_hid_send_handshake_set0,blank
+	branch hid_handshake_event
+p_mem_hid_send_handshake_set0:
+	jam 0,mem_hid_send_handshake
+	rtn
+endif
+
+ifdef HID
+p_hid_rx_process:
+	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,p_hid_rx_process_handshake
+	beq hid_type_set_protocol,hid_rx_process_handshake
+	beq hid_type_data,p_hid_rx_process_data
+	beq HID_TYPE_SET_REPORT,p_hid_rx_process_set_report
+	beq HID_TYPE_CONTROL,p_hid_rx_process_hid_control
+	beq HID_TYPE_GET_REPORT,hid_rx_process_handshake
+	rtn
+p_hid_rx_process_handshake:
+	call hid_rx_process_handshake
+	jam 1,mem_hid_send_handshake
+	rtn
+p_hid_rx_process_set_report:
+	call p_hid_rx_process_data
+	branch hid_rx_process_set_report+1
+p_hid_rx_process_data:
+	ifetch 1,contr	
+	beq HID_REPORT_ID_KB,hid_rx_process_data_hid_kb	
+	beq HID_DISCONNECT,p_hid_disconnect
+	rtn
+p_hid_disconnect:
+	jam BT_EVT_CLEAR_LINKKEY,mem_ipc_tx_evt
+	call p_ipc_tx_evt
+	branch app_bt_disconnect
+p_hid_rx_process_hid_control:
+	copy temp,pdata
+	beq HID_CONTROL_P_VIRTUALCABLEUNPLUG,p_hid_rx_process_virtual_cable_unplug
+	beq HID_CONTROL_P_SUSPEND,hid_rx_process_suspend
+	rtn
+p_hid_rx_process_virtual_cable_unplug:
+	jam BT_EVT_VIRTUAL_CABLE_UNPLUG,mem_ipc_tx_evt
+	call p_ipc_tx_evt
+	branch app_bt_disconnect
+endif
+
+ifdef BLE
+p_le_slave_match:
+	call le_got_first_packet
+	call le_acknowledge
+	call le_prepare_tx
+	call power_ctrl_start
+	branch le_slave_match+5
+
+p_le_receive_skip:
+	call save_rssi
+	copy pdata,rega
+	call rssi_signal
+	branch le_receive_skip+3
+
+p_le_send_adv_ind:
+	fetch 4,mem_le_rx_winsows
+	store 4,mem_le_transmit_window// init first packate rx window
+	branch le_send_adv_ind+2
+
+p_le_update_param:
+	jam 1,mem_lpm_mode	
+	fetch 2,mem_le_event_count
+	fetcht 2,mem_le_instant
+	isub temp,pdata
+	store 2,mem_pdatatemp
+	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
+	storet 2,mem_temp
+	isub temp,rega
+	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
+	copy pdata,regab
+	fetch 2,mem_le_tsniff
+	fetcht 2,mem_temp	//last sniff
+	isub temp,pdata		//last sniff - new sniff
+	fetcht 2,mem_pdatatemp
+	imul32 temp,pdata
+	iadd regab,pdata
+	store 4,mem_le_anchor
+	call le_receive_window_size
+	fetch 2,mem_le_superto
+	store 2,mem_le_init_superto
+	rtn
+
+p_le_prepare_tx: 
+	fetch 1,mem_le_arq
+	bbit1 wak,p_le_prepare_tx_retansmited
+	call power_ctrl_pac_succ_incrs
+	jam 0,mem_le_prepare_tx_retransmited_number
+	fetch 1,mem_empty_count_user
+	nbranch p_le_send_empyt,blank
+	fetch 1,mem_mouse_le_pairing_flag
+	beq 1,p_le_smp_empty
+	fetch 1,mem_le_rxbuf+1  
+	branch le_prepare_tx_1,blank
+	branch le_send_empty      // send empty data when got non empty packet
+p_le_send_empyt:
+	fetch 1,mem_empty_count_user
+	increase -1,pdata
+	store 1,mem_empty_count_user
+	branch le_send_empty
+p_le_smp_empty:
+	jam 3,mem_empty_count_user
+	branch le_prepare_tx_1
+
+p_le_prepare_tx_retansmited:
+	fetch 1,mem_le_prepare_tx_retransmited_number
+	increase 1,pdata
+	store 1,mem_le_prepare_tx_retransmited_number
+	branch power_ctrl_pac_succ_decrs
+
+p_le_prepare_tx_ll:
+	fetch 1,mem_le_txpayload
+	beq LL_START_ENC_RSP,p_le_send_start_enc_rsp
+	beq LL_TERMINATE_IND,p_le_send_terminate_ind
+	branch le_prepare_tx_ll
+
+p_le_send_start_enc_rsp:
+	fetch 1,mem_le_reconn_flag
+	beq 1,p_le_send_reconn_start_enc_rsp
+	call app_ble_start_write
+//	force 1,temp
+//	branch le_send_packet,master
+//	fetch 1,mem_le_pairing_state
+//	bne FLAG_LE_PAIRING_AFTER_AUTH,le_send_start_enc_rsp_end
+//	branch le_send_start_enc_rsp+4
+	branch le_send_start_enc_rsp
+p_le_send_reconn_start_enc_rsp:
+	call p_app_updata_le_param
+	jam 3,mem_le_reconn_enable_notify_timer
+	branch le_send_start_enc_rsp_common
+
+p_le_send_terminate_ind:
+	setarg 0x13
+	istore 1,contw
+	call le_send_terminate_ind
+	setarg 10 // 100ms
+	store 2,mem_le_superto
+	store 2,mem_le_init_superto
+	rtn
+
+p_le_prepare_smp0:
+	fetch 1,mem_le_l2cap
+	beq SMP_PAIRING_RESPONSE,p_le_send_smp_pairing_response 
+	beq SMP_ENCRYPTION_INFORMATION,p_le_send_smp_encryption_information      
+	beq SMP_MASTER_IDENTIFICATION,p_le_send_smp_master_identification_only
+	branch le_prepare_smp0
+p_le_send_smp_master_identification_only:
+	jam 0,mem_mouse_le_pairing_flag
+	branch le_send_smp_master_identification_only
+	
+p_le_send_smp_pairing_response:
+	setarg param_smp_paring_response
+	store 3,mem_le_pres
+	setarg 0x01
+	istore 1,contw
+	setarg param_smp_key_dist0
+	istore 3,contw
+	branch le_send_smp_pairing_response_common
+
+p_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
+	branch le_send_smp_encryption_information_shutter
+
+p_le_prepare_att:
+	fetch 1,mem_le_l2cap
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,p_le_send_att_handle_value_notification
+	beq ATTOP_HANDLE_VALUE_INDICATION,p_le_send_att_handle_value_indication
+	branch le_prepare_att+5
+	
+p_le_send_att_handle_value_indication:
+p_le_send_att_handle_value_notification:
+	fetcht 2,mem_le_att_report2
+	storet 2,mem_le_l2cap+1
+	fetch 1,mem_queue_read_ptr
+	add pdata,1,temp
+	and temp,0x03,temp
+	storet 1,mem_queue_read_ptr
+	mul32 pdata,7,pdata
+	arg mem_queue_buffer0,contr
+	iadd contr,contr
+	ifetch 7,contr
+	store 7,mem_le_l2cap+3
+	arg 14,temp
+	branch le_send_packet
+
+p_le_send_packet:
+	storet 1,mem_le_txlen
+	compare 2,type,3
+	nbranch p_le_send_non_l2cap,true
+	add temp,-4,pdata
+	store 2,mem_le_txpayload
+p_le_send_non_l2cap:
+	fetcht 1,mem_le_arq
+	call p_le_send_check_md
+	branch le_send_non_l2cap1
+p_le_send_check_md:
+	fetch 1,mem_mouse_le_pairing_flag
+	beq 1,enable_blank
+	branch le_xtype_fifo_is_empty
+enable_blank:
+	setarg 0
+	rtn
+	
+p_le_parse0:
+	copy regc,pdata
+	beq LL_CONNECTION_UPDATE_REQ,p_le_parse_connection_update_req
+	beq LL_TERMINATE_IND,p_le_parse_terminate_ind
+	beq LL_ENC_REQ,p_le_parse_enc_req
+	beq LL_PAUSE_ENC_REQ,p_le_parse_pause_enc_rsq
+	branch le_parse0+6
+
+p_le_parse_connection_update_req:
+	jam 0,mem_lpm_mode
+	jam 60,mem_le_slave_update_mult_timer
+	branch le_parse_connection_update_req	
+
+p_le_parse_terminate_ind:
+	call le_parse_terminate_ind
+le_clear_xtype_fifo:
+	setarg 0
+	store 8,mem_le_xtype_fifo
+	rtn
+
+p_le_parse_enc_req:
+	call le_parse_enc_req
+	fetch 1,mem_le_pairing_state
+	rtneq FLAG_LE_PAIRING_AFTER_AUTH
+	branch load_device_list_mode_4_shutter
+
+p_le_parse_pause_enc_rsq:
+	jam XT_LL_PAUSE_ENC_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_le_parse_smp:
+	ifetch 1,contr
+	beq SMP_PAIRING_REQUEST,p_le_parse_smp_pairing_request
+	branch le_parse_smp+3
+p_le_parse_smp_pairing_request:
+	jam 1,mem_mouse_le_pairing_flag
+	jam 3,mem_empty_count_user
+	branch le_parse_smp_pairing_request
+
+p_le_parse_att:
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+	beq ATTOP_WRITE_REQUEST,p_le_parse_att_write_request
+	branch le_parse_att+4
+
+p_le_parse_att_write_request:
+	jam 1,mem_lpm_mode
+	call p_le_parse_att_write_common
+	call le_check_long_packet_patch
+	nrtn zero
+p_le_parse_att_write_request_end:
+	jam ATTOP_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+p_le_parse_att_write_common:
+	fetch 1,mem_le_rxbuf+1
+	increase -7,pdata
+	icopy loopcnt
+	copy loopcnt,regb
+	branch le_parse_att_write_common+6
+
+
+p_le_adv:
+	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 p_le_adv_not_match,match
+	fetch 1,mem_le_req_rcv
+	increase 1,pdata
+	store 1,mem_le_req_rcv
+	fetch 1,mem_le_rxbuf
+	and pdata,0x0f,pdata
+	beq SCAN_REQ,p_le_send_scan_response
+	beq CONNECT_REQ,le_parse_connect_req
+p_le_adv_not_match:	
+	fetch 1,mem_le_ch_mapped
+	bne 39,le_adv_loop
+	random pdata
+	arg 0x1ff,temp
+	iand temp,pdata
+	add pdata,250,pdata	
+p_adv_delay:	
+	increase -1,pdata
+	nop 38
+	nbranch p_adv_delay,blank
+	branch le_adv_not_match+3
+
+p_le_send_scan_response:
+	call le_send_scan_response
+	branch p_le_adv_not_match
+
+p_le_receive_window_size:
+	fetch 4,mem_le_transmit_window
+	arg 60000,temp
+	iadd temp,pdata
+	store 4,mem_le_transmit_window
+	branch le_receive_window_size+16	
+
+
+p_le_lpm_set_mult:
+	disable wake
+	branch p_le_lpm_set_mult_attempt,attempt
+	nbranch p_le_lpm_lost,match
+p_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
+	call le_xtype_fifo_is_empty
+	nbranch lpm_mult_short,blank
+	fetch 1,mem_le_prepare_tx_retransmited_number
+	sub pdata,1,null
+	nbranch lpm_mult_short,positive
+	branch le_lpm_set_mult_attempt+11
+	
+p_le_lpm_lost:
+	fetcht 2,mem_rx_window_sniff  
+	fetch 2,mem_le_rx_window_inc
+	iadd temp,temp 
+	rshift temp,temp
+	fetch 2,mem_le_receive_window 
+	iadd temp,pdata  
+	store 2,mem_le_receive_window  
+	branch lpm_lost
+endif
+
+ifdef HID
+p_parse_lmp_escape:
+	fetch 1,mem_rxbuf+1
+	set1 7,pdata
+	store 1,mem_lmi_opcode2
+	beq LMP_EXT_FEATURES_REQ,p_parse_lmpext_features_req
+	branch parse_lmp_escape+5
+p_parse_lmpext_features_req:	
+	fetch 1,mem_rxbuf+2
+	store 1,mem_feature_ext_page_number
+	branch parse_lmpext_features_req
+
+p_parse_lmp_accepted:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_SWITCH_REQ,p_parse_lmp_accepted_switch
+	branch parse_lmp_accepted+4
+p_parse_lmp_accepted_switch:
+	jam BT_EVT_SWITCH_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	branch p_role_switch_prepare0
+
+p_send_lmp:
+	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,p_send_lmp_escape
+	branch send_lmp0
+	
+p_send_lmp_escape:
+	beq LMP_EXT_FEATURES_RES,p_send_lmpext_features_res
+	beq LMP_EXT_FEATURES_REQ,p_send_lmpext_features_req
+	branch send_lmp_escape
+//ssp disable	
+p_send_lmpext_features_res:
+	force 12,queue
+	call send_lmpext
+	fetch 1,mem_feature_ext_page_number
+	istore 1,contw
+	//fetch 2,mem_lmpext_ssp_enable
+	setarg 0
+	istore 2,contw
+	setarg 0
+	istore 3,contw
+	setarg 0x00
+	istore 4,contw
+	branch send_lmp_reply
+//ssp disable	
+p_send_lmpext_features_req:
+	force 12,queue
+	call send_lmpext
+	setarg 0x01
+	istore 1,contw
+	//fetch 2,mem_lmpext_ssp_enable
+	setarg 0
+	istore 2,contw
+	setarg 0
+	istore 3,contw
+	setarg 0x00
+	istore 4,contw
+	branch send_lmp_request
+
+p_process_conn_sm:
+	call lmo_fifo_check
+	nrtn blank
+p_process_conn_sm_continue:
+	fetch 1,mem_conn_sm
+	rtn blank
+	beq CONN_SM_SEND_SWITCH,p_host_create_conn_send_switch
+	branch process_conn_sm_continue+2
+p_host_create_conn_send_switch:
+	nrtn master
+	branch host_create_conn_send_switch
+	
+p_scheduler_process0:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank 
+	fetcht 4,mem_last_check_clk
+	copy clke_bt,pdata
+	isub temp,temp
+	nbranch p_app_process_bt2,positive
+	sub temp,0x0b,null
+	nbranch p_app_process_bt2,positive
+	rtn
+p_app_process_bt2:
+	store 4,mem_last_check_clk
+	branch app_process_bt
+
+p_ask_serviceclassid:  
+	arg mem_uuid_search_pat,contw
+	call dataelementtype6
+	branch asksrv_error,zero
+p_classidloop:
+	force 0,temp					//use "temp" to mark syntax error or to mark 128 bit uuid //
+	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 p_cmp032,true
+	force 1,temp					// mark it as 128 bit uuid 
+p_skip2bytes:
+	ifetch 1,contr
+	increase -1,regA	
+	increase -1,timeup
+	bne 0x00, p_frstbwrong
+	ifetch 1,contr
+	increase -1,regA	
+	increase -1,timeup
+	beq 0x00, p_cmpuuid
+	branch p_scndbwrong
+p_frstbwrong:  
+	increase 1,contr
+	increase -1,regA	
+	increase -1,timeup
+p_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 p_loopornot,true
+	increase 12,contr				// skip 12 bytes, first 2 bytes already wrong 
+	increase -12,regA	
+	increase -12,timeup
+	branch p_loopornot
+p_cmp032:
+	compare 0x02,pdata,0x07			// 3 LSB: b010 32 bits uuid  
+	nbranch p_cmp016,true
+	branch p_skip2bytes			
+p_cmp016:
+	compare 0x01,pdata,0x07			// 3 LSB: b001 16 bit uuid 
+	nbranch asksrv_error,true
+p_cmpuuid:
+	ifetch 2,contr				// higher order byte  
+	increase -2,regA
+	increase -2,timeup
+	istore 2,contw
+p_uuidsize:
+	compare 0x00,temp,0xff			// is this 128 bits uuid  
+	branch p_loopornot,true
+	copy contr,temp
+	ifetch 1,contr
+	bne 0x00, p_wrong12b
+	ifetch 1,contr
+	bne 0x00, p_wrong12b
+	ifetch 1,contr
+	bne 0x10, p_wrong12b
+	ifetch 1,contr
+	bne 0x00, p_wrong12b
+	ifetch 1,contr
+	bne 0x80, p_wrong12b
+	ifetch 1,contr
+	bne 0x00, p_wrong12b
+	ifetch 1,contr
+	bne 0x00, p_wrong12b
+	ifetch 1,contr
+	bne 0x80, p_wrong12b
+	ifetch 1,contr
+	bne 0x5f, p_wrong12b
+	ifetch 1,contr
+	bne 0x9b, p_wrong12b
+	ifetch 1,contr
+	bne 0x34, p_wrong12b
+	ifetch 1,contr
+	beq 0xfb, p_chck12dn
+p_wrong12b:
+	copy temp,contr  
+p_wrong12b1:
+	increase 12,contr				//skip 12 bytes 
+	force 0x00,queue
+	force 0x00,temp
+p_chck12dn:
+	increase -12,timeup
+	increase -12,regA
+p_loopornot:
+	compare 0x00,regA,0xff
+	nbranch p_classidloop,true
+	branch loopornot+2
+endif
+
+p_iicd_read_eep:
+	bmark1 mark_eeprom_size,iicd_read_eep_size_2k_lcadcode
+	branch iicd_read_eep+4
+
+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
+	hstore 4,core_gpio_oe0
+	rtn
+
+p_ui_timer_check_end:
+	copy rega,pdata
+	rtn blank
+	increase -160,temp 	//320btclk = 100ms
+	increase -160,temp
+	set0 28,temp
+	storet 4,mem_ui_timer_last_btclk
+	copy pdata,temp
+	arg mem_ipc_fifo_bt2c51,rega
+	call fifo_is_near_full
+	nrtn blank
+	copy temp,pdata
+	branch ui_timer_check_send_evt
+
+
+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
+ifdef P24G_YC
+	beq BT_CMD_START_24G,g24_check_51cmd_start_24g
+	beq BT_CMD_STOP_24G,g24_check_51cmd_stop_24g
+	beq BT_CMD_PAIR_24G,g24_check_51cmd_pair_24g
+endif
+ifdef HID
+	beq BT_CMD_START_DISCOVERY,p_check_51cmd_start_discovery
+	beq BT_CMD_RECONNECT,p_check_51cmd_reconnect
+endif
+ifdef BLE
+	beq BT_CMD_START_ADV,p_check_51cmd_adv
+	beq BT_CMD_START_ADV_RECONN,p_check_51cmd_adv_reconn
+endif
+ifdef TEST_MODE
+	beq BT_CMD_TEST_MODE,p_test_tx_mode_init
+endif
+	branch check_51cmd_once+9
+
+ifdef P24G_YC
+g24_check_51cmd_start_24g:
+	fetch 1,mem_tx_power_temp
+	store 1,mem_tx_power
+	jam STATE_24G_PAIRING_SUCCESS,mem_new_24g_pairing_sm
+	branch g24_start_24g_mode
+g24_check_51cmd_stop_24g:
+	fetch 1,mem_tx_power_temp
+	store 1,mem_tx_power
+	set0 mark_24g,mark
+	branch le_disable
+g24_check_51cmd_pair_24g:
+	jam TX_POWER_PAIR,mem_tx_power
+	branch g24_start_pairing_sm1
+endif
+
+ifdef HID
+p_check_51cmd_start_discovery:
+	jam 6,mem_connection_options
+	branch check_51cmd_start_discovery
+p_check_51cmd_reconnect:
+	jam 4,mem_connection_options
+	jam 1,mem_link_key_exists
+	branch check_51cmd_reconnect
+endif	
+
+ifdef BLE
+p_check_51cmd_adv:
+	set0 mark_24g,mark
+	jam 0,mem_lpm_mode
+	random pdata	//random ble addr
+	store 1,mem_le_lap
+	jam 0,mem_le_reconn_flag
+	fetcht 2,mem_le_att_report2
+	storet 2,mem_le_notify_handle
+	call le_clean_att_list_handle_enable
+	arg ADV_FLAG_BREDR_NOT_SUPPORTED |ADV_FLAG_LIMITED_DISCOVERABLE,regb
+p_le_start_adv:	
+	call p_le_check_adv_flag
+//	setarg ADV_FLAG_BREDR_NOT_SUPPORTED |ADV_FLAG_LIMITED_DISCOVERABLE
+	copy regb,pdata
+	istore 1,contr
+	branch check_51cmd_adv
+	
+p_check_51cmd_adv_reconn:
+	set0 mark_24g,mark
+	jam 0,mem_lpm_mode
+	jam 1,mem_le_reconn_flag
+	fetcht 2,mem_le_att_report2
+	call le_att_check_notification_enable
+	copy rega,contw
+	setarg 1
+	istore 1,contw
+	arg ADV_FLAG_BREDR_NOT_SUPPORTED,regb
+	branch p_le_start_adv
+//	call p_le_check_adv_flag
+//	setarg ADV_FLAG_BREDR_NOT_SUPPORTED
+//	istore 1,contr
+//	branch check_51cmd_adv
+	
+p_le_check_adv_flag:
+	arg mem_le_adv_data,rega
+p_le_check_adv_flag_loop:
+	ifetch 1,rega	//length
+	rtn blank
+	iadd contr,rega
+	ifetch 1,contr	//type
+	rtneq 0x01
+	branch p_le_check_adv_flag_loop
+endif	
+
+
+p_check_51cmd_once_continue0:
+	call lmo_fifo_check
+	nbranch check_51cmd_restore,blank  //process this cmd next time while lmo fifo is full
+p_check_51cmd_once_continue:
+	fetch 1,mem_fifo_temp
+	bmark0 mark_context,check_51cmd_check_idle
+//	beq BT_CMD_DISCONNECT,p_check_51cmd_disconnect	
+//	beq BT_CMD_UPDATE_SUPERVISION_TO,p_check_51cmd_update_supervision_to
+	beq BT_CMD_STORE_RECONN_INFO_LE,p_rtn
+//	beq BT_CMD_STORE_RECONN_INFO_BT,p_check_51cmd_once_continue_rtn
+	branch check_51cmd_once_continue+2
+/*
+p_check_51cmd_disconnect:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BT_HID_HANDSHAKE,p_check_51cmd_quick_disconnect
+	branch check_51cmd_disconnect
+p_check_51cmd_quick_disconnect:
+	setarg 0
+	store 4,mem_supervision_to
+	rtn	
+p_check_51cmd_update_supervision_to:
+	jam LMP_SUPERVISION_TIMEOUT,mem_lmo_opcode2
+	fetch 2,mem_new_supervision_to
+	store 2,mem_supervision_to
+p_check_51cmd_once_continue_rtn:	
+	rtn
+*/
+p_check_enter_hibernate:
+	jam SYC_TASK_HIBERNATE,mem_c51_flag
+	call p_c51_wait
+p_enter_hibernate_continue:
+//	call pp_gpio_set_before_lpm_common
+	jam 0x5a,mem_hibernate_flag
+	call lpm_write_gpio_wakeup
+	hfetch 4,core_lpm_ctrl
+	set0 15,pdata					
+	hstore 4,core_lpm_reg
+	call lpm_write_ctrl
+	arg param_hibernate_clks,temp
+	branch lpm_sleep
+
+
+p_ipc_timer_check:
+	fetcht 4,mem_ipc_last_check_timer
+	copy clkn_bt,pdata
+	isub temp,pdata
+//	arg 3200,temp	//1s timer
+	arg 1600,temp	//500ms timer
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	rtn blank
+	copy clkn_bt,temp
+	storet 4,mem_ipc_last_check_timer
+	fetcht 2,mem_ipc_bt_timer
+	byteswap temp,temp
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_ipc_bt_timer
+	byteswap pdata,pdata
+	and pdata,0x3,pdata
+	rtnne 0
+	call p_read_adc_enable
+	nrtn user2
+p_adc_check_process:
+	fetch 1,mem_adc_config_flag
+ifdef ADC_VINLPM
+	bbit1 ADC_CONFIG_VINLPM,p_adc_check_vinlpm
+endif
+ifdef ADC_HVIN
+	bbit1 ADC_CONFIG_HVIN,p_adc_check_hvin
+endif
+ifdef ADC_GPIO
+	bbit1 ADC_CONFIG_GPIO,p_adc_check_gpio
+endif
+p_rtn:
+	rtn
+
+ifdef ADC_VINLPM	
+p_adc_check_vinlpm:
+	hjam 0xbf,rf_adc_mode	//read VINLPM voltage directly	
+	branch p_read_adc
+endif
+
+ifdef ADC_HVIN
+p_adc_check_hvin:
+	hjam 0xaf,rf_adc_mode	//read HVIN voltage directly
+	branch p_read_adc
+endif
+
+ifdef ADC_GPIO	
+p_adc_check_gpio:
+	hfetch 1,core_gpio_pu0
+	set0 5,pdata
+	hstore 1,core_gpio_pu0
+	hjam 0x8f,rf_adc_mode
+	fetch 1,mem_adc_channel
+	hstore 1,rf_adc_ch
+	call p_read_adc
+	hfetch 1,core_gpio_pu0
+	set1 5,pdata
+	hstore 1,core_gpio_pu0
+	rtn
+endif
+
+p_read_adc:
+	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
+	byteswap temp,temp
+	storet 2,mem_adc_current_value
+	rtn
+
+enable_usr2:
+	enable user2
+	rtn
+p_read_adc_enable:
+	disable user2
+ifdef HID	
+	call l2cap_malloc_is_fifo_empty
+	call enable_usr2,blank
+endif	
+ifdef BLE	
+	call le_xtype_fifo_is_empty
+	call enable_usr2,blank
+endif	
+ifdef P24G_YC
+	fetch 1,mem_new_24g_abort_pac
+	ncall enable_usr2,blank
+endif	
+	rtn
+	
+p_user_le_connect_process:
+	jam 1,mem_ble_read_ipc_fifo_once
+	call p_ipc_rx
+	jam 0,mem_ble_read_ipc_fifo_once
+	rtn
+
+p_ipc_rx:
+	call p_check_ipc_2bt
+	rtn user
+	byteswap pdata,pdata
+	copy pdata,contr
+	call p_ipc_rx_byte
+	store 1,mem_ipc_rx_type
+	beq IPC_TYPE_CMD,p_ipc_rx_cmd
+ifdef P24G_YC
+	beq IPC_TYPE_24G,g24_ipc_rx_24g
+endif
+	copy pdata,temp
+	copy contr,rega
+	fetch 1,mem_context
+	bbit0 state_inconn,p_ipc_abondon_rx_data
+	copy rega,contr
+	rtnmark0 mark_context
+	copy temp,pdata
+ifdef HID
+	beq IPC_TYPE_HID,p_ipc_rx_hid
+endif
+ifdef BLE
+	beq IPC_TYPE_BLE,p_ipc_rx_ble
+endif
+	branch assert
+
+p_ipc_rx_cmd:
+	call p_ipc_rx_byte
+	call p_ipc_rx_byte
+	store 1,mem_fifo_temp
+	call p_ipc_next_rx
+	branch ui_ipc_send_cmd
+
+p_ipc_next_rx:
+	call p_ipc_rx_updata_contr
+	copy contr,temp
+	byteswap temp,temp
+	storet 2,mem_ipc_2bt_read_index
+	rtn
+
+p_ipc_abondon_rx_data:
+	copy rega,contr
+	arg mem_tst_pktcnt_sync,contw
+	branch p_ipc_rx_cpy
+
+p_ipc_rx_cpy:
+	call p_ipc_rx_byte
+	copy pdata,loopcnt
+p_ipc_copy:
+	call p_ipc_cpy_loop
+	branch p_ipc_next_rx
+	
+p_ipc_cpy_loop:
+	call p_ipc_rx_byte
+	istore 1,contw
+	loop p_ipc_cpy_loop
+	rtn
+
+p_ipc_rx_byte:
+	call p_ipc_rx_updata_contr
+	ifetch 1,contr
+	rtn
+
+p_ipc_rx_updata_contr:
+	setarg mem_ipc_2bt_fifo_end
+	isub contr,null
+	nrtn zero
+	arg mem_ipc_2bt_fifo_head,contr
+	rtn
+	
+p_ipc_tx_evt:
+	arg 3,loopcnt
+	arg mem_ipc_tx_evt_buff,contr
+p_ipc_tx_cpy:
+	copy contr,rega
+	fetch 2,mem_ipc_2C51_write_index
+	byteswap pdata,pdata
+	copy pdata,contw
+	copy rega,contr
+p_ipc_tx_loop:
+	ifetch 1,contr
+	istore 1,contw
+	call p_ipc_tx_updata_contw
+	loop p_ipc_tx_loop
+	copy contw,pdata
+	byteswap pdata,pdata
+	store 2,mem_ipc_2C51_write_index
+	rtn
+p_ipc_tx_updata_contw:
+	setarg mem_ipc_2C51_fifo_end
+	isub contw,null
+	nrtn zero
+	arg mem_ipc_2C51_fifo_head,contw
+	rtn
+
+ifdef P24G_YC
+g24_ipc_rx_24g:
+	rtnmark0 mark_24g_conext
+	call p_ipc_rx_byte
+	icopy loopcnt
+	store 1,mem_new_uart_packet
+	branch p_ipc_copy
+endif
+
+ifdef HID
+p_ipc_rx_hid:
+ifdef KEYBORD_DATA
+	copy pdata,rega
+	copy contr,pdata
+	store 2,mem_contr
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0xa1
+	istore 1,contw
+	add rega,-1,loopcnt
+	fetch 2,mem_contr
+	copy pdata,contr
+else
+	copy contr,pdata
+	store 2,mem_contr
+	arg 9,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x02a1
+	istore 2,contw
+	fetch 2,mem_contr
+	copy pdata,contr
+endif
+	branch p_ipc_rx_cpy
+endif
+
+ifdef BLE
+queue_init:
+	setarg 0
+	store 3,mem_queue_write_prt
+	rtn
+
+p_ipc_rx_ble_data:
+	rtnmark1 mark_24g
+	fetch 1,mem_le_switch_send_data
+	rtn blank
+	call p_check_ipc_2bt
+	rtn user
+	byteswap pdata,pdata
+	copy pdata,contr
+	call p_ipc_rx_byte
+	store 1,mem_ipc_rx_type
+	copy contr,rega
+	bne IPC_TYPE_BLE,p_ipc_abondon_rx_data
+	copy contr,regb
+	call le_xtype_fifo_is_near_full
+	nrtn blank
+	branch p_ipc_rx_ble_read_fifo
+	
+p_ipc_rx_ble:
+	copy contr,regb
+	fetch 1,mem_ble_read_ipc_fifo_once
+	rtn blank
+	call le_xtype_fifo_is_empty
+	nrtn blank
+p_ipc_rx_ble_read_fifo:
+	fetcht 2,mem_le_att_report2
+	call le_att_check_notification_enable
+	rtnbit0 0
+	fetch 1,mem_le_switch_send_data
+	rtneq 0
+	fetch 1,mem_bt_read_ipc_count
+	pincrease 1
+	store 1,mem_bt_read_ipc_count
+	fetch 1,mem_queue_write_prt
+	add pdata,1,temp
+	and temp,0x03,temp
+	storet 1,mem_queue_write_prt
+	mul32 pdata,7,pdata
+	arg mem_queue_buffer0,contw
+	iadd contw,contw
+	copy regb,contr
+	call p_ipc_rx_byte
+	icopy loopcnt
+	call p_ipc_copy
+	call p_ipc_rx_ble_read_fifo_first_time
+	rtn user2
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_ipc_rx_ble_read_fifo_first_time:
+	disable user2
+	fetch 1,mem_ble_send_flag
+	rtneq 5
+	enable user2
+	increase 1,pdata
+	store 1,mem_ble_send_flag
+	sub pdata,1,null
+	nrtn positive
+	jam BT_EVT_LE_NOTIFY_ENABLE,mem_ipc_tx_evt
+	branch p_ipc_tx_evt
+endif
+
+//p_device_check_lock:
+//	fetch 2,mem_sdp_remote_cid
+//	branch app_put_lpm_wake_lock,blank
+//	branch app_get_lpm_wake_lock
+
+
+p_ipc_init:
+	setarg mem_ipc_2bt_fifo_head
+	byteswap pdata,pdata
+	store 2,mem_ipc_2bt_read_index
+	store 2,mem_ipc_2bt_write_index
+	setarg mem_ipc_2C51_fifo_head
+	byteswap pdata,pdata
+	store 2,mem_ipc_2C51_read_index
+	store 2,mem_ipc_2C51_write_index
+	rtn
+
+p_device_init:
+
+	arg 8,temp
+	call gpio_config_output
+	arg 5,temp
+	call gpio_config_output
+
+
+	call le_modified_name_adv
+//	setarg p_device_check_lock
+//	store 2,mem_cb_check_wakelock
+	jam 0,mem_c51_flag
+	jam 6,mem_connection_options
+	call app_lpm_mult_enable
+ifdef HID	
+	setarg p_device_send_process
+	store 2,mem_cb_bt_process
+endif	
+//	setarg p_device_bt_lpm_before
+//	store 2,mem_cb_before_lpm
+	setarg p_c51_user_event
+	store 2,mem_cb_bb_event_process
+//	setarg p_device_idle
+//	store 2,mem_cb_idle_process
+	setarg p_user_le_connect_process
+//	setarg p_ipc_rx
+	store 2,mem_cb_le_process
+	setarg p_device_before_hibernate
+	store 2,mem_cb_before_hibernate
+	ncall p_ipc_init,wake
+	call p_device_wakeup,wake
+	call lpm_disable_exen_output
+	fetch 1,mem_hibernate_flag
+	beq 0x5a,p_device_init_init_hibwake
+	branch p_deveice_init_wake,wake
+ifdef TP_MAX
+	call power_ctrl_incrs_level2
+endif
+	fetch 1,mem_tx_power
+	store 1,mem_tx_power_temp
+	call power_ctrl_pac_succ_cnt_init
+	fetch 2,mem_adc_0v
+	byteswap pdata,pdata
+	store 2,mem_adc_0v
+	fetch 2,mem_adc_3v
+	byteswap pdata,pdata
+	store 2,mem_adc_3v
+	call p_init_adc_from_otp
+ifdef P24G_YC
+	call g24_set_device_addr
+endif	
+	fetch 8,mem_temp
+	nbranch p_deveice_init_reset,blank
+	fetch 2,0x4ad4
+	byteswap pdata,pdata
+	branch p_deveice_init_reset,blank
+	store 2,mem_adc_3v
+p_deveice_init_reset:
+	jam BT_EVT_RESET,mem_ipc_tx_evt
+p_device_init_common:
+	fetch 1,mem_short_lpm_enable
+	nbranch p_24g_short_lpm_process,blank
+	call p_adc_check_process
+	call p_ipc_tx_evt
+	call p_ipc_rx_ble_data
+	hjam START_C51_CORE,core_docd_ctrl	
+	rtn
+p_24g_short_lpm_process:
+	call lpm_recover_clk,wake
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	copy clkn_bt,pdata
+	store 3,mem_ckln_24g_short_lpm
+p_24g_short_lpm_process_loop:
+	fetch 2,mem_ui_state_map
+	rtnbit1 UI_STATE_BLE_ADV
+	rtnbit1 UI_STATE_BT_DISCOVERY
+	call app_process_idle
+	call g24_short_lpm_transmit_process
+	branch p_24g_short_lpm_process_loop
+
+p_device_wakeup:
+	copy auxcnt,pdata
+	bmark0 mark_24g,p_device_bt_wakeup
+g24_delay_long_sleep:
+//	copy auxcnt,pdata
+	branch g24_direct_long_sleep,blank	//sleep timer wake
+g24_delay_long_sleep2:	
+	jam 0xbb,mem_new_24g_delay_long_sleep_maxcnt		//io int wake,abort 150ms
+	rtn
+g24_direct_long_sleep:
+	jam 0x00,mem_new_24g_delay_long_sleep_maxcnt
+	fetch 1,mem_new_24g_key_wheel_event
+	rtn blank
+	jam 0,mem_new_24g_key_wheel_event
+	branch g24_delay_long_sleep2
+
+p_device_bt_wakeup:
+//	copy auxcnt,pdata
+	branch p_device_bt_wakeup_check,blank	//sleep timer wake
+	jam 2,mem_bt_wakeup_from_long_mult
+	rtn
+p_device_bt_wakeup_check:
+	fetch 1,mem_bt_motion_event
+	rtn blank
+	jam 0,mem_bt_motion_event
+	jam 1,mem_bt_wakeup_from_long_mult
+	rtn
+	
+p_deveice_init_wake:
+	jam BT_EVT_WAKEUP,mem_ipc_tx_evt
+	branch p_device_init_common
+p_device_init_init_hibwake:
+	copy auxcnt,pdata
+	branch p_enter_hibernate_continue,blank
+	call init_lmp_work
+	call l2cap_init_work
+	setarg 0
+	store 8,mem_context
+	store 2,mem_ui_state_map
+	store 2,mem_ipc_bt_timer
+	store 2,mem_ipc_c51_timer
+	jam BT_EVT_HIBERNATE_WAKE,mem_ipc_tx_evt
+	branch p_device_init_common
+
+p_init_adc_from_otp:
+	call otp_enable_chgpump
+	setarg 0x7e2
+	arg mem_temp,rega
+	arg 12,temp
+	call otpd_read_data
+	call otp_disable_chgpump
+	fetch 8,mem_temp
+	rtn blank
+	fetch 1,mem_adc_config_flag
+ifdef ADC_VINLPM
+	bbit1 ADC_CONFIG_VINLPM,p_calc_adc_base_vinlpm
+endif
+ifdef ADC_HVIN
+	bbit1 ADC_CONFIG_HVIN,p_calc_adc_base_hvin
+endif
+ifdef ADC_GPIO
+	bbit1 ADC_CONFIG_GPIO,p_calc_adc_check_gpio
+endif
+	rtn
+
+ifdef ADC_VINLPM	
+p_calc_adc_base_vinlpm:
+	fetcht 2,mem_temp+4
+	fetch 2,mem_temp+10
+	copy temp,regb
+	copy pdata,rega
+	byteswap pdata,pdata
+	store 2, mem_adc_3v
+	copy rega,pdata
+	isub temp,regc
+	lshift regc,regc
+	copy regb,pdata
+	isub regc,pdata
+	byteswap pdata,pdata
+	store 2,mem_adc_0v
+	rtn
+endif
+
+ifdef ADC_HVIN
+p_calc_adc_base_hvin:
+	fetcht 2,mem_temp + 2
+	fetch 2,mem_temp + 8
+	copy temp,regb
+	copy pdata,rega
+	isub temp,regc
+	rshift2 regc,regc
+	copy regb,pdata
+	isub regc,pdata
+	byteswap pdata,pdata
+	store 2,mem_adc_0v
+	lshift regc,regc
+	copy rega,pdata
+	isub regc,pdata
+	byteswap pdata,pdata
+	store 2,mem_adc_3v
+	rtn
+endif
+
+ifdef ADC_GPIO
+p_calc_adc_check_gpio:
+	fetcht 2,mem_temp
+	fetch 2,mem_temp + 6
+	copy temp,regb
+	copy pdata,rega
+	isub temp,regc
+	copy regb, pdata
+	isub regc,pdata
+	byteswap pdata,pdata
+	store 2,mem_adc_0v
+	lshift2 regc,pdata
+	iadd rega,pdata
+	byteswap pdata,pdata
+	store 2,mem_adc_3v
+	rtn
+endif	
+	
+ifdef HID
+p_device_send_process:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+p_device_send_data:
+	branch p_ipc_rx
+endif
+
+p_device_before_hibernate: 
+	enable user
+	hfetch 4,0x8138
+	setflag user,26,pdata
+	hstore 4,core_lpm_reg
+	call lpm_write_ctrl
+	jam 1,mem_lpm_current_mult
+p_device_bt_lpm_before:
+	rtn
+
+//p_device_idle:
+//	rtn
+
+p_c51_user_event:
+	copy regc,pdata
+	and_into BT_EVT_TIMER_MASK,pdata
+	rtneq BT_EVT_TIMER_INIT
+	copy regc,pdata
+	store 1,mem_ipc_tx_evt
+	branch p_ipc_tx_evt
+
+
+ifdef P24G_YC
+g24_pair_init:
+	jam 0,mem_new_24g_pid
+	jam G24_PAIR_CH,mem_new_24g_ch
+	fetch 4,mem_new_24g_paring_addr
+g24_update_addr_and_synccrc8:	
+	store 4,mem_new_24g_addr
+	branch g24_syncword_crc8
+		
+//2.4g freq hop related.
+g24_ch:
+	fetcht 1,mem_new_24g_current_ch_number
+	call g24_ch_calc
+	increase 1,temp
+	and_into 3,temp //map size =4
+	storet 1,mem_new_24g_current_ch_number
+	rtn
+	
+g24_ch_calc:
+	fetch 1,mem_new_24g_addr	
+	and_into 0x03,pdata
+	mul32 pdata,4,rega			//24addr low bit0 bit1 ,00-map1,01-map2,10-map3,11-map4
+	setarg mem_new_24g_ch_map1
+	iadd rega,pdata
+	iadd temp,contr
+	ifetch 1,contr
+	store 1,mem_new_24g_ch
+	rtn
+
+g24_set_device_addr:
+	fetch 4,mem_temp	//adc data from otp
+	store 4,mem_new_24g_device_addr	
+	nrtn blank
+	fetch 4,mem_lap
+	store 4,mem_new_24g_device_addr
+	rtn
+
+
+g24_transmit_rf_sta_init:
+	jam 1,mem_new_24g_rf_last_sta
+	jam 0,mem_new_24g_sync_cnt
+g24_transmit_rf_ctrl_clear:	
+	fetch 1,mem_new_24g_data_type
+	and_into bits_data,pdata
+	store 1,mem_new_24g_data_type
+	rtn
+	
+g24_hop_ch_enable:
+	fetch 1,mem_new_24g_data_type
+	set1 bit_hop,pdata
+	store 1,mem_new_24g_data_type
+	//update txpayload
+	store 1,mem_new_24g_txpayload
+	rtn
+g24_hop_ch_disable:
+	fetch 1,mem_new_24g_data_type
+	set0 bit_hop,pdata
+	store 1,mem_new_24g_data_type
+	rtn	
+
+g24_transmit_hop_pac_fail:
+	call power_ctrl_pac_succ_decrs
+	fetch 1,mem_new_24g_rf_work_stage
+	beq 1,g24_transmit_hop_pac_fail_wo_hop
+	beq 2,g24_transmit_hop_pac_fail_hop_stage2
+	rtn
+g24_transmit_hop_pac_fail_wo_hop:
+	jam 2,mem_new_24g_sync_cnt
+g24_transmit_hop_pac_fail_stage1:	
+	jam 0,mem_new_24g_hop_pac_retry
+	jam 0,mem_new_24g_rf_last_sta
+	branch g24_transmit_rf_ctrl_clear
+
+g24_transmit_hop_pac_fail_hop_stage2:
+	jam 0,mem_new_24g_rf_hop_ch
+	branch g24_transmit_hop_pac_fail_stage1
+
+g24_transmit_pac_fail_hop_stage3:
+	fetch 2,mem_new_24g_txfail_cnt
+	increase 1,pdata
+	store 2,mem_new_24g_txfail_cnt
+	bbit1 6,g24_tx_attempt_fail	//1024ms * 8
+	fetch 1,mem_new_24g_rf_hop_ch
+	beq 1,g24_rf_hop_fastly
+	jam 1,mem_new_24g_rf_hop_ch
+g24_rf_hop_attemp_again:
+	fetch 1,mem_new_24g_rf_hop_ch
+	bne 1,g24_transmit_rf_ctrl_clear
+g24_rf_hop_fastly:
+	fetch 1,mem_new_24g_hop_fastly_cnt
+	increase 1,pdata
+	store 1,mem_new_24g_hop_fastly_cnt
+	beq 4,g24_rf_hop_fastly_exit
+	call g24_ch
+	jam 2,mem_new_24g_max_retry
+	branch g24_transmit_packet
+
+g24_rf_hop_fastly_exit:
+	call power_ctrl_pac_succ_decrs
+	jam 0,mem_new_24g_hop_fastly_cnt
+	branch g24_transmit_rf_ctrl_clear
+
+g24_transmit_hop_pac_succ_wo_hop:
+	jam 2,mem_new_24g_sync_cnt
+g24_transmit_hop_pac_succ:
+	jam 1,mem_new_24g_rf_last_sta
+	jam 0,mem_new_24g_rf_hop_ch
+	branch g24_transmit_rf_ctrl_clear
+
+g24_transmit_succ_rf_config:
+	fetch 1,mem_new_24g_rf_work_stage
+	beq 3,g24_transmit_hop_pac_succ
+	fetch 1,mem_new_24g_data_type
+	isolate0 bit_hop,pdata
+	branch g24_transmit_rf_sta_init,true
+	fetch 1,mem_new_24g_rf_work_stage
+	beq 1,g24_transmit_hop_pac_succ_wo_hop
+	beq 2,g24_transmit_hop_pac_succ
+	rtn
+
+g24_rf_sta_check:
+	fetch 1,mem_new_24g_pairing_sm
+	rtnne STATE_24G_PAIRING_SUCCESS
+	call g24_rf_laststa_synccnt_check
+	ncall g24_rf_sync_cnt_check,user2
+	rtn
+
+g24_rf_laststa_synccnt_check:
+	disable user2
+	fetch 1,mem_new_24g_rf_last_sta
+	rtnne 1
+	fetch 1,mem_new_24g_sync_cnt
+	rtnne 0
+	jam 1,mem_new_24g_rf_work_stage
+	jam 4,mem_new_24g_max_retry
+	branch enable_usr2
+
+g24_rf_sync_cnt_check:
+	fetch 1,mem_new_24g_sync_cnt
+	branch g24_rf_hop_attemp,blank
+	increase -1,pdata
+	store 1,mem_new_24g_sync_cnt
+	jam 2,mem_new_24g_rf_work_stage
+	call g24_ch
+	jam 4,mem_new_24g_max_retry
+	rtn
+
+g24_rf_hop_attemp:
+	jam 3,mem_new_24g_rf_work_stage
+	fetch 1,mem_new_24g_rf_hop_ch
+	nbranch g24_rf_hop_attemp_again,blank
+	call g24_ch
+	jam 2,mem_new_24g_max_retry
+	rtn
+	
+
+g24_transmit_process:
+	rtnmark0 mark_24g
+	set1 mark_24g_conext,mark
+	fetcht 4,mem_new_24g_tx_btclk
+	copy clkn_bt,pdata
+	isub temp,null
+	ncall g24_timer_timeout,positive
+	copy pdata,regb
+	fetch 4,mem_new_24g_tx_btclk
+	fetcht 1,mem_new_24g_interval
+	iadd temp,temp
+	copy regb,pdata
+	isub temp,null
+	nbranch g24_transmit_exit,positive
+	set0 28,pdata
+	store 4,mem_new_24g_tx_btclk
+	call g24_interval_calibrate
+	call g24_txdata_prep
+	branch g24_no_data_to_tx,user
+	call g24_rf_sta_check
+g24_transmit_start:
+	call g24_transmit_packet
+	fetch 1,mem_new_24g_pairing_sm
+	sub pdata,STATE_24G_PAIRING_SUCCESS,null
+	call power_ctrl_start,zero
+g24_transmit_exit:
+	set0 mark_24g_conext,mark
+	rtn
+
+g24_timer_timeout:
+	rtn zero
+	set1 28,pdata
+	rtn
+
+g24_interval_calibrate:
+	fetch 1,mem_new_24g_pac_index
+	increase 1,pdata
+	store 1,mem_new_24g_pac_index
+	beq 4,g24_interval_max
+	beq 5,g24_interval_min
+	rtn
+g24_interval_max:
+	fetch 1,mem_new_24g_interval_max
+	store 1,mem_new_24g_interval
+	rtn
+g24_interval_min:
+	jam 0,mem_new_24g_pac_index
+	fetch 1,mem_new_24g_interval_min
+	store 1,mem_new_24g_interval
+	rtn
+
+	
+g24_txdata_prep:
+	fetch 1,mem_new_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,g24_pairing_sm	
+	//nop 1200 // wait for 8051 preparing data
+	call p_ipc_rx
+	branch g24_txdata_prep_ipc_nodata,user
+	fetch 1,mem_ipc_rx_type
+	bne IPC_TYPE_24G,enable_usr
+g24_txdata_prep_packeage_data:
+//ifdef OTA_ENABLE
+//	fetch 1,mem_new_24g_ota_enable
+//	beq 1,g24_txdata_skip_short_lpm
+//endif	
+//	fetch 1,mem_short_data_wheel
+//	call g24_lpm_short_increase,blank
+//g24_txdata_skip_short_lpm:
+//	fetch 1,mem_short_data_wheel
+//	ncall g24_enter_long_sleep,blank
+	call g24_package_data
+	call g24_transmit_prep
+g24_txdata_enable_tx:
+	jam ENSURE_ON_24G,mem_new_24g_ensure
+	rtn
+
+g24_enter_long_sleep:
+	jam 0,mem_short_lpm_tx_cnt
+	jam 0,mem_short_lpm_enable
+	jam 10,mem_new_24g_enter_lpm_timer
+	rtn
+	
+g24_txdata_prep_ipc_nodata:
+//	fetch 1,mem_short_lpm_enable
+//	nbranch g24_short_lpm_txdata_prep,blank
+g24_txdata_last_pac:
+	fetch 1,mem_new_24g_ensure
+	beq ENSURE_ON_24G,disable_usr
+	rtn
+
+
+g24_short_lpm_txdata_prep:
+g24_package_data:
+	fetch 1,mem_new_24g_delay_long_sleep_maxcnt
+	store 1,mem_new_24g_delay_long_sleep_cnt
+
+	fetch 1,mem_new_uart_packet
+	copy pdata,rega
+	arg mem_new_uart_packet+1,regb
+	jam 0,mem_new_24g_abort_pac
+g24_package_data_pc_bind:
+	call g24_transmit_rf_ctrl_clear
+	store 1,mem_new_24g_common_temp
+	//total length
+	add rega,1,temp
+	arg mem_new_24g_common_temp+1,contw
+g24_package_user_data:
+	//user data: max 30 bytes
+	copy rega,loopcnt
+	copy regb,contr
+	call memcpy
+	arg mem_new_24g_common_temp,rega
+g24_put_data_in_buff:
+	rtnmark0 mark_24g_conext
+	storet 1,mem_new_24g_datalen
+	copy temp,loopcnt
+	arg mem_new_24g_txbuf,contw
+	copy rega,contr
+	branch memcpy
+
+
+//output: 1BYTE crc8
+g24_syncword_crc8:
+	arg 0,rega
+	arg 4,loopcnt
+	arg mem_new_24g_addr,contr
+g24_syncword_crc8_loop:
+	ifetch 1,contr
+	iadd rega,rega
+	loop g24_syncword_crc8_loop
+	copy rega,pdata
+	store 2,mem_new_24g_syncword
+	fetch 1,mem_new_24g_syncword
+	fetcht 1,mem_new_24g_syncword+1
+	iadd temp,pdata
+	store 1,mem_new_24g_syncword_crc8
+	rtn
+
+g24_transmit_prep:
+ifdef P24G_LOG
+	fetch 1,mem_new_24g_paccnt
+	increase 1,pdata
+	store 1,mem_new_24g_paccnt
+endif
+// total length
+	fetch 1,mem_new_24g_datalen
+	increase 2,pdata
+	store 1,mem_new_24g_txlen
+// data type
+	fetch 1,mem_new_24g_data_type
+	store 1,mem_new_24g_txpayload
+//prepare 5bit payload length, 2bit PID, 1bit NO_ACK
+	fetch 1,mem_new_24g_datalen
+	lshift3 pdata,pdata
+	fetcht 1,mem_new_24g_pid
+	and temp,0x03,temp
+	lshift temp,temp
+	ior temp,pdata
+	fetcht 1,mem_new_24g_no_ack
+	iadd temp,pdata
+	istore 1,contw
+//prepare payload data
+	fetch 1,mem_new_24g_datalen
+	iforce loopcnt
+	arg mem_new_24g_txbuf,contr
+	branch memcpy
+
+g24_send_abort_packet:
+	jam 1,mem_new_24g_abort_pac
+	jam 0,mem_new_24g_rf_hop_ch
+	call g24_transmit_rf_ctrl_clear
+	store 1,mem_new_24g_common_temp
+	setarg 0
+	store 7,mem_new_24g_common_temp+1
+	fetch 4,mem_new_24g_device_addr
+	store 4,mem_new_24g_common_temp+8
+	arg 12,temp
+	arg mem_new_24g_common_temp,rega
+	call g24_put_data_in_buff
+	fetch 1,mem_new_24g_data_type
+	set1 bit_abort,pdata
+	store 1,mem_new_24g_data_type
+	call g24_transmit_prep
+	call g24_txdata_enable_tx
+	branch g24_transmit_start
+
+g24_no_data_to_tx:
+	rtn
+//	fetch 1,mem_short_lpm_enable
+//	branch g24_no_data_to_tx_short_lpm_disable,blank
+//	call g24_lpm_short_decrease
+//	branch g24_short_lpm_sleep
+	
+g24_no_data_to_tx_short_lpm_disable:
+ifdef OTA_ENABLE
+	fetch 1,mem_new_24g_ota_enable
+	rtneq 1
+endif	
+	fetch 1,mem_new_24g_abort_pac
+	branch g24_send_abort_packet,blank
+	fetcht 1,mem_new_24g_delay_long_sleep_cnt
+	increase 1,temp
+	storet 1,mem_new_24g_delay_long_sleep_cnt
+	fetch 1,mem_new_24g_delay_long_sleep_maxcnt
+	isub temp,null
+	rtn positive
+	jam 0,mem_new_24g_delay_long_sleep_cnt
+g24_lpm_long_sleep:
+	call p_check_ipc_for_lpm
+	nrtn user
+	fetch 1,mem_c51_lmp_lock
+	nrtn blank
+	fetch 1,mem_new_24g_enter_lpm_timer
+	nrtn blank
+	jam 0,mem_short_data_wheel
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 8,mem_new_24g_enter_hibernate
+	call clk2lpo
+	storet 4,mem_sleep_counter
+  	branch lpm_sleep
+
+g24_lpm_short_increase:
+	fetch 1,mem_wakup_from_power_flag
+	isolate0 2,pdata
+	branch g24_lpm_short_increase_poweron,true
+	fetch 1,mem_short_lpm_tx_cnt
+	rtneq 5
+	increase 1,pdata
+	store 1,mem_short_lpm_tx_cnt
+	rtnne 5
+g24_lpm_short_enable:	
+	jam 1,mem_short_lpm_enable
+	rtn
+
+g24_lpm_short_increase_poweron:		//wait for lpo_calibration completely
+	fetch 1,mem_short_lpm_tx_cnt
+	rtneq 20
+	increase 1,pdata
+	store 1,mem_short_lpm_tx_cnt
+	rtnne 20
+	fetch 1,mem_wakup_from_power_flag
+	set1 2,pdata
+	store 1,mem_wakup_from_power_flag
+	branch g24_lpm_short_enable
+
+g24_lpm_short_decrease:
+	fetch 1,mem_short_lpm_tx_cnt
+	rtn blank
+	increase -1,pdata
+	store 1,mem_short_lpm_tx_cnt
+	nrtn blank
+	jam 0,mem_short_lpm_enable
+	rtn
+	
+g24_short_lpm_transmit_process:
+	set1 mark_24g_conext,mark
+	call p_ipc_rx
+	branch g24_short_lpm_transmit_process_ipc_nodata,user
+	fetch 1,mem_ipc_rx_type
+	beq IPC_TYPE_24G,g24_short_lpm_txdata_data_ready
+g24_short_lpm_transmit_process_ipc_nodata:
+	fetch 1,mem_send_data_24g_short_lpm
+	beq SHORT_LPM_STATE_DATA,g24_short_lpm_txdata_prep_buff_data
+	beq SHORT_LPM_STATE_NODATA,g24_no_data_to_tx
+	beq SHORT_LPM_STATE_BUTTON_WHEEL,g24_short_lpm_transmit_process_button_wheel
+	rtn
+
+g24_short_lpm_transmit_process_button_wheel:
+	jam 0,mem_short_lpm_tx_cnt
+	jam 0,mem_short_lpm_enable
+g24_short_lpm_txdata_prep_buff_data:
+ifdef OTA_ENABLE
+	fetch 1,mem_new_24g_ota_enable
+	beq 1,g24_ota_exit_short_lpm_sleep
+endif
+	call g24_lpm_short_increase
+	jam 0,mem_send_data_24g_short_lpm
+	arg 7,loopcnt
+	copy loopcnt,pdata
+	store 1,mem_new_uart_packet
+	arg mem_hid_buff,contr
+	call memcpy
+	disable user
+g24_short_lpm_txdata_data_ready:
+	call g24_txdata_prep_packeage_data
+	call g24_rf_sta_check
+	call g24_transmit_packet
+	call power_ctrl_start
+g24_short_lpm_sleep:
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_lpm_mode
+	rtn blank
+	fetch 1,mem_short_data_wheel
+	beq 1,g24_short_lpm_sleep2
+	setarg 0
+	store 8,mem_gpio_wakeup_low
+g24_short_lpm_sleep2:
+	call g24_short_lpm_select_param
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	fetcht 3,mem_ckln_24g_short_lpm
+	copy clkn_bt,pdata
+	isub temp,pdata
+	and_into 0xff,pdata
+	arg 3750,temp		//312.5 x 12  = 1875
+	imul32 temp,temp  // btclk to system clk @ 12MHz
+	fetch 4,mem_short_lpm_interval_param
+	isub temp,pdata	//8ms - PassedTime
+	branch lpm_dispatch_sleep,positive
+	fetch 1,mem_lpm_xtalcnt // sleep the shortest time
+	increase 1,pdata
+	store 4,mem_sleep_counter
+	branch lpm_dispatch_sleep+7
+g24_short_lpm_select_param:
+	setarg G24_8125_INTERVAL_PARAM
+	store 4,mem_short_lpm_interval_param
+	fetch 1,mem_short_lpm_interval_cnt
+	increase 1,pdata
+	bne 5,g24_short_lpm_select_param_cont
+	setarg 0
+g24_short_lpm_select_param_cont:
+	store 1,mem_short_lpm_interval_cnt
+	rtnbit0 0
+	setarg G24_78125_INTERVAL_PARAM
+	store 4,mem_short_lpm_interval_param
+	rtn
+
+ifdef OTA_ENABLE
+g24_ota_exit_short_lpm_sleep:
+	jam 0,mem_short_lpm_tx_cnt
+	jam 0,mem_short_lpm_enable
+	branch g24_short_lpm_sleep
+endif
+
+g24_transmit_packet:
+	jam 1,mem_led_gpio8_blink_timer
+	
+	jam 0,mem_new_24g_retry
+g24_transmit_loop:
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	call g24_transmit_receive_ack
+	fetch 1,mem_new_24g_no_ack	//tx noack
+	rtneq no_ack_24g
+	nbranch g24_retransmit,sync
+	nbranch g24_retransmit,user3
+
+	jam 1,mem_led_gpio5_blink_timer
+	
+	call g24_ackpayload_parse
+	call power_ctrl_pac_succ_incrs
+g24_transmit_next_packet:
+	fetch 1,mem_new_24g_pid
+	increase 1,pdata
+	store 1,mem_new_24g_pid
+	fetch 1,mem_new_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,g24_paring_mode_start
+	call g24_transmit_succ_rf_config
+g24_transmit_abandon:
+	setarg 0
+	store 2,mem_new_24g_txfail_cnt
+	store 1,mem_new_24g_get_ack_fail
+	store 1,mem_new_24g_hop_pac_retry
+	jam ENSURE_OFF_24G,mem_new_24g_ensure
+	rtn
+g24_paring_mode_start:
+	call power_ctrl_pac_succ_cnt_init
+	branch g24_paring_mode
+
+g24_transmit_receive_ack:
+	disable user3
+	call g24_transmit
+	fetch 1,mem_new_24g_no_ack
+	beq no_ack_24g,g24_transmit_no_ack	//tx no ack
+	force 0,radio_ctrl
+	fetch 4,mem_new_24g_addr
+	iforce access
+	fetcht 1,mem_last_freq
+	call set_freq_rx
+	call rf_rx_enable
+	call g24_receive_rxon
+	call g24_end_of_packet,user3
+	rtn
+g24_transmit_no_ack:
+	call g24_end_of_packet
+	branch g24_transmit_next_packet
+
+g24_retransmit:
+	fetch 1,mem_new_24g_get_ack_fail
+	increase 1,pdata
+	store 1,mem_new_24g_get_ack_fail
+	fetch 1,mem_new_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,g24_tx_paring_retry
+	fetcht 1,mem_new_24g_retry
+	increase 1,temp
+	storet 1,mem_new_24g_retry
+	fetch 1,mem_new_24g_max_retry
+	isub temp,pdata
+	nbranch g24_transmit_loop,blank
+	fetch 1,mem_new_24g_rf_work_stage
+	beq 3,g24_transmit_pac_fail_hop_stage3
+	fetch 1,mem_new_24g_hop_pac_retry
+	increase 1,pdata
+	store 1,mem_new_24g_hop_pac_retry
+	beq 2,g24_transmit_hop_pac_fail
+	call g24_hop_ch_enable
+	jam 1,mem_new_24g_max_retry
+	branch g24_transmit_packet
+
+g24_tx_paring_retry:
+	fetch 1,mem_new_24g_get_ack_fail
+	rtnne 0xff
+	jam 0,mem_new_24g_get_ack_fail
+	branch g24_stop_24g_mode
+
+g24_tx_attempt_fail:
+	setarg 0
+	store 2,mem_new_24g_txfail_cnt
+	jam 0,mem_lpm_mode
+	jam 0,mem_short_lpm_tx_cnt
+	jam 0,mem_short_lpm_enable
+g24_stop_24g_mode:
+	jam BT_EVT_24G_ATTEMPT_FAIL,mem_ipc_tx_evt
+	branch p_ipc_tx_evt
+
+g24_ackpayload_parse:
+	call g24_read_len_pid_crc
+	fetch 1,mem_new_24g_rxdata_length	//ack payload length 
+	rtn blank
+	iforce loopcnt
+	arg mem_new_24g_rxbuf+2,contr
+	arg mem_new_24g_rxpayload,contw	//ack payload buffer 
+	branch memcpy
+
+g24_read_len_pid_crc:
+//read control
+	fetch 1,mem_new_24g_rxbuf+1
+	rshift3 pdata,pdata
+	store 1,mem_new_24g_rxdata_length
+//get crc
+	increase 1,pdata
+	arg mem_new_24g_rxbuf+1,contr
+	iadd contr,contr
+	ifetch 3,contr
+	store 3,mem_new_24g_sta_crc
+//read pid
+	fetch 1,mem_new_24g_rxbuf+1
+	rshift pdata,pdata
+	and pdata,0x03,pdata
+	store 1,mem_new_24g_sta_pid
+	rtn
+
+
+g24_prep:
+	disable enable_crc
+	disable enable_white
+	setarg 0x555555
+	iforce crc24_init
+	fetch 1,mem_new_24g_ch
+	reverse pdata,temp
+	set1 1,temp
+	rshift temp,white_init	
+	rtn
+
+g24_set_freq_tx:
+	call set_sync_on
+	fetcht 1,mem_new_24g_ch
+	branch set_freq_tx
+
+g24_transmit:
+	call le_enable
+	fetch 4,mem_new_24g_addr
+	iforce access
+	call g24_prep
+	call g24_set_freq_tx
+	set1 TXGFSK,radio_ctrl
+	enable encode_fec0
+	enable is_tx
+	disable is_rx
+	rshift16 access,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	inject mod,40
+	disable encode_fec0
+	enable encode_fec1
+	enable enable_white
+	enable enable_crc
+
+	fetch 1,mem_new_24g_syncword_crc8
+	inject mod,8
+	
+	fetch 1,mem_new_24g_txlen
+	iforce loopcnt
+	arg mem_new_24g_txpayload,contr
+g24tr_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop g24tr_loop
+ifdef P24G_LOG	
+	fetch 1,mem_tx_power
+	inject mod,8
+	fetch 1,mem_rssi_avg_received
+	inject mod,8
+	fetch 1,mem_new_24g_paccnt
+	inject mod,8
+endif	
+	enable enable_parity
+	inject mod,24	//crc
+	disable enable_parity
+	until null,tx_clear
+	nop 100
+	disable encode_fec0
+	disable encode_fec1
+	rtn
+
+g24_receive_packet:
+	call le_enable
+	fetch 4,mem_new_24g_addr
+	iforce access
+	call set_sync_on
+	fetcht 1,mem_new_24g_ch
+	call set_freq_rx
+	setarg param_pll_setup
+	call sleep
+	call rf_rx_enable
+g24_receive_rxon:
+	call g24_prep
+	disable user3
+	enable decode_fec0	
+	enable is_rx
+	disable is_tx
+	enable swfine
+	fetch 2,mem_new_24g_rx_window
+	iforce stop_watch
+	correlate null,timeout
+	nbranch g24_sync_timeout,sync
+	disable decode_fec0
+	enable decode_fec1
+	enable enable_white
+	enable enable_crc
+
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_new_24g_get_syncword_crc8
+	call g24_syncword_crc8
+	fetcht 1,mem_new_24g_get_syncword_crc8
+	isub temp,null
+	nbranch g24_end_of_packet,zero
+
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_new_24g_rxbuf	//device id
+	fetch 1,mem_new_24g_mode
+	sub pdata,rx_24g,null
+	branch g24_receive_skip,zero
+	fetch 1,mem_new_24g_rxbuf
+	fetcht 1,mem_new_24g_data_type
+	icompare bits_data,temp
+	nbranch g24_end_of_packet,true
+g24_receive_skip:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	rshift3 pdata,pdata
+	and pdata,0x1f,loopcnt	//max payload: 32bytes
+	branch g24rx_nopayload,zero
+g24rx_loop:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop g24rx_loop
+g24rx_nopayload:
+	//receive rssi hex
+	copy contw,rega
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_rssi_hex_received
+	copy rega,contw
+	
+	parse demod,bucket,24
+	enable swfine
+	arg param_sifs,stop_watch
+	rshift32 pdata,pdata
+	rshift16 pdata,pdata
+	istore 3,contw
+	disable decode_fec1
+	branch g24_end_of_packet,crc_failed
+	enable user3
+	fetch 1,mem_last_freq
+	add pdata,0,rega
+	call rf_write_freq
+	disable decode_fec0
+	call set_sync_on
+	fetch 1,mem_rssi_hex_received
+	copy pdata,rega
+	branch rssi_signal
+
+g24_end_of_packet:
+	disable encode_fec1
+	disable decode_fec1
+	branch end_of_packet
+
+g24_sync_timeout:
+	branch g24_end_of_packet
+
+power_ctrl_pac_succ_cnt_init:
+	jam 1,mem_power_ctrl_level
+	jam 0,mem_power_ctrl_pac_succ_cnt
+	rtn
+power_ctrl_pac_succ_incrs:
+	fetch 1,mem_power_ctrl_pac_succ_cnt
+	increase 1,pdata
+	store 1,mem_power_ctrl_pac_succ_cnt
+	rtn
+power_ctrl_pac_succ_decrs:
+	fetch 1,mem_power_ctrl_pac_succ_cnt
+	sub pdata,1,null
+	ncall power_ctrl_pac_succ_cnt_reinit,positive
+	fetch 1,mem_power_ctrl_pac_succ_cnt
+	rtneq 0
+	increase -1,pdata
+	store 1,mem_power_ctrl_pac_succ_cnt
+	rtn
+power_ctrl_pac_succ_cnt_reinit:
+	jam 2,mem_power_ctrl_pac_succ_cnt
+	rtn
+
+power_ctrl_start:
+ifdef TP_MAX
+	rtn
+endif
+	arg mem_rssi_signal_buf,rega
+	call rssi_average
+	storet 1,mem_rssi_avg_received
+	isolate1 mark_24g,mark
+	call power_ctrl_24g_dis_max,true
+	ncall power_ctrl_le_dis_max,true
+	isub temp,null
+	nbranch power_ctrl_txpower_incrs,positive
+
+	fetch 1,mem_power_ctrl_pac_succ_cnt
+	sub pdata,1,null
+	nbranch power_ctrl_txpower_decrs_check,positive
+	fetch 1,mem_power_ctrl_pac_succ_cnt
+	beq 0,power_ctrl_txpower_incrs
+	rtn
+
+power_ctrl_24g_dis_max:
+	setarg RSSI_DIS_MAX_24G
+	rtn
+power_ctrl_24g_dis_min:
+	setarg RSSI_DIS_MIN_24G
+	rtn	
+power_ctrl_le_dis_max:
+	setarg RSSI_DIS_MAX_BLE
+	rtn
+power_ctrl_le_dis_min:
+	setarg RSSI_DIS_MIN_BLE
+	rtn
+	
+power_ctrl_txpower_decrs_check:
+	fetch 1,mem_power_ctrl_pac_succ_cnt
+	rtnne 70
+	jam 0,mem_power_ctrl_pac_succ_cnt
+power_ctrl_txpower_decrs:
+	fetcht 1,mem_rssi_avg_received
+	isolate1 mark_24g,mark
+	call power_ctrl_24g_dis_min,true
+	ncall power_ctrl_le_dis_min,true
+	isub temp,null
+	nrtn positive
+	fetch 1,mem_power_ctrl_level
+	beq 0,power_ctrl_decrs_level0
+	increase -1,pdata
+	store 1,mem_power_ctrl_level
+	beq 0,power_ctrl_decrs_level0
+power_ctrl_decrs_level1:
+power_ctrl_incrs_level1:	//0dBm
+	hjam 0xd0,0x8955
+	hjam 0xe0,0x8956
+	hjam 0x4c,0x8957
+	hjam 0x6c,0x8958
+	hjam 0x50,0x8959
+	jam 0x01,mem_tx_power
+	rtn
+	
+power_ctrl_txpower_incrs:
+	fetch 1,mem_power_ctrl_level
+	beq 2,power_ctrl_incrs_level2
+	increase 1,pdata
+	store 1,mem_power_ctrl_level
+	beq 1,power_ctrl_incrs_level1
+power_ctrl_incrs_level2:	//+6dBm
+	hjam 0xd0,0x8955
+	hjam 0xe0,0x8956
+	hjam 0x4c,0x8957
+	hjam 0x3c,0x8958
+	hjam 0x10,0x8959
+	jam 0x04,mem_tx_power
+	rtn
+	
+power_ctrl_decrs_level0: //-5dBm
+	hjam 0xd0,0x8955
+	hjam 0xc0,0x8956
+	hjam 0x4c,0x8957
+	hjam 0x6c,0x8958
+	hjam 0x50,0x8959	
+	jam 0x10,mem_tx_power
+	rtn
+	
+rssi_signal:
+	fetcht 1,mem_rssi_signal_index
+	setarg mem_rssi_signal_buf
+	iadd temp,contw
+	copy rega,pdata
+	istore 1,contw
+	increase 1,temp
+	and_into RSSI_BUF_LEN,temp
+	storet 1,mem_rssi_signal_index
+	rtn
+rssi_average:
+	arg 0,temp
+	arg RSSI_BUF_LEN+1,loopcnt
+	copy rega,contr
+rssi_average_loop:	
+	ifetch 1,contr
+	iadd temp,temp
+	loop rssi_average_loop
+	rshift3 temp,pdata
+	copy pdata,temp
+	rtnmark0 mark_24g
+	//2BCD
+	div pdata,10
+	call wait_div_end
+	quotient pdata
+	lshift4 pdata,pdata
+	remainder temp
+	ior temp,temp
+	rtn
+
+
+g24_start_pairing_sm1:
+	set1 mark_24g,mark
+	call g24_pair_init
+g24_set_pairing_sm_1:
+	jam STATE_24G_PAIRING_1,mem_new_24g_pairing_sm
+	rtn
+
+g24_pairing_sm:
+	fetch 1,mem_new_24g_ensure
+	beq ENSURE_ON_24G,disable_usr
+	fetch 1,mem_new_24g_pairing_sm
+	beq STATE_24G_PAIRING_1,g24_pairing_sm_1
+	beq STATE_24G_PAIRING_2,g24_pairing_sm_2
+	beq STATE_24G_PAIRING_3,g24_pairing_sm_3
+	branch assert
+
+g24_pairing_sm_1:
+	jam STATE_24G_PAIRING_1_WAITING_ACK,mem_new_24g_pairing_sm
+	jam 0xaa,mem_new_24g_common_temp
+	branch g24_pairing_sm_common
+g24_pairing_sm_2:
+	jam STATE_24G_PAIRING_2_WAITING_ACK,mem_new_24g_pairing_sm
+	jam 0x55,mem_new_24g_common_temp
+	branch g24_pairing_sm_common
+g24_pairing_sm_3:
+	jam STATE_24G_PAIRING_3_WAITING_ACK,mem_new_24g_pairing_sm
+	jam 0x22,mem_new_24g_common_temp
+g24_pairing_sm_common:
+	fetch 1,mem_new_24g_data_type
+	and_into bits_data,pdata
+	store 1,mem_new_24g_common_temp+1
+	fetch 4,mem_new_24g_device_addr
+	store 4,mem_new_24g_common_temp+2
+g24_put_pairing_data_in_buff:
+	jam 0,mem_new_24g_common_temp+6
+	arg mem_new_24g_common_temp,rega
+	arg 7,temp
+	call g24_put_data_in_buff	
+	call g24_transmit_prep
+	call g24_txdata_enable_tx
+	branch disable_usr
+
+g24_paring_mode:
+	fetch 1,mem_new_24g_pairing_sm
+	rtneq STATE_24G_PAIRING_SUCCESS
+	beq STATE_24G_PAIRING_1_WAITING_ACK,g24_pairing_sm_1_waiting_ack
+	beq STATE_24G_PAIRING_2_WAITING_ACK,g24_pairing_sm_2_waiting_ack
+	beq STATE_24G_PAIRING_3_WAITING_ACK,g24_pairing_sm_3_waiting_ack
+	rtn
+
+g24_pairing_sm_1_waiting_ack:
+	jam STATE_24G_PAIRING_2,mem_new_24g_pairing_sm
+	branch g24_transmit_abandon
+g24_pairing_sm_2_waiting_ack:
+	jam STATE_24G_PAIRING_3,mem_new_24g_pairing_sm
+	branch g24_transmit_abandon
+g24_pairing_sm_3_waiting_ack:
+	jam STATE_24G_PAIRING_SUCCESS,mem_new_24g_pairing_sm
+	jam BT_EVT_24G_PAIRING_COMPLETE,mem_ipc_tx_evt
+	call p_ipc_tx_evt
+	fetch 4,mem_new_24g_rxpayload+2
+	call g24_update_addr_and_synccrc8
+	branch g24_transmit_abandon
+
+g24_start_24g_mode:
+	set0 mark_24g,mark
+	call g24_ch
+	fetch 4,mem_new_24g_addr
+	call g24_syncword_crc8
+	fetch 1,mem_new_24g_pairing_sm
+	rtnne STATE_24G_PAIRING_SUCCESS
+	call g24_tx_attemp_data_prep
+g24_tx_attemp_dongle:
+	setarg 0
+	store 2,mem_new_24g_check_dongle_times
+g24_tx_attemp_dongle_loop:
+	nop 2000
+	fetch 1,mem_new_24g_check_dongle_times
+	beq 0xff,g24_stop_24g_mode	//
+	call g24_transmit_receive_ack
+	nbranch g24_attemp_txdata_retry,sync
+	nbranch g24_attemp_txdata_retry,user3
+g24_tx_attemp_dongle_succ:
+	jam 1,mem_lpm_mode
+	set1 mark_24g,mark
+	setarg 0
+	store 2,mem_new_24g_check_dongle_times
+	jam BT_EVT_24G_ATTEMPT_SUCCESS,mem_fifo_temp
+	call ui_ipc_send_event
+	branch check_51cmd_stop_adv
+
+g24_tx_attemp_data_prep:
+	set1 mark_24g_conext,mark
+	jam 0xff,mem_new_24g_common_temp
+	fetch 1,mem_new_24g_data_type
+	store 1,mem_new_24g_common_temp+1
+	fetch 4,mem_new_24g_device_addr
+	store 4,mem_new_24g_common_temp+2
+	arg 6,temp
+	arg mem_new_24g_common_temp,rega
+	call g24_put_data_in_buff
+	branch g24_transmit_prep
+	
+g24_attemp_txdata_retry:
+	fetch 2,mem_new_24g_check_dongle_times
+	increase 1,pdata
+	store 2,mem_new_24g_check_dongle_times
+	call g24_ch
+	branch g24_tx_attemp_dongle_loop
+
+
+ifdef YC_G24_AUTO
+g24_auto_pair_start:
+	set0 mark_24g,mark
+	call g24_auto_pair_set_device_info
+	call g24_tx_attemp_data_prep
+g24_auto_pair_restart:
+	jam 0,mem_new_24g_check_dongle_times
+g24_auto_pair_start_loop:
+	nop 2000
+	fetch 1,mem_new_24g_check_dongle_times
+	beq 0xff,g24_stop_24g_mode
+	call g24_transmit_receive_ack
+	nbranch g24_auto_pair_retry,sync
+	nbranch g24_auto_pair_retry,user3
+	call g24_ackpayload_parse
+	fetch 4,mem_new_24g_addr
+	fetcht 4,mem_new_24g_paring_addr
+	isub temp,null
+	branch g24_start_pairing_sm1,zero
+	fetch 4,mem_new_24g_rxpayload+2
+	beq 0,g24_auto_pair_restart
+	call g24_update_addr_and_synccrc8
+	branch g24_tx_attemp_dongle_succ
+
+g24_auto_pair_retry:
+	fetch 1,mem_new_24g_check_dongle_times
+	increase 1,pdata
+	store 1,mem_new_24g_check_dongle_times
+	fetch 1,mem_new_24g_auto_paring_switch	
+	increase 1,pdata
+	and_into 1,pdata
+	store 1,mem_new_24g_auto_paring_switch
+	beq 0,g24_auto_pair_device_attemp
+	beq 1,g24_auto_pair_pair_attemp
+	rtn
+
+g24_auto_pair_set_device_info:
+	fetch 1,mem_tx_power_temp
+	store 1,mem_tx_power
+	fetch 4,mem_new_24g_device_addr
+	call g24_update_addr_and_synccrc8
+	branch g24_ch
+
+g24_auto_pair_device_attemp:
+	call g24_auto_pair_set_device_info
+	branch g24_auto_pair_start_loop
+
+g24_auto_pair_pair_attemp:
+	call g24_pair_init
+	branch g24_auto_pair_start_loop
+
+endif
+
+endif
+
+
+ifdef TEST_MODE
+p_test_tx_mode_init:
+
+	
+	rtn
+endif
+
+ifdef HCILOG
+p_hci_log:
+	fetch 1,p_mem_hci_log
+	increase 1,pdata
+	sub pdata,18,null
+	branch p_hci_log_calc_ptr,positive
+	setarg 0
+p_hci_log_calc_ptr:
+	store 1,p_mem_hci_log
+	arg 8,temp
+	imul32 temp,pdata
+	arg p_mem_hci_log+8,contw
+	iadd contw,contw
+p_hci_log_write_content:
+	fetch 1,p_mem_hci_log
+	istore 1,contw//counter
+	fetch 7,mem_new_24g_txbuf
+	istore 7,contw
+	rtn
+endif
+
+ifdef MS_TEST
+//1 mem_m_key
+//2 mem_m_x
+//2 mem_m_y
+//1 mem_m_z
+//1 mem_m_tz
+p_g24_test_data:
+	fetch 1,mem_24g_test
+	increase 1,pdata
+	store 1,mem_24g_test
+	sub pdata,50,null
+	branch p_ms_x_right,positive
+	sub pdata,100,null
+	branch p_ms_y_up,positive
+	sub pdata,150,null
+	branch p_ms_x_left,positive
+	sub pdata,200,null
+	branch p_ms_y_down,positive
+	rtn
+p_ms_x_right:
+	setarg 0x05
+	store 2,mem_m_x
+	setarg 0
+	store 2,mem_m_y
+	store 1,mem_m_z
+	store 1,mem_m_key
+	store 1,mem_m_tz
+p_data:	
+	enable user
+	arg 7,rega
+	arg mem_m_key,regb
+	call g24_package_data_pc_bind
+	rtn
+p_ms_y_up:
+	setarg 0x05
+	store 2,mem_m_y
+	setarg 0
+	store 2,mem_m_x
+	store 1,mem_m_z
+	store 1,mem_m_key
+	store 1,mem_m_tz
+	branch p_data
+p_ms_x_left:
+	setarg 0xfffb
+	store 2,mem_m_x
+	setarg 0
+	store 2,mem_m_y
+	store 1,mem_m_z
+	store 1,mem_m_key
+	store 1,mem_m_tz
+	branch p_data
+p_ms_y_down:
+	fetch 1,mem_24g_test
+	beq 200,p_mem_usb_data_square_cnt_set0
+	setarg 0xfffb
+	store 2,mem_m_y
+	setarg 0
+	store 2,mem_m_x
+	store 1,mem_m_z
+	store 1,mem_m_key
+	store 1,mem_m_tz
+	branch p_data
+p_mem_usb_data_square_cnt_set0:
+	jam 0,mem_24g_test
+	branch p_ms_y_down+2
+endif
+
+
+
+
+
+endif
+
+
+
Index: btms/program/peripherals.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/peripherals.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/rfcomm.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/rfcomm.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/scheduler.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/scheduler.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/sdp.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/sdp.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/security.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/security.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/shutter.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/shutter.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/shutter.prog	(working copy)
@@ -0,0 +1,1166 @@
+
+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
+	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,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: btms/program/simple_pairing.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/simple_pairing.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/ui.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/ui.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/program/utility.prog
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/program/utility.prog	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/sched/patch.dat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/sched/patch.dat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/sched/patch.dat	(working copy)
@@ -0,0 +1,85 @@
+mem_patch30:04 #must be the fisrt row
+mem_patch00:09
+mem_patch10:40
+mem_patch11:0c
+mem_patch14:80
+mem_patch15:13
+mem_patch16:f0
+mem_patch20:20
+mem_patch22:40
+mem_patch23:08
+mem_patch24:08
+mem_patch25:80
+mem_patch26:0e
+mem_patch27:f2
+mem_patch28:04
+mem_patch29:20
+mem_patch32:20
+mem_patch3e:88
+mem_patch3f:03
+
+##49   #mem_patch00	#49 enable HID
+##02   #mem_patch01	#02 enable HID
+##00   #mem_patch02
+##00   #mem_patch03
+##60   #mem_patch04	#60 enable HID
+##02   #mem_patch05	#02 enable HID
+##00   #mem_patch06
+##80   #mem_patch07	#80 enable HID
+##00   #mem_patch08
+##10   #mem_patch09	#10 enable HID
+##01   #mem_patch0A	#01 enable HID
+##00   #mem_patch0B
+##00   #mem_patch0C
+##00   #mem_patch0D
+##00   #mem_patch0E
+##00   #mem_patch0F
+##40   #mem_patch10
+##0c   #mem_patch11
+##00   #mem_patch12
+##00   #mem_patch13
+##80   #mem_patch14
+##13   #mem_patch15
+##f0   #mem_patch16
+##00   #mem_patch17
+##00   #mem_patch18
+##01   #mem_patch19	#01 enable HID
+##00   #mem_patch1A
+##00   #mem_patch1B
+##00   #mem_patch1C
+##00   #mem_patch1D
+##00   #mem_patch1E
+##00   #mem_patch1F
+##20   #mem_patch20
+##00   #mem_patch21
+##40   #mem_patch22
+##08   #mem_patch23
+##08   #mem_patch24
+##80   #mem_patch25
+##0e   #mem_patch26
+##d0   #mem_patch27
+##04   #mem_patch28
+##20   #mem_patch29
+##60   #mem_patch2A	#60 enable HID
+##41   #mem_patch2B	#41 enable HID
+##00   #mem_patch2C
+##00   #mem_patch2D
+##00   #mem_patch2E
+##00   #mem_patch2F
+##00   #mem_patch30
+##00   #mem_patch31
+##20   #mem_patch32
+##00   #mem_patch33
+##00   #mem_patch34
+##40   #mem_patch35	#40 enable HID
+##00   #mem_patch36
+##00   #mem_patch37
+##00   #mem_patch38
+##01   #mem_patch39	#01 enable HID
+##00   #mem_patch3A
+##00   #mem_patch3B
+##00   #mem_patch3C
+##00   #mem_patch3D
+##88   #mem_patch3E
+##03   #mem_patch3F
+
Index: btms/sched/rf.dat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/sched/rf.dat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/sched/rf.dat	(working copy)
@@ -0,0 +1,35 @@
+mem_lpm_config:8f 1b ce
+mem_lpm_buckcnt:0a 0b ef 0f
+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 02
+mem_pscan_window:12 00
+mem_pscan_interval:00 02
+
+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_le_rx_window_inc:00 40
+
+mem_lmp_version: 09 59 00 B0 00    #04 0a 00 e9 12
+
+mem_eeprom_base:30 6f
+mem_eeprom_block_size:20
+
+mem_context_number:01
+
+mem_rf_init_data_new:
+# tx power
+55 d0
+56 c0
+57 4c
+58 3c
+59 50
+ff
+mem_rf_init_ptr:mem_rf_init_data_new
Index: btms/sched/user.dat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/sched/user.dat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/sched/user.dat	(working copy)
@@ -0,0 +1,817 @@
+
+#mem_class: 80 25 00
+#mem_lap:ab ab 66 63 5d 6c
+#mem_local_name_length:
+#'bt mouse
+#mem_sniff_param_interval:0c 00
+#mem_sniff_param_attempt:01
+#mem_sniff_param_timeout:01
+#mem_unsniff2sniff_timer:0a
+mem_ssp_enable:00
+#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
+#1100 0001 0210 2411  0012  0100
+
+mem_all_uuid_128bits:00
+
+#mouse uuid
+#mem_device_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_device_uuid_list
+#Auto reconnection after power on
+mem_device_option:42
+#mem_ptt:0
+#mem_features:
+#ff
+#ff
+#8f
+#f8	#fe--EDR  F8--BR
+#9b	#AFHclose 83
+#9d
+#51
+#82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+#2=mouse 4=dongle 6=ukey 7=ir
+mem_lpm_mode:01
+mem_lpm_mult:20
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:08
+mem_lpm_interval:00 00
+mem_scan_mode:00
+mem_ipc_tx_evt_buff:02 01
+
+mem_adc_config_flag:04
+mem_adc_channel:30
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+
+
+mem_le_adv_own_addr_type:00
+mem_le_adv_channel_map:07 
+mem_le_adv_filter_policy:00
+mem_le_transmit_window:50
+mem_le_notify_handle:1a
+mem_le_lap:ab b9 12 0e 10 26			#bluetooth MAC address
+mem_le_name_len:			#bluetooth name
+'BLE Mouse
+
+mem_le_local_mtu:17
+mem_le_adv_type:00
+mem_le_adv_direct_addr_type:01
+mem_le_adv_direct_addr:00 00 00 00 00 00
+mem_le_adv_enable:00
+
+mem_le_adv_data_len:1f
+mem_le_adv_data:
+#appearance
+03 19 c2 03
+
+#uuid
+03 03 12 18
+
+#flag 
+02 01 05
+
+#name
+'\09BLE Mouse
+
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+#name
+'\09BLE Mouse
+
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_device_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
+'BLE Mouse
+
+#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 01 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
+
+25 00 02 03 28 01 12 
+26 00 02 4d 2a 07 00 00 00 00 00 00 00 
+27 00 02 02 29 02 00 00
+28 00 02 08 29 02 11 01
+29 00 02 03 28 01 0e 
+2a 00 02 4d 2a 07 00 00 00 00 00 00 00
+2b 00 02 08 29 02 11 02
+
+#End of Attribute list
+00 00
+
+mem_ui_le_uuid_table:mem_device_le_att_list
+
+mem_le_rx_winsows:50
+
+mem_le_interal_min:
+07 00 #min interval
+07 00 #max interval
+05 00 #latency
+2c 01 #timeout
+
+mem_empty_count_user:00
+#mem_le_att_report1:13 00
+mem_le_att_report2:19 00
+mem_le_pairing_handle:22 00
+mem_le_pairing_mode:01
+mem_le_flag:01
+
+mem_tx_power:02#3dbm
+
+#24g init
+mem_new_24g_mode:01#tx
+mem_new_24g_data_type:01	#mouse 1,kb 2
+mem_new_24g_max_retry:04#max tx retry
+mem_new_24g_no_ack:00#with ack
+mem_new_24g_rx_window:c0 12	#400us
+mem_new_24g_interval:19
+mem_new_24g_interval_min:19
+mem_new_24g_interval_max:1c
+mem_new_24g_ch_map1:00 13 2c 42
+mem_new_24g_ch_map2:06 15 36 48
+mem_new_24g_ch_map3:0f 1a 3a 4c
+mem_new_24g_ch_map4:11 23 31 4d
+mem_new_24g_pairing_sm:ff
+mem_new_24g_paring_addr:20 15 10 05
+mem_new_24g_common_temp:00 00 00 00 00 00 00 00 00 00
+mem_new_24g_enter_hibernate:00 48 60 00 00 00 00 00#10 min
+
+
Index: btms/trans.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/trans.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/trans.pl	(working copy)
@@ -0,0 +1,9 @@
+print "merlinII :";
+for($i=0;$i<=@ARGV-1;$i++) {
+    print $ARGV [$i];
+}
+print "\nfrontline:";
+for ($i=@ARGV;$i>=0;$i--){
+	print $ARGV[$i];
+	}
+print "\n";
Index: btms/util/a1bugfix.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/a1bugfix.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/util/bytecnt.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/bytecnt.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/util/crc16_ccitt.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/crc16_ccitt.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/util/define_info.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/define_info.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/util/gen_patch_h.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/gen_patch_h.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/util/hex2mif.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/hex2mif.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/util/ifdef.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/ifdef.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/util/memalloc.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/memalloc.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/util/mergepatch.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/mergepatch.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/util/rom2mif.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/rom2mif.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/util/route.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/route.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/util/setarg.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/setarg.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/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: btms/util/transform_memmap2btreg.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/transform_memmap2btreg.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/transform_memmap2btreg.pl	(working copy)
@@ -0,0 +1,45 @@
+$memmap_path=$ARGV[0];
+$memblocks_path=$ARGV[1];
+$btreg_path=$ARGV[2];
+open(btreg,">$btreg_path");
+print btreg ("");#reset file
+close(btreg);
+open(memmap,$memmap_path);
+open(memblocks,$memblocks_path);
+open(btreg,">>$btreg_path");
+@text = <memmap>;
+print btreg ("#ifndef _BT_REG_H_\n");
+print btreg ("#define _BT_REG_H_\n");
+foreach $text (@text){
+	@word = split (/[\t ]+/,$text);
+	$reg_addr = @word[0];
+	if ($reg_addr =~ /0x[0-9abcdef]*/){#Is 0x0000~0xffff
+		$word1 = @word[1];
+		@reg_name = split(/\/[\/\*]/,$word1);#delete // or /*  */
+		$reg_name = @reg_name[0];
+		$reg_name =~ s/[\r\n]//;#delete Carriage return
+		
+		printf btreg ("#define\t%-40s\t%s\n",$reg_name,$reg_addr);
+		#print btreg ("#define \t $reg_name \t\t\t $reg_addr \n");
+		#print btreg ("@word[1]\n");
+	}
+}
+@text = <memblocks>;
+foreach $text (@text){
+	@word = split (/[\t ]+/,$text);
+	$reg_addr = @word[0];
+	if ($reg_addr =~ /0x[0-9abcdef]*/){
+		$word1 = @word[1];
+		@reg_name = split(/\/[\/\*]/,$word1);
+		$reg_name = @reg_name[0];
+		$reg_name =~ s/[\r\n]//;
+		printf btreg ("#define\t%-40s\t%s\n",$reg_name,$reg_addr);
+		#print btreg ("#define \t $reg_name \t\t\t\t $reg_addr \n");
+		#print btreg ("@word[1]\n");
+	}
+}
+print btreg ("#endif\n");
+close(memblocks);
+close(memmap);
+close(btreg);
+
Index: btms/util/transform_name2addr.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/transform_name2addr.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/btms/util/transform_name2addr.pl	(working copy)
@@ -0,0 +1,103 @@
+$Sched_path=$ARGV[0];
+$Sched_test_path=$ARGV[1];
+$Memmap_path=$ARGV[2];
+open(Sched,$Sched_path)||die("Cannot open files\n");
+@sched=<Sched>;
+close(Sched);
+open(Sched_test,">$Sched_test_path");
+print Sched_test ("");
+close(Sched_test);
+open(Sched_test,">$Sched_test_path");
+open(Memmap,$Memmap_path)||die("Cannot open files\n");
+@memmap=<Memmap>;
+close(Memmap);
+$type_add=0;
+$type_exchange=0;
+foreach $sched(@sched)
+{
+	$sched_begin = $sched;
+	@Sched = split(/[#]+/, $sched);
+	$sched = @Sched[0];
+	@Sched[0] = "";
+	if($sched =~ /mem[\w]+/)
+	{
+		@memmap_name = split(/[\W]+/, $sched);
+		foreach $memmap_name(@memmap_name)
+		{
+			if($memmap_name =~ /mem[\w]+/)
+			{
+				$Memmap_name=$memmap_name;
+				$type_add = 0;
+				$type_exchange = 0;
+				if($sched =~ /$Memmap_name[+]/)
+				{
+					$type_add = 1;#ÐÞ¸ÄµÄÀàÐÍµÚÒ»ÖÖ£¬¼Ó
+					@ADD_Num=split(/[^0-9\+xa-fA-F]/,$sched);
+					foreach $ADD_Num(@ADD_Num)
+					{
+						if($ADD_Num =~ /\+/)
+						{
+							if($ADD_Num =~ /0x/)
+							{
+								@add_num = split(/\+0x/,$ADD_Num);
+								$add_num1 =@add_num[1];
+								$add_num_begin = "0x".$add_num1;
+								$add_num = hex($add_num1);
+							}
+							else
+							{
+								@add_num = split(/\+/,$ADD_Num);
+								$add_num1 =@add_num[1];
+								$add_num_begin = $add_num1;
+								$add_num = int($add_num1);
+							}
+						}#$add_numÊÇÆ¥Åä³öµÄÐèÒª¼ÓµÄÊýÖµ£¬×Ö·û´®ÐÎÊ½
+					}
+				}
+				if($sched =~ /[:] *\t*$Memmap_name/)
+				{
+					$type_exchange = 1;#ÐÞ¸ÄµÄÀàÐÍµÚ¶þÖÖ£¬¸ßµÍÎ»½»»»
+				}
+				foreach $memmap(@memmap)
+				{
+					if($memmap =~ /$Memmap_name/ && $memmap !~ /$Memmap_name[\w]+/)
+					{
+						@Memmap=split(/[ \t\n]/,$memmap);
+						$memmap_address=@Memmap[0];
+						$memmap_address =~ s/0x//;
+						if($type_add==1)
+						{
+							$memmap_address_D = hex($memmap_address);
+							$memmap_address_D = $memmap_address_D+$add_num;
+							$memmap_address_H = sprintf("%x", $memmap_address_D);
+							$memmap_address = $memmap_address_H;
+							$memmap_address_add_finish = $memmap_address;
+							$sched_begin =~ s/$Memmap_name\+$add_num_begin/$memmap_address/;
+						}
+						if($type_exchange==1)
+						{
+							$memmap_address_High = substr($memmap_address,0,2);
+							$memmap_address_Low = substr($memmap_address,2,2);
+							$memmap_address = $memmap_address_Low." ".$memmap_address_High;
+							if($type_add==0)
+							{
+								$sched_begin =~ s/$Memmap_name/$memmap_address/;
+							}
+							else
+							{
+								$sched_begin =~ s/$memmap_address_add_finish/$memmap_address/;
+							}
+						}
+					}
+				}
+				$sched_begin =~ s/$Memmap_name/$memmap_address/;
+			}
+		}
+		printf Sched_test ("%s",$sched_begin);
+	}
+	else
+	{
+		printf Sched_test ("%s",$sched_begin);
+	}	
+}
+close(Sched_test);
Index: c51/Makefile
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/Makefile	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/Makefile	(working copy)
@@ -0,0 +1,112 @@
+	comma:= ,
+empty:=
+space:= $(empty) $(empty)
+bracketl:= (
+bracketl0:= \(
+bracketr:= )
+bracketr0:= \)
+
+
+OUTDIR = output
+ROOT_PATH =D:\software\path\Keil
+
+UTIL_PATH = ..\rom\util
+
+C51BIN = $(ROOT_PATH)\c51\bin
+C51   = $(C51BIN)\c51
+A51   = $(C51BIN)\ax51
+BL51  = $(C51BIN)\lx51
+OH51  = $(C51BIN)\Ohx51
+OC51  = $(C51BIN)\oc51
+LIB51 = $(C51BIN)\libx51
+
+TARGET = $(OUTDIR)\fw
+TARGETHEX = $(TARGET).hex
+
+
+RAMTARGET = $(OUTDIR)\fwram
+
+RAMTARGETHEX = $(addsuffix .hex, $(RAMTARGET))
+
+############################## IMPORTANT ####################################
+#   opt level greater than 7 cannot be used, or the ram code and the rom code will be different
+##############################################################################
+OPT_LEVEL=7
+
+LIST_FILE_CTL=PR($(@:obj=lst))
+
+C_OPTS = object($@) OBJECTADVANCED  browse DF(ENABLE_APE) $(LIST_FILE_CTL) \
+OT($(OPT_LEVEL),SPEED) large
+
+#ASM_OPTS =  $(LIST_FILE_CTL) object($@)
+ASM_OPTS = SET (large) DEBUG EP $(LIST_FILE_CTL) object($@)
+
+LINK_OPTS = \
+	CLASSES (XDATA (X:0x1a00-X:0x1dFF),\
+	CODE(C:0-C:0xffff), DATA(D:0x10-0x7f), IDATA(I:0x80-0xcf)) \
+	SEGMENTS($(DATA_MAP)) \
+	NOOVERLAY \
+	PAGELENGTH(60000) \
+	CODE
+
+DATA_MAP = ?STACK(D:0xD0)
+CODE_MAP = ?PR?RAMENTRY?JUMPTABLE(C:0x0), ?PR?*, ?C*
+
+#LINK_OBJ_RAM =ram global_variable sys utilities gpio spi iic ipc uart adc keyscan sensor
+LINK_OBJ_RAM =ram  sys utilities gpio spi iic ipc adc global_variable Sensor
+
+LINK_OBJ_TMP_RAM = $(addsuffix .obj,$(LINK_OBJ_RAM)) 
+#..\patch\sensor.obj 
+LINK_OBJ_DEPENDENCIES_RAM = $(addprefix $(OUTDIR)/, $(LINK_OBJ_TMP_RAM))
+LINK_OBJ_FILES_RAM = $(subst $(space),$(comma),$(LINK_OBJ_DEPENDENCIES_RAM))
+
+LINK_OBJ_TMP_ROM = $(addsuffix .obj,$(LINK_OBJ_ROM))
+LINK_OBJ_DEPENDENCIES_ROM = $(addprefix $(OUTDIR)/, $(LINK_OBJ_TMP_ROM))
+LINK_OBJ_FILES_ROM = $(subst $(space),$(comma),$(LINK_OBJ_DEPENDENCIES_ROM))
+
+
+.SUFFIXES: .a51
+RAM_BIN = $(RAMTARGET).rom
+
+
+PROG_FILE = ..\rom\program\c51.prog
+RAM_FILES = $(RAM_MIF) $(RAM_BIN) $(EEPROM_FILE) $(PROG_FILE)
+
+$(OUTDIR)/%.obj : %.c hwreg.h
+	$(C51) $< "$(C_OPTS)"
+
+$(OUTDIR)/%.obj : %.a51
+	$(A51) $< "$(ASM_OPTS)"
+
+all : $(RAM_FILES) 
+
+
+$(TARGET) : $(LINK_OBJ_DEPENDENCIES_RAM)
+	$(BL51) $(LINK_OBJ_FILES_RAM) TO $@ "$(LINK_OPTS)"
+
+$(TARGETHEX) : $(TARGET)
+	$(OH51) $(TARGET)
+
+
+$(RAM_BIN) : $(TARGETHEX)
+
+
+$(RAM_MIF) : $(TARGETHEX)
+#	perl $(UTIL_PATH)\hex2mif.pl < $< rammif > $@
+	$(UTIL_PATH)\hex2mif.exe < $< rammif > $@
+
+$(EEPROM_FILE) : $(RAM_BIN)
+	cd ..\rom\output; ..\util\geneep.exe; cp eeprom.dat ..\..\sim 
+
+$(PROG_FILE) : $(RAM_BIN)
+#	perl $(UTIL_PATH)\setarg.pl $< c51 > $@
+
+clean:  
+	del /Q $(OUTDIR)\*.* 
+
+
+lib:
+	$(LIB51) TRANSFER $(OUTDIR)\ipc.obj TO $(OUTDIR)\yichip.LIB
+	
+ext:
+	$(LIB51) EXTRACT $(OUTDIR)\yichip.LIB (ipc) TO $(OUTDIR)\ipc.obj
Index: c51/Peripheral.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/Peripheral.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/Peripheral.h	(working copy)
@@ -0,0 +1,36 @@
+#ifndef _YC_PERIPHERAL_H_
+#define _YC_PERIPHERAL_H_
+#include "common.h"
+
+#define HID_REPORTID_MS 	1
+#define MOUSE_BUTTON_LRM 	7
+#define SLEEP_TIMER					300
+#define MOUSE_24G_PAIR_TIME			30
+
+#define KS_BL_GPIO	0x04
+#define KS_BM_GPIO	0x17
+#define KS_BR_GPIO	0x1b
+#define KS_BK_GPIO	0x17
+#define KS_FW_GPIO	0x04
+#define CPI_GPIO		0x06
+#define Timer_div_io		0x07
+#define SENSOR_MOTION_GPIO 0x18
+#define SENSOR_DIRECTION_GPIO_CHOICE 0x12
+
+#define LOWPOWER_GPIO_CHOICE 0x13
+#define WHEEL_DATA_A_GPIO 0x02
+#define WHEEL_DATA_B_GPIO 0x03
+#define LED_GPIO 	0x08
+
+
+#endif
+
+
+
+
+
+
+
+
+
+
Index: c51/Peripheral.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/Peripheral.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/Peripheral.c	(working copy)
@@ -0,0 +1 @@
+
Index: c51/REG320.H
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/REG320.H	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/REG320.H	(working copy)
@@ -0,0 +1,174 @@
+/*--------------------------------------------------------------------------
+REG320.H
+
+Header file for DS80C320/DS80C323.
+Copyright (c) 1988-2002 Keil Elektronik GmbH and Keil Software, Inc.
+All rights reserved.
+--------------------------------------------------------------------------*/
+
+#ifndef __REG320_H__
+#define __REG320_H__
+
+/*  BYTE Registers  */
+sfr P0     = 0x80;
+sfr P1     = 0x90;
+sfr P2     = 0xA0;
+sfr P3     = 0xB0;
+sfr PSW    = 0xD0;
+sfr ACC    = 0xE0;
+sfr B      = 0xF0;
+sfr SP     = 0x81;
+sfr DPL    = 0x82;
+sfr DPH    = 0x83;
+sfr PCON   = 0x87;
+sfr TCON   = 0x88;
+sfr TMOD   = 0x89;
+sfr TL0    = 0x8A;
+sfr TL1    = 0x8B;
+sfr TH0    = 0x8C;
+sfr TH1    = 0x8D;
+sfr IE     = 0xA8;
+sfr IP     = 0xB8;
+sfr SCON0  = 0x98;
+sfr SBUF0  = 0x99;
+
+/*  DS80C320 Extensions  */
+sfr DPL1   = 0x84;
+sfr DPH1   = 0x85;
+sfr DPS    = 0x86;
+sfr CKCON  = 0x8E;
+sfr EXIF   = 0x91;
+sfr SADDR0 = 0xA9;
+sfr SADDR1 = 0xAA;
+sfr SADEN0 = 0xB9;
+sfr SADEN1 = 0xBA;
+sfr SCON1  = 0xC0;
+sfr SBUF1  = 0xC1;
+sfr STATUS = 0xC5;
+sfr TA     = 0xC7;
+sfr T2CON  = 0xC8;
+sfr T2MOD  = 0xC9;
+sfr RCAP2L = 0xCA;
+sfr RCAP2H = 0xCB;
+sfr TL2    = 0xCC;
+sfr TH2    = 0xCD;
+sfr WDCON  = 0xD8;
+sfr EIE    = 0xE8;
+sfr EIP    = 0xF8;
+
+/*  BIT Registers  */
+/*  PSW */
+sbit CY    = PSW^7;
+sbit AC    = PSW^6;
+sbit F0    = PSW^5;
+sbit RS1   = PSW^4;
+sbit RS0   = PSW^3;
+sbit OV    = PSW^2;
+sbit FL    = PSW^1;
+sbit F1    = PSW^1;
+sbit P     = PSW^0;
+
+/*  TCON  */
+sbit TF1   = TCON^7;
+sbit TR1   = TCON^6;
+sbit TF0   = TCON^5;
+sbit TR0   = TCON^4;
+sbit IE1   = TCON^3;
+sbit IT1   = TCON^2;
+sbit IE0   = TCON^1;
+sbit IT0   = TCON^0;
+
+/*  IE  */
+sbit EA    = IE^7;
+sbit ES1   = IE^6;
+sbit ET2   = IE^5;
+sbit ES0   = IE^4;
+sbit ET1   = IE^3;
+sbit EX1   = IE^2;
+sbit ET0   = IE^1;
+sbit EX0   = IE^0;
+
+/*  IP  */
+sbit PS1   = IP^6;
+sbit PT2   = IP^5;
+sbit PS0   = IP^4;
+sbit PT1   = IP^3;
+sbit PX1   = IP^2;
+sbit PT0   = IP^1;
+sbit PX0   = IP^0;
+
+/*  P1  */
+sbit INT5  = P1^7;
+sbit INT4  = P1^6;
+sbit INT3  = P1^5;
+sbit INT2  = P1^4;
+sbit TXD1  = P1^3;
+sbit RXD1  = P1^2;
+sbit T2EX  = P1^1;
+sbit T2    = P1^0;
+
+/*  P3  */
+sbit RD    = P3^7;
+sbit WR    = P3^6;
+sbit T1    = P3^5;
+sbit T0    = P3^4;
+sbit INT1  = P3^3;
+sbit INT0  = P3^2;
+sbit TXD0  = P3^1;
+sbit RXD0  = P3^0;
+
+/*  SCON0  */
+sbit SM0   = SCON0^7; /* alternative SM0_FE_0 */
+sbit SM1   = SCON0^6; /* alternative SM1_0 */
+sbit SM2   = SCON0^5; /* alternative SM2_0 */
+sbit REN   = SCON0^4; /* alternative REN_0 */
+sbit TB8   = SCON0^3; /* alternative TB8_0 */
+sbit RB8   = SCON0^2; /* alternative RB8_0 */
+sbit TI    = SCON0^1; /* alternative TI_0  */
+sbit RI    = SCON0^0; /* alternative RI_0  */
+
+/*  SCON1  */
+sbit SM01  = SCON1^7; /* alternative SM0_FE_1  */
+sbit SM11  = SCON1^6; /* alternative SM1_1  */
+sbit SM21  = SCON1^5; /* alternative SM2_1  */
+sbit REN1  = SCON1^4; /* alternative REN_1  */
+sbit TB81  = SCON1^3; /* alternative TB8_1  */
+sbit RB81  = SCON1^2; /* alternative RB8_1  */
+sbit TI1   = SCON1^1; /* alternative TI_1   */
+sbit RI1   = SCON1^0; /* alternative RI_1   */
+
+/*  T2CON  */
+sbit TF2    = T2CON^7;
+sbit EXF2   = T2CON^6;
+sbit RCLK   = T2CON^5;
+sbit TCLK   = T2CON^4;
+sbit EXEN2  = T2CON^3;
+sbit TR2    = T2CON^2;
+sbit C_T2   = T2CON^1;
+sbit CP_RL2 = T2CON^0;
+
+/*  WDCON  */
+sbit SMOD_1 = WDCON^7;
+sbit POR    = WDCON^6;
+sbit EPFI   = WDCON^5;
+sbit PFI    = WDCON^4;
+sbit WDIF   = WDCON^3;
+sbit WTRF   = WDCON^2;
+sbit EWT    = WDCON^1;
+sbit RWT    = WDCON^0;
+
+/*  EIE  */
+sbit EWDI  = EIE^4;
+sbit EX5   = EIE^3;
+sbit EX4   = EIE^2;
+sbit EX3   = EIE^1;
+sbit EX2   = EIE^0;
+
+/*  EIP  */
+sbit PWDI  = EIP^4;
+sbit PX5   = EIP^3;
+sbit PX4   = EIP^2;
+sbit PX3   = EIP^1;
+sbit PX2   = EIP^0;
+
+#endif
Index: c51/YichipTool.bat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/YichipTool.bat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/YichipTool.bat	(working copy)
@@ -0,0 +1,63 @@
+@echo off
+:start
+set/p cmd=Please enter cmd, c/C for compiling, and d/D for downloading:
+if /I "%cmd%" equ "a" (goto compile_all)
+if /I "%cmd%" equ "A" (goto compile_all)
+if /I "%cmd%" equ "c" (goto compile)
+if /I "%cmd%" equ "C" (goto compile)
+if /I "%cmd%" equ "d" (goto download)
+if /I "%cmd%" equ "D" (goto download)
+if "%cmd%" equ "" (goto error)  else (goto error)
+
+:compile_all
+cd ..\btms
+call do eep
+cd ..\c51
+
+:compile
+make clean
+make
+
+util\hex2mif.exe < output\fw.hex ram > output\fwram.rom
+copy .\patch\patch.dat + .\patch\user.dat + .\patch\rf.dat .\patch\sch.rom 
+util\transform_name2addr.exe .\patch\sch.rom .\output\sched.rom .\patch\memmap.format
+copy .\patch\ramcode.rom .\output\
+copy .\patch\geneep.exe .\output\
+@rem copy .\patch\*.obj .\output\*.obj
+
+copy .\util\eeprom2fulleeprom.exe .\eeprom2fulleeprom.exe
+copy .\util\crc16.exe .\crc16.exe
+
+cd output
+geneep geneep ramcode.rom fwram.rom sched.rom
+del *.lst
+del *.obj
+
+copy eeprom.dat ..\eeprom.dat
+cd ..
+eeprom2fulleeprom.exe eeprom.dat 128>compare2.dat
+crc16.exe compare2.dat 2 >.\output\eeprom.dat
+del eeprom.dat
+del compare2.dat
+del eeprom2fulleeprom.exe
+del crc16.exe
+
+:end
+set cmd=0
+echo/
+goto start
+
+:error
+echo Cmd error, enter again
+goto end
+
+:download
+e p
+e pu
+e ep
+e k
+e ku
+e a
+e au
+goto end
+
Index: c51/adc.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/adc.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/adc.h	(working copy)
@@ -0,0 +1,49 @@
+/*
+ * Copyright 2016, yichip Semiconductor(shenzhen office)
+ * All Rights Reserved.
+ *
+ * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Yichip Semiconductor;
+ * the contents of this file may not be disclosed to third parties, copied
+ * or duplicated in any form, in whole or in part, without the prior
+ * written permission of Yichip Semiconductor.
+ */
+ 
+ /** @file
+ *
+ * IIC support for application
+ */
+#ifndef __DEV_ADC_H_
+#define __DEV_ADC_H_
+#include "type.h"
+#include "btreg.h"
+#include "hwreg.h"
+
+/**
+ * This function Get current ADC Value.
+ * 
+ * @param none.
+ * 
+ * @return adc value.
+*/
+u16_t ADC_GetCurrentValue();
+
+/**
+ * This function Get 3v base ADC Value.
+ * 
+ * @param none.
+ * 
+ * @return adc value.
+*/
+u16_t ADC_Get3vBase();
+
+/**
+ * This function Get 0v base ADC Value.
+ * 
+ * @param none.
+ * 
+ * @return adc value.
+*/
+u16_t ADC_Get0vBase();
+
+#endif/* YC_IIC_H */
+
Index: c51/adc.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/adc.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/adc.c	(working copy)
@@ -0,0 +1,17 @@
+#include "adc.h"
+#include "global_variable.h"
+
+u16_t ADC_GetCurrentValue()
+{
+	return m_adcCurrentValue;
+}
+
+u16_t ADC_Get3vBase()
+{
+	return m_adc3vValue;
+}
+
+u16_t ADC_Get0vBase()
+{
+	return m_adc0vBase;
+}
Index: c51/btreg.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/btreg.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/btreg.h	(working copy)
@@ -0,0 +1,1516 @@
+#ifndef _BT_REG_H_
+#define _BT_REG_H_
+#define	mem_le_adv_transmit                     	0x0000
+#define	mem_le_adv_waitcnt                      	0x0001
+#define	mem_le_adv_rcv                          	0x0002
+#define	mem_le_req_rcv                          	0x0003
+#define	mem_le_scanrsp_rcv                      	0x0004
+#define	mem_le_conn_rcv                         	0x0005
+#define	mem_inquiryscan_waitcnt                 	0x0006
+#define	mem_inquiryscan_rcvcnt                  	0x0007
+#define	mem_pagescan_waitcnt                    	0x0008
+#define	mem_pagescan_rcvcnt                     	0x0009
+#define	mem_pagescan_rcvfhscnt                  	0x000a
+#define	mem_slave_rcvcnt                        	0x000b
+#define	mem_page_transmit                       	0x000c
+#define	mem_page_rcv                            	0x000d
+#define	mem_page_rcv_fhs                        	0x000e
+#define	mem_master_rcvcnt                       	0x000f
+#define	mem_fhs_wait_counter                    	0x0010
+#define	mem_newconnto_counter                   	0x0011
+#define	mem_inquiry_transmit                    	0x0012
+#define	mem_inquiry_rcv                         	0x0013
+#define	mem_fw_ver                              	0x0014
+#define	mem_current_context                     	0x0015
+#define	mem_le_ch_mapped                        	0x0016
+#define	mem_last_freq                           	0x0017
+#define	mem_rssi                                	0x0018
+#define	mem_rx_type                             	0x0019
+#define	mem_rx_hec_err                          	0x001a
+#define	mem_rx_crc_err                          	0x001c
+#define	mem_context_ptr                         	0x001e
+#define	mem_display                             	0x0020
+#define	mem_bcd                                 	0x0028
+#define	mem_state                               	0x0030
+#define	mem_mode                                	0x0031
+#define	mem_tsniff                              	0x0032
+#define	mem_sniff_anchor                        	0x0034
+#define	mem_clk_offset                          	0x0038
+#define	mem_rx_window                           	0x003e
+#define	mem_plap                                	0x0040
+#define	mem_puap                                	0x0043
+#define	mem_pnap                                	0x0044
+#define	mem_conn_handle                         	0x0046
+#define	mem_arq                                 	0x0047
+#define	mem_lmp_to_send                         	0x0048
+#define	mem_lmi_opcode                          	0x0049
+#define	mem_lmo_reason                          	0x004a
+#define	mem_op                                  	0x004b
+#define	mem_state_map                           	0x004c
+#define	mem_supervision_timer                   	0x004d
+#define	mem_supervision_to                      	0x0051
+#define	mem_name_offset                         	0x0053
+#define	mem_key_size                            	0x0054
+#define	mem_conn_sm                             	0x0055
+#define	mem_aco                                 	0x0056
+#define	mem_kc                                  	0x0062
+#define	mem_conn_timer                          	0x0072
+#define	mem_sniff_attempt                       	0x0073
+#define	mem_sniff_timeout                       	0x0074
+#define	mem_dsniff                              	0x0075
+#define	mem_amaddr                              	0x0077
+#define	mem_lmo_opcode1                         	0x0078
+#define	mem_lmi_opcode1                         	0x0079
+#define	mem_lmo_reason1                         	0x007a
+#define	mem_lmo_tid1                            	0x007b
+#define	mem_lmo_opcode2                         	0x007c
+#define	mem_lmi_opcode2                         	0x007d
+#define	mem_lmo_reason2                         	0x007e
+#define	mem_lmo_tid2                            	0x007f
+#define	mem_hci_version                         	0x0080
+#define	mem_acl_pktlen                          	0x0083
+#define	mem_sco_pktlen                          	0x0085
+#define	mem_acl_pktcnt                          	0x0086
+#define	mem_sco_pktcnt                          	0x0088
+#define	mem_current_sniff_attempt               	0x008a
+#define	mem_current_sniff_timeout               	0x008b
+#define	mem_nfreq_index_inq                     	0x008c
+#define	mem_nfreq_index_page                    	0x008d
+#define	mem_ninqy_index                         	0x008e
+#define	mem_fhs_misc                            	0x008f
+#define	mem_subsniff_instant                    	0x0090
+#define	mem_subsniff_rate                       	0x0094
+#define	mem_subsniff_tcmax                      	0x0095
+#define	mem_subsniff_tsniff                     	0x0097
+#define	mem_lpm_adjust                          	0x0098
+#define	mem_sync_clke                           	0x0099
+#define	mem_lpm_current_mult                    	0x009f
+#define	mem_gpio_wakeup_low                     	0x00a0
+#define	mem_gpio_wakeup_high                    	0x00a4
+#define	mem_air_mode                            	0x00a8
+#define	mem_sco_asso_handle                     	0x00a9
+#define	mem_sco_handle                          	0x00aa
+#define	mem_esco_desco                          	0x00ac
+#define	mem_esco_type                           	0x00ad
+#define	mem_neogotiation_state                  	0x00ae
+#define	mem_saved_amaddr                        	0x00af
+#define	mem_esco_arq                            	0x00b0
+#define	mem_esco_saved_arq                      	0x00b1
+#define	mem_sco_obuf                            	0x00b2
+#define	mem_sco_ibuf                            	0x00d0
+#define	mem_sco_poll                            	0x00ee
+#define	mem_npage_index                         	0x00ef
+#define	mem_page_mode                           	0x00f0
+#define	mem_page_clk                            	0x00f1
+#define	mem_tst_pktcnt_sync                     	0x00f5
+#define	mem_tst_pktcnt_hec                      	0x00f7
+#define	mem_tst_pktcnt_crc                      	0x00f9
+#define	mem_tst_pktcnt_dmh                      	0x00fb
+#define	mem_tmp_buffer_head                     	0x00fd
+#define	mem_tmp_buffer                          	0x0100
+#define	mem_tester_emulate                      	0x0150
+#define	mem_temp_payload                        	0x0151
+#define	test_mode_scenario                      	0x0151
+#define	test_mode_hopping_mode                  	0x0152
+#define	test_mode_tx_freq                       	0x0153
+#define	test_mode_rx_freq                       	0x0154
+#define	test_mode_power_mode                    	0x0155
+#define	test_mode_poll_period                   	0x0156
+#define	test_mode_packet_type                   	0x0157
+#define	test_mode_data_length                   	0x0158
+#define	mem_test_mode_old_debug_config          	0x015a
+#define	mem_tester_cnt                          	0x015b
+#define	mem_temp_am_addr                        	0x015c
+#define	mem_temp_arq                            	0x015d
+#define	mem_len                                 	0x015e
+#define	mem_clkn_bt                             	0x0160
+#define	mem_clke_bt                             	0x0164
+#define	mem_dpll_clkn                           	0x0168
+#define	mem_connection_options                  	0x016c
+#define	mem_nameres_cnt                         	0x016d
+#define	mem_txptr                               	0x016e
+#define	mem_slot_offset                         	0x0170
+#define	extm_fhs_misc                           	0x0172
+#define	extm_newconn_am_addr                    	0x0173
+#define	extm_class                              	0x0174
+#define	extm_lap                                	0x0177
+#define	extm_uap                                	0x017a
+#define	extm_nap                                	0x017b
+#define	mem_debug_config                        	0x017e
+#define	mem_lch_code                            	0x017f
+#define	mem_fhs_am_addr                         	0x0180
+#define	mem_dpll_error                          	0x0181
+#define	mem_bdaddr_list_buff                    	0x0183
+#define	mem_select_list_item                    	0x01a7
+#define	mem_temp_reconn_record                  	0x01a8
+#define	mem_record_bt_mode                      	0x01a8
+#define	mem_temp_lap                            	0x01a9
+#define	mem_list_item_ptr                       	0x01af
+#define	mem_eir                                 	0x01b1
+#define	mem_ucode_status                        	0x0215
+#define	mem_otp_ucode_flag                      	0x0216
+#define	mem_spid_tbuf                           	0x0218
+#define	mem_iicd_tbuf                           	0x0219
+#define	mem_addr_hi                             	0x0219
+#define	mem_addr_mi                             	0x021a
+#define	mem_addr_lo                             	0x021b
+#define	mem_iicd_addr                           	0x021c
+#define	mem_spid_rbuf                           	0x021d
+#define	mem_ucode_buf                           	0x0221
+#define	mem_ucode_len                           	0x0223
+#define	mem_sched_addr                          	0x0225
+#define	mem_ucode_ptr                           	0x0227
+#define	mem_ucode_keybuf                        	0x0229
+#define	mem_check_plap_temp                     	0x0239
+#define	mem_sensor_id                           	0x024b
+#define	mem_reconnect_flag                      	0x024c
+#define	mem_switch_fail_master_count            	0x024d
+#define	mem_app_evt_timer_count                 	0x024e
+#define	mem_h5rx_ackcnt                         	0x024f
+#define	mem_check_err_acl_cont                  	0x0250
+#define	mem_rp_packets                          	0x0251
+#define	mem_packet_type                         	0x0252
+#define	mem_hci_sniff_conn_handle               	0x0254
+#define	mem_hci_sniff_max_interval              	0x0256
+#define	mem_hci_sniff_min_interval              	0x0258
+#define	mem_hci_sniff_attempt                   	0x025a
+#define	mem_hci_sniff_timeout                   	0x025c
+#define	mem_voice_setting                       	0x025e
+#define	mem_retransmission_effort               	0x0260
+#define	mem_sco_ptype                           	0x0261
+#define	mem_extm_uap_restore                    	0x0263
+#define	mem_h5rx_rptr                           	0x0266
+#define	mem_h5rx_ack                            	0x0268
+#define	mem_h5tx_ack                            	0x0269
+#define	mem_h5tx_rptr                           	0x026a
+#define	mem_h5tx_wptr                           	0x026c
+#define	mem_h5tx_free                           	0x026e
+#define	mem_h5rx_tmp                            	0x0270
+#define	mem_h5tx_seq                            	0x0271
+#define	mem_hci_acl_queue_wptr                  	0x0272
+#define	mem_hci_acl_queue_rptr                  	0x0274
+#define	mem_hci_acl_queue_end                   	0x0276
+#define	mem_hci_acl_queue_wcnt                  	0x0278
+#define	mem_hci_acl_cnt                         	0x0279
+#define	mem_hci_acl_tx_trigger_wptr             	0x027a
+#define	mem_ucode_id_local                      	0x027c
+#define	mem_ucode_id_remote                     	0x027d
+#define	mem_check_sum                           	0x027e
+#define	mem_ucode_temp                          	0x027f
+#define	mem_ucode_temp1                         	0x0280
+#define	mem_lock_in_enc                         	0x0281
+#define	mem_hci_disconn_reason                  	0x0282
+#define	mem_hci_curr_len                        	0x0283
+#define	mem_hci_curr_target                     	0x0284
+#define	mem_l2cap_mem_start                     	0x0286
+#define	mem_l2cap_rxbuff1_len                   	0x0286
+#define	mem_l2cap_rxbuff2_len                   	0x0288
+#define	mem_l2cap_rxbuff_new                    	0x028a
+#define	mem_l2cap_rxbuff_inuse                  	0x028c
+#define	mem_l2cap_payload_ptr                   	0x028d
+#define	mem_l2cap_rx_pkt_length                 	0x028f
+#define	mem_l2cap_rx_cid                        	0x0291
+#define	mem_l2cap_rx_done                       	0x0293
+#define	mem_l2cap_signal_tx_buff_ptr            	0x0294
+#define	mem_l2cap_signal_tx_payload_ptr         	0x0296
+#define	mem_l2cap_signal_tx_length              	0x0298
+#define	mem_sdp_tx_buff_ptr                     	0x029a
+#define	mem_sdp_tx_payload_ptr                  	0x029c
+#define	mem_sdp_tx_pkt_length                   	0x029e
+#define	mem_rfcomm_tx_buff_ptr                  	0x02a0
+#define	mem_rfcomm_tx_payload_ptr               	0x02a2
+#define	mem_rfcomm_tx_pkt_length                	0x02a4
+#define	memL2CAP_T1                             	0x02a6
+#define	mem_CONTROL_tasks                       	0x02a8
+#define	mem_send_config_req                     	0x02a9
+#define	mem_config_identifier                   	0x02aa
+#define	mem_config_req_dest_CID                 	0x02ab
+#define	mem_rfcomm_malloc_fail_flag             	0x02ad
+#define	mem_message_to_uppersm                  	0x02ae
+#define	mem_upper_sm_remote_page                	0x02af
+#define	mem_upper_sm_reconn                     	0x02b0
+#define	mem_upper_sm_ss                         	0x02b1
+#define	mem_tx_malloc_log                       	0x02b2
+#define	mem_l2cap_mem_end                       	0x02f2
+#define	mem_scid                                	0x02f2
+#define	mem_cmd_length                          	0x02f4
+#define	mem_tt2                                 	0x02f6
+#define	mem_tt3                                 	0x02f8
+#define	mem_id                                  	0x02fa
+#define	mem_psm                                 	0x02fc
+#define	mem_l2cap_sdpres_delay_time             	0x02fe
+#define	mem_le_rxbuf                            	0x0302
+#define	mem_le_mic                              	0x033a
+#define	mem_le_peer_mic                         	0x033e
+#define	mem_le_peer_ltk                         	0x0342
+#define	mem_le_mrand                            	0x0352
+#define	mem_le_state                            	0x0362
+#define	mem_le_mode                             	0x0363
+#define	mem_le_tsniff                           	0x0364
+#define	mem_le_anchor                           	0x0366
+#define	mem_le_clk_offset                       	0x036a
+#define	mem_le_receive_window                   	0x0370
+#define	mem_le_plap                             	0x0372
+#define	mem_le_conn_handle                      	0x0378
+#define	mem_le_arq                              	0x0379
+#define	mem_le_ch                               	0x037a
+#define	mem_le_hop                              	0x037b
+#define	mem_le_event_count                      	0x037c
+#define	mem_le_supervision_timer                	0x037e
+#define	mem_le_instant                          	0x0382
+#define	mem_le_channels                         	0x0384
+#define	mem_le_op                               	0x0385
+#define	mem_le_access                           	0x0386
+#define	mem_le_crcinit                          	0x038a
+#define	mem_le_window_size                      	0x038d
+#define	mem_le_slave_latency                    	0x038e
+#define	mem_le_superto                          	0x0390
+#define	mem_le_channel_map                      	0x0392
+#define	mem_le_no_using                         	0x0397
+#define	mem_le_peer_sca                         	0x0399
+#define	mem_le_att_opcode                       	0x039a
+#define	mem_le_att_handle                       	0x039b
+#define	mem_le_err_code                         	0x039d
+#define	mem_le_l2cap_pdu_length                 	0x039e
+#define	mem_le_sk                               	0x03a0
+#define	mem_le_testtype                         	0x03b0
+#define	mem_le_test_sync                        	0x03b1
+#define	mem_le_test_pcnt                        	0x03b3
+#define	mem_le_rxon_ts                          	0x03b5
+#define	mem_le_rx_ll_opcode                     	0x03bb
+#define	mem_le_notify_attr_start                	0x03bc
+#define	mem_le_notify_len                       	0x03be
+#define	mem_cmd_le_create_conn                  	0x03bf
+#define	mem_24g_id                              	0x03c0
+#define	mem_le_cur_attlist_start_ptr            	0x03c1
+#define	mem_le_cur_handle_start                 	0x03c3
+#define	mem_le_cur_handle_end                   	0x03c5
+#define	mem_le_cur_uuid_lenth                   	0x03c7
+#define	mem_le_cur_uuid                         	0x03c8
+#define	mem_le_search_len                       	0x03d8
+#define	mem_le_search_res                       	0x03d9
+#define	mem_le_continue_type                    	0x03da
+#define	mem_le_public_length                    	0x03db
+#define	mem_lmo_header_length                   	0x03dc
+#define	mem_lmo_header_opcode                   	0x03dd
+#define	mem_lmo_payload                         	0x03de
+#define	mem_lmi_accepted_opcode                 	0x03ef
+#define	mem_disconn_reason_send                 	0x03f0
+#define	mem_tx_fixed_freq                       	0x03f1
+#define	mem_rx_fixed_freq                       	0x03f2
+#define	mem_ext_features_page                   	0x03f3
+#define	mem_lmpext_ssp_enable                   	0x03f4
+#define	mem_remote_sppcap                       	0x03f6
+#define	mem_lmp_conn_state                      	0x03f7
+#define	mem_soft_timer                          	0x03f8
+#define	mem_pincode_state                       	0x03fa
+#define	mem_sres_tid                            	0x03fb
+#define	mem_accptsco_tid                        	0x03fc
+#define	mem_auth_enable                         	0x03fd
+#define	mem_wait_encryption                     	0x03fe
+#define	mem_sniff_payload                       	0x03ff
+#define	mem_aurand_send_delay_time              	0x040f
+#define	mem_module_temp_len                     	0x0413
+#define	mem_uart_cmd                            	0x0415
+#define	mem_uart_opcode                         	0x0416
+#define	mem_uart_len                            	0x0417
+#define	mem_module_temp_nl_discard_packet       	0x0418
+#define	mem_module_le_md_flag                   	0x0419
+#define	mem_init_cnt                            	0x041a
+#define	memRemoteRPNBitRate                     	0x041c
+#define	memRemotePRNDataBits                    	0x041d
+#define	memRemotePRNStopBit                     	0x041e
+#define	memRemotePRNParity                      	0x041f
+#define	memRemotePRNFlowControl                 	0x0420
+#define	memRemotePRNXon                         	0x0421
+#define	memRemotePRNXoff                        	0x0422
+#define	mem_mod2div_temp                        	0x0423
+#define	mem_contw_temp                          	0x0426
+#define	mem_attrib_list                         	0x0428
+#define	mem_current_adss                        	0x042a
+#define	mem_current_channel                     	0x042b
+#define	mem_current_frame_type                  	0x042c
+#define	mem_current_fcs                         	0x042d
+#define	mem_current_length                      	0x042e
+#define	mem_rfcomm_uih_payload_ptr              	0x0430
+#define	mem_uih_cmd_type                        	0x0432
+#define	mem_uih_length                          	0x0433
+#define	mem_param_payload_ptr                   	0x0435
+#define	mem_ms_param                            	0x0437
+#define	mem_pn_credit_flow_type_info            	0x0438
+#define	mem_pn_priority                         	0x0439
+#define	mem_pn_acknowledg_timer                 	0x043a
+#define	mem_pn_max_retrans                      	0x043b
+#define	mem_rfcomm_send_adss                    	0x043c
+#define	mem_rfcomm_send_frame_type              	0x043d
+#define	mem_rfcomm_send_fcs                     	0x043e
+#define	mem_rfcomm_send_offset                  	0x043f
+#define	mem_sdp_mem_start                       	0x0440
+#define	mem_uuid_search_pat                     	0x0440
+#define	mem_sdp_continue_byte                   	0x0444
+#define	mem_sdp_pduid                           	0x0446
+#define	mem_sdp_transactionid                   	0x0447
+#define	mem_sdp_attribute_maxbyte               	0x0449
+#define	mem_sdp_record_maxcnt                   	0x044b
+#define	mem_sdp_error_code                      	0x044d
+#define	mem_sdp_record_handle                   	0x0455
+#define	mem_sdp_search_failed                   	0x0459
+#define	mem_sdp_LACAP_found                     	0x045a
+#define	mem_sdp_RFCOMM_found                    	0x045b
+#define	mem_handle_list                         	0x045c
+#define	mem_handle_humber                       	0x0474
+#define	mem_sdp_mem_end                         	0x0475
+#define	mem_rxbuf                               	0x0475
+#define	mem_random_number                       	0x0486
+#define	mem_round_key                           	0x0496
+#define	mem_kinit                               	0x04a6
+#define	mem_input_store                         	0x04b6
+#define	mem_x                                   	0x04c6
+#define	mem_y                                   	0x04d6
+#define	mem_y15                                 	0x04e5
+#define	mem_key_store                           	0x04e6
+#define	mem_key_store_end                       	0x04f7
+#define	memp_ar_key                             	0x04f8
+#define	memp_ar_input                           	0x04fa
+#define	mem_ar_hround                           	0x04fc
+#define	mem_ec_infinite                         	0x0506
+#define	mem_ec_loopc                            	0x0507
+#define	mem_aes_cmac_data_length                	0x0509
+#define	memdat                                  	0x050a
+#define	mem_ax                                  	0x050a
+#define	mem_ay                                  	0x0522
+#define	mem_az                                  	0x053a
+#define	mem_bx                                  	0x0552
+#define	mem_ax_256                              	0x056a
+#define	mem_by                                  	0x056a
+#define	mem_bz                                  	0x0582
+#define	mem_ay_256                              	0x058a
+#define	mem_cx                                  	0x059a
+#define	mem_az_256                              	0x05aa
+#define	mem_cy                                  	0x05b2
+#define	mem_cy5                                 	0x05c9
+#define	mem_bx_256                              	0x05ca
+#define	mem_cz                                  	0x05ca
+#define	mem_k                                   	0x05e2
+#define	mem_by_256                              	0x05ea
+#define	mem_align                               	0x05fa
+#define	mem_bz_256                              	0x060a
+#define	mem_tmp1                                	0x060a
+#define	memahbak                                	0x060a
+#define	mem_tmp5                                	0x0622
+#define	mem_cx_256                              	0x062a
+#define	memahsave                               	0x062a
+#define	mem_tmp2                                	0x063a
+#define	mem_cy_256                              	0x064a
+#define	memahsave_end                           	0x064a
+#define	mem_addr_padding                        	0x064a
+#define	mem_addr_value                          	0x064b
+#define	mem_tmp3                                	0x0652
+#define	mem_t1                                  	0x0652
+#define	mem_addr_value_end                      	0x0657
+#define	mem_addr_iocap_end                      	0x065a
+#define	mem_cy5_256                             	0x0669
+#define	mem_cz_256                              	0x066a
+#define	mem_tmp0                                	0x066a
+#define	mem_t0                                  	0x066a
+#define	mem_tmp0a                               	0x0672
+#define	mem_t2                                  	0x0682
+#define	mem_k_256                               	0x068a
+#define	mem_t3                                  	0x069a
+#define	mem_tmp1_256                            	0x06aa
+#define	mem_t7                                  	0x06b2
+#define	mem_tmp5_256                            	0x06ca
+#define	mem_tmp2_256                            	0x06ea
+#define	mem_tmp3_256                            	0x070a
+#define	mem_t1_256                              	0x070a
+#define	mem_tmp0_256                            	0x072a
+#define	mem_t0_256                              	0x072a
+#define	mem_t2_256                              	0x074a
+#define	mem_t3_256                              	0x076a
+#define	mem_t7_256                              	0x078a
+#define	mem_p                                   	0x07aa
+#define	mem_a                                   	0x07c2
+#define	mem_b                                   	0x07da
+#define	mem_gx                                  	0x07f2
+#define	mem_gy                                  	0x080a
+#define	memh0                                   	0x0822
+#define	mem_p_256                               	0x0842
+#define	mem_a_256                               	0x0862
+#define	mem_gx_256                              	0x0882
+#define	mem_gy_256                              	0x08a2
+#define	mem_le_slat                             	0x08c2
+#define	mem_sp_state_start                      	0x08d2
+#define	mem_sp_state                            	0x08d2
+#define	mem_master_sp_state                     	0x08d3
+#define	mem_sp_flag                             	0x08d4
+#define	mem_master_sp_flag                      	0x08d5
+#define	mem_sp_calc                             	0x08d6
+#define	mem_sp_dh_ready                         	0x08d7
+#define	mem_sp_localsm                          	0x08d8
+#define	mem_pairing_auth                        	0x08d9
+#define	mem_sp_flag_start                       	0x08da
+#define	mem_sp_local_key_send_count             	0x08da
+#define	mem_sp_remote_key_recv_count            	0x08db
+#define	mem_sp_remote_key_invalid               	0x08dc
+#define	mem_sp_dhkey_invalid                    	0x08dd
+#define	mem_gkey                                	0x08de
+#define	mem_le_pubkey_remote_x_256              	0x08e2
+#define	mem_sp_pubkey_remote                    	0x08ea
+#define	mem_sp_pubkey_remote_x                  	0x08ea
+#define	mem_sp_pubkey_remote_x_end              	0x0902
+#define	mem_le_pubkey_remote_y_256              	0x0902
+#define	mem_sp_pubkey_remote_y                  	0x090a
+#define	mem_le_dhkey_256                        	0x0922
+#define	mem_sp_dhkey                            	0x092a
+#define	mem_sp_dhkey_end                        	0x0942
+#define	mem_sp_random_local                     	0x0942
+#define	mem_sp_random_local_end                 	0x0952
+#define	mem_sp_random_remote                    	0x0952
+#define	mem_sp_random_remote_end                	0x0962
+#define	memresult                               	0x0962
+#define	mem_sp_calc_result                      	0x0962
+#define	memh                                    	0x0962
+#define	memg                                    	0x0966
+#define	memf                                    	0x096a
+#define	meme                                    	0x096e
+#define	mem_sp_calc_result_high                 	0x0972
+#define	memd                                    	0x0972
+#define	memc                                    	0x0976
+#define	memb                                    	0x097a
+#define	mema                                    	0x097e
+#define	mem_sp_check_result                     	0x0982
+#define	mem_sp_confirm_remote                   	0x0992
+#define	mem_sp_prarm_stack                      	0x09a2
+#define	mem_UI_data_txbuff_length               	0x09b2
+#define	mem_ipc_skip_continue_proc              	0x09b4
+#define	mem_ui_timer_temp                       	0x09b5
+#define	mem_ipc_rega_temp                       	0x09b5
+#define	mem_hold_contr                          	0x09b9
+#define	mem_hold_contw                          	0x09bb
+#define	mem_fifo_temp                           	0x09bd
+#define	mem_pdatatemp                           	0x09be
+#define	mem_temp                                	0x09c6
+#define	mem_timeup                              	0x09ce
+#define	mem_rega                                	0x09d2
+#define	mem_regb                                	0x09d6
+#define	mem_regc                                	0x09da
+#define	mem_contr                               	0x09dd
+#define	mem_contw                               	0x09df
+#define	mem_le_data_len_temp                    	0x09e1
+#define	mem_tx_fifo_map_temp                    	0x09e1
+#define	mem_rpn_dlci                            	0x09e1
+#define	mem_event_cmd_response_content          	0x09e1
+#define	mem_le_prand                            	0x09e1
+#define	mem_AES_CMAC_k                          	0x09e1
+#define	mem_regext_index                        	0x09e1
+#define	mem_temp_block0                         	0x09e1
+#define	mem_le_data_temp                        	0x09e2
+#define	mem_temp_block1                         	0x09e2
+#define	mem_le_aes_128                          	0x09f1
+#define	mem_regext                              	0x09f1
+#define	mem_AES_CMAC_k1                         	0x09f1
+#define	mem_temp_block2                         	0x09f1
+#define	mem_AES_CMAC_k2                         	0x0a01
+#define	mem_temp_block3                         	0x0a01
+#define	mem_AES_CMAC_temp                       	0x0a11
+#define	mem_temp_block4                         	0x0a11
+#define	mem_AES_CMAC_M_last                     	0x0a21
+#define	mem_temp_block5                         	0x0a21
+#define	mem_le_mackey                           	0x0a31
+#define	mem_temp_block6                         	0x0a31
+#define	mem_temp_prepare_write_request          	0x0a41
+#define	mem_kb_map2_temp_start                  	0x0b09
+#define	mem_kb_map2_vk                          	0x0b09
+#define	mem_kb_current_vk                       	0x0b0c
+#define	mem_kb_vk_offset                        	0x0b0f
+#define	mem_kb_vk_processed_cnt                 	0x0b10
+#define	mem_kb_map2_current_cell_ptr            	0x0b11
+#define	mem_kb_device_button                    	0x0b13
+#define	mem_table_temp0                         	0x0b14
+#define	mem_table_temp1                         	0x0b1c
+#define	mem_kb_map2_temp_end                    	0x0b24
+#define	mem_check_count                         	0x0b24
+#define	mem_store_key_count                     	0x0b25
+#define	mem_kb_gpio_val                         	0x0b26
+#define	mem_c51_flag                            	0x0b2a
+#define	mem_c51_lmp_lock                        	0x0b2b
+#define	mem_lmp_bb_disconnect_reason            	0x0b2c
+#define	mem_patch00                             	0x4000
+#define	mem_patch01                             	0x4001
+#define	mem_patch02                             	0x4002
+#define	mem_patch03                             	0x4003
+#define	mem_patch04                             	0x4004
+#define	mem_patch05                             	0x4005
+#define	mem_patch06                             	0x4006
+#define	mem_patch07                             	0x4007
+#define	mem_patch08                             	0x4008
+#define	mem_patch09                             	0x4009
+#define	mem_patch0a                             	0x400a
+#define	mem_patch0b                             	0x400b
+#define	mem_patch0c                             	0x400c
+#define	mem_patch0d                             	0x400d
+#define	mem_patch0e                             	0x400e
+#define	mem_patch0f                             	0x400f
+#define	mem_patch10                             	0x4010
+#define	mem_patch11                             	0x4011
+#define	mem_patch12                             	0x4012
+#define	mem_patch13                             	0x4013
+#define	mem_patch14                             	0x4014
+#define	mem_patch15                             	0x4015
+#define	mem_patch16                             	0x4016
+#define	mem_patch17                             	0x4017
+#define	mem_patch18                             	0x4018
+#define	mem_patch19                             	0x4019
+#define	mem_patch1a                             	0x401a
+#define	mem_patch1b                             	0x401b
+#define	mem_patch1c                             	0x401c
+#define	mem_patch1d                             	0x401d
+#define	mem_patch1e                             	0x401e
+#define	mem_patch1f                             	0x401f
+#define	mem_patch20                             	0x4020
+#define	mem_patch21                             	0x4021
+#define	mem_patch22                             	0x4022
+#define	mem_patch23                             	0x4023
+#define	mem_patch24                             	0x4024
+#define	mem_patch25                             	0x4025
+#define	mem_patch26                             	0x4026
+#define	mem_patch27                             	0x4027
+#define	mem_patch28                             	0x4028
+#define	mem_patch29                             	0x4029
+#define	mem_patch2a                             	0x402a
+#define	mem_patch2b                             	0x402b
+#define	mem_patch2c                             	0x402c
+#define	mem_patch2d                             	0x402d
+#define	mem_patch2e                             	0x402e
+#define	mem_patch2f                             	0x402f
+#define	mem_patch30                             	0x4030
+#define	mem_patch31                             	0x4031
+#define	mem_patch32                             	0x4032
+#define	mem_patch33                             	0x4033
+#define	mem_patch34                             	0x4034
+#define	mem_patch35                             	0x4035
+#define	mem_patch36                             	0x4036
+#define	mem_patch37                             	0x4037
+#define	mem_patch38                             	0x4038
+#define	mem_patch39                             	0x4039
+#define	mem_patch3a                             	0x403a
+#define	mem_patch3b                             	0x403b
+#define	mem_patch3c                             	0x403c
+#define	mem_patch3d                             	0x403d
+#define	mem_patch3e                             	0x403e
+#define	mem_patch3f                             	0x403f
+#define	mem_context                             	0x4040
+#define	mem_current_amaddr                      	0x4130
+#define	mem_lpm_mode                            	0x4131
+#define	mem_device_option                       	0x4132
+#define	mem_scan_mode                           	0x4133
+#define	mem_last_clkn                           	0x4134
+#define	mem_features                            	0x4138
+#define	mem_lap                                 	0x4140
+#define	mem_uap                                 	0x4143
+#define	mem_nap                                 	0x4144
+#define	mem_npage                               	0x4146
+#define	mem_glap                                	0x4147
+#define	mem_class                               	0x414a
+#define	mem_iscan_window                        	0x414d
+#define	mem_iscan_interval                      	0x414f
+#define	mem_pscan_window                        	0x4151
+#define	mem_pscan_interval                      	0x4153
+#define	mem_page_interval                       	0x4155
+#define	mem_page_window                         	0x4157
+#define	mem_page_to                             	0x4159
+#define	mem_inq_window                          	0x415b
+#define	mem_fcomp_mul                           	0x415d
+#define	mem_fcomp_div                           	0x415e
+#define	mem_rx_window_init                      	0x415f
+#define	mem_rx_window_sniff                     	0x4161
+#define	mem_rf_init_ptr                         	0x4163
+#define	mem_last_type                           	0x4165
+#define	mem_last_type_esco                      	0x4166
+#define	mem_last_type_saved                     	0x4167
+#define	mem_retransmission_cnt                  	0x4168
+#define	mem_next_btclk                          	0x416a
+#define	mem_rf_rccal                            	0x416e
+#define	mem_handle_num                          	0x416f
+#define	mem_max_slot                            	0x4170
+#define	mem_eir_enable                          	0x4171
+#define	mem_afh_instant                         	0x4172
+#define	mem_afh_error_total                     	0x4176
+#define	mem_afh_cfg                             	0x4178
+#define	mem_afh_new_mod                         	0x4179
+#define	mem_afh_map_lo                          	0x417a
+#define	mem_afh_map_hi                          	0x417f
+#define	mem_afh_used                            	0x4184
+#define	mem_afh_index                           	0x4185
+#define	mem_afh_map_new                         	0x4187
+#define	mem_afh_map                             	0x4192
+#define	mem_afh_timer                           	0x41e2
+#define	mem_afh_classify_channel_map            	0x41e6
+#define	mem_chip_functions                      	0x41f0
+#define	mem_lpm_wake_lock                       	0x41f2
+#define	mem_lpm_interval                        	0x41f4
+#define	mem_lpm_overhead                        	0x41f6
+#define	mem_lpm_hibernate_switch                	0x41f7
+#define	mem_esco_addr                           	0x41f8
+#define	mem_sniff_unint_lost                    	0x41f9
+#define	mem_ptt                                 	0x41fa
+#define	mem_sleep_counter                       	0x41fb
+#define	mem_sleep_counter_all                   	0x41ff
+#define	mem_sleep_clkn                          	0x4203
+#define	mem_sniff_rcv                           	0x4209
+#define	mem_sniff_lost                          	0x420c
+#define	mem_clks_per_lpo                        	0x420f
+#define	mem_lpm_mult                            	0x4212
+#define	mem_lpm_mult_timeout                    	0x4213
+#define	mem_lpm_mult_cnt                        	0x4214
+#define	mem_lpm_config                          	0x4215
+#define	mem_lpm_xtalcnt                         	0x4218
+#define	mem_lpm_buckcnt                         	0x4219
+#define	mem_lpm_ldocnt                          	0x421a
+#define	mem_lpm_isogate                         	0x421b
+#define	mem_lpm_isogate_final                   	0x421c
+#define	mem_saved_gpio                          	0x421d
+#define	mem_saved_gsel                          	0x422d
+#define	mem_saved_mark                          	0x4230
+#define	mem_saved_spidctrl                      	0x4238
+#define	mem_patch_ptr                           	0x4239
+#define	mem_patch_len                           	0x423b
+#define	mem_timers                              	0x423d
+#define	mem_link_key_exists                     	0x425d
+#define	mem_link_key_eeprom_head                	0x425e
+#define	mem_link_key                            	0x4261
+#define	mem_hci_cmd                             	0x4271
+#define	mem_hci_conn_handle                     	0x4272
+#define	mem_hci_plap                            	0x4273
+#define	mem_hci_puap                            	0x4276
+#define	mem_hci_pnap                            	0x4277
+#define	mem_uartd_rxitems_got_data              	0x4279
+#define	mem_uartd_rxitems_threshold             	0x427a
+#define	mem_uartd_rx_timeout                    	0x427b
+#define	mem_tx_lch                              	0x427d
+#define	mem_tx_len                              	0x427e
+#define	mem_tx_power                            	0x4280
+#define	mem_context_number                      	0x4281
+#define	mem_rf_init_data                        	0x4282
+#define	mem_app_handshake_flag                  	0x4283
+#define	mem_sniff_param_interval                	0x4284
+#define	mem_sniff_param_attempt                 	0x4286
+#define	mem_sniff_param_timeout                 	0x4288
+#define	mem_cb_check_wakelock                   	0x428a
+#define	mem_cb_before_hibernate                 	0x428c
+#define	mem_cb_before_lpm                       	0x428e
+#define	mem_cb_le_process                       	0x4290
+#define	mem_cb_bt_process                       	0x4292
+#define	mem_cb_idle_process                     	0x4294
+#define	mem_cb_bb_event_process                 	0x4296
+#define	mem_cb_discovry_timeout                 	0x4298
+#define	mem_cb_att_write                        	0x429a
+#define	mem_cb_update_notify_value              	0x429c
+#define	mem_cb_update_notify_continue           	0x429e
+#define	mem_cb_event_timer                      	0x42a0
+#define	mem_cb_le_set_mult                      	0x42a2
+#define	mem_cb_bt_set_mult                      	0x42a4
+#define	mem_soft_version_num                    	0x42a6
+#define	mem_eeprom_base                         	0x42a8
+#define	mem_unsniff2sniff_timer_count           	0x42aa
+#define	mem_wake_up_delay_timer                 	0x42ab
+#define	mem_app_connection_options              	0x42ac
+#define	mem_app_disconn_reason                  	0x42ad
+#define	mem_app_disconn_reason_flag             	0x42af
+#define	mem_lpm_delay_after_sniff               	0x42b1
+#define	mem_xrecord_mode                        	0x42b5
+#define	mem_eeprom_block_size                   	0x42b6
+#define	mem_wakup_from_power_flag               	0x42b8
+#define	mem_spi_init_clk                        	0x42b9
+#define	mem_spi_init_delay_time                 	0x42ba
+#define	mem_spi_ncs_gpio                        	0x42bb
+#define	mem_nv_data_ptr                         	0x42bc
+#define	mem_nv_data_number                      	0x42be
+#define	mem_0_5_adc_io_data                     	0x42bf
+#define	mem_1v_adc_hvin_data                    	0x42c1
+#define	mem_2v_adc_vinlpm_data                  	0x42c3
+#define	mem_1v_adc_io_data                      	0x42c5
+#define	mem_5v_adc_hvin_data                    	0x42c7
+#define	mem_3v_adc_vinlpm_data                  	0x42c9
+#define	mem_otp_adc_flag                        	0x42cb
+#define	mem_reference_voltage                   	0x42cd
+#define	mem_adc_config_flag                     	0x42cf
+#define	mem_adc_channel                         	0x42d0
+#define	mem_adc_current_value                   	0x42d1
+#define	mem_baud                                	0x42d3
+#define	mem_hci_lt_rx_state                     	0x42d5
+#define	mem_l2cap_xmem_start                    	0x42d6
+#define	mem_l2cap_tx_multi_offset               	0x42d6
+#define	mem_sdp_remote_cid                      	0x42d8
+#define	mem_rfcomm_remote_cid                   	0x42da
+#define	mem_hid_ctrl_remote_cid                 	0x42dc
+#define	mem_hid_int_remote_cid                  	0x42de
+#define	mem_sdp_state                           	0x42e0
+#define	mem_rfcomm_state                        	0x42e1
+#define	mem_hid_control_state                   	0x42e2
+#define	mem_hid_interrupt_state                 	0x42e3
+#define	mem_spp_state                           	0x42e4
+#define	mem_ML2CAP_comm_id                      	0x42e5
+#define	mem_used_map                            	0x42e6
+#define	mem_tx_fifo0                            	0x42e7
+#define	mem_tx_fifo0_map                        	0x42e7
+#define	mem_tx_fifo0_ptr                        	0x42e8
+#define	mem_tx_fifo1                            	0x42ea
+#define	mem_tx_fifo1_map                        	0x42ea
+#define	mem_tx_fifo1_ptr                        	0x42eb
+#define	mem_tx_fifo2                            	0x42ed
+#define	mem_tx_fifo2_map                        	0x42ed
+#define	mem_tx_fifo2_ptr                        	0x42ee
+#define	mem_tx_fifo3                            	0x42f0
+#define	mem_tx_fifo3_map                        	0x42f0
+#define	mem_tx_fifo3_ptr                        	0x42f1
+#define	mem_tx_fifo_end                         	0x42f3
+#define	mem_l2cap_lpm_txbuf                     	0x42f3
+#define	mem_l2cap_flow_ctrl_flag                	0x43f3
+#define	mem_l2cap_pending_item                  	0x43f4
+#define	mem_l2cap_xmem_end                      	0x43f5
+#define	mem_le_dsniff                           	0x43f5
+#define	mem_le_conn_interval                    	0x43f7
+#define	mem_le_scan_enable                      	0x43f9
+#define	mem_le_scan_interval                    	0x43fa
+#define	mem_le_scan_window                      	0x43fc
+#define	mem_le_adv_led                          	0x43fe
+#define	mem_le_adv_enable                       	0x43ff
+#define	mem_le_adv_data_len                     	0x4400
+#define	mem_le_adv_data                         	0x4401
+#define	mem_le_scan_data_len                    	0x4420
+#define	mem_le_scan_data                        	0x4421
+#define	mem_le_name_len                         	0x4440
+#define	mem_le_name                             	0x4441
+#define	mem_le_led_on_time                      	0x4455
+#define	mem_le_new_map                          	0x4456
+#define	mem_le_new_param                        	0x445b
+#define	mem_le_new_transmitwindowsize           	0x445b
+#define	mem_le_new_transmitwindowoffset         	0x445c
+#define	mem_le_new_conninterval                 	0x445e
+#define	mem_le_new_connslavelatency             	0x4460
+#define	mem_le_new_connsupervisiontimeout       	0x4462
+#define	mem_le_temp                             	0x4464
+#define	mem_le_txheader                         	0x4465
+#define	mem_le_txlen                            	0x4466
+#define	mem_le_txpayload                        	0x4467
+#define	mem_le_txcid                            	0x4469
+#define	mem_le_l2cap                            	0x446b
+#define	mem_le_l2cap_response                   	0x446c
+#define	mem_le_txbdy                            	0x446d
+#define	mem_le_pcnt_tx                          	0x448c
+#define	mem_le_pcnt_rx                          	0x4491
+#define	mem_le_last_mic                         	0x4496
+#define	mem_le_ivm                              	0x449a
+#define	mem_le_ivs                              	0x449e
+#define	mem_le_ltk                              	0x44a2
+#define	mem_ltk_exists                          	0x44b2
+#define	mem_le_rconfirm                         	0x44b3
+#define	mem_le_srand                            	0x44c3
+#define	mem_le_iat                              	0x44d3
+#define	mem_le_rat                              	0x44d4
+#define	mem_le_preq                             	0x44d5
+#define	mem_le_preq_iocap                       	0x44d6
+#define	mem_le_preq_oob                         	0x44d7
+#define	mem_le_preq_auth                        	0x44d8
+#define	mem_le_preq_max_keysize                 	0x44d9
+#define	mem_le_preq_init_key_distribution       	0x44da
+#define	mem_le_preq_resp_key_distribution       	0x44db
+#define	mem_le_pres                             	0x44dc
+#define	mem_le_pres_iocap                       	0x44dd
+#define	mem_le_pres_oob                         	0x44de
+#define	mem_le_pres_auth                        	0x44df
+#define	mem_le_pres_max_keysize                 	0x44e0
+#define	mem_le_pres_init_key_distribution       	0x44e1
+#define	mem_le_pres_resp_key_distribution       	0x44e2
+#define	mem_le_search_handle_start              	0x44e3
+#define	mem_le_search_handle_end                	0x44e5
+#define	mem_le_att_offset                       	0x44e7
+#define	mem_le_search_att_type_length           	0x44e7
+#define	mem_le_search_att_type                  	0x44e8
+#define	mem_le_notify_handle                    	0x44f8
+#define	mem_le_search_uuid_length               	0x44fa
+#define	mem_le_search_uuid                      	0x44fb
+#define	mem_le_handle_data_len                  	0x450b
+#define	mem_le_handle_data                      	0x450c
+#define	mem_le_adv_param                        	0x451c
+#define	mem_le_adv_interval_min                 	0x451c
+#define	mem_le_adv_interval_max                 	0x451e
+#define	mem_le_adv_type                         	0x4520
+#define	mem_le_adv_own_addr_type                	0x4521
+#define	mem_le_adv_direct_addr_type             	0x4522
+#define	mem_le_adv_direct_addr                  	0x4523
+#define	mem_le_adv_channel_map                  	0x4529
+#define	mem_le_adv_filter_policy                	0x452a
+#define	mem_le_conn_param                       	0x452b
+#define	mem_le_conn_peer_addr_type              	0x452b
+#define	mem_le_conn_peer_addr                   	0x452c
+#define	mem_le_conn_own_addr_type               	0x4532
+#define	mem_le_conn_interval_min                	0x4533
+#define	mem_le_conn_interval_max                	0x4535
+#define	mem_le_conn_latency                     	0x4537
+#define	mem_le_conn_superto                     	0x4539
+#define	mem_le_scan_params                      	0x453b
+#define	mem_le_scan_type                        	0x453b
+#define	mem_le_scan_own_addr_type               	0x453c
+#define	mem_le_scan_filter_policy               	0x453d
+#define	mem_le_lap                              	0x453e
+#define	mem_le_uap                              	0x4541
+#define	mem_le_nap                              	0x4542
+#define	mem_le_xtype_fifo                       	0x4544
+#define	mem_le_local_mtu                        	0x454c
+#define	mem_le_remote_mtu                       	0x454e
+#define	mem_le_ll_cur_opcode                    	0x4550
+#define	mem_le_skdm                             	0x4551
+#define	mem_le_skds                             	0x4559
+#define	mem_le_init_superto                     	0x4561
+#define	mem_le_secure_connect_enable            	0x4563
+#define	mem_le_secure_connect_flag              	0x4564
+#define	mem_le_sc_calc                          	0x4565
+#define	mem_le_secure_connect_state             	0x4566
+#define	mem_le_sc_confirm_gkey_flag             	0x4567
+#define	mem_le_sc_local_key_invalid             	0x4568
+#define	mem_le_continue_flag                    	0x4569
+#define	mem_le_pairing_state                    	0x456a
+#define	mem_le_enc_state                        	0x456b
+#define	mem_le_pairing_mode                     	0x456c
+#define	mem_le_tk                               	0x456d
+#define	mem_le_ediv                             	0x4571
+#define	mem_le_rand                             	0x4573
+#define	mem_le_irk                              	0x457b
+#define	mem_le_pairing_handle                   	0x458b
+#define	mem_le_interal_min                      	0x458d
+#define	mem_le_interal_max                      	0x458f
+#define	mem_le_latency                          	0x4591
+#define	mem_le_timeout                          	0x4593
+#define	mem_le_switch_send_data                 	0x4595
+#define	mem_le_transmit_window                  	0x4596
+#define	mem_le_buff_len                         	0x459a
+#define	mem_le_buff_len_all                     	0x459c
+#define	mem_le_buff_data_len_all                	0x459e
+#define	mem_prepare_write_len                   	0x45a0
+#define	mem_le_prepare_write_req_offset         	0x45a2
+#define	mem_prepare_handle                      	0x45a4
+#define	mem_prepare_write_offest                	0x45a6
+#define	mem_le_flag                             	0x45a8
+#define	mem_lmp_version                         	0x45a9
+#define	mem_lmp_subversion                      	0x45ac
+#define	mem_local_name_length                   	0x45ae
+#define	mem_local_name                          	0x45af
+#define	mem_local_name2                         	0x45b2
+#define	mem_local_name_end                      	0x45f2
+#define	mem_unsniff2sniff_timer                 	0x45f3
+#define	mem_switch_flag                         	0x45f4
+#define	mem_pn_dlci                             	0x45f5
+#define	mem_pn_max_frame_size                   	0x45f6
+#define	memFCStemp1                             	0x45f8
+#define	memFCStemp2                             	0x45f9
+#define	memFCStemp3                             	0x45fa
+#define	mem_rfcomm_initiator                    	0x45fb
+#define	mem_remote_spp_channel                  	0x45fc
+#define	mem_HIUfcs_SPP                          	0x45fd
+#define	mem_HIUfcs_SPP_WCredits                 	0x45fe
+#define	mem_rfcomm_send_more_pkt                	0x45ff
+#define	mem_remote_credits                      	0x4600
+#define	mem_credit_given                        	0x4601
+#define	mem_ms_channel                          	0x4602
+#define	mem_credit_flag                         	0x4603
+#define	mem_rfcomm_max_frame_size               	0x4604
+#define	mem_rfcomm_credit_init_data             	0x4606
+#define	mem_cb_receive_spp_data                 	0x4607
+#define	mem_nl_rx_data_src                      	0x4609
+#define	mem_nl_rx_len_all                       	0x460b
+#define	mem_ui_uuid_table                       	0x460d
+#define	mem_all_uuid_16bits                     	0x460f
+#define	mem_all_uuid_128bits                    	0x4625
+#define	mem_ui_le_uuid_table                    	0x4637
+#define	mem_sp_local_key_invalid                	0x4639
+#define	mem_le_private_key_256                  	0x463a
+#define	mem_le_pubkey_local_x_256               	0x465a
+#define	mem_le_pubkey_local_y_256               	0x467a
+#define	mem_sp_private_key                      	0x469a
+#define	mem_sp_pubkey_local                     	0x46b2
+#define	mem_sp_pubkey_local_x                   	0x46b2
+#define	mem_sp_pubkey_local_x_end               	0x46ca
+#define	mem_sp_pubkey_local_y                   	0x46ca
+#define	mem_ssp_enable                          	0x46e2
+#define	mem_sp_iocap_local                      	0x46e3
+#define	mem_sp_iocap_remote                     	0x46e6
+#define	mem_flag_mode_ssp_pin                   	0x46e9
+#define	mem_ssp_mode_flag                       	0x46ea
+#define	mem_authentication_passkey_times        	0x46eb
+#define	mem_passkey_1bit                        	0x46ec
+#define	mem_flag_pairing_state                  	0x46ed
+#define	mem_ipc_lock_bt                         	0x46ee
+#define	mem_ipc_lock_c51                        	0x46ef
+#define	mem_ipc_fifo_bt2c51                     	0x46f0
+#define	mem_ipc_fifo_c512bt                     	0x46f8
+#define	mem_led_switch                          	0x4700
+#define	mem_ui_button_timer                     	0x4701
+#define	mem_ui_button_last_state                	0x4702
+#define	mem_ui_timer_last_btclk                 	0x4703
+#define	mem_discovery_timeout_timer_count       	0x4707
+#define	mem_hid_handshake_timer_count           	0x4709
+#define	memui_reconnect_mode                    	0x470a
+#define	mem_ui_state_map                        	0x470b
+#define	mem_ui_profile_supported                	0x470d
+#define	mem_led_gpio                            	0x470e
+#define	mem_led_dark_time                       	0x470f
+#define	mem_led_light_time                      	0x4711
+#define	mem_led_blink_count                     	0x4713
+#define	mem_ui_button_timeout                   	0x4714
+#define	mem_ui_button_gpio                      	0x4715
+#define	mem_discovery_timeout                   	0x4716
+#define	mem_pin_length                          	0x4718
+#define	mem_pin                                 	0x4719
+#define	mem_24g_tx_btclk                        	0x4729
+#define	mem_24g_interval                        	0x472d
+#define	mem_24g_txfail_cnt                      	0x472e
+#define	mem_24g_attempt_cnt                     	0x472f
+#define	mem_24g_attempt_flag                    	0x4730
+#define	mem_24g_rxfail_cnt                      	0x4731
+#define	mem_24g_retry                           	0x4734
+#define	mem_24g_pid                             	0x4735
+#define	mem_24g_datalen                         	0x4736
+#define	mem_24g_crc                             	0x4737
+#define	mem_24g_rxbuf                           	0x4739
+#define	mem_24g_addr                            	0x4779
+#define	mem_24g_len                             	0x477d
+#define	mem_24g_txpayload                       	0x477f
+#define	mem_24g_txdata                          	0x4789
+#define	mem_24g_ch                              	0x4793
+#define	mem_24g_scremble                        	0x4794
+#define	mem_24g_current_ch_number               	0x47a4
+#define	mem_24g_ch_map1                         	0x47a5
+#define	mem_24g_ch_map2                         	0x47a9
+#define	mem_24g_ch_map3                         	0x47ad
+#define	mem_24g_ch_map4                         	0x47b1
+#define	mem_24g_interval_min                    	0x47b5
+#define	mem_24g_interval_max                    	0x47b6
+#define	mem_24g_ensure                          	0x47b7
+#define	mem_24g_enter_hibernate                 	0x47b8
+#define	mem_24g_enter_lpm_timer                 	0x47c0
+#define	mem_24g_pairing_sm                      	0x47c1
+#define	mem_24g_addr_copy                       	0x47c2
+#define	mem_24g_sifs                            	0x47c6
+#define	mem_24g_rxcnt                           	0x47c7
+#define	mem_24g_addr_private_dongle             	0x47c8
+#define	mem_24g_map_buff0_dongle                	0x47cc
+#define	mem_24g_channel_cnt_dongle              	0x47cd
+#define	mem_24g_pairing_sm_dongle               	0x47ce
+#define	mem_24g_tx_btclk_dongle                 	0x47cf
+#define	mem_24g_interval_dongle                 	0x47d3
+#define	mem_24g_ch_update_dongle                	0x47d4
+#define	mem_24g_rx_sync_dongle                  	0x47d5
+#define	mem_24g_ch_cnt_dongle                   	0x47d6
+#define	mem_24g_rxbuf_temp_dongle               	0x47d7
+#define	mem_24g_rxbuf_dongle                    	0x47dd
+#define	mem_24g_rxfail_cnt_dongle               	0x47e3
+#define	mem_24g_spi_enable_flag                 	0x47e6
+#define	mem_acl_credits                         	0x4729
+#define	mem_allow_switch                        	0x472b
+#define	mem_hci_acl_queue_start                 	0x472c
+#define	mem_hci_wake_clk                        	0x4730
+#define	mem_kb_state                            	0x4729
+#define	mem_kb_report_data                      	0x472b
+#define	mem_kb_keys                             	0x4731
+#define	mem_kb_rcv_led_data                     	0x4732
+#define	mem_kb_fast_wake_last                   	0x4733
+#define	mem_led_cap_gpio                        	0x4737
+#define	mem_led_num_gpio                        	0x4738
+#define	mem_led_scl_gpio                        	0x4739
+#define	mem_kb_current_vdd_value_10times        	0x473a
+#define	mem_kb_read_adc_cnt_100ms               	0x473c
+#define	mem_kb_current_vdd_value                	0x473d
+#define	mem_led_power_blink_count               	0x473f
+#define	mem_led_power_500ms_cnt                 	0x4740
+#define	mem_kb_map2                             	0x4741
+#define	mem_3v1_adc_default                     	0x49fd
+#define	mem_kb_map                              	0x49ff
+#define	mem_kb_discovery_timer                  	0x4a9d
+#define	mem_kb_direct_timer                     	0x4a9f
+#define	mem_kb_no_data_timer                    	0x4aa1
+#define	mem_kb_direct_timeout                   	0x4aa3
+#define	mem_kscn_event_last                     	0x4aa5
+#define	mem_kscan_event_num_last                	0x4aa6
+#define	mem_auto_enable_mult_timer              	0x4aa7
+#define	mem_auto_enable_mult_timer_init         	0x4aa8
+#define	mem_kb_temp_flag                        	0x4aa9
+#define	mem_map2_out_report0                    	0x4aaa
+#define	mem_map2_out_report1                    	0x4ab2
+#define	mem_table_last_repory_data0             	0x4aba
+#define	mem_table_last_repory_data1             	0x4ac2
+#define	mem_kb_down                             	0x4aca
+#define	mem_kb_down_last                        	0x4ad4
+#define	mem_table_temp                          	0x4ade
+#define	mem_pincode_vk_last                     	0x4ae6
+#define	mem_kb_device_button_last               	0x4ae7
+#define	mem_kb_device_button_timer              	0x4ae8
+#define	mem_kb_current_status                   	0x4ae9
+#define	mem_seq                                 	0x4aea
+#define	mem_dorx_cnt                            	0x4aeb
+#define	mem_matched_btclk                       	0x4aec
+#define	mem_master_sniff_interval               	0x4aee
+#define	mem_led_power_gpio                      	0x4aef
+#define	mem_kb_check_vdd_count                  	0x4af0
+#define	mem_0v_adc_data                         	0x4af2
+#define	mem_2v2_adc_data                        	0x4af4
+#define	mem_3v_adc_data                         	0x4af6
+#define	mem_select_system_led_timer             	0x4af8
+#define	mem_led_cap_gpio_status                 	0x4af9
+#define	mem_kb_no_data_timeout                  	0x4afa
+#define	mem_kb_gpio_last_val                    	0x4afc
+#define	mem_store_current_status                	0x4b00
+#define	mem_kb_led_on_timer                     	0x4b01
+#define	mem_kb_debug_sm                         	0x4b02
+#define	mem_kb_mode                             	0x4b03
+#define	mem_kb_mode_revese                      	0x4b05
+#define	mem_master_addr                         	0x4b07
+#define	mem_led_device_blink_count              	0x4b0d
+#define	mem_led_device_500ms_cnt                	0x4b0e
+#define	mem_kb_caps_led_status                  	0x4b0f
+#define	mem_kb_reconnection_ssp                 	0x4b10
+#define	mem_kb_rcv_hid_control_rsp              	0x4b11
+#define	mem_kb_down_regroup                     	0x4b12
+#define	mem_kb_get_fn_flag                      	0x4b17
+#define	mem_kb_kscan_cnt                        	0x4b18
+#define	mem_kb_down_test                        	0x4b19
+#define	mem_kb_release_fn_data                  	0x4b23
+#define	mem_led_cap_delay_timer                 	0x4b24
+#define	mem_led_cap_mult_timer                  	0x4b25
+#define	mem_led_cap_flag                        	0x4b26
+#define	mem_hid_rx_data                         	0x4b27
+#define	mem_kb_fn_c                             	0x4b28
+#define	mem_kb_c_fn                             	0x4b29
+#define	mem_keyboard_uuid_list                  	0x4b2a
+#define	mem_keyboard_uuid_list_end              	0x4db4
+#define	mem_keyboard_le_att_list                	0x4db4
+#define	mem_keyboard_le_att_list_end            	0x4fa8
+#define	mem_module_wake_up_gpio                 	0x4729
+#define	mem_module_state_gpio                   	0x472a
+#define	mem_module_connect_state_gpio           	0x472b
+#define	mem_current_packet_length               	0x472c
+#define	mem_module_state                        	0x472e
+#define	mem_module_task                         	0x472f
+#define	mem_cmode_addr                          	0x4730
+#define	mem_module_mcu_wake_pin                 	0x4736
+#define	mem_module_mcu_wake_delay_us            	0x4737
+#define	mem_module_spp_lpm_mult                 	0x473b
+#define	mem_module_le_lpm_mult                  	0x473c
+#define	mem_module_bluetooth_stauts_by_command  	0x473d
+#define	mem_module_uart_rx_buffer               	0x473e
+#define	mem_module_uart_rx_buffer_end           	0x4740
+#define	mem_module_uart_tx_buffer               	0x4742
+#define	mem_module_uart_tx_buffer_end           	0x4744
+#define	mem_module_read_vdd_flag                	0x4746
+#define	mem_module_read_vdd_count               	0x4747
+#define	mem_module_vdd_quotient                 	0x4748
+#define	mem_module_vdd_remainder                	0x4749
+#define	mem_module_le_buff_len                  	0x474a
+#define	mem_module_le_buff_len_all              	0x474c
+#define	mem_module_le_buff_data_len_all         	0x474e
+#define	mem_module_le_continue_flag             	0x4750
+#define	mem_module_le_rx_data_len               	0x4751
+#define	mem_module_le_rx_data_address           	0x4752
+#define	mem_module_le_rx_data_handle            	0x4754
+#define	mem_module_data_write_handle            	0x4756
+#define	mem_module_data_write_handle2           	0x4758
+#define	mem_module_flag                         	0x475a
+#define	mem_le_notify_type                      	0x475b
+#define	mem_module_hci_notify_start             	0x475c
+#define	mem_module_hci_notify_offset            	0x475e
+#define	mem_module_hci_notify_len               	0x4760
+#define	mem_module_hci_notify_att               	0x4762
+#define	mem_module_hci_notify_original_len      	0x4764
+#define	mem_module_uuid_list                    	0x4766
+#define	mem_module_uuid_list_end                	0x4892
+#define	mem_module_le_att_list                  	0x4892
+#define	mem_module_le_att_list_end              	0x4a86
+#define	mem_nv_data                             	0x4a86
+#define	mem_nv_data0                            	0x4a86
+#define	mem_nv_data1                            	0x4aa8
+#define	mem_nv_data2                            	0x4aca
+#define	mem_nv_data3                            	0x4aec
+#define	mem_nv_data4                            	0x4b0e
+#define	mem_mouse_key                           	0x4729
+#define	mem_mouse_x                             	0x472a
+#define	mem_mouse_y                             	0x472c
+#define	mem_mouse_z                             	0x472e
+#define	mem_mouse_tz                            	0x472f
+#define	mem_mouse_xy_h                          	0x4730
+#define	mem_sensor_shutter_hi                   	0x4731
+#define	mem_sensor_shutter_lo                   	0x4732
+#define	mem_sensor_smart_flag                   	0x4733
+#define	mem_sensor_squal_reg                    	0x4734
+#define	mem_mouse_move_flag                     	0x4735
+#define	mem_reconnect_timeout                   	0x4736
+#define	mem_mouse_direct_timeout                	0x4737
+#define	mem_mouse_no_data_timeout               	0x4739
+#define	mem_mouse_blank_data_timeout            	0x473b
+#define	mem_mouse_discovery_timer               	0x473d
+#define	mem_mouse_direct_timer                  	0x473f
+#define	mem_mouse_no_data_timer                 	0x4741
+#define	mem_mouse_blank_data_timer              	0x4743
+#define	mem_mouse_send_blank_timer              	0x4745
+#define	mem_mouse_dpi                           	0x4746
+#define	mem_mouse_dpi_button_state              	0x4747
+#define	mem_mouse_test_cnt                      	0x4748
+#define	mem_le_hibernate_timer                  	0x4749
+#define	mem_mouse_mode_state                    	0x474b
+#define	mem_mouse_le_notify_handle              	0x474c
+#define	mem_lbutton_gpio                        	0x474d
+#define	mem_rbutton_gpio                        	0x474e
+#define	mem_mbutton_gpio                        	0x474f
+#define	mem_sbutton1_gpio                       	0x4750
+#define	mem_sbutton2_gpio                       	0x4751
+#define	mem_dpi_button_gpio                     	0x4752
+#define	mem_sensor_data_gpio                    	0x4753
+#define	mem_whee_a_data_gpio                    	0x4754
+#define	mem_whee_b_data_gpio                    	0x4755
+#define	mem_sensor_reset_gpio                   	0x4756
+#define	mem_device1_led_gpio                    	0x4757
+#define	mem_device2_led_gpio                    	0x4758
+#define	mem_device3_led_gpio                    	0x4759
+#define	mem_conn_cnt                            	0x475a
+#define	mem_whee_ta_data_gpio                   	0x475b
+#define	mem_whee_tb_data_gpio                   	0x475c
+#define	mem_wheel_tb_old_pinlevel               	0x475d
+#define	mem_wheel_tb_new_pinlevel               	0x475e
+#define	mem_wheel_tog                           	0x475f
+#define	mem_mouse_tz_data                       	0x4760
+#define	mem_mouse_tz_data_count                 	0x4761
+#define	mem_mouse_tz_data_count1                	0x4762
+#define	mem_mwhee_a_data_gpio                   	0x4763
+#define	mem_mwhee_b_data_gpio                   	0x4764
+#define	mem_mwheel_b_old_pinlevel               	0x4765
+#define	mem_mwheel_b_new_pinlevel               	0x4766
+#define	mem_mwheel_tog                          	0x4767
+#define	mem_mouse_z_data                        	0x4768
+#define	mem_mouse_z_data_count                  	0x4769
+#define	mem_mouse_z_data_count1                 	0x476a
+#define	mem_reconn_mode                         	0x476b
+#define	mem_mouse_statue_led_timer              	0x476c
+#define	mem_device_flag                         	0x476d
+#define	mem_mouse_uuid_list                     	0x476e
+#define	mem_mouse_uuid_list_end                 	0x4a5c
+#define	mem_mouse_le_att_list                   	0x4a5c
+#define	mem_mouse_le_att_list_end               	0x4cb4
+#define	mem_shutter_send_data                   	0x4729
+#define	mem_shutter_key_temp                    	0x472d
+#define	mem_shutter_send_length                 	0x472e
+#define	mem_shutter_clkn_bt_last                	0x472f
+#define	mem_shutter_key                         	0x4733
+#define	mem_shutter_flag                        	0x4734
+#define	mem_shutter_cable_unplug_conut          	0x4735
+#define	mem_shutter_hid_disconn_count           	0x4736
+#define	mem_shutter_1key_send_sm                	0x4737
+#define	mem_shutter_iphonekey_gpio              	0x4738
+#define	mem_shutter_androidkey_gpio             	0x4739
+#define	mem_shutter_key_number                  	0x473a
+#define	mem_read_eeprom_temp                    	0x473b
+#define	mem_read_eeprom_mac_addr                	0x473c
+#define	mem_scale_tx_length                     	0x473f
+#define	mem_scale_txbuff_inuse                  	0x4740
+#define	mem_adv_lap_ptr                         	0x4741
+#define	mem_le_sleep_flag                       	0x4743
+#define	mem_rx_window_sniff_inc                 	0x4744
+#define	mem_pair_state                          	0x4746
+#define	mem_exchange_mtu_req                    	0x4747
+#define	mem_le_sleep_timeout                    	0x4748
+#define	mem_le_sleep_timeout_timer_count        	0x474a
+#define	mem_le_fast_adv_timeout                 	0x474c
+#define	mem_le_fast_adv_timeout_timer_count     	0x474e
+#define	mem_led_fast_dark_time                  	0x4750
+#define	mem_led_fast_light_time                 	0x4752
+#define	mem_power_on_pin                        	0x4754
+#define	mem_hard_soft_switch_case               	0x4755
+#define	mem_shutter_powerup_flag                	0x4756
+#define	mem_shutter_button_timeout              	0x4757
+#define	mem_shutter_button_timer                	0x4758
+#define	mem_power_timeout                       	0x4759
+#define	mem_power_timer                         	0x475a
+#define	mem_enable_key_scan                     	0x475b
+#define	mem_packet_interval_set                 	0x475c
+#define	mem_shutter_led_num                     	0x475e
+#define	mem_led_map                             	0x475f
+#define	mem_fast_adv_led_style                  	0x4763
+#define	mem_fa_led_type                         	0x4763
+#define	mem_fa_led_pin                          	0x4764
+#define	mem_fa_led_on_time                      	0x4765
+#define	mem_fa_led_off_time                     	0x4767
+#define	mem_fa_blink_count                      	0x4769
+#define	mem_slow_adv_led_style                  	0x476a
+#define	mem_sa_led_type                         	0x476a
+#define	mem_sa_led_pin                          	0x476b
+#define	mem_sa_led_on_time                      	0x476c
+#define	mem_sa_led_off_time                     	0x476e
+#define	mem_sa_blink_count                      	0x4770
+#define	mem_power_on_led_style                  	0x4771
+#define	mem_po_led_type                         	0x4771
+#define	mem_po_led_pin                          	0x4772
+#define	mem_po_led_on_time                      	0x4773
+#define	mem_po_led_off_time                     	0x4775
+#define	mem_po_blink_count                      	0x4777
+#define	mem_powe_off_led_style                  	0x4778
+#define	mem_pf_led_type                         	0x4778
+#define	mem_pf_led_pin                          	0x4779
+#define	mem_pf_led_on_time                      	0x477a
+#define	mem_pf_led_off_time                     	0x477c
+#define	mem_pf_blink_count                      	0x477e
+#define	mem_connected_led_style                 	0x477f
+#define	mem_co_led_type                         	0x477f
+#define	mem_co_led_pin                          	0x4780
+#define	mem_co_led_on_time                      	0x4781
+#define	mem_co_led_off_time                     	0x4783
+#define	mem_co_blink_count                      	0x4785
+#define	mem_key_led_style                       	0x4786
+#define	mem_key_led_style_ind_0                 	0x4786
+#define	mem_key_led_style_ind_0_data            	0x4786
+#define	mem_key_led_style_ind_1                 	0x478d
+#define	mem_key_led_style_ind_1_data            	0x478d
+#define	mem_key_led_style_ind_2                 	0x4794
+#define	mem_key_led_style_ind_2_data            	0x4794
+#define	mem_key_led_style_ind_3                 	0x479b
+#define	mem_key_led_style_ind_key_release       	0x479b
+#define	mem_key_led_style_ind_3_data            	0x479b
+#define	mem_temp_led_style                      	0x47a2
+#define	mem_temp_led_type                       	0x47a2
+#define	mem_temp_led_pin                        	0x47a3
+#define	mem_temp_led_on_time                    	0x47a4
+#define	mem_temp_led_off_time                   	0x47a6
+#define	mem_temp_blink_count                    	0x47a8
+#define	mem_shutter_key_num                     	0x47a9
+#define	mem_key_conf0                           	0x47aa
+#define	mem_key_conf0_pin                       	0x47aa
+#define	mem_key_conf0_led                       	0x47ab
+#define	mem_key_conf1                           	0x47ac
+#define	mem_key_conf1_pin                       	0x47ac
+#define	mem_key_conf1_led                       	0x47ad
+#define	mem_key_conf2                           	0x47ae
+#define	mem_key_conf2_pin                       	0x47ae
+#define	mem_key_conf2_led                       	0x47af
+#define	mem_key_conf3                           	0x47b0
+#define	mem_key_conf3_pin                       	0x47b0
+#define	mem_key_conf3_led                       	0x47b1
+#define	mem_key_conf4                           	0x47b2
+#define	mem_key_conf4_pin                       	0x47b2
+#define	mem_key_conf4_led                       	0x47b3
+#define	mem_key_conf5                           	0x47b4
+#define	mem_key_conf5_pin                       	0x47b4
+#define	mem_key_conf5_led                       	0x47b5
+#define	mem_key_value_temp                      	0x47b6
+#define	mem_key_value                           	0x47b8
+#define	mem_key_packet_count                    	0x47ba
+#define	mem_key_next_addr                       	0x47bb
+#define	mem_key_value_temp1                     	0x47bd
+#define	mem_key_value_temp2                     	0x47be
+#define	mem_key_value_temp3                     	0x47bf
+#define	mem_key_value_temp4                     	0x47c0
+#define	mem_key_value_temp5                     	0x47c1
+#define	mem_key_value_temp6                     	0x47c2
+#define	mem_key0_press                          	0x47c3
+#define	mem_key0_release                        	0x47d7
+#define	mem_key1_press                          	0x47eb
+#define	mem_key1_release                        	0x47f9
+#define	mem_key2_press                          	0x4807
+#define	mem_key2_release                        	0x4815
+#define	mem_key3_press                          	0x4823
+#define	mem_key3_release                        	0x4831
+#define	mem_key4_press                          	0x483f
+#define	mem_key4_release                        	0x484d
+#define	mem_key5_press                          	0x485b
+#define	mem_key5_release                        	0x4869
+#define	mem_queue_ele_num                       	0x4877
+#define	mem_queue_read                          	0x4878
+#define	mem_queue_write                         	0x487a
+#define	mem_queue_start                         	0x487c
+#define	mem_data_ele0                           	0x487c
+#define	mem_data_ele1                           	0x4886
+#define	mem_data_ele2                           	0x4890
+#define	mem_data_ele3                           	0x489a
+#define	mem_data_ele4                           	0x48a4
+#define	mem_data_ele5                           	0x48ae
+#define	mem_queue_end                           	0x48b8
+#define	mem_queue_temp                          	0x48b8
+#define	mem_shutter_key_data_flag               	0x48ba
+#define	mem_shutter_key_data_flag_1             	0x48bb
+#define	mem_le_find_type_value_start_handle     	0x48bc
+#define	mem_le_find_type_value_end_handle       	0x48be
+#define	mem_shutter_find_type_value_flag        	0x48c0
+#define	mem_le_uuid                             	0x48c1
+#define	mem_send_updata_le_param_timer          	0x48c2
+#define	mem_le_smp_key_dist                     	0x48c3
+#define	mem_ltk_states                          	0x48c6
+#define	mem_shutter_conn_update_timer           	0x48c7
+#define	mem_empty_count                         	0x48c8
+#define	mem_shutter_notification_len            	0x48c9
+#define	mem_shutter_notification_addr           	0x48ca
+#define	mem_shutter_le_att_list                 	0x48cc
+#define	mem_current_event                       	0x4729
+#define	mem_ipc_lock_rx_data_bt                 	0x472a
+#define	mem_ipc_lock_rx_data_c51                	0x472b
+#define	mem_ipc_lock_tx_data_bt                 	0x472c
+#define	mem_ipc_lock_tx_data_c51                	0x472d
+#define	mem_ipc_2bt_fifo_head                   	0x472e
+#define	mem_ipc_2bt_fifo_end                    	0x47c4
+#define	mem_ipc_2bt_read_index                  	0x47c4
+#define	mem_ipc_2bt_write_index                 	0x47c6
+#define	mem_ipc_2C51_fifo_head                  	0x47c8
+#define	mem_ipc_2C51_fifo_end                   	0x482c
+#define	mem_ipc_2C51_read_index                 	0x482c
+#define	mem_ipc_2C51_write_index                	0x482e
+#define	mem_c51_private_area                    	0x4830
+#define	mem_ipc_tx_evt_buff                     	0x4894
+#define	mem_ipc_tx_evt                          	0x4896
+#define	mem_ipc_rx_type                         	0x4897
+#define	mem_ipc_bt_timer                        	0x4898
+#define	mem_ipc_c51_timer                       	0x489a
+#define	mem_ipc_bt_100ms_timer                  	0x489c
+#define	mem_ipc_c51_100ms_timer                 	0x489d
+#define	mem_ipc_last_check_timer                	0x489e
+#define	mem_new_24g_rxbuf                       	0x48a2
+#define	mem_new_24g_txbuf                       	0x48c4
+#define	mem_new_24g_txpayload                   	0x48e4
+#define	mem_new_24g_rxpayload                   	0x4906
+#define	mem_new_24g_rxdata_length               	0x4926
+#define	mem_new_24g_pid                         	0x4927
+#define	mem_new_24g_datalen                     	0x4928
+#define	mem_new_24g_data_type                   	0x4929
+#define	mem_new_24g_txlen                       	0x492a
+#define	mem_new_24g_rx_window                   	0x492b
+#define	mem_new_24g_ensure                      	0x492d
+#define	mem_new_24g_txfail_cnt                  	0x492e
+#define	mem_new_24g_get_ack_fail                	0x4930
+#define	mem_new_24g_retry                       	0x4931
+#define	mem_new_24g_ch                          	0x4932
+#define	mem_new_24g_current_ch_number           	0x4933
+#define	mem_new_24g_paring_addr                 	0x4934
+#define	mem_new_24g_pairing_sm                  	0x4938
+#define	mem_new_24g_ch_map1                     	0x4939
+#define	mem_new_24g_ch_map2                     	0x493d
+#define	mem_new_24g_ch_map3                     	0x4941
+#define	mem_new_24g_ch_map4                     	0x4945
+#define	mem_new_24g_tx_btclk                    	0x4949
+#define	mem_new_24g_interval                    	0x494d
+#define	mem_new_24g_interval_min                	0x494e
+#define	mem_new_24g_interval_max                	0x494f
+#define	mem_new_24g_addr                        	0x4950
+#define	mem_new_24g_abort_pac                   	0x4954
+#define	mem_new_24g_sync_pac                    	0x4955
+#define	mem_new_24g_check_dongle_times          	0x4956
+#define	mem_new_24g_enter_hibernate             	0x4958
+#define	mem_new_24g_device_addr                 	0x4960
+#define	mem_new_24g_pac_index                   	0x4964
+#define	mem_new_24g_no_ack                      	0x4965
+#define	mem_new_24g_sta_crc                     	0x4966
+#define	mem_new_24g_last_crc                    	0x4969
+#define	mem_new_24g_sta_pid                     	0x496c
+#define	mem_new_24g_last_pid                    	0x496d
+#define	mem_new_24g_max_retry                   	0x496e
+#define	mem_new_24g_mode                        	0x496f
+#define	mem_new_uart_packet                     	0x4970
+#define	mem_new_24g_common_temp                 	0x4990
+#define	mem_new_24g_rf_last_sta                 	0x49b0
+#define	mem_new_24g_rf_hop_ch                   	0x49b1
+#define	mem_new_24g_sync_cnt                    	0x49b2
+#define	mem_new_24g_hop_pac_retry               	0x49b3
+#define	mem_new_24g_rf_work_stage               	0x49b4
+#define	mem_new_24g_hop_fastly_cnt              	0x49b5
+#define	mem_new_24g_auto_paring_switch          	0x49b6
+#define	mem_new_24g_key_wheel_event             	0x49b7
+#define	mem_new_24g_delay_long_sleep_cnt        	0x49b8
+#define	mem_new_24g_delay_long_sleep_maxcnt     	0x49b9
+#define	mem_new_24g_enter_lpm_timer             	0x49ba
+#define	mem_new_24g_syncword                    	0x49bb
+#define	mem_new_24g_syncword_crc8               	0x49bd
+#define	mem_new_24g_get_syncword_crc8           	0x49be
+#define	mem_new_24g_paccnt                      	0x49bf
+#define	mem_new_24g_ota_enable                  	0x49c0
+#define	mem_bt_wakeup_from_long_mult            	0x49c1
+#define	mem_bt_motion_event                     	0x49c2
+#define	mem_tx_power_temp                       	0x49c3
+#define	mem_power_ctrl_level                    	0x49c4
+#define	mem_power_ctrl_pac_succ_cnt             	0x49c5
+#define	mem_rssi_signal_buf                     	0x49c6
+#define	mem_rssi_signal_index                   	0x49ce
+#define	mem_rssi_hex_received                   	0x49cf
+#define	mem_rssi_avg_received                   	0x49d0
+#define	mem_last_txlch                          	0x49d1
+#define	mem_last_txlen                          	0x49d2
+#define	mem_last_txdata                         	0x49d4
+#define	mem_device_uuid_list                    	0x49e8
+#define	mem_device_uuid_list_end                	0x4c40
+#define	mem_device_le_att_list                  	0x4c40
+#define	mem_device_le_att_list_end              	0x4e20
+#define	mem_empty_count_user                    	0x4e20
+#define	mem_hid_buff                            	0x4e21
+#define	mem_adc_0v                              	0x4e41
+#define	mem_adc_3v                              	0x4e43
+#define	mem_hibernate_flag                      	0x4e45
+#define	mem_new_supervision_to                  	0x4e46
+#define	mem_le_rx_winsows                       	0x4e48
+#define	mem_le_att_report1                      	0x4e4c
+#define	mem_le_att_report2                      	0x4e4e
+#define	mem_le_slave_update_param_timer         	0x4e50
+#define	mem_le_slave_update_mult_timer          	0x4e51
+#define	mem_le_reconn_enable_notify_timer       	0x4e52
+#define	mem_le_reconn_flag                      	0x4e53
+#define	mem_le_buff_temp                        	0x4e54
+#define	mem_le_rx_window_inc                    	0x4e60
+#define	mem_le_prepare_tx_retransmited_number   	0x4e62
+#define	mem_last_check_clk                      	0x4e63
+#define	mem_hid_send_handshake                  	0x4e67
+#define	mem_feature_ext_page_number             	0x4e68
+#define	mem_rf_init_data_new                    	0x4e69
+#define	mem_short_lpm_interval_param            	0x4e74
+#define	mem_short_lpm_enable                    	0x4e78
+#define	mem_short_lpm_tx_cnt                    	0x4e79
+#define	mem_ckln_24g_short_lpm                  	0x4e7a
+#define	mem_send_data_24g_short_lpm             	0x4e7d
+#define	mem_short_lpm_interval_cnt              	0x4e7e
+#define	mem_ipc_is_ready                        	0x4e7f
+#define	mem_short_data_wheel                    	0x4e80
+#define	mem_ble_data_wheel                      	0x4e81
+#define	mem_ble_data_wheel_lpm_timer            	0x4e82
+#define	mem_bt_read_ipc_count                   	0x4e83
+#define	mem_51_read_sensor_count                	0x4e84
+#define	mem_queue_write_prt                     	0x4e85
+#define	mem_queue_read_ptr                      	0x4e86
+#define	mem_queue_buffer0                       	0x4e87
+#define	mem_queue_buffer1                       	0x4e8e
+#define	mem_queue_buffer2                       	0x4e95
+#define	mem_queue_buffer3                       	0x4e9c
+#define	mem_ble_read_ipc_fifo_once              	0x4ea3
+#define	mem_ble_send_flag                       	0x4ea4
+#define	mem_mouse_le_pairing_flag               	0x4ea5
+#define	mem_mult_time_arrive_flag               	0x4ea6
+#define	mem_led_gpio8_blink_timer               	0x4ea7
+#define	mem_led_gpio8_blink_cnt                 	0x4ea8
+#define	mem_led_gpio5_blink_timer               	0x4ea9
+#define	mem_led_gpio5_blink_cnt                 	0x4eaa
+#define	mem_32asm_data_end                      	0x4eab
+#define	mem_mcmd                                	0xff0
+#define	mem_mouse_data                          	0xff1
+#define	mem_l2cap_rxbuff1                       	0x1000
+#define	mem_l2cap_rxbuff2                       	0x1400
+#define	mem_tx_buff0                            	0x1800
+#define	mem_tx_buff1                            	0x1880
+#define	mem_tx_buff2                            	0x1900
+#define	mem_tx_buff3                            	0x1980
+#define	mem_tx_buff4                            	0x1a00
+#define	mem_tx_buff5                            	0x1a80
+#define	mem_tx_buff6                            	0x1b00
+#define	mem_tx_buff7                            	0x1b80
+#define	mem_h5rx_buf                            	0x1800
+#define	mem_h5rx_buf_end                        	0x1bff
+#define	mem_h5tx_buf                            	0x1c00
+#define	mem_h5tx_buf_end                        	0x1fff
+#define	mem_module_rx_buf                       	0x4c00
+#define	mem_module_rx_buf_little                	0x4c00
+#define	mem_module_rx_buf_end                   	0x4fff
+#define	mem_module_tx_buf                       	0x1c00
+#define	mem_module_tx_buf_end                   	0x1fff
+#define	mem_ir_record                           	0x1800
+#define	mem_ir_record_max                       	0x1c
+#define	memk                                    	0x4b00
+#endif
Index: c51/c.bat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/c.bat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/c.bat	(working copy)
@@ -0,0 +1,10 @@
+perl util\hex2mif.pl < output\fw.hex ram > output\fwram.rom
+copy .\patch\patch.dat + .\patch\user.dat + .\patch\rf.dat .\patch\sch.rom 
+perl util\transform_name2addr.pl .\patch\sch.rom .\output\sched.rom .\patch\memmap.format
+copy .\patch\ramcode.rom .\output\
+copy .\patch\geneep.exe .\output\
+@rem copy .\patch\*.obj .\output\*.obj
+cd output
+geneep geneep ramcode.rom fwram.rom sched.rom
+cd ..
+:end
Index: c51/common.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/common.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/common.h	(working copy)
@@ -0,0 +1,12 @@
+#ifndef _YC_INCLUDE_H_
+#define _YC_INCLUDE_H_
+#include "type.h"
+#include "btreg.h"
+#include "hwreg.h"
+#include "sys.h"
+#include "utilities.h"
+#include "REG320.H"
+
+//void mouseTimer4ms();
+#endif
+
Index: c51/e.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/e.exe
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/e.exe	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/e.exe	(working copy)

Property changes on: c51/e.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/eeprom.da
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/eeprom.da	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/eeprom.da	(working copy)
@@ -0,0 +1,16239 @@
+00
+02
+aa
+55
+ae
+18
+c5
+12
+80
+16
+c0
+01
+80
+2e
+c0
+02
+00
+31
+c0
+03
+00
+3a
+c0
+04
+80
+4c
+c0
+12
+80
+50
+c0
+13
+00
+60
+c0
+14
+80
+66
+c0
+1f
+80
+71
+c0
+26
+00
+79
+c0
+28
+00
+88
+c0
+45
+80
+94
+c0
+53
+80
+a0
+c0
+54
+00
+a7
+c0
+54
+80
+ba
+c0
+56
+00
+bf
+c0
+5a
+03
+a9
+c0
+5a
+80
+d8
+c0
+5b
+00
+df
+c0
+5b
+80
+fc
+c0
+64
+01
+28
+20
+20
+00
+2d
+c0
+0d
+81
+47
+c0
+11
+81
+4a
+c0
+17
+81
+6e
+c0
+18
+81
+84
+c0
+19
+01
+9a
+c0
+19
+81
+ab
+c0
+1e
+01
+b9
+c0
+1f
+01
+cc
+c0
+1f
+81
+da
+c0
+21
+01
+f6
+c0
+26
+81
+fb
+c0
+2a
+82
+15
+c0
+2b
+02
+1d
+c0
+2c
+02
+24
+c0
+2f
+02
+43
+c0
+4a
+82
+4b
+c0
+57
+02
+52
+c0
+64
+02
+5d
+c0
+79
+82
+ab
+c0
+7b
+82
+b7
+c0
+7c
+02
+f2
+c0
+7c
+83
+05
+20
+20
+00
+2d
+20
+20
+00
+2d
+20
+40
+03
+0f
+20
+40
+03
+42
+20
+20
+30
+1b
+20
+40
+30
+43
+20
+40
+3d
+60
+20
+40
+30
+9e
+20
+40
+33
+3e
+20
+40
+33
+b3
+20
+40
+30
+29
+20
+40
+04
+3f
+20
+40
+3c
+53
+20
+20
+30
+19
+20
+40
+00
+3c
+20
+20
+30
+3b
+68
+08
+80
+15
+df
+20
+00
+03
+da
+20
+40
+40
+18
+40
+84
+01
+28
+41
+fe
+03
+24
+20
+80
+43
+d8
+40
+00
+00
+60
+08
+80
+15
+18
+4f
+fe
+50
+9a
+20
+8c
+00
+e8
+c0
+80
+00
+c3
+00
+b2
+76
+18
+c0
+8c
+01
+e8
+c1
+00
+00
+20
+3a
+32
+76
+20
+20
+32
+78
+60
+0c
+09
+c6
+20
+40
+7e
+e2
+68
+0c
+09
+c6
+20
+20
+30
+7c
+78
+54
+7c
+00
+68
+01
+00
+32
+d8
+40
+ff
+ff
+98
+46
+7c
+00
+24
+62
+80
+00
+68
+02
+00
+34
+20
+38
+00
+59
+9d
+06
+7e
+00
+20
+20
+00
+5a
+9c
+46
+7e
+00
+1f
+e6
+7c
+04
+24
+61
+00
+00
+18
+00
+7e
+00
+60
+01
+00
+32
+78
+34
+7c
+00
+20
+60
+00
+00
+60
+0a
+00
+34
+70
+45
+f4
+01
+58
+00
+ff
+ff
+60
+01
+00
+32
+70
+00
+73
+01
+20
+60
+00
+00
+20
+40
+3a
+ea
+20
+40
+00
+69
+20
+20
+32
+33
+1c
+40
+c2
+01
+20
+40
+39
+79
+18
+00
+48
+03
+20
+40
+39
+67
+20
+40
+3a
+ee
+20
+40
+3a
+f4
+20
+40
+3b
+05
+20
+20
+36
+c6
+20
+40
+3c
+a0
+20
+40
+3b
+22
+20
+21
+34
+3e
+20
+40
+31
+cd
+24
+34
+34
+3e
+20
+40
+37
+75
+24
+3a
+34
+27
+20
+60
+00
+00
+20
+40
+32
+83
+24
+22
+b5
+08
+68
+00
+80
+47
+c3
+01
+b5
+11
+68
+00
+c1
+65
+c0
+09
+b5
+02
+68
+01
+48
+87
+1f
+e6
+7c
+14
+24
+21
+35
+02
+60
+01
+42
+7e
+68
+00
+c8
+86
+60
+00
+c2
+7d
+58
+00
+48
+89
+60
+01
+01
+6e
+20
+20
+35
+02
+68
+01
+42
+7e
+60
+01
+48
+87
+1f
+e6
+7c
+14
+24
+21
+35
+2f
+98
+00
+72
+00
+68
+00
+c2
+7d
+60
+00
+c8
+86
+68
+01
+01
+6e
+98
+00
+0c
+00
+d8
+a0
+48
+89
+20
+40
+7e
+cd
+20
+20
+35
+2f
+20
+40
+3c
+d2
+20
+40
+3a
+5f
+70
+80
+42
+06
+68
+10
+89
+68
+79
+20
+7e
+07
+60
+10
+89
+68
+79
+3f
+fe
+07
+60
+10
+89
+68
+79
+20
+7e
+07
+60
+10
+89
+68
+70
+80
+42
+05
+20
+20
+3a
+0c
+20
+40
+3c
+2b
+68
+00
+ce
+73
+20
+7a
+00
+00
+70
+4e
+73
+00
+1c
+42
+7e
+00
+60
+02
+4a
+12
+20
+60
+00
+00
+20
+40
+3b
+e2
+68
+01
+c2
+0f
+20
+7a
+00
+00
+68
+01
+40
+42
+d8
+40
+ff
+ff
+98
+46
+7c
+00
+20
+62
+80
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+20
+40
+48
+16
+24
+7a
+00
+00
+20
+40
+3d
+0e
+24
+7a
+00
+00
+20
+40
+3a
+7b
+68
+00
+c6
+e2
+20
+3a
+3c
+5e
+68
+00
+c6
+39
+20
+7a
+00
+00
+20
+20
+3c
+5e
+20
+40
+00
+c4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+20
+20
+3c
+6a
+20
+40
+00
+c4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+20
+20
+3c
+8c
+20
+40
+00
+cf
+24
+74
+00
+00
+20
+40
+00
+cc
+24
+74
+00
+00
+70
+0b
+2b
+01
+70
+0b
+2a
+01
+20
+40
+00
+d4
+20
+20
+00
+cf
+68
+01
+49
+a0
+68
+09
+49
+a2
+20
+20
+00
+d1
+68
+01
+49
+38
+68
+09
+49
+3a
+98
+46
+7c
+00
+20
+22
+e4
+c0
+20
+20
+31
+d4
+68
+00
+8b
+2a
+20
+00
+00
+0a
+c0
+80
+00
+d4
+20
+60
+00
+00
+70
+00
+16
+27
+70
+01
+50
+00
+70
+01
+7e
+00
+70
+01
+7f
+00
+58
+00
+00
+00
+60
+02
+88
+d2
+20
+60
+00
+00
+da
+20
+46
+f0
+20
+40
+7f
+95
+20
+7a
+00
+00
+1f
+e2
+26
+00
+20
+40
+00
+e5
+20
+20
+3d
+9b
+c1
+0c
+00
+00
+c0
+03
+00
+eb
+c0
+0a
+00
+ec
+c0
+0a
+80
+f2
+c0
+14
+80
+fa
+20
+20
+3d
+73
+20
+20
+5e
+df
+70
+42
+12
+00
+70
+4e
+7f
+00
+20
+40
+3e
+61
+20
+40
+3e
+59
+20
+40
+3e
+7f
+20
+20
+3d
+c2
+70
+44
+b2
+00
+70
+42
+12
+00
+70
+4e
+7f
+00
+70
+45
+6a
+00
+68
+09
+4e
+7c
+60
+09
+44
+f8
+20
+40
+52
+a0
+20
+20
+3d
+c6
+20
+40
+01
+09
+20
+20
+7e
+3b
+60
+08
+82
+4e
+68
+00
+ca
+10
+1f
+e0
+fe
+01
+60
+00
+ca
+10
+68
+00
+82
+4e
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+82
+4e
+20
+40
+01
+23
+20
+40
+01
+19
+20
+40
+01
+0c
+20
+40
+01
+13
+20
+20
+01
+00
+20
+40
+3e
+7f
+70
+09
+bd
+12
+20
+20
+7d
+90
+68
+00
+ce
+7f
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+7f
+24
+7a
+00
+00
+70
+42
+12
+20
+20
+60
+00
+00
+68
+00
+ce
+80
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+80
+24
+7a
+00
+00
+20
+20
+3e
+6d
+68
+00
+c7
+09
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+c7
+09
+24
+7a
+00
+00
+68
+00
+ce
+95
+24
+3a
+01
+21
+20
+20
+3f
+f5
+70
+4e
+95
+00
+20
+60
+00
+00
+68
+00
+c7
+c0
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+c7
+c0
+20
+60
+00
+00
+68
+01
+02
+8d
+1f
+e2
+0c
+00
+e8
+c0
+80
+00
+1f
+e1
+04
+0f
+1f
+f1
+fe
+00
+c0
+04
+81
+34
+c0
+03
+bf
+eb
+c0
+05
+01
+39
+c0
+02
+81
+37
+c0
+00
+81
+40
+c0
+02
+3f
+eb
+20
+60
+00
+00
+20
+40
+3f
+eb
+70
+4e
+95
+01
+20
+60
+00
+00
+20
+40
+01
+39
+20
+20
+3f
+e4
+e8
+c0
+80
+00
+c0
+00
+bf
+fa
+c0
+20
+81
+3d
+20
+60
+00
+00
+70
+4a
+0a
+3e
+20
+40
+03
+71
+20
+20
+3e
+52
+18
+42
+7e
+00
+c0
+02
+81
+44
+c0
+01
+bf
+e2
+20
+60
+00
+00
+70
+4a
+0a
+27
+20
+40
+03
+71
+20
+20
+3e
+52
+68
+02
+4e
+76
+60
+02
+45
+96
+20
+20
+4a
+8c
+70
+41
+31
+01
+68
+01
+03
+7c
+68
+09
+03
+82
+98
+46
+7e
+00
+60
+01
+09
+be
+68
+00
+83
+62
+79
+3f
+fe
+05
+79
+3f
+fe
+03
+60
+00
+83
+62
+68
+02
+03
+66
+68
+09
+03
+64
+60
+09
+09
+c6
+98
+46
+22
+00
+68
+00
+c4
+5b
+60
+00
+83
+8d
+e8
+c9
+00
+00
+e8
+c1
+00
+00
+1f
+eb
+fe
+00
+60
+01
+03
+64
+18
+4b
+84
+00
+98
+40
+fe
+00
+e8
+ca
+00
+00
+60
+0a
+03
+8e
+9a
+20
+fe
+00
+1f
+e2
+28
+00
+68
+01
+03
+64
+68
+09
+09
+c6
+98
+46
+7e
+00
+68
+09
+09
+be
+98
+4f
+fe
+00
+9a
+80
+fe
+00
+60
+02
+03
+66
+20
+40
+51
+99
+68
+01
+03
+90
+60
+01
+45
+61
+20
+60
+00
+00
+68
+00
+83
+79
+c2
+82
+81
+80
+70
+4e
+90
+00
+68
+00
+ce
+4e
+24
+3a
+01
+78
+68
+00
+83
+62
+c3
+02
+01
+7c
+68
+00
+83
+03
+20
+3a
+01
+7c
+20
+20
+4f
+87
+68
+00
+ce
+4e
+1f
+e0
+ff
+ff
+60
+00
+ce
+4e
+20
+20
+4f
+87
+68
+00
+c5
+6a
+c0
+81
+01
+7f
+70
+4e
+4e
+03
+20
+20
+4b
+de
+68
+00
+ce
+90
+1f
+e0
+fe
+01
+60
+00
+ce
+90
+20
+60
+00
+00
+68
+00
+c4
+67
+c0
+03
+01
+88
+c0
+01
+01
+93
+20
+20
+4b
+fb
+68
+00
+ce
+81
+c0
+00
+81
+90
+20
+40
+3e
+6d
+18
+00
+04
+01
+20
+34
+cf
+89
+68
+00
+c5
+6a
+c0
+81
+4c
+8f
+20
+20
+4c
+8a
+20
+40
+01
+09
+70
+4e
+80
+03
+20
+20
+4c
+90
+58
+00
+00
+13
+e0
+a0
+80
+00
+20
+40
+4c
+58
+58
+00
+00
+0a
+60
+01
+03
+90
+60
+01
+45
+61
+20
+60
+00
+00
+68
+00
+c4
+6b
+c0
+01
+01
+9f
+c0
+03
+01
+a6
+c0
+03
+cd
+17
+20
+20
+4c
+18
+59
+00
+03
+02
+60
+01
+c4
+dc
+58
+00
+00
+01
+e0
+a0
+80
+00
+58
+01
+00
+10
+e0
+a1
+80
+00
+20
+20
+4c
+cd
+70
+09
+bd
+29
+20
+40
+7d
+86
+70
+09
+bd
+47
+20
+40
+4b
+d6
+20
+20
+4d
+01
+68
+00
+c4
+6b
+c0
+0d
+81
+af
+c0
+0e
+81
+af
+20
+20
+4c
+2b
+d8
+a0
+44
+6c
+68
+09
+4e
+7c
+e0
+a9
+00
+00
+d8
+c0
+4e
+82
+e8
+c0
+80
+00
+1f
+e2
+72
+00
+20
+40
+7e
+cd
+68
+08
+ce
+82
+18
+40
+84
+07
+20
+20
+4f
+89
+1a
+62
+7e
+00
+c0
+00
+01
+bf
+c0
+01
+01
+c2
+c0
+01
+81
+c6
+c0
+05
+01
+ca
+20
+20
+4f
+b9
+70
+41
+31
+00
+70
+4e
+7f
+3c
+20
+20
+50
+1f
+20
+40
+50
+33
+58
+00
+00
+00
+60
+04
+45
+44
+20
+60
+00
+00
+20
+40
+50
+39
+68
+00
+c5
+6a
+c1
+01
+00
+00
+20
+20
+64
+18
+70
+09
+bd
+2b
+20
+20
+4b
+d6
+e8
+c1
+80
+00
+60
+01
+83
+9a
+c0
+09
+01
+d0
+20
+20
+50
+11
+20
+40
+01
+d5
+20
+40
+51
+25
+24
+62
+80
+00
+70
+09
+bd
+13
+20
+20
+4b
+d6
+68
+00
+83
+03
+1f
+e0
+ff
+f9
+1f
+e2
+72
+00
+1f
+22
+24
+00
+20
+20
+51
+35
+68
+00
+c3
+ff
+20
+7a
+00
+00
+d8
+e0
+00
+01
+20
+40
+7e
+e2
+24
+7a
+00
+00
+78
+54
+fc
+00
+78
+28
+7c
+00
+20
+40
+4b
+1e
+20
+40
+49
+d4
+20
+40
+4a
+8a
+24
+36
+81
+ec
+68
+00
+80
+03
+1f
+e0
+fe
+01
+60
+00
+80
+03
+68
+00
+83
+02
+1f
+e1
+7e
+0f
+c0
+01
+81
+f4
+c0
+02
+d1
+af
+18
+0a
+7e
+00
+d8
+40
+01
+ff
+98
+41
+7e
+00
+1f
+e0
+fe
+fa
+1f
+e0
+ff
+ff
+20
+00
+00
+26
+24
+3a
+01
+f0
+20
+20
+51
+94
+20
+40
+4a
+c5
+20
+20
+01
+ec
+68
+02
+45
+96
+d8
+40
+4e
+20
+98
+40
+fe
+00
+60
+02
+45
+96
+20
+20
+51
+a9
+78
+55
+fc
+00
+20
+37
+01
+fe
+24
+36
+82
+0d
+20
+40
+3c
+b7
+68
+01
+41
+61
+60
+01
+03
+70
+68
+00
+83
+02
+2f
+e0
+06
+01
+24
+20
+bc
+cb
+68
+00
+c4
+65
+2f
+e0
+06
+01
+24
+20
+bc
+cb
+20
+40
+4b
+d0
+24
+3a
+3c
+cb
+68
+00
+ce
+90
+1f
+e6
+7c
+01
+24
+21
+3c
+cb
+20
+20
+52
+97
+68
+09
+41
+61
+68
+01
+4e
+8e
+98
+40
+84
+00
+18
+43
+04
+00
+68
+01
+03
+70
+98
+40
+fe
+00
+60
+01
+03
+70
+20
+20
+3c
+c3
+68
+00
+84
+76
+79
+20
+7e
+07
+60
+00
+80
+7d
+c0
+41
+82
+1a
+20
+20
+53
+84
+68
+00
+84
+77
+60
+00
+ce
+96
+20
+20
+53
+bf
+68
+00
+84
+76
+60
+00
+83
+ef
+c0
+09
+82
+21
+20
+20
+53
+cf
+70
+09
+bd
+20
+20
+40
+7d
+86
+20
+20
+00
+61
+78
+54
+7c
+00
+20
+40
+58
+ca
+68
+00
+80
+48
+20
+7a
+00
+00
+c2
+83
+82
+2a
+20
+20
+56
+28
+c0
+42
+02
+2d
+c0
+41
+82
+38
+20
+20
+56
+57
+18
+00
+0e
+0c
+20
+40
+58
+a9
+68
+00
+ce
+96
+e0
+a0
+80
+00
+58
+00
+00
+00
+e0
+a1
+00
+00
+58
+00
+00
+00
+e0
+a1
+80
+00
+58
+00
+00
+00
+e0
+a2
+00
+00
+20
+20
+58
+b9
+18
+00
+0e
+0c
+20
+40
+58
+a9
+58
+00
+00
+01
+e0
+a0
+80
+00
+58
+00
+00
+00
+e0
+a1
+00
+00
+58
+00
+00
+00
+e0
+a1
+80
+00
+58
+00
+00
+00
+e0
+a2
+00
+00
+20
+20
+58
+bb
+20
+40
+58
+c5
+24
+7a
+00
+00
+68
+00
+80
+55
+20
+7a
+00
+00
+c0
+07
+02
+49
+20
+20
+59
+2c
+24
+74
+80
+00
+20
+20
+59
+75
+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
+20
+40
+48
+16
+24
+7a
+00
+00
+68
+0a
+4e
+91
+1d
+02
+7e
+00
+98
+46
+04
+00
+24
+21
+02
+5b
+18
+46
+7c
+0b
+24
+21
+02
+5b
+20
+60
+00
+00
+60
+02
+4e
+91
+20
+20
+3d
+65
+d8
+a0
+04
+40
+20
+40
+6d
+a6
+20
+22
+ed
+a4
+18
+00
+04
+00
+e8
+c0
+80
+00
+1a
+20
+a3
+ff
+19
+60
+97
+ff
+2f
+e1
+f0
+18
+24
+20
+ed
+a4
+2f
+e0
+0e
+04
+24
+20
+82
+7e
+18
+00
+04
+01
+e8
+c0
+80
+00
+1a
+20
+a3
+ff
+19
+60
+97
+ff
+c0
+80
+02
+72
+e8
+c0
+80
+00
+1a
+20
+a3
+ff
+19
+60
+97
+ff
+c0
+00
+02
+83
+20
+20
+02
+75
+18
+c0
+8c
+01
+1a
+20
+a3
+ff
+19
+60
+97
+ff
+18
+c0
+8c
+02
+1a
+20
+a3
+fe
+19
+60
+97
+fe
+28
+41
+fe
+00
+20
+20
+82
+a8
+18
+c0
+8c
+0c
+1a
+20
+a3
+f4
+19
+60
+97
+f4
+20
+20
+02
+a8
+2f
+e0
+0e
+02
+24
+20
+82
+81
+20
+20
+02
+69
+2f
+e0
+0e
+01
+24
+20
+ed
+a4
+e8
+c1
+00
+00
+1a
+20
+a3
+fe
+19
+60
+97
+fe
+e0
+a1
+00
+00
+28
+41
+fe
+00
+20
+20
+82
+a8
+18
+c2
+04
+00
+e8
+c0
+80
+00
+c0
+80
+02
+a2
+e8
+c0
+80
+00
+c0
+80
+02
+a2
+e8
+c0
+80
+00
+c0
+88
+02
+a2
+e8
+c0
+80
+00
+c0
+80
+02
+a2
+e8
+c0
+80
+00
+c0
+c0
+02
+a2
+e8
+c0
+80
+00
+c0
+80
+02
+a2
+e8
+c0
+80
+00
+c0
+80
+02
+a2
+e8
+c0
+80
+00
+c0
+c0
+02
+a2
+e8
+c0
+80
+00
+c0
+af
+82
+a2
+e8
+c0
+80
+00
+c0
+cd
+82
+a2
+e8
+c0
+80
+00
+c0
+9a
+02
+a2
+e8
+c0
+80
+00
+c0
+7d
+82
+a6
+18
+42
+0c
+00
+18
+c0
+8c
+0c
+18
+00
+0e
+00
+18
+00
+04
+00
+19
+60
+97
+f4
+1a
+20
+a3
+f4
+2a
+21
+fe
+00
+24
+20
+82
+60
+20
+20
+6d
+a1
+1a
+22
+7e
+00
+20
+7a
+00
+00
+18
+40
+85
+60
+18
+40
+85
+60
+79
+3f
+84
+1c
+60
+0a
+47
+03
+1f
+e2
+04
+00
+da
+20
+46
+f0
+20
+40
+7f
+a6
+24
+7a
+00
+00
+18
+42
+7e
+00
+20
+20
+7d
+7d
+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
+11
+82
+c7
+c0
+12
+02
+c9
+c0
+12
+82
+cd
+c0
+00
+82
+d1
+c0
+01
+82
+d3
+c0
+06
+82
+d6
+c0
+13
+82
+e0
+c0
+13
+06
+2a
+20
+20
+7d
+b3
+70
+47
+c1
+ff
+20
+20
+06
+14
+70
+47
+c1
+ff
+70
+47
+c6
+00
+70
+4a
+0a
+3b
+20
+20
+03
+71
+68
+00
+c7
+c7
+24
+7a
+00
+00
+70
+47
+c7
+01
+20
+20
+04
+63
+70
+01
+6c
+06
+20
+20
+7d
+f0
+70
+01
+6c
+04
+70
+42
+5d
+01
+20
+20
+7d
+fb
+18
+0a
+7e
+00
+60
+00
+c5
+3f
+70
+4e
+81
+00
+68
+09
+4e
+7c
+60
+09
+44
+f8
+20
+40
+52
+a0
+20
+40
+02
+eb
+58
+00
+00
+05
+e0
+c0
+80
+00
+20
+20
+7e
+07
+70
+41
+31
+00
+70
+4e
+81
+01
+68
+09
+4e
+7c
+20
+40
+4f
+6a
+1a
+22
+0a
+00
+58
+00
+00
+01
+e0
+a0
+80
+00
+20
+40
+02
+eb
+58
+00
+00
+04
+e0
+c0
+80
+00
+20
+20
+7e
+07
+da
+20
+44
+01
+ea
+20
+80
+00
+20
+7a
+00
+00
+98
+c0
+a2
+00
+e8
+c0
+80
+00
+c1
+00
+80
+00
+20
+20
+02
+ec
+20
+40
+58
+c5
+24
+3a
+7d
+e5
+68
+00
+89
+bd
+c5
+84
+fd
+e0
+c0
+02
+02
+fb
+c0
+11
+03
+01
+c0
+0f
+83
+04
+c0
+10
+03
+04
+20
+20
+7d
+d0
+68
+01
+47
+0b
+c3
+01
+82
+fe
+20
+20
+7d
+fd
+58
+00
+00
+00
+60
+02
+00
+51
+20
+60
+00
+00
+70
+00
+7c
+37
+68
+01
+4e
+74
+60
+01
+00
+51
+20
+60
+00
+00
+70
+0b
+2a
+03
+20
+40
+00
+d4
+70
+4e
+73
+5a
+20
+40
+3c
+fc
+68
+12
+01
+38
+79
+3f
+fe
+0f
+60
+12
+00
+4c
+20
+40
+3c
+f4
+d8
+5f
+ff
+ff
+20
+20
+3c
+11
+68
+0a
+4a
+12
+1c
+42
+7e
+00
+98
+46
+7e
+00
+d8
+40
+06
+40
+98
+46
+fc
+00
+20
+40
+7f
+53
+18
+07
+fe
+00
+20
+7a
+00
+00
+1c
+42
+04
+00
+60
+0a
+4a
+12
+68
+09
+4a
+0c
+18
+50
+84
+00
+98
+40
+fe
+00
+1f
+f0
+fe
+00
+60
+01
+4a
+0c
+1f
+f0
+fe
+00
+1f
+e1
+7e
+03
+c1
+80
+00
+00
+20
+40
+48
+16
+24
+7a
+00
+00
+20
+40
+4b
+d0
+20
+7a
+00
+00
+68
+00
+c2
+cf
+c2
+80
+03
+2a
+c2
+80
+83
+2c
+c2
+81
+03
+2e
+20
+60
+00
+00
+70
+89
+71
+bf
+20
+20
+03
+32
+70
+89
+71
+af
+20
+20
+03
+32
+70
+89
+71
+8f
+68
+00
+c2
+d0
+60
+10
+89
+73
+20
+20
+03
+32
+68
+10
+80
+53
+79
+20
+7e
+07
+60
+10
+80
+53
+68
+10
+89
+73
+1f
+e1
+fe
+30
+60
+10
+89
+73
+70
+89
+06
+7c
+70
+89
+72
+aa
+20
+00
+13
+88
+68
+19
+01
+50
+68
+10
+80
+53
+79
+3f
+fe
+07
+60
+10
+80
+53
+18
+50
+84
+00
+60
+09
+42
+d1
+20
+60
+00
+00
+20
+40
+00
+cf
+20
+74
+00
+00
+1f
+f0
+fe
+00
+1f
+e2
+0c
+00
+20
+40
+03
+69
+60
+00
+ca
+0b
+c0
+00
+83
+54
+c0
+03
+03
+85
+1f
+e2
+04
+00
+18
+c2
+22
+00
+68
+00
+c0
+40
+c3
+00
+03
+5e
+1a
+22
+0c
+00
+c6
+84
+80
+00
+18
+42
+7e
+00
+c0
+01
+83
+8c
+c0
+02
+83
+97
+20
+20
+3b
+31
+20
+40
+03
+69
+20
+40
+03
+69
+60
+00
+89
+bd
+20
+40
+03
+59
+20
+20
+7d
+90
+20
+40
+03
+6c
+18
+c2
+04
+00
+18
+50
+84
+00
+60
+09
+49
+38
+20
+60
+00
+00
+1a
+22
+0c
+00
+d8
+a0
+00
+f5
+20
+20
+03
+61
+20
+40
+03
+69
+1f
+e2
+72
+00
+20
+40
+03
+65
+20
+20
+03
+59
+20
+40
+03
+69
+e0
+a0
+80
+00
+c2
+00
+03
+65
+20
+60
+00
+00
+20
+40
+03
+6c
+e8
+c0
+80
+00
+20
+60
+00
+00
+58
+00
+49
+38
+98
+c6
+7c
+00
+24
+62
+80
+00
+d8
+c0
+48
+a2
+20
+60
+00
+00
+df
+20
+00
+03
+d8
+c0
+4a
+08
+18
+c2
+22
+00
+68
+01
+49
+a2
+1f
+f0
+fe
+00
+1f
+e2
+0a
+00
+1a
+22
+0c
+00
+e8
+c0
+80
+00
+e0
+a0
+80
+00
+20
+40
+03
+80
+c2
+00
+03
+78
+18
+a2
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+49
+a2
+20
+60
+00
+00
+58
+00
+49
+a0
+98
+a6
+7c
+00
+24
+62
+80
+00
+d8
+a0
+49
+3c
+20
+60
+00
+00
+20
+40
+03
+69
+1f
+e2
+72
+00
+60
+00
+8b
+4e
+20
+40
+03
+63
+68
+08
+8b
+4e
+da
+20
+0b
+4f
+20
+20
+04
+33
+18
+c2
+7e
+00
+60
+01
+09
+dd
+da
+20
+00
+09
+20
+40
+40
+05
+68
+01
+42
+de
+e0
+a1
+00
+00
+58
+00
+02
+a1
+e0
+a1
+00
+00
+68
+01
+09
+dd
+1f
+e2
+0c
+00
+20
+20
+03
+61
+18
+c2
+24
+00
+20
+40
+4b
+d0
+24
+7a
+00
+00
+68
+09
+4e
+7c
+20
+40
+4f
+6a
+c4
+00
+00
+00
+68
+00
+c5
+95
+c1
+00
+00
+00
+1a
+42
+0c
+00
+20
+40
+03
+69
+1f
+e2
+72
+00
+60
+00
+ce
+82
+20
+40
+03
+63
+70
+09
+bd
+1b
+20
+20
+4b
+d6
+68
+01
+42
+d8
+20
+3a
+3e
+37
+20
+20
+3e
+35
+20
+40
+52
+4a
+58
+00
+03
+a6
+60
+01
+42
+8a
+70
+0b
+2a
+00
+70
+01
+6c
+06
+20
+40
+3e
+7f
+58
+00
+04
+20
+60
+01
+42
+92
+58
+00
+04
+29
+60
+01
+42
+8e
+58
+00
+04
+2b
+60
+01
+42
+96
+58
+00
+04
+2a
+60
+01
+42
+94
+58
+00
+03
+42
+60
+01
+42
+90
+58
+00
+04
+23
+60
+01
+42
+8c
+58
+00
+48
+a2
+1f
+f0
+fe
+00
+60
+01
+49
+38
+60
+01
+49
+3a
+20
+40
+3d
+3e
+58
+00
+49
+3c
+1f
+f0
+fe
+00
+60
+01
+49
+a0
+60
+01
+49
+a2
+68
+00
+ce
+73
+c0
+2d
+03
+db
+20
+35
+83
+d9
+68
+01
+4e
+6f
+1f
+f0
+fe
+00
+60
+01
+4e
+6f
+68
+01
+4e
+71
+1f
+f0
+fe
+00
+60
+01
+4e
+71
+20
+40
+03
+e7
+68
+04
+09
+c6
+24
+3a
+03
+d4
+68
+01
+4a
+d4
+1f
+f0
+fe
+00
+20
+3a
+03
+d4
+60
+01
+4e
+71
+70
+4a
+0a
+2f
+20
+40
+03
+25
+20
+40
+03
+71
+70
+82
+80
+03
+20
+60
+00
+00
+70
+4a
+0a
+3c
+20
+20
+03
+d5
+1c
+e2
+7e
+00
+20
+3a
+03
+07
+20
+40
+53
+0d
+20
+40
+42
+eb
+58
+00
+00
+00
+60
+04
+40
+40
+60
+01
+47
+0b
+58
+00
+00
+00
+60
+01
+4a
+0c
+60
+01
+4a
+0e
+70
+4a
+0a
+3d
+20
+20
+03
+d5
+20
+40
+62
+c4
+58
+00
+07
+e2
+da
+20
+09
+c6
+d8
+40
+00
+0c
+20
+40
+63
+0d
+20
+40
+62
+c7
+68
+04
+09
+c6
+20
+7a
+00
+00
+68
+00
+c2
+cf
+c2
+80
+03
+f4
+c2
+80
+84
+02
+c2
+81
+04
+12
+20
+60
+00
+00
+68
+09
+09
+ca
+68
+01
+09
+d0
+18
+42
+24
+00
+1f
+e2
+22
+00
+1f
+f0
+fe
+00
+60
+01
+4e
+71
+1a
+22
+7e
+00
+98
+46
+26
+00
+1a
+63
+a6
+00
+1a
+42
+7e
+00
+9a
+66
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+4e
+6f
+20
+60
+00
+00
+68
+09
+09
+c8
+68
+01
+09
+ce
+18
+42
+24
+00
+1f
+e2
+22
+00
+98
+46
+26
+00
+1a
+6b
+26
+00
+1a
+42
+7e
+00
+9a
+66
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+4e
+6f
+1a
+63
+a6
+00
+1a
+22
+7e
+00
+9a
+66
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+4e
+71
+20
+60
+00
+00
+68
+09
+09
+c6
+68
+01
+09
+cc
+18
+42
+24
+00
+1f
+e2
+22
+00
+98
+46
+26
+00
+1a
+42
+7e
+00
+9a
+66
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+4e
+6f
+1a
+6b
+fe
+00
+9a
+20
+fe
+00
+1f
+f0
+fe
+00
+60
+01
+4e
+71
+20
+60
+00
+00
+20
+40
+48
+12
+24
+7a
+00
+00
+20
+20
+03
+42
+78
+34
+7c
+00
+68
+12
+01
+38
+79
+34
+7e
+1a
+60
+12
+00
+4c
+20
+40
+3c
+f4
+70
+00
+9f
+01
+20
+60
+00
+00
+20
+60
+00
+00
+1a
+62
+7e
+00
+1f
+e1
+7e
+f0
+c1
+28
+00
+00
+1a
+62
+7e
+00
+60
+00
+ca
+0a
+20
+20
+03
+71
+70
+47
+ca
+00
+20
+60
+00
+00
+68
+00
+c7
+ca
+24
+7a
+00
+00
+70
+47
+ca
+01
+60
+08
+c7
+36
+18
+42
+72
+00
+d8
+a0
+48
+3c
+1a
+22
+0c
+00
+20
+20
+7e
+cd
+20
+40
+05
+01
+20
+40
+05
+0b
+df
+20
+00
+0b
+20
+20
+05
+26
+68
+00
+c7
+c6
+20
+7a
+00
+00
+68
+02
+47
+29
+68
+08
+c7
+2d
+98
+40
+84
+00
+1c
+42
+7e
+00
+98
+46
+7c
+00
+24
+21
+04
+3f
+68
+08
+c7
+2d
+18
+46
+7c
+06
+20
+22
+84
+4c
+70
+47
+cb
+00
+60
+02
+47
+29
+20
+40
+04
+56
+20
+40
+04
+ca
+20
+40
+04
+5b
+68
+00
+c7
+c1
+c1
+ff
+80
+00
+68
+00
+c7
+cc
+c1
+80
+80
+00
+68
+00
+c7
+cb
+c1
+80
+00
+00
+20
+20
+04
+b4
+68
+00
+c7
+ca
+24
+7a
+00
+00
+68
+00
+c7
+c1
+c0
+ff
+84
+5f
+20
+20
+04
+90
+68
+00
+c7
+cc
+c1
+80
+80
+00
+20
+40
+04
+31
+20
+20
+04
+6a
+c0
+00
+84
+80
+c0
+01
+04
+83
+c0
+01
+84
+86
+20
+20
+3b
+31
+20
+40
+05
+f0
+70
+47
+c6
+01
+68
+02
+48
+25
+60
+02
+47
+79
+20
+40
+05
+f2
+70
+47
+c1
+01
+20
+60
+00
+00
+68
+00
+c7
+c1
+c1
+7f
+80
+00
+c0
+08
+84
+70
+c0
+09
+04
+72
+c0
+09
+84
+74
+20
+60
+00
+00
+70
+47
+c1
+02
+20
+60
+00
+00
+70
+47
+c1
+03
+20
+60
+00
+00
+70
+47
+c1
+ff
+70
+4a
+0a
+39
+20
+40
+03
+71
+d8
+40
+00
+07
+da
+20
+47
+db
+68
+02
+47
+dd
+60
+02
+47
+79
+20
+40
+05
+f2
+70
+47
+c7
+00
+70
+48
+38
+01
+70
+48
+3a
+0a
+20
+20
+7d
+2f
+70
+47
+c1
+11
+70
+0b
+4e
+aa
+20
+20
+04
+88
+70
+47
+c1
+12
+70
+0b
+4e
+55
+20
+20
+04
+88
+70
+47
+c1
+13
+70
+0b
+4e
+22
+70
+0b
+4f
+01
+68
+02
+41
+40
+60
+02
+0b
+50
+20
+20
+04
+8c
+70
+0b
+54
+00
+da
+20
+0b
+4e
+d8
+40
+00
+07
+20
+20
+04
+33
+20
+40
+03
+42
+20
+34
+04
+9d
+70
+47
+c0
+0a
+70
+48
+2c
+00
+20
+60
+00
+00
+70
+48
+2c
+01
+68
+04
+48
+2d
+60
+04
+0b
+4e
+e8
+c0
+80
+00
+e0
+a0
+80
+00
+d8
+40
+00
+09
+da
+20
+0b
+4e
+20
+20
+04
+33
+68
+00
+c8
+2c
+20
+3a
+04
+95
+68
+00
+c7
+c0
+24
+7a
+00
+00
+20
+40
+00
+c4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+20
+40
+3b
+e2
+68
+01
+c2
+0f
+20
+7a
+00
+00
+68
+04
+47
+b8
+20
+40
+7f
+16
+60
+0a
+41
+fb
+68
+00
+c7
+cd
+c0
+00
+84
+af
+70
+47
+cd
+01
+20
+20
+3c
+11
+1c
+e2
+7e
+00
+20
+3a
+04
+b3
+70
+47
+cd
+00
+20
+20
+3c
+11
+20
+20
+7e
+2b
+70
+47
+cd
+00
+68
+00
+c8
+3a
+24
+7a
+00
+00
+20
+40
+00
+c4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+20
+40
+3b
+e2
+68
+01
+c2
+0f
+20
+7a
+00
+00
+58
+00
+9c
+40
+20
+40
+7f
+16
+60
+0a
+41
+fb
+20
+20
+3c
+11
+70
+4a
+0a
+3b
+20
+20
+03
+71
+70
+47
+d1
+00
+70
+47
+ca
+00
+70
+47
+c1
+01
+68
+00
+8b
+54
+c1
+03
+80
+00
+20
+20
+3e
+0a
+68
+00
+c7
+ca
+20
+7a
+00
+00
+20
+40
+05
+b0
+70
+47
+34
+00
+68
+00
+c7
+cf
+1f
+e0
+fe
+01
+60
+00
+c7
+cf
+70
+47
+cc
+00
+20
+40
+04
+3b
+24
+2c
+04
+de
+20
+40
+05
+3c
+20
+34
+04
+de
+70
+47
+cc
+01
+70
+47
+d0
+00
+70
+47
+d1
+00
+70
+47
+cf
+00
+68
+00
+c7
+35
+1f
+e0
+fe
+01
+60
+00
+c7
+35
+20
+20
+04
+f9
+70
+47
+cb
+01
+68
+00
+c7
+d1
+1f
+e0
+fe
+01
+60
+00
+c7
+d1
+68
+00
+c7
+c1
+c0
+ff
+84
+f1
+68
+00
+c7
+34
+1f
+e0
+fe
+01
+60
+00
+c7
+34
+20
+00
+00
+0a
+c0
+81
+84
+d1
+68
+00
+c7
+c7
+20
+5a
+05
+fb
+68
+00
+c7
+cf
+c0
+00
+84
+f6
+c0
+02
+84
+f4
+68
+00
+c7
+d1
+c0
+7f
+82
+c9
+20
+20
+04
+fb
+68
+00
+c7
+d1
+c0
+7f
+84
+c2
+20
+20
+04
+fb
+70
+47
+d0
+ff
+20
+20
+04
+f7
+70
+47
+d0
+01
+20
+40
+04
+31
+20
+20
+04
+fb
+68
+00
+c7
+b6
+20
+20
+04
+fc
+68
+00
+c7
+b5
+60
+00
+c7
+2d
+20
+60
+00
+00
+70
+89
+56
+cb
+70
+89
+55
+d0
+20
+60
+00
+00
+68
+08
+c7
+93
+20
+40
+05
+08
+20
+40
+39
+b1
+20
+20
+39
+ce
+68
+00
+c7
+c7
+20
+7a
+00
+00
+20
+20
+04
+fe
+60
+08
+80
+17
+18
+40
+a2
+00
+20
+20
+3a
+13
+79
+20
+2a
+00
+78
+46
+fc
+00
+78
+2e
+fc
+00
+78
+30
+7c
+00
+78
+50
+fc
+00
+78
+43
+fc
+00
+20
+40
+49
+76
+68
+00
+c7
+ce
+1f
+e2
+72
+00
+da
+20
+48
+5c
+ea
+20
+80
+00
+08
+00
+86
+08
+1a
+20
+a2
+01
+c2
+00
+05
+15
+37
+d3
+82
+00
+20
+00
+00
+64
+20
+40
+05
+1d
+20
+20
+39
+b1
+70
+89
+55
+d4
+20
+00
+00
+04
+70
+89
+55
+d2
+20
+00
+00
+04
+70
+89
+55
+d1
+20
+00
+00
+04
+70
+89
+55
+d0
+70
+89
+56
+e0
+20
+60
+00
+00
+18
+00
+2a
+00
+68
+08
+c7
+93
+20
+40
+05
+f7
+20
+40
+39
+bf
+78
+4e
+fc
+00
+78
+26
+fc
+00
+78
+30
+fc
+00
+78
+50
+7c
+00
+78
+43
+fc
+00
+20
+40
+49
+76
+68
+02
+47
+d2
+98
+00
+12
+00
+78
+28
+7c
+00
+db
+60
+27
+10
+37
+c1
+84
+00
+24
+6c
+00
+00
+d8
+a0
+47
+39
+09
+80
+00
+08
+19
+89
+7e
+00
+e0
+a0
+80
+00
+c2
+00
+05
+37
+20
+20
+39
+92
+68
+00
+c7
+39
+1f
+ed
+fe
+00
+1f
+eb
+7e
+00
+60
+00
+c7
+d8
+1f
+e6
+7c
+10
+24
+21
+64
+c0
+68
+00
+c7
+d8
+1f
+e0
+fe
+01
+d8
+c0
+47
+39
+98
+c0
+8c
+00
+e8
+c1
+80
+00
+1f
+e3
+7e
+00
+60
+01
+47
+d9
+68
+04
+47
+3a
+1f
+e3
+7e
+00
+60
+03
+c7
+db
+df
+20
+00
+07
+d8
+c0
+47
+db
+d8
+a0
+47
+db
+20
+40
+05
+81
+68
+00
+c7
+e2
+1f
+e2
+72
+00
+d8
+a0
+47
+e3
+d8
+c0
+47
+d2
+20
+40
+7e
+cd
+18
+a2
+22
+00
+68
+00
+c7
+d8
+1f
+e0
+fe
+02
+1f
+e2
+72
+00
+d8
+c0
+47
+39
+1a
+22
+0a
+00
+20
+40
+7e
+cd
+68
+00
+c7
+d8
+68
+08
+c7
+e2
+98
+40
+fe
+00
+1f
+e0
+fe
+01
+1f
+e9
+fe
+00
+1f
+e0
+fe
+01
+1f
+e2
+72
+00
+d8
+c0
+47
+e3
+20
+40
+05
+94
+df
+20
+00
+02
+d8
+a0
+48
+23
+d8
+c0
+47
+37
+20
+40
+05
+88
+68
+01
+48
+23
+68
+09
+47
+d9
+98
+46
+7c
+00
+24
+22
+e4
+c0
+68
+00
+c7
+d8
+1f
+e2
+72
+00
+d8
+c0
+47
+39
+18
+c0
+8c
+01
+d8
+a0
+47
+e3
+20
+40
+05
+79
+68
+00
+c7
+d8
+1f
+e2
+72
+00
+d8
+a0
+47
+e3
+d8
+c0
+47
+e3
+20
+40
+05
+81
+20
+20
+31
+d4
+1f
+22
+7e
+00
+20
+7a
+00
+00
+e8
+c1
+00
+00
+18
+c0
+8d
+ff
+1f
+e3
+7e
+00
+e0
+a0
+80
+00
+c2
+00
+05
+7b
+20
+60
+00
+00
+1f
+22
+7e
+00
+20
+7a
+00
+00
+e8
+c0
+80
+00
+1f
+ed
+fe
+00
+e0
+a0
+80
+00
+c2
+00
+05
+83
+20
+60
+00
+00
+1f
+22
+7e
+00
+20
+7a
+00
+00
+18
+c2
+7e
+00
+9f
+20
+fe
+00
+1f
+e0
+ff
+ff
+1f
+e2
+0c
+00
+e8
+c0
+80
+00
+18
+c0
+8d
+fe
+1f
+ed
+fe
+00
+e0
+a0
+80
+00
+c2
+00
+05
+8e
+20
+60
+00
+00
+58
+00
+ff
+ff
+d8
+a0
+10
+21
+da
+20
+00
+00
+1a
+21
+7c
+07
+24
+22
+85
+9a
+e8
+c8
+80
+00
+c2
+87
+85
+a4
+28
+4c
+00
+00
+1f
+e3
+fe
+00
+20
+20
+85
+9f
+98
+a2
+fe
+00
+18
+43
+04
+00
+1a
+20
+a2
+01
+c2
+00
+05
+97
+60
+01
+47
+37
+20
+60
+00
+00
+28
+4f
+fe
+00
+20
+20
+05
+9c
+1f
+22
+7e
+00
+20
+3a
+05
+ae
+e8
+c0
+80
+00
+1f
+e3
+fe
+00
+98
+41
+84
+00
+e0
+a8
+80
+00
+1f
+ec
+84
+00
+c2
+00
+05
+a6
+e0
+a8
+80
+00
+20
+60
+00
+00
+70
+47
+ce
+05
+68
+00
+c7
+e2
+68
+08
+c7
+ce
+98
+40
+fe
+00
+68
+08
+c7
+36
+98
+40
+fe
+00
+60
+00
+c7
+ce
+68
+00
+c7
+d2
+c3
+00
+05
+bb
+58
+00
+00
+55
+20
+20
+05
+bc
+58
+00
+00
+aa
+60
+00
+c8
+5c
+68
+00
+c7
+e2
+1f
+e2
+72
+00
+d8
+a0
+48
+5d
+d8
+c0
+47
+d2
+20
+40
+7e
+cd
+68
+08
+c7
+35
+18
+41
+04
+03
+18
+4d
+84
+00
+68
+00
+c7
+36
+1f
+e2
+72
+00
+1f
+ed
+fe
+00
+1f
+eb
+7e
+00
+98
+41
+fe
+00
+e0
+a0
+80
+00
+18
+a2
+22
+00
+d8
+c0
+48
+3c
+d8
+a0
+0b
+4e
+20
+40
+05
+88
+68
+00
+c7
+36
+1f
+e2
+72
+00
+d8
+c0
+0b
+4e
+d8
+a0
+0b
+4e
+d8
+40
+00
+00
+20
+40
+05
+a6
+68
+00
+8b
+4e
+1f
+e0
+fe
+01
+60
+00
+8b
+4e
+68
+00
+c7
+36
+1f
+e0
+fe
+01
+1f
+e2
+72
+00
+d8
+c0
+0b
+4e
+1a
+22
+0a
+00
+20
+40
+7e
+cd
+18
+a2
+24
+00
+68
+00
+c7
+ce
+1f
+e0
+ff
+fc
+1f
+e9
+fe
+00
+1f
+e0
+fe
+01
+1f
+e2
+72
+00
+d8
+c0
+48
+5d
+20
+40
+05
+94
+1a
+40
+a5
+ff
+ea
+48
+80
+00
+df
+20
+00
+02
+1a
+42
+0a
+00
+d8
+c0
+47
+37
+20
+40
+05
+88
+df
+20
+00
+02
+1a
+42
+0c
+00
+1a
+42
+0a
+00
+20
+20
+05
+a6
+70
+47
+35
+00
+70
+47
+93
+4e
+68
+00
+c7
+e2
+1f
+e2
+72
+00
+d8
+c0
+47
+79
+d8
+a0
+47
+d2
+20
+20
+05
+88
+60
+08
+80
+17
+18
+40
+a2
+04
+70
+89
+6d
+07
+20
+20
+3a
+13
+68
+00
+c7
+d0
+20
+7a
+00
+00
+c0
+7f
+86
+00
+1f
+e0
+ff
+ff
+60
+00
+c7
+d0
+68
+08
+c7
+a4
+20
+40
+06
+06
+18
+40
+84
+01
+18
+41
+04
+03
+60
+08
+c7
+a4
+20
+60
+00
+00
+68
+00
+c7
+79
+1f
+e1
+7e
+03
+1f
+ef
+a2
+04
+58
+00
+47
+a5
+9a
+20
+fe
+00
+98
+40
+8c
+00
+e8
+c0
+80
+00
+60
+00
+c7
+93
+20
+60
+00
+00
+68
+01
+47
+c8
+1f
+e0
+fe
+01
+60
+01
+47
+c8
+20
+40
+05
+fb
+20
+20
+06
+1e
+70
+47
+d0
+ff
+20
+40
+05
+f0
+68
+00
+c7
+c1
+c1
+ff
+80
+00
+da
+20
+0b
+4e
+d8
+40
+00
+08
+20
+40
+04
+33
+20
+40
+05
+b0
+58
+00
+00
+00
+60
+01
+47
+c8
+20
+00
+4e
+20
+68
+01
+47
+c8
+c0
+7f
+82
+c9
+20
+40
+04
+3b
+24
+2c
+06
+0f
+20
+40
+05
+3c
+20
+34
+06
+0f
+70
+47
+c6
+01
+70
+47
+c7
+00
+70
+47
+c8
+00
+70
+4a
+0a
+3a
+20
+20
+03
+71
+20
+60
+00
+00
+91
+55
+aa
+55
+ad
+1f
+02
+02
+3f
+30
+30
+30
+30
+00
+01
+01
+00
+02
+1a
+28
+e7
+09
+f6
+08
+df
+fa
+80
+46
+e7
+09
+f2
+08
+df
+fa
+80
+3e
+88
+82
+8c
+83
+e7
+09
+f0
+a3
+df
+fa
+80
+32
+e3
+09
+f6
+08
+df
+fa
+80
+78
+e3
+09
+f2
+08
+df
+fa
+80
+70
+88
+82
+8c
+83
+e3
+09
+f0
+a3
+df
+fa
+80
+64
+89
+82
+8a
+83
+e0
+a3
+f6
+08
+df
+fa
+80
+58
+89
+82
+8a
+83
+e0
+a3
+f2
+08
+df
+fa
+80
+4c
+80
+d2
+80
+fa
+80
+c6
+80
+d4
+80
+69
+80
+f2
+80
+33
+80
+10
+80
+a6
+80
+ea
+80
+9a
+80
+a8
+80
+da
+80
+e2
+80
+ca
+80
+33
+89
+82
+8a
+83
+ec
+fa
+e4
+93
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+f0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+df
+e9
+de
+e7
+80
+0d
+89
+82
+8a
+83
+e4
+93
+a3
+f6
+08
+df
+f9
+ec
+fa
+a9
+f0
+ed
+fb
+22
+89
+82
+8a
+83
+ec
+fa
+e0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+f0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+df
+ea
+de
+e8
+80
+db
+89
+82
+8a
+83
+e4
+93
+a3
+f2
+08
+df
+f9
+80
+cc
+88
+f0
+ef
+60
+01
+0e
+4e
+60
+c3
+88
+f0
+ed
+24
+02
+b4
+04
+00
+50
+b9
+f5
+82
+eb
+24
+02
+b4
+04
+00
+50
+af
+23
+23
+45
+82
+23
+90
+00
+5e
+73
+bb
+01
+06
+89
+82
+8a
+83
+e0
+22
+50
+02
+e7
+22
+bb
+fe
+02
+e3
+22
+89
+82
+8a
+83
+e4
+93
+22
+bb
+01
+0c
+e5
+82
+29
+f5
+82
+e5
+83
+3a
+f5
+83
+e0
+22
+50
+06
+e9
+25
+82
+f8
+e6
+22
+bb
+fe
+06
+e9
+25
+82
+f8
+e2
+22
+e5
+82
+29
+f5
+82
+e5
+83
+3a
+f5
+83
+e4
+93
+22
+bb
+01
+06
+89
+82
+8a
+83
+f0
+22
+50
+02
+f7
+22
+bb
+fe
+01
+f3
+22
+c2
+d5
+ec
+30
+e7
+09
+b2
+d5
+e4
+c3
+9d
+fd
+e4
+9c
+fc
+ee
+30
+e7
+15
+b2
+d5
+e4
+c3
+9f
+ff
+e4
+9e
+fe
+12
+01
+ea
+c3
+e4
+9d
+fd
+e4
+9c
+fc
+80
+03
+12
+01
+ea
+30
+d5
+07
+c3
+e4
+9f
+ff
+e4
+9e
+fe
+22
+c5
+f0
+f8
+a3
+e0
+28
+f0
+c5
+f0
+f8
+e5
+82
+15
+82
+70
+02
+15
+83
+e0
+38
+f0
+22
+a3
+f8
+e0
+c5
+f0
+25
+f0
+f0
+e5
+82
+15
+82
+70
+02
+15
+83
+e0
+c8
+38
+f0
+e8
+22
+d0
+83
+d0
+82
+f8
+e4
+93
+70
+12
+74
+01
+93
+70
+0d
+a3
+a3
+93
+f8
+74
+01
+93
+f5
+82
+88
+83
+e4
+73
+74
+02
+93
+68
+60
+ef
+a3
+a3
+a3
+80
+df
+8a
+83
+89
+82
+e4
+73
+bc
+00
+0b
+be
+00
+29
+ef
+8d
+f0
+84
+ff
+ad
+f0
+22
+e4
+cc
+f8
+75
+f0
+08
+ef
+2f
+ff
+ee
+33
+fe
+ec
+33
+fc
+ee
+9d
+ec
+98
+40
+05
+fc
+ee
+9d
+fe
+0f
+d5
+f0
+e9
+e4
+ce
+fd
+22
+ed
+f8
+f5
+f0
+ee
+84
+20
+d2
+1c
+fe
+ad
+f0
+75
+f0
+08
+ef
+2f
+ff
+ed
+33
+fd
+40
+07
+98
+50
+06
+d5
+f0
+f2
+22
+c3
+98
+fd
+0f
+d5
+f0
+ea
+22
+78
+7f
+e4
+f6
+d8
+fd
+75
+81
+cf
+02
+02
+86
+02
+02
+e1
+e4
+93
+a3
+f8
+e4
+93
+a3
+40
+03
+f6
+80
+01
+f2
+08
+df
+f4
+80
+29
+e4
+93
+a3
+f8
+54
+07
+24
+0c
+c8
+c3
+33
+c4
+54
+0f
+44
+20
+c8
+83
+40
+04
+f4
+56
+80
+01
+46
+f6
+df
+e4
+80
+0b
+01
+02
+04
+08
+10
+20
+40
+80
+90
+02
+cb
+e4
+7e
+01
+93
+60
+bc
+a3
+ff
+54
+3f
+30
+e5
+09
+54
+1f
+fe
+e4
+93
+a3
+60
+01
+0e
+cf
+54
+c0
+25
+e0
+60
+a8
+40
+b8
+e4
+93
+a3
+fa
+e4
+93
+a3
+f8
+e4
+93
+a3
+c8
+c5
+82
+c8
+ca
+c5
+83
+ca
+f0
+a3
+c8
+c5
+82
+c8
+ca
+c5
+83
+ca
+df
+e9
+de
+e7
+80
+be
+52
+1b
+ab
+ff
+04
+2a
+00
+00
+00
+ff
+16
+32
+ff
+15
+b9
+00
+00
+00
+00
+00
+00
+00
+12
+1a
+ab
+12
+1c
+6c
+12
+18
+ba
+12
+10
+7a
+12
+0b
+4d
+90
+0b
+2a
+e0
+14
+60
+74
+24
+fe
+70
+e9
+90
+00
+a0
+e4
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+12
+1e
+8e
+90
+80
+70
+e4
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+80
+7c
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+80
+78
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+80
+74
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+7f
+02
+12
+0e
+90
+50
+08
+c2
+06
+7f
+02
+71
+ac
+80
+06
+d2
+06
+7f
+02
+71
+ac
+7f
+03
+12
+0e
+90
+50
+08
+c2
+06
+7f
+03
+71
+ac
+80
+06
+d2
+06
+7f
+03
+71
+ac
+d2
+07
+7f
+08
+12
+12
+80
+12
+0f
+6e
+12
+15
+ab
+80
+fe
+90
+4e
+a4
+e0
+70
+33
+90
+4e
+9e
+e0
+70
+2d
+90
+4e
+9a
+e0
+ff
+64
+01
+60
+0a
+ef
+64
+02
+60
+05
+ef
+64
+07
+70
+1a
+90
+00
+a0
+e4
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+12
+0f
+6e
+c2
+08
+7f
+18
+12
+0e
+e8
+12
+15
+ab
+41
+e4
+12
+1e
+82
+41
+e4
+41
+e4
+22
+ac
+07
+a2
+06
+92
+04
+12
+1b
+8a
+af
+04
+a2
+06
+b3
+92
+03
+12
+12
+93
+af
+04
+c2
+05
+7b
+01
+7a
+80
+79
+70
+a2
+05
+92
+01
+90
+1c
+15
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+fe
+fd
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+fd
+30
+01
+20
+90
+1c
+15
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+31
+04
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+4f
+21
+4a
+90
+1c
+15
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+31
+04
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5f
+21
+4a
+90
+1c
+1b
+ef
+f0
+31
+be
+05
+cd
+01
+06
+9d
+02
+06
+9d
+04
+05
+ee
+0a
+06
+10
+12
+06
+9d
+13
+07
+14
+14
+07
+93
+15
+06
+6e
+18
+06
+7f
+27
+04
+6b
+2f
+06
+cc
+39
+06
+fc
+3a
+06
+f6
+3b
+05
+c7
+3c
+04
+68
+3d
+06
+7f
+3e
+00
+00
+07
+bb
+12
+1a
+68
+c2
+06
+7f
+18
+71
+ac
+c2
+06
+7f
+02
+71
+ac
+c2
+06
+7f
+03
+71
+ac
+c2
+06
+7f
+04
+71
+ac
+c2
+06
+7f
+17
+71
+ac
+c2
+06
+7f
+1b
+71
+ac
+c2
+06
+e4
+ff
+71
+ac
+c2
+06
+e4
+ff
+71
+ac
+c2
+06
+7f
+06
+71
+ac
+d2
+07
+7f
+08
+12
+12
+80
+12
+1b
+d2
+12
+19
+f2
+90
+1c
+1b
+e0
+64
+2f
+70
+39
+12
+09
+39
+90
+4e
+b6
+ef
+f0
+7b
+01
+7a
+4e
+79
+b9
+7d
+01
+7c
+00
+7f
+d8
+7e
+3f
+12
+12
+a0
+90
+4e
+b9
+e0
+d3
+94
+03
+40
+03
+74
+02
+f0
+7b
+01
+7a
+4e
+79
+b9
+7d
+01
+7c
+00
+7f
+d8
+7e
+3f
+12
+11
+b2
+12
+08
+59
+90
+80
+80
+e4
+f0
+90
+4e
+bc
+f0
+90
+4e
+bb
+f0
+7b
+01
+7a
+1c
+79
+1c
+7d
+01
+fc
+7f
+d9
+7e
+3f
+12
+12
+a0
+7f
+0a
+7e
+00
+12
+12
+61
+90
+1c
+1b
+e0
+64
+2f
+70
+3d
+a3
+e0
+b4
+09
+1c
+c2
+07
+7f
+08
+12
+12
+80
+7f
+f4
+7e
+01
+12
+12
+61
+d2
+07
+7f
+08
+12
+12
+80
+7f
+f4
+7e
+01
+12
+12
+61
+c2
+07
+7f
+08
+12
+12
+80
+7f
+f4
+7e
+01
+12
+12
+61
+d2
+07
+7f
+08
+12
+12
+80
+7f
+e8
+7e
+03
+12
+12
+61
+e4
+90
+4e
+a1
+f0
+a3
+f0
+90
+1c
+1c
+e0
+64
+09
+70
+5d
+7b
+01
+7a
+03
+79
+72
+7d
+06
+fc
+7f
+c6
+7e
+3f
+12
+12
+a0
+7f
+0a
+7e
+00
+12
+12
+61
+7b
+01
+7a
+45
+79
+3e
+7d
+06
+7c
+00
+7f
+cc
+7e
+3f
+12
+12
+a0
+90
+03
+72
+e0
+f4
+70
+24
+a3
+e0
+f4
+70
+1f
+a3
+e0
+b4
+ff
+1a
+a3
+e0
+b4
+ff
+15
+a3
+e0
+b4
+ff
+10
+a3
+e0
+b4
+ff
+0b
+7f
+0d
+f1
+bc
+90
+4e
+9a
+74
+03
+f0
+22
+90
+4e
+9a
+74
+08
+f0
+7f
+27
+e1
+bc
+02
+13
+90
+12
+1b
+d2
+02
+19
+f2
+7f
+0e
+f1
+bc
+7f
+02
+f1
+bc
+90
+4e
+9a
+74
+05
+f0
+90
+4e
+9f
+e0
+60
+06
+e4
+90
+4e
+9b
+f0
+22
+90
+4e
+9b
+74
+03
+f0
+22
+90
+47
+18
+74
+04
+f0
+7e
+47
+7f
+19
+7b
+ff
+7a
+00
+79
+03
+90
+1b
+e6
+f0
+12
+13
+4d
+7f
+0a
+f1
+bc
+90
+4e
+9b
+74
+03
+f0
+22
+90
+4e
+9a
+74
+02
+f0
+12
+0e
+68
+90
+00
+40
+e0
+60
+fa
+7b
+01
+7a
+00
+79
+40
+7d
+06
+7c
+00
+7f
+b0
+7e
+3f
+12
+11
+b2
+7f
+0a
+7e
+00
+12
+12
+61
+7b
+01
+7a
+4e
+79
+9a
+7d
+01
+7c
+00
+7f
+d9
+7e
+3f
+12
+11
+b2
+7f
+0a
+7e
+00
+12
+12
+61
+7b
+01
+7a
+4e
+79
+9a
+7d
+01
+7c
+00
+7f
+da
+7e
+3f
+12
+11
+b2
+7f
+05
+f1
+bc
+e4
+90
+4e
+9b
+f0
+90
+4e
+9f
+f0
+22
+7b
+01
+7a
+42
+79
+61
+7d
+10
+7c
+00
+7f
+b6
+7e
+3f
+02
+11
+b2
+7b
+01
+7a
+00
+79
+40
+7d
+06
+7c
+00
+12
+1b
+09
+7b
+01
+7a
+00
+79
+40
+7d
+06
+7c
+00
+7f
+b0
+7e
+3f
+12
+11
+b2
+90
+4e
+9b
+e0
+b4
+01
+09
+12
+13
+90
+e4
+90
+4e
+9b
+f0
+22
+90
+4e
+9b
+e0
+b4
+03
+11
+90
+4e
+9a
+74
+03
+f0
+e4
+a3
+f0
+7f
+0d
+f1
+bc
+7f
+01
+e1
+bc
+90
+4e
+9a
+74
+06
+f0
+22
+7b
+01
+7a
+47
+79
+db
+7d
+06
+7c
+00
+7f
+d2
+7e
+3f
+12
+11
+b2
+90
+4e
+9a
+74
+01
+f0
+fb
+7a
+4e
+79
+9a
+fd
+7c
+00
+7f
+d9
+7e
+3f
+12
+11
+b2
+7f
+23
+e1
+bc
+e4
+90
+4e
+c0
+f0
+22
+12
+0e
+68
+90
+4e
+c0
+74
+01
+f0
+fb
+7a
+4e
+79
+9a
+fd
+7c
+00
+7f
+da
+7e
+3f
+02
+11
+b2
+e4
+90
+4e
+cd
+f0
+7f
+0e
+f1
+bc
+7f
+02
+f1
+bc
+90
+4e
+9a
+74
+07
+f0
+90
+1c
+1c
+74
+09
+f0
+12
+0e
+68
+7b
+01
+7a
+03
+79
+72
+7d
+06
+7c
+00
+7f
+c6
+7e
+3f
+12
+11
+b2
+7f
+0a
+7e
+00
+12
+12
+61
+7b
+01
+7a
+45
+79
+3e
+7d
+06
+7c
+00
+7f
+cc
+7e
+3f
+12
+11
+b2
+7f
+0a
+7e
+00
+12
+12
+61
+7b
+01
+7a
+1c
+79
+1c
+7d
+01
+7c
+00
+7f
+d9
+7e
+3f
+12
+11
+b2
+7f
+0a
+7e
+00
+12
+12
+61
+7b
+01
+7a
+1c
+79
+1c
+7d
+01
+7c
+00
+7f
+da
+7e
+3f
+12
+11
+b2
+e4
+90
+4e
+9b
+f0
+90
+4e
+9f
+f0
+22
+90
+4e
+9b
+e0
+b4
+08
+0b
+7f
+0d
+f1
+bc
+90
+4e
+9a
+74
+03
+f0
+22
+7f
+27
+f1
+bc
+90
+4e
+9a
+74
+08
+f0
+e4
+90
+4e
+a1
+f0
+a3
+f0
+90
+4e
+cd
+04
+f0
+22
+90
+1c
+08
+ef
+f0
+78
+09
+7c
+1c
+7d
+01
+7b
+ff
+7a
+00
+79
+08
+7e
+00
+7f
+03
+11
+de
+90
+1c
+08
+e0
+90
+1c
+0b
+f0
+7b
+01
+7a
+1c
+79
+09
+7d
+03
+90
+1b
+e7
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+49
+3a
+e0
+ff
+a3
+e0
+90
+1b
+eb
+cf
+f0
+a3
+ef
+f0
+90
+1b
+ea
+e0
+ff
+14
+f0
+ef
+60
+3f
+90
+1b
+e7
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+a8
+a9
+f0
+fa
+12
+01
+04
+ff
+90
+1b
+eb
+e4
+75
+f0
+01
+12
+01
+a8
+85
+f0
+82
+f5
+83
+ef
+f0
+90
+1b
+eb
+e0
+fe
+a3
+e0
+ff
+be
+49
+c6
+bf
+38
+c3
+90
+1b
+eb
+74
+48
+f0
+a3
+74
+a2
+f0
+80
+b7
+90
+1b
+eb
+e0
+ff
+a3
+e0
+90
+49
+3a
+cf
+f0
+a3
+ef
+f0
+22
+d1
+30
+90
+4e
+b6
+e0
+ff
+64
+d0
+60
+04
+ef
+b4
+d1
+0a
+90
+4e
+b9
+e0
+04
+ff
+7d
+06
+31
+0e
+90
+4e
+b6
+e0
+b4
+31
+14
+90
+4e
+b9
+e0
+70
+08
+7d
+06
+7f
+01
+31
+0e
+80
+06
+7d
+06
+7f
+03
+31
+0e
+90
+4e
+b6
+e0
+b4
+50
+0b
+90
+4e
+b9
+e0
+24
+03
+ff
+7d
+06
+31
+0e
+90
+4e
+b6
+e0
+64
+02
+70
+53
+7d
+09
+7f
+5a
+31
+0e
+90
+4e
+b9
+e0
+14
+60
+18
+14
+60
+23
+14
+60
+2e
+24
+03
+70
+36
+7d
+0d
+7f
+15
+31
+0e
+7d
+0e
+7f
+15
+31
+0e
+80
+28
+7d
+0d
+7f
+20
+31
+0e
+7d
+0e
+7f
+20
+31
+0e
+80
+1a
+7d
+0d
+7f
+2a
+31
+0e
+7d
+0e
+7f
+2a
+31
+0e
+80
+0c
+7d
+0d
+7f
+3f
+31
+0e
+7d
+0e
+7f
+3f
+31
+0e
+7d
+09
+e4
+ff
+31
+0e
+90
+80
+81
+e4
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+77
+e0
+44
+02
+f0
+22
+ac
+07
+ed
+44
+80
+90
+02
+18
+f0
+a3
+ef
+f0
+90
+80
+88
+74
+02
+f0
+a3
+e4
+f0
+90
+80
+8e
+f0
+a3
+f0
+90
+80
+06
+74
+02
+f0
+90
+81
+2c
+e0
+30
+e3
+f9
+7f
+00
+22
+e4
+90
+1c
+1d
+f0
+a3
+f0
+e4
+ff
+71
+24
+bf
+31
+18
+7f
+06
+71
+24
+ef
+44
+80
+ff
+90
+1c
+1d
+f0
+7d
+06
+31
+0e
+90
+1c
+1e
+74
+31
+f0
+21
+e8
+e4
+ff
+71
+24
+ef
+64
+30
+70
+7c
+7f
+01
+71
+24
+ef
+54
+f0
+64
+d0
+70
+28
+7f
+1e
+71
+24
+ef
+30
+e0
+08
+90
+1c
+1e
+74
+d1
+f0
+80
+06
+90
+1c
+1e
+74
+d0
+f0
+7f
+06
+71
+24
+ef
+44
+80
+ff
+90
+1c
+1d
+f0
+7d
+06
+31
+0e
+80
+4d
+7f
+01
+71
+24
+ef
+54
+f0
+ff
+bf
+50
+18
+90
+1c
+1e
+74
+50
+f0
+7f
+06
+71
+24
+ef
+44
+80
+ff
+90
+1c
+1d
+f0
+7d
+06
+31
+0e
+80
+2a
+7f
+01
+71
+24
+bf
+02
+1f
+7f
+06
+71
+24
+ef
+44
+80
+ff
+90
+1c
+1d
+f0
+7d
+06
+31
+0e
+90
+1c
+1e
+74
+02
+f0
+7f
+01
+71
+24
+ef
+64
+02
+60
+04
+d1
+30
+21
+40
+90
+1c
+1e
+e0
+64
+d0
+60
+02
+41
+b8
+7d
+09
+7f
+5a
+31
+0e
+7d
+0d
+7f
+0a
+31
+0e
+7d
+1b
+7f
+35
+31
+0e
+7d
+1d
+7f
+db
+31
+0e
+7d
+28
+7f
+b4
+31
+0e
+7d
+29
+7f
+46
+31
+0e
+7d
+2a
+7f
+96
+31
+0e
+7d
+2b
+7f
+8c
+31
+0e
+7d
+2c
+7f
+6e
+31
+0e
+7d
+2d
+7f
+64
+31
+0e
+7d
+38
+7f
+5f
+31
+0e
+7d
+39
+7f
+0f
+31
+0e
+7d
+3a
+7f
+32
+31
+0e
+7d
+3b
+7f
+47
+31
+0e
+7d
+42
+7f
+10
+31
+0e
+7d
+43
+7f
+09
+31
+0e
+7d
+54
+7f
+2e
+31
+0e
+7d
+55
+7f
+f2
+31
+0e
+7d
+61
+7f
+f4
+31
+0e
+7d
+63
+7f
+70
+31
+0e
+7d
+75
+7f
+52
+31
+0e
+7d
+76
+7f
+41
+31
+0e
+7d
+77
+7f
+ed
+31
+0e
+7d
+78
+7f
+23
+31
+0e
+7d
+79
+7f
+46
+31
+0e
+7d
+7a
+7f
+e5
+31
+0e
+7d
+7c
+7f
+48
+31
+0e
+7d
+7d
+7f
+80
+31
+0e
+7d
+7e
+7f
+77
+31
+0e
+7d
+7f
+7f
+01
+31
+0e
+7d
+0b
+e4
+ff
+31
+0e
+7d
+7f
+e4
+ff
+31
+0e
+7d
+09
+e4
+ff
+31
+0e
+90
+1c
+1e
+e0
+b4
+02
+18
+7d
+09
+7f
+5a
+31
+0e
+7d
+26
+7f
+34
+31
+0e
+7d
+19
+7f
+04
+31
+0e
+7d
+09
+e4
+ff
+31
+0e
+90
+1c
+1e
+e0
+64
+50
+70
+3f
+7d
+09
+7f
+5a
+31
+0e
+7d
+5b
+7f
+9a
+31
+0e
+7f
+0d
+71
+24
+ef
+64
+12
+60
+08
+7d
+0d
+7f
+12
+31
+0e
+80
+ef
+7f
+0e
+71
+24
+ef
+64
+c5
+60
+08
+7d
+0e
+7f
+c5
+31
+0e
+80
+ef
+7f
+53
+71
+24
+ef
+64
+48
+60
+08
+7d
+53
+7f
+48
+31
+0e
+80
+ef
+90
+1c
+1e
+e0
+ff
+22
+90
+02
+18
+ef
+f0
+90
+80
+88
+74
+01
+f0
+a3
+e4
+f0
+90
+80
+8e
+04
+f0
+a3
+e4
+f0
+90
+80
+06
+74
+02
+f0
+90
+81
+2c
+e0
+30
+e3
+f9
+90
+02
+1d
+e0
+ff
+22
+e4
+90
+1c
+00
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+c2
+00
+90
+4e
+9a
+e0
+ff
+64
+01
+60
+07
+ef
+64
+07
+60
+02
+c1
+2f
+90
+4e
+c0
+e0
+70
+0a
+90
+4e
+9a
+e0
+64
+01
+70
+02
+c1
+2f
+f1
+d7
+40
+02
+c1
+2f
+90
+4e
+9a
+e0
+b4
+01
+0b
+90
+4e
+a4
+e0
+b4
+02
+12
+d2
+00
+80
+0e
+90
+4e
+cc
+e0
+ff
+90
+4e
+b1
+e0
+6f
+60
+02
+d2
+00
+90
+4e
+cc
+e0
+ff
+90
+4e
+b1
+f0
+bf
+07
+02
+e4
+f0
+90
+4e
+ca
+e0
+64
+01
+60
+0a
+90
+4e
+9a
+e0
+64
+07
+60
+02
+a1
+62
+7f
+18
+d1
+90
+50
+02
+a1
+62
+e4
+90
+4e
+ca
+f0
+d2
+00
+d1
+30
+7f
+02
+71
+24
+ef
+20
+e7
+02
+a1
+62
+90
+4e
+a4
+74
+02
+f0
+90
+4e
+b6
+e0
+64
+02
+60
+16
+7f
+03
+71
+24
+90
+1c
+00
+ef
+f0
+7f
+04
+71
+24
+ef
+f4
+04
+90
+1c
+01
+f0
+80
+29
+7f
+03
+71
+24
+90
+1c
+00
+ef
+f0
+7f
+04
+71
+24
+90
+1c
+01
+ef
+f0
+7f
+12
+71
+24
+90
+1c
+03
+ef
+f0
+e0
+ff
+c4
+54
+0f
+90
+1c
+02
+f0
+ef
+54
+0f
+a3
+f0
+90
+80
+81
+e4
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+77
+e0
+44
+02
+f0
+90
+4e
+b6
+e0
+64
+02
+70
+2a
+90
+1c
+02
+e0
+ff
+30
+e3
+05
+44
+f0
+f0
+80
+07
+90
+1c
+02
+e0
+54
+0f
+f0
+90
+1c
+03
+e0
+ff
+30
+e3
+05
+44
+f0
+f0
+80
+31
+90
+1c
+03
+e0
+54
+0f
+f0
+80
+28
+90
+1c
+00
+e0
+30
+e7
+08
+90
+1c
+02
+74
+ff
+f0
+80
+05
+e4
+90
+1c
+02
+f0
+90
+1c
+01
+e0
+30
+e7
+08
+90
+1c
+03
+74
+ff
+f0
+80
+05
+e4
+90
+1c
+03
+f0
+90
+1c
+02
+e0
+fe
+90
+1c
+00
+e0
+fd
+ee
+ed
+ff
+90
+1b
+c5
+ee
+f0
+a3
+ef
+f0
+90
+1c
+03
+e0
+fe
+90
+1c
+01
+e0
+fd
+ee
+ed
+ff
+90
+1b
+c7
+ee
+f0
+a3
+ef
+f0
+90
+4e
+b9
+e0
+b4
+02
+45
+90
+4e
+b6
+e0
+b4
+31
+3e
+90
+1b
+c7
+e0
+fc
+a3
+e0
+fd
+ae
+04
+78
+02
+ce
+a2
+e7
+13
+ce
+13
+d8
+f8
+2d
+ff
+ec
+3e
+90
+1b
+c7
+f0
+a3
+ef
+f0
+90
+1b
+c5
+e0
+fc
+a3
+e0
+fd
+ae
+04
+78
+02
+ce
+a2
+e7
+13
+ce
+13
+d8
+f8
+2d
+ff
+ec
+3e
+90
+1b
+c5
+f0
+a3
+ef
+f0
+90
+1b
+c7
+e0
+fe
+a3
+e0
+ff
+c3
+e4
+9f
+ff
+e4
+9e
+90
+1b
+c7
+f0
+a3
+ef
+f0
+90
+1b
+c5
+e0
+fe
+a3
+e0
+ff
+c3
+e4
+9f
+ff
+e4
+9e
+90
+1b
+c5
+f0
+a3
+ef
+f0
+12
+1e
+c7
+90
+1b
+c5
+e0
+fc
+a3
+e0
+90
+1c
+00
+f0
+ec
+ff
+33
+95
+e0
+90
+1c
+02
+ef
+f0
+90
+1b
+c7
+e0
+fc
+a3
+e0
+90
+1c
+01
+f0
+ec
+ff
+33
+95
+e0
+90
+1c
+03
+ef
+f0
+90
+4e
+b5
+e0
+60
+02
+d2
+00
+20
+00
+02
+c1
+2f
+e4
+90
+4e
+a1
+f0
+a3
+f0
+90
+4e
+9a
+e0
+64
+01
+70
+60
+90
+4e
+c3
+e0
+04
+f0
+e0
+d3
+94
+ff
+40
+02
+e4
+f0
+90
+4e
+4f
+74
+01
+f0
+90
+1c
+00
+e0
+90
+4e
+50
+f0
+90
+1c
+02
+e0
+90
+4e
+51
+f0
+90
+1c
+01
+e0
+90
+4e
+52
+f0
+90
+1c
+03
+e0
+90
+4e
+53
+f0
+90
+4e
+b5
+e0
+90
+4e
+54
+f0
+90
+4e
+b1
+e0
+90
+4e
+55
+f0
+e4
+a3
+f0
+90
+4e
+c3
+e0
+90
+4e
+57
+f0
+7b
+01
+7a
+4e
+79
+4f
+7d
+09
+12
+15
+ef
+e4
+90
+4e
+b5
+f0
+22
+90
+4e
+9a
+e0
+ff
+64
+02
+60
+05
+ef
+64
+07
+70
+43
+90
+4e
+b1
+e0
+90
+4e
+4f
+f0
+90
+1c
+00
+e0
+90
+4e
+50
+f0
+90
+1c
+02
+e0
+90
+4e
+51
+f0
+90
+1c
+01
+e0
+90
+4e
+52
+f0
+90
+1c
+03
+e0
+90
+4e
+53
+f0
+90
+4e
+b5
+e0
+90
+4e
+54
+f0
+e4
+a3
+f0
+7b
+01
+7a
+4e
+79
+4f
+7d
+07
+12
+19
+49
+e4
+90
+4e
+b5
+f0
+22
+e4
+ff
+90
+80
+81
+04
+f0
+e4
+ff
+71
+24
+ef
+64
+30
+60
+27
+ef
+64
+31
+60
+22
+90
+80
+81
+e4
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+77
+e0
+54
+fd
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+81
+74
+01
+f0
+80
+d0
+22
+e4
+ff
+d1
+30
+7f
+06
+71
+24
+ef
+54
+f7
+ff
+7d
+06
+31
+0e
+7f
+02
+71
+24
+90
+80
+81
+e4
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+77
+e0
+44
+02
+f0
+22
+7b
+01
+7a
+81
+79
+1c
+ad
+07
+e4
+90
+1c
+20
+f0
+fe
+ef
+54
+07
+f0
+ef
+13
+13
+13
+54
+03
+fe
+f5
+82
+75
+83
+00
+12
+01
+1d
+fd
+33
+95
+e0
+fc
+90
+1c
+20
+e0
+ff
+74
+01
+7e
+00
+a8
+07
+08
+80
+05
+c3
+33
+ce
+33
+ce
+d8
+f9
+ff
+ee
+5c
+fe
+ef
+5d
+4e
+24
+ff
+22
+90
+1c
+21
+ef
+f0
+d1
+90
+92
+09
+90
+1c
+21
+e0
+ff
+a2
+09
+b3
+92
+08
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+ff
+30
+08
+43
+24
+a0
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5d
+d0
+82
+d0
+83
+f0
+74
+a4
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+4f
+d0
+82
+d0
+83
+f0
+22
+74
+a0
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+fc
+4d
+d0
+82
+d0
+83
+f0
+74
+a4
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+e0
+ff
+ec
+f4
+fe
+ef
+5e
+f0
+22
+90
+80
+81
+e4
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+77
+e0
+44
+02
+f0
+c2
+06
+7f
+04
+12
+03
+ac
+c2
+06
+7f
+1b
+12
+03
+ac
+c2
+06
+7f
+17
+12
+03
+ac
+c2
+06
+e4
+ff
+12
+03
+ac
+c2
+06
+e4
+ff
+12
+03
+ac
+c2
+06
+7f
+06
+12
+03
+ac
+7f
+02
+d1
+d5
+7f
+03
+d1
+d5
+7f
+04
+d1
+d5
+7f
+17
+d1
+d5
+7f
+1b
+d1
+d5
+e4
+ff
+d1
+d5
+e4
+ff
+d1
+d5
+7f
+06
+c1
+d5
+7d
+05
+7f
+a1
+21
+0e
+7d
+05
+7f
+b8
+21
+0e
+90
+49
+3a
+e0
+fe
+a3
+e0
+ff
+90
+49
+38
+e0
+b5
+06
+07
+a3
+e0
+b5
+07
+02
+d3
+22
+c3
+22
+90
+4e
+a7
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+04
+d1
+90
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+a7
+f0
+30
+e0
+06
+90
+4e
+a4
+74
+02
+f0
+90
+4e
+a7
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+a8
+f0
+90
+4e
+a8
+e0
+ff
+22
+90
+4e
+a9
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+17
+12
+0e
+90
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+a9
+f0
+30
+e0
+06
+90
+4e
+a4
+74
+02
+f0
+90
+4e
+a9
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+aa
+f0
+90
+4e
+aa
+e0
+ff
+22
+e4
+90
+1b
+ed
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+4e
+c8
+e0
+64
+01
+70
+57
+f0
+12
+0f
+ef
+90
+1b
+ed
+ef
+f0
+11
+34
+90
+1b
+ef
+ef
+f0
+f1
+e8
+90
+1b
+ee
+ef
+f0
+12
+18
+2e
+90
+1b
+f0
+ef
+f0
+12
+18
+74
+90
+1b
+f1
+ef
+f0
+11
+e7
+90
+1b
+ee
+e0
+ff
+25
+e0
+ff
+90
+1b
+ed
+e0
+4f
+ff
+90
+1b
+ef
+e0
+fe
+25
+e0
+25
+e0
+4f
+ff
+a3
+e0
+fe
+33
+33
+33
+54
+f8
+4f
+ff
+a3
+e0
+fe
+c4
+54
+f0
+4f
+90
+4e
+cc
+f0
+22
+90
+4e
+ba
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+06
+12
+0e
+90
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+ba
+f0
+30
+e0
+06
+90
+4e
+a4
+74
+02
+f0
+90
+4e
+ba
+e0
+ff
+bf
+07
+06
+90
+4e
+cb
+74
+01
+f0
+90
+4e
+ba
+e0
+f4
+70
+53
+90
+4e
+cb
+e0
+64
+0f
+70
+4b
+7b
+01
+7a
+4e
+79
+9a
+7d
+01
+fc
+7f
+d9
+7e
+3f
+51
+a0
+90
+4e
+9a
+e0
+b4
+01
+05
+74
+09
+f0
+80
+06
+90
+4e
+9a
+74
+01
+f0
+7b
+01
+7a
+4e
+79
+9a
+7d
+01
+7c
+00
+7f
+d9
+7e
+3f
+31
+b2
+7f
+0a
+7e
+00
+51
+61
+d2
+07
+7f
+08
+51
+80
+7f
+0a
+7e
+00
+51
+61
+90
+80
+10
+74
+01
+f0
+80
+fe
+90
+4e
+ba
+e0
+64
+f8
+70
+31
+90
+4e
+cb
+f0
+c3
+94
+0d
+50
+28
+90
+4e
+b9
+e0
+04
+f0
+e0
+b4
+03
+02
+e4
+f0
+90
+4e
+b9
+e0
+04
+90
+4e
+bb
+f0
+12
+08
+59
+7b
+01
+7a
+4e
+79
+b9
+7d
+01
+7c
+00
+7f
+d8
+7e
+3f
+31
+b2
+22
+90
+1b
+c9
+ee
+f0
+a3
+ef
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+1b
+cb
+e0
+70
+02
+a3
+e0
+70
+02
+41
+60
+90
+1b
+c9
+e0
+fe
+a3
+e0
+ff
+44
+0f
+24
+01
+fd
+e4
+3e
+fc
+c3
+ed
+9f
+ff
+ec
+9e
+fe
+90
+1b
+d0
+f0
+a3
+ef
+f0
+90
+1b
+cb
+e0
+fc
+a3
+e0
+fd
+d3
+9f
+ec
+9e
+40
+0a
+90
+1b
+d0
+e0
+fe
+a3
+e0
+ff
+80
+04
+ae
+04
+af
+05
+90
+1b
+d0
+ee
+f0
+fc
+a3
+ef
+f0
+fd
+c3
+90
+1b
+cc
+e0
+9d
+f0
+90
+1b
+cb
+e0
+9c
+f0
+90
+1b
+c9
+e0
+fe
+a3
+e0
+ff
+90
+1b
+cd
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+71
+b9
+7f
+0a
+7e
+00
+51
+61
+90
+1b
+d0
+e0
+fe
+a3
+e0
+ff
+90
+1b
+ce
+ee
+8f
+f0
+12
+01
+92
+90
+1b
+ca
+e0
+2f
+f0
+90
+1b
+c9
+e0
+3e
+f0
+21
+c9
+22
+d3
+ef
+94
+00
+ee
+94
+00
+40
+15
+e4
+fd
+fc
+0d
+bd
+00
+01
+0c
+bc
+04
+f8
+bd
+a6
+f5
+ef
+1f
+70
+01
+1e
+80
+e2
+22
+ac
+07
+d2
+05
+12
+03
+c3
+af
+04
+a2
+07
+92
+02
+b1
+42
+af
+04
+c2
+03
+7b
+01
+7a
+80
+79
+78
+a2
+03
+92
+01
+02
+03
+cd
+90
+1b
+f7
+ec
+f0
+a3
+ed
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+80
+98
+74
+04
+f0
+a3
+e4
+f0
+90
+1b
+2c
+74
+a0
+f0
+a3
+ee
+f0
+a3
+ef
+f0
+90
+1b
+2f
+74
+a1
+f0
+7a
+1b
+79
+2c
+7e
+1b
+7f
+2c
+74
+2c
+fc
+74
+1b
+ff
+ec
+fe
+ef
+90
+80
+9a
+ee
+f0
+a3
+ef
+f0
+90
+1b
+f7
+e0
+fc
+a3
+e0
+fa
+ec
+ff
+ea
+fe
+ef
+90
+80
+9e
+ee
+f0
+a3
+ef
+f0
+7a
+1b
+79
+30
+7e
+1b
+7f
+30
+74
+30
+fc
+74
+1b
+ff
+ec
+fe
+ef
+90
+80
+9c
+ee
+f0
+a3
+ef
+f0
+90
+80
+90
+74
+02
+f0
+90
+80
+9c
+a3
+e0
+20
+e7
+07
+90
+80
+90
+e0
+44
+01
+f0
+90
+80
+06
+e0
+44
+04
+f0
+91
+26
+90
+1b
+f9
+e0
+a3
+e0
+fa
+a3
+e0
+ae
+02
+ff
+7b
+01
+7a
+1b
+79
+30
+90
+1b
+f7
+e0
+a3
+e0
+90
+1b
+e6
+f0
+90
+1b
+e1
+ee
+f0
+a3
+ef
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+1b
+e6
+e0
+ff
+14
+f0
+ef
+60
+27
+90
+1b
+e3
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+a8
+a9
+f0
+fa
+12
+01
+04
+ff
+90
+1b
+e1
+e4
+75
+f0
+01
+12
+01
+a8
+85
+f0
+82
+f5
+83
+ef
+f0
+80
+cf
+22
+7b
+01
+7a
+47
+79
+79
+7d
+04
+7c
+00
+7f
+d4
+7e
+3f
+51
+a0
+7f
+23
+12
+07
+bc
+90
+4e
+9a
+74
+01
+f0
+fb
+7a
+4e
+79
+9a
+fd
+7c
+00
+7f
+d9
+7e
+3f
+21
+b2
+90
+1b
+94
+ee
+f0
+a3
+ef
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+7e
+1b
+7f
+9b
+90
+1b
+e6
+f0
+71
+4d
+90
+1b
+98
+74
+a0
+f0
+90
+1b
+94
+e0
+ff
+a3
+e0
+90
+1b
+99
+cf
+f0
+a3
+ef
+f0
+90
+1b
+97
+e0
+24
+03
+fd
+90
+1b
+96
+e0
+34
+00
+fc
+ed
+fa
+ec
+ff
+ea
+fe
+ef
+90
+80
+98
+ee
+f0
+a3
+ef
+f0
+7d
+98
+ed
+fa
+74
+1b
+ff
+ea
+fe
+ef
+a3
+ee
+f0
+a3
+ef
+f0
+90
+80
+9e
+e4
+f0
+a3
+f0
+90
+80
+90
+04
+f0
+90
+80
+06
+e0
+44
+04
+f0
+90
+81
+2c
+e0
+30
+e5
+f9
+22
+e4
+90
+1b
+f2
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+7f
+04
+12
+0e
+90
+40
+04
+7f
+01
+80
+02
+7f
+00
+90
+1b
+f2
+ef
+f0
+7f
+17
+12
+0e
+90
+40
+04
+7f
+01
+80
+02
+7f
+00
+90
+1b
+f4
+ef
+f0
+7f
+1b
+12
+0e
+90
+40
+04
+7f
+01
+80
+02
+7f
+00
+90
+1b
+f3
+ef
+f0
+e0
+ff
+25
+e0
+ff
+90
+1b
+f2
+e0
+4f
+ff
+90
+1b
+f4
+e0
+fe
+25
+e0
+25
+e0
+4f
+a3
+f0
+64
+07
+60
+02
+a1
+3c
+90
+4e
+a1
+f0
+a3
+f0
+90
+4e
+a4
+74
+0a
+f0
+90
+4e
+a3
+e0
+c3
+94
+19
+40
+02
+a1
+41
+90
+4e
+a3
+e0
+04
+f0
+e0
+64
+19
+60
+02
+a1
+41
+90
+4e
+9a
+e0
+60
+73
+14
+60
+22
+24
+fb
+60
+6c
+24
+fe
+60
+0f
+04
+70
+7b
+7f
+11
+12
+07
+bc
+90
+4e
+9b
+74
+08
+f0
+22
+90
+4e
+9a
+74
+03
+f0
+7f
+0d
+02
+07
+bc
+90
+4e
+c3
+e0
+04
+f0
+e0
+d3
+94
+ff
+40
+02
+e4
+f0
+90
+4e
+4f
+74
+01
+f0
+e4
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+4e
+c3
+e0
+90
+4e
+57
+f0
+7b
+01
+7a
+4e
+79
+4f
+7d
+09
+b1
+ef
+7f
+64
+7e
+00
+51
+61
+f1
+3d
+7f
+0a
+7e
+00
+51
+61
+90
+4e
+9a
+74
+03
+f0
+7f
+0d
+02
+07
+bc
+90
+4e
+9a
+74
+03
+f0
+7f
+0d
+12
+07
+bc
+7f
+01
+02
+07
+bc
+22
+e4
+90
+4e
+a3
+f0
+22
+7b
+01
+7a
+80
+79
+74
+a2
+02
+92
+01
+02
+03
+cd
+90
+4e
+bb
+e0
+70
+03
+a3
+04
+f0
+90
+4e
+bb
+e0
+60
+2b
+90
+4e
+a4
+74
+0a
+f0
+90
+4e
+bc
+e0
+60
+0c
+c2
+02
+7f
+08
+b1
+42
+e4
+90
+4e
+bc
+f0
+22
+d2
+02
+7f
+08
+b1
+42
+90
+4e
+bc
+74
+01
+f0
+90
+4e
+bb
+e0
+14
+f0
+22
+90
+4e
+9a
+e0
+b4
+03
+14
+90
+4e
+a4
+74
+45
+f0
+90
+4e
+a6
+e0
+54
+07
+ff
+bf
+04
+0a
+7f
+08
+80
+2f
+d2
+02
+7f
+08
+b1
+42
+22
+e4
+90
+0b
+2b
+f0
+90
+0b
+2a
+f0
+7f
+01
+fe
+41
+61
+90
+4e
+a4
+e0
+60
+02
+14
+f0
+90
+4e
+a6
+e0
+04
+f0
+90
+4e
+cb
+e0
+60
+02
+04
+f0
+b1
+4f
+81
+2e
+90
+1c
+22
+ef
+f0
+7b
+01
+7a
+80
+79
+74
+12
+0e
+96
+92
+0a
+90
+1c
+22
+e0
+ff
+a2
+0a
+b3
+92
+02
+a1
+42
+90
+1c
+24
+ed
+f0
+90
+1a
+96
+74
+06
+f0
+90
+49
+3a
+e0
+fe
+a3
+e0
+ff
+90
+49
+38
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+24
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+71
+4d
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+24
+e0
+24
+02
+fd
+02
+07
+e3
+e4
+90
+1c
+1f
+f0
+90
+4f
+f0
+e0
+04
+f0
+90
+4e
+a2
+e0
+04
+f0
+70
+06
+90
+4e
+a1
+e0
+04
+f0
+90
+4e
+9a
+e0
+14
+60
+60
+24
+fe
+60
+22
+24
+fd
+70
+02
+e1
+0c
+14
+60
+32
+14
+60
+02
+e1
+3c
+90
+1c
+1f
+74
+09
+f0
+90
+4e
+a1
+e0
+70
+04
+a3
+e0
+64
+14
+70
+02
+e1
+2a
+90
+1c
+1f
+74
+02
+f0
+90
+4e
+a1
+e0
+64
+01
+70
+04
+a3
+e0
+64
+68
+60
+02
+e1
+3c
+e1
+2a
+22
+90
+1c
+1f
+74
+09
+f0
+90
+4e
+a1
+e0
+64
+04
+70
+04
+a3
+e0
+64
+b0
+60
+02
+e1
+3c
+7f
+11
+12
+07
+bc
+e4
+90
+4e
+9b
+f0
+22
+90
+1c
+1f
+74
+01
+f0
+90
+4e
+a1
+e0
+fe
+a3
+e0
+ff
+d3
+94
+58
+ee
+94
+02
+40
+08
+90
+4e
+c0
+e0
+64
+01
+60
+5a
+90
+4e
+c0
+e0
+70
+66
+ef
+64
+05
+4e
+70
+1e
+90
+42
+b8
+e0
+20
+e2
+07
+7f
+25
+12
+07
+bc
+80
+10
+7f
+24
+12
+07
+bc
+7f
+0a
+7e
+00
+51
+61
+7f
+23
+12
+07
+bc
+d3
+90
+4e
+a2
+e0
+94
+07
+90
+4e
+a1
+e0
+94
+00
+40
+33
+80
+1f
+22
+90
+1c
+1f
+74
+02
+f0
+12
+0f
+d7
+50
+25
+c3
+90
+4e
+a2
+e0
+94
+03
+90
+4e
+a1
+e0
+94
+00
+40
+16
+80
+02
+22
+22
+7b
+01
+7a
+1c
+79
+1f
+7d
+01
+7c
+00
+7f
+d9
+7e
+3f
+31
+b2
+f1
+48
+22
+7f
+24
+12
+07
+bc
+e4
+90
+4e
+9a
+f0
+22
+e4
+90
+4e
+a1
+f0
+a3
+f0
+90
+4e
+a4
+f0
+90
+4e
+9e
+04
+f0
+e4
+90
+4e
+9a
+f0
+7f
+19
+02
+07
+bc
+90
+1c
+25
+ed
+f0
+90
+1a
+96
+74
+04
+f0
+90
+49
+3a
+e0
+fe
+a3
+e0
+ff
+90
+49
+38
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+25
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+71
+4d
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+25
+e0
+24
+02
+fd
+02
+07
+e3
+90
+1c
+26
+ed
+f0
+90
+1a
+96
+74
+05
+f0
+90
+49
+3a
+e0
+fe
+a3
+e0
+ff
+90
+49
+38
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+26
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+71
+4d
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+26
+e0
+24
+02
+fd
+02
+07
+e3
+90
+4e
+ab
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+1b
+12
+0e
+90
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+ab
+f0
+30
+e0
+06
+90
+4e
+a4
+74
+02
+f0
+90
+4e
+ab
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+ac
+f0
+90
+4e
+ac
+e0
+ff
+22
+90
+4e
+af
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+e4
+ff
+12
+0e
+90
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+af
+f0
+30
+e0
+06
+90
+4e
+a4
+74
+02
+f0
+90
+4e
+af
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+b0
+f0
+90
+4e
+b0
+e0
+ff
+22
+90
+4e
+ad
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+e4
+ff
+12
+0e
+90
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+ad
+f0
+30
+e0
+06
+90
+4e
+a4
+74
+02
+f0
+90
+4e
+ad
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+ae
+f0
+90
+4e
+ae
+e0
+ff
+22
+e4
+90
+1c
+0c
+f0
+a3
+f0
+7f
+02
+12
+0e
+90
+e4
+33
+90
+1c
+0e
+f0
+7f
+03
+12
+0e
+90
+e4
+33
+ff
+90
+1c
+0e
+e0
+fe
+25
+e0
+4f
+ff
+90
+4e
+b2
+e0
+6f
+60
+64
+90
+4e
+b3
+e0
+a3
+f0
+90
+4e
+b2
+e0
+a3
+f0
+90
+4e
+b2
+ef
+f0
+fd
+a3
+e0
+75
+f0
+04
+a4
+fb
+aa
+f0
+ed
+75
+f0
+10
+a4
+ff
+e5
+f0
+4a
+fe
+ef
+4b
+ff
+a3
+e0
+fd
+ee
+ef
+4d
+ff
+90
+1c
+0c
+ee
+f0
+a3
+ef
+f0
+ee
+70
+2a
+ef
+24
+f5
+60
+19
+24
+d7
+60
+15
+24
+fc
+60
+04
+24
+31
+70
+19
+90
+4e
+b5
+e0
+14
+f0
+90
+4e
+a4
+74
+0a
+f0
+22
+90
+4e
+b5
+e0
+04
+f0
+90
+4e
+a4
+74
+0a
+f0
+22
+90
+1b
+fc
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+4e
+9a
+e0
+ff
+64
+02
+60
+05
+ef
+64
+07
+70
+2e
+ef
+b4
+02
+10
+90
+1b
+fc
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+a3
+e0
+fd
+80
+1b
+90
+4e
+9a
+e0
+b4
+07
+11
+90
+1b
+fc
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+a3
+e0
+fd
+02
+17
+a5
+80
+fe
+22
+90
+1c
+23
+ed
+f0
+90
+1a
+96
+74
+03
+f0
+90
+1c
+23
+e0
+60
+39
+90
+49
+3a
+e0
+fe
+a3
+e0
+ff
+90
+49
+38
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+23
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+13
+4d
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+23
+e0
+24
+02
+fd
+12
+07
+e3
+22
+90
+4e
+c8
+74
+01
+f0
+a3
+e0
+04
+f0
+e0
+30
+e0
+04
+a3
+74
+01
+f0
+22
+53
+89
+f0
+43
+89
+01
+75
+8c
+47
+e4
+f5
+8a
+f5
+a8
+d2
+af
+d2
+a9
+d2
+8c
+90
+1b
+c1
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+1b
+bd
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+c2
+0b
+90
+1b
+c5
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+80
+b7
+c0
+e0
+c0
+f0
+c0
+83
+c0
+82
+c0
+d0
+75
+d0
+00
+c0
+00
+c0
+01
+c0
+02
+c0
+03
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+75
+8c
+47
+75
+8a
+00
+31
+df
+d0
+07
+d0
+06
+d0
+05
+d0
+04
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+d0
+d0
+d0
+82
+d0
+83
+d0
+f0
+d0
+e0
+32
+7b
+01
+7a
+4e
+79
+98
+7d
+38
+7c
+00
+51
+7f
+90
+4e
+ce
+74
+ff
+f0
+a3
+74
+38
+f0
+22
+90
+1c
+0f
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+16
+90
+1c
+0f
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+a8
+a9
+f0
+fa
+e4
+12
+01
+4a
+80
+e0
+22
+7b
+01
+7a
+1b
+79
+ab
+78
+a4
+7c
+49
+7d
+01
+7e
+00
+7f
+12
+02
+00
+de
+90
+82
+80
+74
+01
+f0
+22
+90
+1b
+d2
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+1b
+d8
+74
+ff
+f5
+f0
+12
+01
+a8
+45
+f0
+60
+2a
+90
+1b
+d5
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+a8
+a9
+f0
+fa
+12
+01
+04
+ff
+90
+1b
+d2
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+a8
+a9
+f0
+fa
+ef
+12
+01
+4a
+80
+c8
+22
+90
+1c
+12
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+17
+90
+1c
+12
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+a8
+a9
+f0
+fa
+74
+ff
+12
+01
+4a
+80
+df
+22
+ef
+d3
+94
+00
+40
+03
+1f
+80
+f7
+22
+90
+1b
+da
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+ff
+90
+1b
+e0
+e0
+fe
+ef
+c3
+9e
+50
+30
+90
+1b
+dd
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+01
+1d
+fe
+90
+1b
+da
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+01
+1d
+6e
+60
+03
+7f
+00
+22
+0f
+80
+c6
+7f
+01
+22
+7b
+01
+7a
+80
+79
+7c
+a2
+04
+92
+01
+02
+03
+cd
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+ff
+24
+a0
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+fc
+5d
+d0
+82
+d0
+83
+f0
+74
+a4
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+e0
+5c
+f0
+22
+90
+80
+86
+74
+75
+f0
+a3
+74
+0a
+f0
+90
+80
+8a
+74
+18
+f0
+a3
+74
+02
+f0
+a3
+74
+1d
+f0
+a3
+74
+02
+f0
+90
+80
+77
+e0
+44
+02
+f0
+22
+90
+42
+d1
+e0
+fe
+a3
+e0
+ff
+22
+90
+4e
+71
+e0
+fe
+a3
+e0
+ff
+22
+90
+4e
+6f
+e0
+fe
+a3
+e0
+ff
+22
+90
+1c
+04
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+49
+a0
+e0
+fe
+a3
+e0
+ff
+90
+1c
+07
+e0
+fd
+14
+f0
+ed
+60
+32
+0f
+ef
+ac
+06
+70
+01
+0e
+14
+f5
+82
+8c
+83
+e0
+fd
+90
+1c
+04
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+a8
+a9
+f0
+fa
+ed
+12
+01
+4a
+ad
+07
+ac
+06
+bc
+49
+cd
+bd
+a0
+ca
+7e
+49
+7f
+3c
+80
+c4
+90
+49
+a0
+ee
+f0
+a3
+ef
+f0
+22
+7a
+1a
+79
+00
+90
+1c
+18
+74
+01
+f0
+a3
+74
+1a
+f0
+a3
+74
+00
+f0
+90
+49
+a2
+e0
+fe
+a3
+e0
+ff
+90
+49
+a0
+e0
+6e
+70
+03
+a3
+e0
+6f
+70
+02
+c1
+23
+7b
+01
+7a
+1a
+79
+00
+7d
+03
+91
+11
+90
+1c
+18
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+01
+04
+b4
+02
+2b
+90
+1c
+19
+e4
+75
+f0
+02
+12
+01
+92
+90
+1c
+18
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+01
+04
+ff
+90
+49
+a4
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+12
+01
+e8
+c1
+23
+90
+1c
+18
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+01
+04
+64
+04
+70
+5b
+90
+1c
+19
+75
+f0
+01
+12
+01
+92
+90
+1c
+18
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+01
+04
+14
+fd
+7b
+01
+7a
+1a
+79
+03
+91
+11
+90
+1c
+18
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+1c
+18
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+01
+04
+fd
+7c
+00
+90
+49
+a7
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+01
+e8
+c1
+23
+90
+1c
+18
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+01
+04
+64
+05
+70
+5b
+90
+1c
+19
+75
+f0
+01
+12
+01
+92
+90
+1c
+18
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+01
+04
+14
+fd
+7b
+01
+7a
+1a
+79
+03
+91
+11
+90
+1c
+18
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+1c
+18
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+01
+04
+fd
+7c
+00
+90
+49
+b0
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+01
+e8
+80
+6f
+90
+1c
+18
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+01
+04
+64
+03
+70
+5b
+90
+1c
+19
+75
+f0
+01
+12
+01
+92
+90
+1c
+18
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+01
+04
+14
+fd
+7b
+01
+7a
+1a
+79
+03
+91
+11
+90
+1c
+18
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+1c
+18
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+01
+04
+fd
+7c
+00
+90
+49
+b3
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+01
+e8
+80
+02
+80
+fe
+90
+4a
+0c
+e0
+fe
+a3
+e0
+ff
+90
+4a
+0e
+e0
+6e
+70
+03
+a3
+e0
+6f
+60
+21
+90
+49
+aa
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+36
+12
+01
+e4
+90
+4a
+0f
+e0
+04
+f0
+70
+06
+90
+4a
+0e
+e0
+04
+f0
+80
+cb
+90
+4a
+10
+e0
+ff
+a3
+e0
+6f
+60
+19
+90
+49
+ad
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+0b
+12
+01
+e4
+90
+4a
+11
+e0
+04
+f0
+80
+dd
+22
+90
+03
+f0
+e0
+ff
+22
+90
+0b
+2b
+74
+01
+f0
+e4
+90
+0b
+2a
+f0
+22
+e4
+ff
+12
+0e
+30
+7f
+06
+12
+0b
+24
+ef
+44
+08
+ff
+7d
+06
+12
+09
+0e
+90
+80
+81
+e4
+f0
+c2
+06
+7f
+19
+12
+03
+ac
+c2
+06
+7f
+1a
+02
+03
+ac
+d3
+ef
+94
+00
+ee
+64
+80
+94
+80
+50
+07
+c3
+e4
+9f
+ff
+e4
+9e
+fe
+22
+90
+1b
+c5
+e0
+fe
+a3
+e0
+ff
+d3
+94
+06
+ee
+64
+80
+94
+80
+50
+26
+c3
+ef
+94
+fa
+ee
+64
+80
+94
+7f
+40
+1b
+a3
+e0
+fe
+a3
+e0
+ff
+d3
+94
+06
+ee
+64
+80
+94
+80
+50
+0b
+c3
+ef
+94
+fa
+ee
+64
+80
+94
+7f
+50
+02
+d2
+0b
+90
+1b
+c5
+e0
+fe
+a3
+e0
+ff
+d1
+b4
+c3
+ef
+94
+03
+ee
+94
+00
+50
+13
+a3
+e0
+fe
+a3
+e0
+ff
+d1
+b4
+c3
+ef
+94
+03
+ee
+94
+00
+50
+02
+c2
+0b
+20
+0b
+02
+e1
+aa
+90
+1b
+bd
+e0
+fe
+a3
+e0
+ff
+c3
+90
+1b
+c2
+e0
+9f
+ff
+90
+1b
+c1
+e0
+9e
+fe
+90
+1b
+c6
+e0
+2f
+ff
+90
+1b
+c5
+e0
+3e
+fe
+90
+1b
+c1
+f0
+a3
+ef
+f0
+7c
+00
+7d
+02
+12
+01
+5c
+90
+1b
+bd
+ee
+f0
+a3
+ef
+f0
+90
+1b
+c5
+ee
+f0
+a3
+ef
+f0
+90
+1b
+bf
+e0
+fe
+a3
+e0
+ff
+c3
+90
+1b
+c4
+e0
+9f
+ff
+90
+1b
+c3
+e0
+9e
+fe
+90
+1b
+c8
+e0
+2f
+ff
+90
+1b
+c7
+e0
+3e
+fe
+90
+1b
+c3
+f0
+a3
+ef
+f0
+7c
+00
+7d
+02
+12
+01
+5c
+90
+1b
+bf
+ee
+f0
+a3
+ef
+f0
+90
+1b
+c7
+ee
+f0
+a3
+ef
+f0
+22
+fa
+01
+aa
+55
+40
+00
+00
+40
+58
+02
+00
+00
+60
+02
+00
+80
+00
+10
+01
+00
+00
+00
+00
+00
+00
+08
+00
+00
+80
+13
+f0
+00
+00
+01
+00
+00
+00
+00
+00
+00
+00
+00
+00
+08
+08
+80
+0e
+d0
+04
+20
+60
+41
+00
+00
+00
+00
+00
+00
+20
+00
+00
+40
+00
+00
+00
+01
+00
+00
+00
+00
+88
+03
+aa
+55
+03
+00
+4a
+41
+80
+25
+00
+aa
+55
+06
+00
+40
+41
+ab
+ab
+66
+63
+5d
+6c
+aa
+55
+10
+00
+ae
+45
+0f
+59
+43
+20
+53
+44
+4b
+20
+42
+54
+33
+2e
+30
+20
+4d
+53
+aa
+55
+03
+00
+84
+42
+0e
+00
+01
+aa
+55
+01
+00
+88
+42
+01
+aa
+55
+01
+00
+f3
+45
+0a
+aa
+55
+04
+00
+e2
+46
+00
+03
+00
+04
+aa
+55
+01
+00
+0d
+47
+01
+aa
+55
+01
+00
+71
+41
+01
+aa
+55
+0e
+00
+0f
+46
+06
+03
+11
+00
+00
+01
+02
+10
+24
+11
+00
+12
+01
+00
+aa
+55
+01
+00
+25
+46
+00
+aa
+55
+7a
+02
+16
+4a
+04
+00
+11
+01
+00
+10
+02
+11
+24
+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
+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
+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
+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
+0a
+5c
+09
+02
+02
+09
+00
+01
+09
+02
+03
+09
+01
+29
+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
+11
+01
+00
+03
+01
+00
+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
+aa
+55
+02
+00
+0d
+46
+16
+4a
+aa
+55
+01
+00
+32
+41
+43
+aa
+55
+01
+00
+fa
+41
+00
+aa
+55
+08
+00
+38
+41
+ff
+ff
+8f
+f8
+9b
+9d
+51
+82
+aa
+55
+01
+00
+d4
+08
+00
+aa
+55
+01
+00
+9f
+00
+00
+aa
+55
+01
+00
+d5
+08
+00
+aa
+55
+01
+00
+16
+00
+27
+aa
+55
+01
+00
+15
+47
+ff
+aa
+55
+01
+00
+0e
+47
+ff
+aa
+55
+01
+00
+31
+41
+01
+aa
+55
+02
+00
+12
+42
+00
+03
+aa
+55
+01
+00
+f6
+41
+08
+aa
+55
+02
+00
+f4
+41
+00
+02
+aa
+55
+01
+00
+33
+41
+00
+aa
+55
+02
+00
+08
+4a
+02
+01
+aa
+55
+02
+00
+cf
+42
+01
+34
+aa
+55
+04
+00
+6f
+4e
+9f
+3e
+cd
+4d
+aa
+55
+01
+00
+21
+45
+00
+aa
+55
+02
+00
+29
+45
+07
+00
+aa
+55
+01
+00
+96
+45
+50
+aa
+55
+01
+00
+f8
+44
+1a
+aa
+55
+06
+00
+3e
+45
+ab
+b9
+12
+0e
+10
+26
+aa
+55
+0e
+00
+40
+44
+0d
+59
+43
+20
+53
+44
+4b
+20
+42
+4c
+45
+20
+4d
+53
+aa
+55
+01
+00
+4c
+45
+17
+aa
+55
+01
+00
+20
+45
+00
+aa
+55
+07
+00
+22
+45
+01
+00
+00
+00
+00
+00
+00
+aa
+55
+1c
+00
+ff
+43
+00
+1f
+03
+19
+c2
+03
+03
+03
+12
+18
+02
+01
+05
+0e
+09
+59
+43
+20
+53
+44
+4b
+20
+42
+4c
+45
+20
+4d
+53
+aa
+55
+10
+00
+20
+44
+1f
+0e
+09
+59
+43
+20
+53
+44
+4b
+20
+42
+4c
+45
+20
+4d
+53
+aa
+55
+79
+01
+6e
+4c
+01
+00
+02
+00
+28
+02
+00
+18
+02
+00
+02
+03
+28
+01
+0a
+03
+00
+02
+00
+2a
+0d
+59
+43
+20
+53
+44
+4b
+20
+42
+4c
+45
+20
+4d
+53
+04
+00
+02
+03
+28
+01
+02
+05
+00
+02
+01
+2a
+02
+c2
+03
+06
+00
+02
+03
+28
+01
+02
+07
+00
+02
+04
+2a
+08
+06
+00
+06
+00
+64
+00
+2c
+01
+08
+00
+02
+00
+28
+02
+01
+18
+09
+00
+02
+03
+28
+01
+20
+0a
+00
+02
+05
+2a
+00
+0b
+00
+02
+02
+29
+02
+00
+00
+0c
+00
+02
+00
+28
+02
+0a
+18
+0d
+00
+02
+03
+28
+01
+02
+0e
+00
+02
+29
+2a
+06
+59
+69
+43
+68
+69
+70
+0f
+00
+02
+03
+28
+01
+02
+10
+00
+02
+50
+2a
+07
+02
+35
+12
+22
+aa
+01
+00
+11
+00
+02
+00
+28
+02
+0f
+18
+12
+00
+02
+03
+28
+01
+02
+13
+00
+02
+19
+2a
+01
+33
+14
+00
+02
+02
+29
+02
+00
+00
+15
+00
+02
+00
+28
+02
+12
+18
+16
+00
+02
+03
+28
+01
+06
+17
+00
+02
+4e
+2a
+01
+01
+18
+00
+02
+03
+28
+01
+1a
+19
+00
+02
+4d
+2a
+07
+00
+00
+00
+00
+00
+00
+00
+1a
+00
+02
+02
+29
+02
+00
+00
+1b
+00
+02
+08
+29
+02
+01
+01
+1c
+00
+02
+03
+28
+01
+0a
+1d
+00
+02
+4b
+2a
+45
+05
+01
+09
+02
+a1
+01
+85
+01
+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
+95
+01
+81
+06
+c0
+c0
+1e
+00
+02
+03
+28
+01
+1a
+1f
+00
+02
+33
+2a
+08
+00
+00
+00
+00
+00
+00
+00
+00
+20
+00
+02
+02
+29
+02
+01
+00
+21
+00
+02
+03
+28
+01
+02
+22
+00
+02
+4a
+2a
+04
+01
+01
+00
+03
+23
+00
+02
+03
+28
+01
+04
+24
+00
+02
+4c
+2a
+00
+00
+00
+aa
+55
+02
+00
+37
+46
+6e
+4c
+aa
+55
+01
+00
+76
+4e
+50
+aa
+55
+08
+00
+8d
+45
+07
+00
+07
+00
+00
+00
+2c
+01
+aa
+55
+01
+00
+4e
+4e
+03
+aa
+55
+01
+00
+80
+42
+04
+aa
+55
+02
+00
+7c
+4e
+19
+00
+aa
+55
+01
+00
+e2
+47
+04
+aa
+55
+06
+00
+25
+48
+20
+15
+10
+05
+00
+00
+aa
+55
+01
+00
+2d
+47
+19
+aa
+55
+02
+00
+b5
+47
+06
+0c
+aa
+55
+01
+00
+c1
+47
+ff
+aa
+55
+10
+00
+a5
+47
+00
+11
+23
+3c
+04
+1a
+27
+39
+08
+22
+35
+4b
+0f
+2d
+32
+4e
+aa
+55
+0a
+00
+4e
+0b
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+aa
+55
+09
+00
+2d
+48
+11
+00
+00
+00
+00
+00
+00
+00
+00
+aa
+55
+08
+00
+b8
+47
+00
+48
+60
+00
+00
+00
+00
+00
+aa
+55
+03
+00
+15
+42
+8f
+1f
+ce
+aa
+55
+04
+00
+19
+42
+0a
+0b
+ef
+0f
+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
+02
+12
+00
+00
+02
+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
+02
+00
+8e
+4e
+00
+40
+aa
+55
+05
+00
+a9
+45
+04
+0a
+00
+e9
+12
+aa
+55
+02
+00
+a8
+42
+30
+6f
+aa
+55
+01
+00
+b6
+42
+20
+aa
+55
+01
+00
+81
+42
+01
+aa
+55
+01
+00
+97
+4e
+ff
+aa
+55
+02
+00
+63
+41
+97
+4e
+d3
+39
Index: c51/global_variable.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/global_variable.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/global_variable.h	(working copy)
@@ -0,0 +1,133 @@
+#ifndef _GLOBAL_VARIABLE_H_
+#define _GLOBAL_VARIABLE_H_
+#include "sys.h"
+#include "type.h"
+
+
+typedef struct c51_global_variable
+{
+	u8_t modeSwitchCurrent;		// 4e7b + 0
+	u8_t modeSwitchLast;		// 1
+	u8_t currentState;			// 2
+	u8_t nextMode;				// 3
+	u8_t lastMode;				// 4
+	u8_t powerOnFlag;			// 5
+	u8_t lockLpm;				// 6
+	u8_t reconnFlag;			// 7
+	u8_t pageFlag;				// 8
+	u16_t sleepTimer;			// 9
+	u8_t buttonTimer;			// 11
+	u8_t wheelTimer;			// 12
+	u8_t powerOnTimer;			// 13
+	u8_t timer100msCount;		// 14
+	u8_t lKeyTemp;				// 15
+	u8_t lKey;					// 16
+	u8_t mKeyTemp;				// 17
+	u8_t mKey;					// 18
+	u8_t rKeyTemp;				// 19
+	u8_t rKey;					// 20
+	u8_t fwKeyTemp;				// 21
+	u8_t fwKey;					// 22
+	u8_t bkKeyTemp;				// 23
+	u8_t bkKey;					// 24
+	u8_t deltaKey;				// 25
+	u8_t wheelStateNow;			// 26
+	u8_t wheelStateBefore;		// 27
+	u8_t wheelStateLast;		// 28
+	u8_t deltaZWheel;			// 29
+	u8_t sensorType;			// 30
+	u8_t sensorAngle;			// 31
+	u8_t dpiCount;				// 32
+	u8_t dpiKeyTemp;			// 33
+	u8_t dpiLedFlipTime;		// 34
+	u8_t dpiLedStay;			// 35
+	u8_t dpiLedOnTimer;			// 36
+	u16_t adcCurrent;			// 37
+	u8_t adcLowPowerFlag;		// 39
+	u8_t g24DongleExist;		// 40
+	u8_t g24AutoPairFlag;		// 41	
+	u8_t g24TestMode;			// 42
+	u8_t btKeyTemp;				// 43
+	u8_t deviceKeytemp;			// 44
+	u8_t autoModeSelect;		// 45
+	u8_t ms4msFlag;				// 46
+	u8_t ms8msFlag;				// 47
+	u8_t debounceTrig;			// 48
+	u8_t modeSwCount;			// 49
+	u8_t keyDetect;				// 50
+	u8_t lowBatteryTimer;		// 51
+	u8_t lowBatteryStatus;		// 52
+	u8_t sensorChoice;			// 53
+	u8_t mouseFlag;				// 54
+	u8_t Factory_Pwr_on_f;		// 55
+
+	s16_t X_sum;				//56
+	s16_t Y_sum;				//58
+	s16_t X_pre;				//60
+	s16_t Y_pre;				//62
+	s16_t X_data;				//64
+	s16_t Y_data;				//66
+	u8_t asm_flag;				//68
+	
+	u8_t read_sensor_count;		//69
+	u8_t enterHibernateFlag;	//70
+	u8_t enterHibernateTimer;	//71
+
+	u16_t otaHeadAddr;			//72
+	u16_t otaLastAckPid;		//74
+	u8_t otaReqPacEnable;		//76
+	u8_t otaReqPacValue[7];		//77
+	u8_t otaExitFlag;			//84
+	u8_t otaExitCmdCount;		//85
+
+	u16_t leAddrRandomCnt;
+	u8_t SensorDataCnt;
+
+	u8_t bufferEnd;				//86
+	u8_t bufferSize;			//87
+}G_VARIABLE_MAP;
+
+
+//static s16_t X_sum, Y_sum, X_pre, Y_pre;
+//static bool asm_flag;
+//s16_t X_data,Y_data;
+
+
+
+
+extern G_VARIABLE_MAP xdata g_variable;
+
+extern u8_t xdata m_hidBuff[32];
+extern u8_t xdata m_linkKey[16];
+extern u8_t xdata m_remoteAddr[6];
+extern u8_t xdata m_reconnAddr[6];
+extern u8_t xdata m_remoteLeAddr[6];
+extern u8_t xdata m_reconnLeAddr[6];
+extern u8_t xdata m_24gAddr[4];
+extern u8_t xdata m_24gRxPayload[32];
+extern u16_t xdata m_adcCurrentValue;
+extern u16_t xdata m_adc3vValue; 
+extern u16_t xdata m_adc0vBase;
+extern u16_t xdata m_uiStateMap;
+extern u8_t xdata m_lpmMode;
+extern u8_t xdata m_powerOnFlag;
+extern u8_t xdata m_IpcIsReady;
+extern u8_t xdata m_sendData24gShortLpm;
+extern u8_t xdata m_enable24gShortLpm;
+extern u8_t xdata m_bleSendDataFlag;
+extern u8_t xdata m_BtReadIpcCount;
+extern u8_t xdata m_51ReadSensor;
+extern u8_t xdata m_new24gKWEvent;
+extern u8_t xdata m_shortDataWheel;
+extern u8_t xdata m_bleDataWheel;
+extern u8_t xdata m_bleDataWheelLpmTimer;
+extern u8_t xdata m_btWakeupFromLongMult;
+extern u8_t xdata m_btMotionEvent;
+extern u8_t xdata m_new24gOtaEnable;
+extern u8_t xdata m_new24gIntMin;
+extern u8_t xdata m_new24gIntMax;
+extern u8_t xdata m_new24gAbortPac;
+
+#endif
+
+
Index: c51/global_variable.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/global_variable.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/global_variable.c	(working copy)
@@ -0,0 +1,39 @@
+#include "global_variable.h"
+#include "Btreg.h"
+
+G_VARIABLE_MAP xdata g_variable _at_ mem_32asm_data_end;
+
+volatile u16_t xdata m_uiStateMap _at_ mem_ui_state_map;
+volatile u8_t xdata m_lpmMode _at_ mem_lpm_mode;
+volatile u16_t xdata m_adc3vValue _at_ mem_adc_3v;
+volatile u16_t xdata m_adc0vBase _at_ mem_adc_0v;
+volatile u16_t xdata m_adcCurrentValue _at_ mem_adc_current_value;
+volatile u8_t xdata m_powerOnFlag _at_ mem_wakup_from_power_flag;
+volatile u8_t xdata m_IpcIsReady _at_ mem_ipc_is_ready;
+volatile u8_t xdata m_sendData24gShortLpm _at_ mem_send_data_24g_short_lpm;
+volatile u8_t xdata m_enable24gShortLpm _at_ mem_short_lpm_enable;
+volatile u8_t xdata m_bleSendDataFlag _at_ mem_le_switch_send_data;
+volatile u8_t xdata m_BtReadIpcCount _at_ mem_bt_read_ipc_count;
+volatile u8_t xdata m_51ReadSensor _at_ mem_51_read_sensor_count;
+volatile u8_t xdata m_new24gKWEvent _at_ mem_new_24g_key_wheel_event;
+volatile u8_t xdata m_shortDataWheel _at_ mem_short_data_wheel;
+volatile u8_t xdata m_bleDataWheel _at_ mem_ble_data_wheel;
+volatile u8_t xdata m_bleDataWheelLpmTimer _at_ mem_ble_data_wheel_lpm_timer;
+volatile u8_t xdata m_btWakeupFromLongMult _at_ mem_bt_wakeup_from_long_mult;
+volatile u8_t xdata m_btMotionEvent _at_ mem_bt_motion_event;
+volatile u8_t xdata m_new24gOtaEnable _at_ mem_new_24g_ota_enable;
+volatile u8_t xdata m_new24gIntMin _at_ mem_new_24g_interval_min;
+volatile u8_t xdata m_new24gIntMax _at_ mem_new_24g_interval_max;
+volatile u8_t xdata m_new24gAbortPac _at_ mem_new_24g_abort_pac;
+
+volatile u8_t xdata m_hidBuff[32] _at_ mem_hid_buff;
+volatile u8_t xdata m_linkKey[16] _at_ mem_link_key;
+volatile u8_t xdata m_remoteAddr[6] _at_ mem_plap;
+volatile u8_t xdata m_reconnAddr[6] _at_ mem_hci_plap;
+volatile u8_t xdata m_remoteLeAddr[6] _at_ mem_le_plap;
+volatile u8_t xdata m_reconnLeAddr[6] _at_ mem_le_lap;
+volatile u8_t xdata m_24gAddr[4] _at_ mem_new_24g_addr;
+volatile u8_t xdata m_24gRxPayload[32] _at_ mem_new_24g_rxpayload;
+
+
+
Index: c51/gpio.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/gpio.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/gpio.h	(working copy)
@@ -0,0 +1,81 @@
+
+#ifndef _GPIO_H
+#define _GPIO_H
+#include "type.h"
+#include "Hwreg.h"
+
+extern volatile u8_t xdata YC_GPIOWakeupL[4];
+extern volatile u8_t xdata YC_GPIOWakeupH[4];
+
+#define GPIO_SetBit(gpio_num,reg_base, bit_val) if(bit_val)  \
+		*(reg_base + (gpio_num >> 3 & 3)) |= 1<<(gpio_num & 7);	\
+	else	\
+		*(reg_base + (gpio_num >> 3 & 3)) &= ~(1<<(gpio_num & 7))
+
+/**
+ * This function gpio get input status.0 low,1high
+ * 
+ * @param gpio_num
+ * 
+ * @return none.
+*/
+bool GPIO_GetInputStatus(u8_t gpio_num);
+/**
+ * This function set gpio out.
+ * 
+ * @param gpio_num,bit_val bit_val 0 low, 1high
+ * 
+ * @return none.
+*/
+void GPIO_Setout(u8_t gpio_num, bool bit_val);
+/**
+ * This function set gpio input
+ * 
+ * @param gpio_num,st 1 pull down ,0 pull up.
+ * 
+ * @return none.
+*/
+void GPIO_SetInput(u8_t gpio_num,bit  st);
+
+/**
+ * This function set gpio input
+ * 
+ * @param gpio_num,st 1 high ,0 low.
+ * 
+ * @return none.
+*/
+void GPIO_SetOutput(u8_t gpio_num,bit  st);
+/**
+ * This function set gpio wake.This function must use with GPIO_SetInput.
+ * 
+ * @param gpio_num, st 1 high wake,0 low wake.
+ * 
+ * @return none.
+*/
+void GPIO_SetWakeup(u8_t gpio_num,bit  st);
+
+/**
+ * This function set gpio wake by curent state for fast wake mcu.
+ * 
+ * @param gpio_num, st 1 high wake,0 low wake.
+ * 
+ * @return none.
+*/
+void GPIO_SetWakeupByCurrentState(u8_t gpio_num);
+
+/**
+ * This function Flip output state.
+ * 
+ * @param gpio_num.
+ * 
+ * @return none.
+*/
+void GPIO_FlipOutBit(u8_t gpio_num);
+
+
+void GPIO_ClearWakeup(u8_t gpio_num);
+
+
+#endif /* YC_GPIO_H */
+
+
Index: c51/gpio.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/gpio.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/gpio.c	(working copy)
@@ -0,0 +1,109 @@
+#include "gpio.h"
+#include "Hwreg.h"
+#include "btreg.h"
+
+volatile u8_t xdata YC_GPIOWakeupL[4] _at_ mem_gpio_wakeup_low;
+volatile u8_t xdata YC_GPIOWakeupH[4] _at_ mem_gpio_wakeup_high;
+
+static void gpioSetBit(u8_t gpio_num, char *reg_base, bool bit_val)
+{
+	u8_t queue = 0;
+	u8_t group = 0;
+
+	queue = (gpio_num & 7);
+	group = gpio_num >> 3 & 3;
+
+	if(bit_val) {
+		*(reg_base + group) |= 1<<queue;
+	}
+	else {
+		*(reg_base + group) &= ~(1<<queue);
+	}
+}
+
+static bool gpioGetBit(u8_t gpio_num, char *reg_base)
+{
+	u8_t queue = 0;
+	u8_t group = 0;
+
+	queue = (gpio_num & 7);
+	group = gpio_num >> 3 & 3;
+	return (*(reg_base + group)&(1<<queue));
+	
+}
+
+bool GPIO_GetInputStatus(u8_t gpio_num)
+{
+	return gpioGetBit(gpio_num, &REG_GPIO_IN(0));
+}
+
+void GPIO_Setout(u8_t gpio_num, bool bit_val)
+{
+	gpioSetBit(gpio_num, &REG_GPIO_OUT(0), bit_val);	
+}
+
+void GPIO_SetPu(u8_t gpio_num, bool bit_val)
+{
+	gpioSetBit(gpio_num, &REG_GPIO_PUP(0), bit_val);	
+}
+
+void GPIO_SetPd(u8_t gpio_num, bool bit_val)
+{
+	gpioSetBit(gpio_num, &REG_GPIO_PDN(0), bit_val);	
+}
+
+void GPIO_Setoe(u8_t gpio_num, bool bit_val)
+{
+	gpioSetBit(gpio_num, &REG_GPIO_OE(0), bit_val);	
+}
+
+void GPIO_SetInput(u8_t gpio_num, bit  st)
+{
+	GPIO_SetPd(gpio_num,st);
+	GPIO_SetPu(gpio_num,~st);
+	GPIO_Setoe(gpio_num,0);
+}
+
+void GPIO_SetOutput(u8_t gpio_num, bit  st)
+{
+	GPIO_Setoe(gpio_num,1);
+	GPIO_Setout(gpio_num,st);
+	GPIO_SetPu(gpio_num,0);
+}
+
+void GPIO_SetWakeup(u8_t gpio_num, bit  st)
+{
+	u8_t queue, group;
+	queue = (gpio_num & 7);
+	group = (gpio_num>>3 & 3);
+	if (st){
+		*(YC_GPIOWakeupL+group) &= ~(1<<queue);
+		*(YC_GPIOWakeupH+group) |= 1<<queue;	//high wakeup
+	}
+	else{
+		*(YC_GPIOWakeupL+group) |= 1<<queue;	//low wakeup
+		*(YC_GPIOWakeupH+group) &= ~(1<<queue);
+	}
+}
+
+void GPIO_ClearWakeup(u8_t gpio_num)
+{
+	u8_t queue, group;
+	queue = (gpio_num & 7);
+	group = (gpio_num>>3 & 3);
+	*(YC_GPIOWakeupL+group) &= ~(1<<queue);
+	*(YC_GPIOWakeupH+group) &= ~(1<<queue);
+}
+
+void GPIO_SetWakeupByCurrentState(u8_t gpio_num)
+{
+	bool st = GPIO_GetInputStatus(gpio_num);
+	GPIO_SetWakeup(gpio_num, ~st);
+}
+
+void GPIO_FlipOutBit(u8_t gpio_num)
+{
+	bool st = gpioGetBit(gpio_num, &REG_GPIO_OUT(0));
+	GPIO_Setout(gpio_num, ~st);
+}
+
Index: c51/hwreg.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/hwreg.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/hwreg.h	(working copy)
@@ -0,0 +1,200 @@
+#ifndef _HWREG_H_
+#define _HWREG_H_
+
+
+#define HWRITED(reg, dword)	do{HWRITE(reg, (dword) & 0xff); \
+							HWRITE(reg + 1, (dword) >> 8 & 0xff); \
+							HWRITE(reg + 2, (dword) >> 16 & 0xff); \
+							HWRITE(reg + 3, (dword) >> 24 & 0xff); \
+							}while(0)
+
+#define HREADD(reg)			((u32_t)HREAD(reg)  | (u32_t)HREAD(reg + 1) << 8 | (u32_t)HREAD(reg + 2) << 16 | (u32_t)HREAD(reg + 3) << 24)
+
+#define ESWAP(word)			((word) >> 8 & 0xff | (word) << 8 & 0xff00)
+#define min(x,y) 				((x) < (y) ? (x) : (y))
+#define HREADW(reg)			(*((volatile unsigned int xdata *)(reg)))
+#define HWRITEW(mem, word)	HREADW(mem) = ESWAP(word)
+#define HREADWS(reg)			ESWAP(HREADW(reg))
+
+#define HREAD(reg)			(*(volatile unsigned char xdata *)(reg))
+#define HWRITE(reg, value)		*((volatile unsigned char xdata *)(reg)) = value
+
+#define SETBIT(reg, value)		HWRITE(reg,( (HREAD(reg)) | (value)))
+#define CLRBIT(reg, value)		HWRITE(reg, (HREAD(reg) & (~(value))))
+#define READBIT(reg, value)		((HREAD(reg)) & (value))
+#define BIT(x)					(1 << (x))
+
+
+#define PWM_EN			0x8084
+
+#define GPIO_OE(X)                0x8070 + X
+#define GPIO_OUT(X)                0x8074 + X
+#define GPIO_PUP(X)                0x8078 + X
+#define GPIO_PDN(X)                0x807c + X
+#define GPIO_SEL(X)            0x8080 + X
+#define GPIO_KEY(X)            0x8083 + X
+
+#define GPIO_IN(X)                  0x811c + X
+
+
+#define PWM_PCOUNT(X) (0x80a0 + X*4)
+#define PWM_NCOUNT(X) (0x80a2 + X*4)
+
+#define CLOCK_SEL			0x8044
+#define CLOCK_SEL_12M		9
+
+#define LPM_EXENOE		0x813e
+
+// math cordic
+#define CORDIC_TYPE    	0x8053
+#define CORDIC_A     		0x80a8
+#define CORDIC_B     		0x80ac
+#define PERF_STATUS		0x812d
+#define CORDIC_RESULT     	0x8120
+
+#define YC_TYPE_SIN		0
+#define YC_TYPE_ATAN	1
+#define YC_TYPE_MULT	2
+#define YC_TYPE_DIV		3
+#define YC_TYPE_ASIN	         4
+#define YC_TYPE_SQRT	5
+#define YC_TYPE_COS		6
+#define YC_TYPE_TAN		7
+
+// DMA UART
+#define UART_BAUD     0x8052
+#define UART_RSADDR   0x8054
+#define UART_READDR   0x8056 
+#define UART_RRPTR    0x8058
+#define UART_TSADDR   0x805a 
+#define UART_TEADDR   0x805c 
+#define UART_TWPTR    0x805e
+#define UART_TRPTRP   0x8060 
+#define UART_CTRL     0x8062 
+#define CLKN		0x8100
+
+#define UART_STATUS  0x810c
+#define UART_RBAUD   0x810d 
+#define UART_TXITEMS 0x810e 
+#define UART_TRPTR   0x8110 
+#define UART_RXITEMS 0x8112 
+#define UART_RDPTR   0x8114 
+#define UART_RWPTR   0x8116 
+
+#define KSCN_KSCTRL                 	0x8063
+#define KSCN_RCTC                    	0x8064
+#define KSCN_ROW_MASK                	0x806f
+
+#define KSCN_EVENT_BUF           	0x811a
+#define KSCN_EVENT_NUM           	0x811b
+
+
+#define CPUB_ICE_CTRL	(*(volatile unsigned char xdata *)(0x8280))
+
+#define CPUB_ICE_BK0_LO	(*(volatile unsigned char xdata *)(0x8205))
+#define CPUB_ICE_BK0_HI	(*(volatile unsigned char xdata *)(0x8206))
+
+#define IIC_ADDR_START		0x8300
+#define IIC_PRER_LOW			0x8300
+#define IIC_SLAVE_ADDR		0x8301
+#define IIC_CTR				0x8302
+#define IIC_CR				0x8303
+#define IIC_RXR				0x8304
+#define IIC_TXR				0x8305
+#define IIC_SR				0x8306
+#define IIC_FIFO				0x8307
+
+#define USB_CONFIG		0x8c00
+#define USB_INT_MASK(x)	(0x8c01 + x)
+#define USB_TRG			0x8c10
+#define USB_STALL		0x8c11
+#define USB_CLEAR		0x8c12
+#define USB_EP(x)			(0x8c18 + x)
+#define USB_EP_LEN(x)		(0x8c20 + x)
+
+
+#define USB_STATUS		0x8c26
+#define USB_FIFO_EMPTY	0x8c27
+
+sfr DFIFO0     = 0x94;
+sfr DFIFO1     = 0x95;
+sfr DFIFO2     = 0x96;
+
+
+#define PWM_CLOCK           5 
+#define REG_CLK_OFF(n)		(*(volatile unsigned char xdata *)(0x8050 + n))
+
+#define REG_PWM_ENABLE   	(*(volatile unsigned char xdata *)0x8085)
+#define REG_PWM_CLK_SEL 	(*(volatile unsigned char xdata *)0x8042)
+#define REG_PWM_PCOUNT(n) 	(*(volatile unsigned char xdata *)(0x80a0 + n*4))
+#define REG_PWM_NCOUNT(n) 	(*(volatile unsigned char xdata *)(0x80a2 + n*4))
+
+
+#define REG_UART_CLK_SEL	(*(volatile unsigned char xdata *)0x8043)
+#define REG_UART_BAUD		(*(volatile unsigned short xdata *)0x8052)
+#define REG_UART_BAUD_HI		(*(volatile unsigned char xdata *)0x8053)
+#define REG_UART_RX_ADDR_S	(*(volatile unsigned short xdata *)0x8054)
+#define REG_UART_RX_ADDR_E 	(*(volatile unsigned short xdata *)0x8056)
+#define REG_UART_RX_PTR_R	(*(volatile unsigned short xdata *)0x8058)
+#define REG_UART_TX_ADDR_S	(*(volatile unsigned short xdata *)0x805a)
+#define REG_UART_TX_ADDR_E	(*(volatile unsigned short xdata *)0x805c)
+#define REG_UART_TX_PTR_W	(*(volatile unsigned short xdata *)0x805e)
+#define REG_UART_TX_PTRP_R	(*(volatile unsigned short xdata *)0x8060)
+#define REG_UART_CTRL		(*(volatile unsigned char xdata *)0x8062)
+
+//read only
+#define REG_UART_STATUS		(*(volatile unsigned char xdata *)0x810c)
+#define REG_UART_DET_BAUD	(*(volatile unsigned char xdata *)0x810d)
+#define REG_UART_TX_ITEMS	(*(volatile unsigned short xdata *)0x810e)
+#define REG_UART_TX_PTR_R	(*(volatile unsigned short xdata *)0x8110)
+#define REG_UART_RX_ITEMS	(*(volatile unsigned short xdata *)0x8112)
+#define REG_UART_RX_DPTR_R	(*(volatile unsigned short xdata *)0x8114)
+#define REG_UART_RX_PTR_W	(*(volatile unsigned short xdata *)0x8116)
+
+#define REG_GPIO_SELECT(n)	(*(volatile unsigned char xdata *)(0x8080 + n))
+
+#define REG_GPIO_OE(n) 	(*(volatile unsigned char xdata *)(0x8070 + n))
+#define REG_GPIO_OUT(n)	(*(volatile unsigned char xdata *)(0x8074 + n))
+#define REG_GPIO_PUP(n) 	(*(volatile unsigned char xdata *)(0x8078 + n))
+#define REG_GPIO_PDN(n)	(*(volatile unsigned char xdata *)(0x807c + n))
+#define REG_GPIO_SEL(n) 	(*(volatile unsigned char xdata *)(0x8080 + n))
+#define REG_GPIO_KEY(n) 	(*(volatile unsigned char xdata *)(0x8083 + n))
+
+#define REG_GPIO_IN(n)	(*(volatile unsigned char xdata *)(0x811c + n))	//n=0,1,2,3
+
+#define REG_MISC_CTRL			(*(volatile unsigned char xdata *)(0x8006))
+
+
+#define REG_SPID_CTRL  			(*(volatile unsigned char xdata *)(0x8086))
+#define REG_SPID_DELAY  		(*(volatile unsigned char xdata *)(0x8087))
+#define REG_SPID_TXADDR			(*(volatile unsigned short xdata *)(0x808a))
+#define REG_SPID_RXADDR			(*(volatile unsigned short xdata *)(0x808c))
+#define REG_SPID_TXLEN			(*(volatile unsigned short xdata *)(0x8088))
+#define REG_SPID_RXLEN			(*(volatile unsigned short xdata *)(0x808e))
+
+#define REG_IICD_CTRL			(*(volatile unsigned char xdata *)(0x8090))
+#define REG_IICD_SCL_LOW		(*(volatile unsigned char xdata *)(0x8091))
+#define REG_IICD_SCL_HIGH		(*(volatile unsigned char xdata *)(0x8092))
+#define REG_IICD_START_SETUP		(*(volatile unsigned char xdata *)(0x8093))
+#define REG_IICD_START_HOLD		(*(volatile unsigned char xdata *)(0x8094))
+#define REG_IICD_STOP_SETUP		(*(volatile unsigned char xdata *)(0x8095))
+#define REG_IICD_DATA_SETUP		(*(volatile unsigned char xdata *)(0x8096))
+#define REG_IICD_DATA_HOLD		(*(volatile unsigned char xdata *)(0x8097))
+#define REG_IICD_TXLEN			(*(volatile unsigned short xdata *)(0x8098))
+#define REG_IICD_TXADDR			(*(volatile unsigned short xdata *)(0x809a))
+#define REG_IICD_RXADDR			(*(volatile unsigned short xdata *)(0x809c))
+#define REG_IICD_RXLEN			(*(volatile unsigned short xdata *)(0x809e))
+#define REG_CLKN					(*(volatile unsigned long xdata *)(0x8100))
+#define REG_DMA_STATUS			(*(volatile unsigned char xdata *)(0x812c))
+
+#define REG_RFEN_ADC			(*(volatile unsigned char xdata *)(0x8906))
+#define REG_ADC_IN				(*(volatile unsigned short xdata *)(0x812e))
+#define REG_RF_ADC_GC			(*(volatile unsigned char xdata *)(0x8972))
+#define REG_RFEN_CHGPUMP		(*(volatile unsigned char xdata *)(0x8973))
+#define REG_RF_ADC_MODE		(*(volatile unsigned char xdata *)(0x8971))
+#define CORE_ADC_SUM		(*(volatile unsigned short xdata *)(0x8150))
+#define REG_RST			(*(volatile unsigned char xdata *)(0x8010))
+#define REG_Counter		(*(volatile unsigned char xdata *)(0x8100))
+
+
+#endif
Index: c51/iic.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/iic.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/iic.h	(working copy)
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2016, yichip Semiconductor(shenzhen office)
+ * All Rights Reserved.
+ *
+ * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Yichip Semiconductor;
+ * the contents of this file may not be disclosed to third parties, copied
+ * or duplicated in any form, in whole or in part, without the prior
+ * written permission of Yichip Semiconductor.
+ */
+ 
+ /** @file
+ *
+ * IIC support for application
+ */
+#ifndef __DEV_EEP_H_
+#define __DEV_EEP_H_
+#include "type.h"
+#include "btreg.h"
+#include "hwreg.h"
+
+/**
+ * This function read data by IIC,Warning:pbuff can't not piont to address > 0x4000.
+ * 
+ * @param addr IIC address ,len length to read,pbuff pointer to restore data
+ * 
+ * @return none.
+*/
+void IIC_Read(u16_t addr, u16_t len, u8_t* pbuff);
+/**
+ * This function write data by IIC,Warning:pbuff can't not piont to address > 0x4000.
+ * 
+ * @param addr IIC address ,len length to write,pbuff pointer to store data
+ * 
+ * @return none.
+*/
+void IIC_write(u16_t addr,u16_t len, u8_t* pbuff);
+/**
+ * This function write data by IIC,can't ignore page of block device,Warning:pbuff can't not piont to address > 0x4000.
+ * 
+ * @param addr IIC address ,len length to read,pbuff pointer to store data
+ * 
+ * @return none.
+*/
+void IIC_WriteBlock(u16_t addr, u16_t len, u8_t* pbuff);
+#endif/* YC_IIC_H */
+
Index: c51/iic.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/iic.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/iic.c	(working copy)
@@ -0,0 +1,66 @@
+#include "iic.h"
+#include "utilities.h"
+#define EEP_PAZE_SIZE  16
+#define EEP_DEV_ADDR	(0 << 1) & 6
+#define IIC_TEMP_BUFF_LEN 100
+
+static volatile u8_t IIC_TempBuff[IIC_TEMP_BUFF_LEN];
+static volatile u8_t YC_IICDTbuf[4];
+
+static void IIcWaitDone(void)
+{
+	while(!(REG_DMA_STATUS&(1<<5)));
+}
+
+void IIC_Read(u16_t addr, u16_t len, u8_t* pbuff)
+{
+	u16_t mem_src =  addr;
+	REG_IICD_TXLEN = ESWAP(4);
+	YC_IICDTbuf[0] = 0xa0 |EEP_DEV_ADDR;
+	*(u16_t*)(YC_IICDTbuf+1) = mem_src;
+	YC_IICDTbuf[3] = 0xa1 | EEP_DEV_ADDR;
+	REG_IICD_TXADDR = ESWAP((u16_t)&YC_IICDTbuf);
+	REG_IICD_RXLEN = ESWAP(len);
+	REG_IICD_RXADDR = ESWAP((u16_t)IIC_TempBuff);
+	REG_IICD_CTRL = 2;
+	if(!(REG_IICD_RXADDR&(1<<7)))
+	{
+		REG_IICD_CTRL |= 1;
+	}
+	REG_MISC_CTRL |= 1 << 2;	//start iic dma
+	IIcWaitDone();	
+	xmemcpy(pbuff,IIC_TempBuff,len);
+}
+
+void IIC_write(u16_t addr,u16_t len, u8_t* pbuff)
+{
+	u8_t ptemp_addr[EEP_PAZE_SIZE+3];
+	xmemcpy(ptemp_addr+3, pbuff, len);
+	ptemp_addr[0] = 0xa0;
+	(u16_t)ptemp_addr[1] = addr;
+	REG_IICD_TXLEN = ESWAP(len+3);
+	REG_IICD_TXADDR = ESWAP((u16_t)ptemp_addr);
+	REG_IICD_RXLEN = 0;
+	REG_IICD_CTRL = 1;
+	
+	REG_MISC_CTRL |= 1 << 2;	//start iic dma
+	IIcWaitDone();
+}
+
+void IIC_WriteBlock(u16_t addr, u16_t len, u8_t* pbuff)
+{
+	u16_t cris,curr_len;
+	while (len)
+	{
+		cris = (addr|(EEP_PAZE_SIZE-1)) +1;
+		curr_len = cris - addr;
+		curr_len = min(curr_len,len);
+		len -= curr_len;
+		IIC_write(addr,curr_len,pbuff);
+		Delay1ms(10);
+		pbuff += curr_len;
+		addr += curr_len;
+	};
+	
+}
+
Index: c51/ipc.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/ipc.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/ipc.h	(working copy)
@@ -0,0 +1,257 @@
+/*
+ * Copyright 2016, yichip Semiconductor(shenzhen office)
+ * All Rights Reserved.
+ *
+ * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Yichip Semiconductor;
+ * the contents of this file may not be disclosed to third parties, copied
+ * or duplicated in any form, in whole or in part, without the prior
+ * written permission of Yichip Semiconductor.
+ */
+ 
+ /** @file
+ *
+ * ipc support for application
+ */
+#ifndef _YC_IPC_H_
+#define _YC_IPC_H_
+#include "type.h"
+
+#define BUG_FIX
+#ifdef BUG_FIX
+#define FIX_ENTER_LPM	0x01
+#define FIX_ENTER_HIBERNATE	0x03
+
+#endif
+
+/* IPC tx hardware address */
+#define IPC_TX_HEAD	mem_ipc_2bt_fifo_head
+#define IPC_TX_END	mem_ipc_2bt_fifo_end
+#define IPC_TX_WRITE_PTR	mem_ipc_2bt_write_index
+#define IPC_TX_READ_PTR		mem_ipc_2bt_read_index
+
+/*IPC rx hardware address*/
+#define IPC_RX_HEAD	mem_ipc_2C51_fifo_head
+#define IPC_RX_END	mem_ipc_2C51_fifo_end
+#define IPC_RX_WRITE_PTR	mem_ipc_2C51_write_index
+#define IPC_RX_READ_PTR		mem_ipc_2C51_read_index
+
+/*IPC c51 private area*/
+#define IPC_CONTROL_BLOCK	mem_c51_private_area
+
+/*IPC data type*/
+#define IPC_CONTROL_CMD			0x01
+#define IPC_CONTROL_EVT			0x02
+#define IPC_HID_DATA			0x03
+#define IPC_SPP_DATA			0x04
+#define IPC_BLE_DATA			0x05
+#define IPC_24G_DATA			0x06
+
+/*IPC cmd type*/
+#define IPC_CMD_START_DISCOVERY 			0x01
+#define IPC_CMD_STOP_DISCOVERY				0x02
+#define IPC_CMD_RECONNECT 					0x03
+#define IPC_CMD_DISCONNECT 					0x04
+#define IPC_CMD_ENTER_SNIFF					0x05
+#define IPC_CMD_EXIT_SNIFF					0x06
+#define IPC_CMD_SET_PIN_CODE 				0x0a
+#define IPC_CMD_START_INQUIRY 				0x0b
+#define IPC_CMD_STOP_INQUIRY 				0x0c
+#define IPC_CMD_START_ADV					0x0d
+#define IPC_CMD_STOP_ADV					0x0e
+#define IPC_CMD_LE_DISCONNECT				0x11
+#define IPC_CMD_ENTER_HIBERNATE 			0x19
+#define IPC_CMD_ROLE_SWITCH 				0x1d
+#define IPC_CMD_BB_RECONN_CANCEL 			0x1e
+#define IPC_CMD_UPDATE_SUPPERVISION_TO		0x22
+#define IPC_CMD_START_24G					0x23
+#define IPC_CMD_STOP_24G					0x24
+#define IPC_CMD_PAIR_24G					0x25
+#define IPC_CMD_TEST_MODE 					0x26
+#define IPC_CMD_START_ADV_RECONN			0x27
+
+ 	
+/*IPC event type*/
+#define IPC_EVT_NULL						0x00
+#define IPC_EVT_BB_CONNECTED				0x01
+#define IPC_EVT_BB_DISCONNECTED				0x02
+#define IPC_EVT_RECONN_STARTED				0x03
+#define IPC_EVT_RECONN_FAILED				0x04
+#define IPC_EVT_SETUP_COMPLETE				0x05
+#define IPC_EVT_HID_CONNECTED				0x06
+#define IPC_EVT_HID_DISCONNECTED			0x07
+#define IPC_EVT_PINCODE_REQ					0x0a
+#define IPC_EVT_HID_HANDSHAKE				0x12
+#define IPC_EVT_RECONN_PAGE_TIMEOUT			0x13
+#define IPC_EVT_LE_CONNECTED				0x14
+#define IPC_EVT_LE_DISCONNECTED				0x15
+#define IPC_EVT_LINKKEY_GENERATE			0x18
+#define IPC_EVT_VIRTUAL_CABLE_UNPLUG		0x27
+#define IPC_EVT_LE_ENC_INFO					0x29
+#define IPC_EVT_SWITCH_FAIL_MASTER 			0x2a
+#define IPC_EVT_RESET						0x2f
+#define IPC_EVT_LE_START_ENC				0x32
+#define IPC_EVT_24G_PAIRING_COMPLETE		0x39
+#define IPC_EVT_24G_ATTEMPT_SUCCESS			0x3a
+#define IPC_EVT_24G_ATTEMPT_FAIL			0x3b
+#define IPC_EVT_WAKEUP						0x3c
+#define IPC_EVT_HIBERNATE_WAKE				0x3d
+#define IPC_EVT_CLEAR_LINKKEY				0x3e
+#define IPC_EVT_LE_NOTIFY_ENABLE			0x40
+
+
+/*IPC EVT callback function type*/
+typedef void (*tIPCEventCb)(u8_t);
+
+/*IPC SPP callback function type*/
+typedef void (*tIPCSppCb)(u8_t*, u16_t);
+
+/*IPC BLE callback function type*/
+typedef void (*tIPCBleCb)(u8_t*, u16_t);
+
+/*IPC timer(1s) callback function type*/
+typedef void (*tIPCTimer)(void);
+
+/*IPC Hid callback function type*/
+typedef void (*tIPCHidCb)(u8_t*, u16_t);
+
+/*IPC control block type*/
+typedef struct IPCContolBlock {
+	tIPCEventCb evtcb;		/*<ipc evt call back*/
+	tIPCSppCb sppcb;		/*<ipc spp call back*/
+	tIPCTimer timercb;		/*<ipc timer call back*/
+	tIPCTimer stimercb;
+	tIPCBleCb blecb;
+	tIPCHidCb hidcb;
+}tIPCControlBlock;
+
+
+typedef enum IPCRejReason{
+	AUTHENTICATION_FAILURE_ERROR = 0x05,
+	KEY_MISSING = 0x06,
+	ACL_CONNECTION_ALREADY_EXISTS = 0x0b,
+	OTHER_END_TERMINATED = 0x13,
+	ABOUT_TO_POEWR_OFF = 0x15,
+	LOCAL_HOST= 0x16,
+	PAIRING_NOT_ALLOWED = 0x18,
+	UNKNOWN_LMP_PDU = 0x19,
+	UNSUPPORTED_LMP_FEATURE = 0x1A,
+	UNSPECIFIED_ERROR = 0x1F,
+	UNSUPPORTED_PARAMETERS = 0x20,
+	SWITCH_NOT_ALLOWED = 0x21,
+	TRANSACTION_COLLISION = 0x23,
+	PDU_NOT_ALLOWED = 0x24,
+	ENCRYPTION_MODE_NOT_ACCEPTABLE = 0x25,
+	NOT_SUPPORT_CHN_CLASSIFICATION = 0x2e,
+	NOT_SUPPORT_SSP = 0x37,
+}tIPCREJREASON;
+
+/*IPC syc task type*/
+extern volatile u8_t current_task;
+
+#define BT_PIN_CODE_MAX_LEN 16
+extern u8_t xdata ipcPinlen;
+extern u8_t xdata ipcPin[BT_PIN_CODE_MAX_LEN];
+
+/*IPC set pincode*/
+#define IPC_SetPincode(p,l)	ipcPinlen= l,\
+							xmemcpy(ipcPin, p, ipcPinlen)
+
+/**
+ * This function rigist IPC Control Block.
+ * 
+ * @param cb the IPC control block.
+ * 
+ * @return none.
+*/
+void IPC_Initialize(tIPCControlBlock *cb);
+
+/**
+ * This function deal IPC Single process, callback the rigisted IPC control function.
+ * 
+ * @param none.
+ * 
+ * @return none.
+*/
+void IPC_DealSingleStep(void);
+
+/**
+ * This function tx control IPC command.
+ * 
+ * @param cmd IPC command want to send.
+ * 
+ * @return none.
+*/
+void IPC_TxControlCmd(u8_t cmd);
+/**
+ * This function tx HID IPC command,Cpu will block when TxBuffer is not Empty.
+ * 
+ * @param dt IPC HID data want to send,len length of hid data
+ * 
+ * @return none.
+*/
+void IPC_TxBREDRHidData(u8_t* dt, u8_t len);
+
+/**
+ * This function tx 24G IPC command,Cpu will block when TxBuffer is not Empty.
+ * 
+ * @param dt IPC HID data want to send,len length of hid data
+ * 
+ * @return none.
+*/
+void IPC_Tx24GData(u8_t* dt, u8_t len);
+
+/**
+ * This function tx SPP IPC command,Cpu will block when TxBuffer is not Empty.
+ * 
+ * @param dt IPC SPP data want to send,len length of SPP data
+ * 
+ * @return none.
+*/
+void IPC_TxSppData(u8_t* dt, u8_t len);
+
+/**
+ * This function tx BLE IPC command,Cpu will block when TxBuffer is not Empty.
+ * 
+ * @param dt IPC BLE data want to send,len length of BLE data
+ * 
+ * @return none.
+*/
+void IPC_TxBleData(u8_t* dt, u8_t len);
+
+/**
+ * This function will do nothing wait enter lpm.
+ * 
+ * @param none.
+ * 
+ * @return none.
+*/
+void IPC_WaitLpm(void);
+
+/**
+ * This function will do nothing abandon lpm this time.
+ * 
+ * @param none.
+ * 
+ * @return none.
+*/
+void IPC_AbandonLpm(void);
+
+/**
+ * This function will do nothing wait enter lpm.
+ * 
+ * @param none.
+ * 
+ * @return none.
+*/
+bit IPC_IsTxBuffEmpty(void);
+
+/**
+ * This function get reject reason.
+ * 
+ * @param none.
+ * 
+ * @return none.
+*/
+tIPCREJREASON IPC_GetBBDIsconnectReason();
+
+#endif /* YC_IPC_H */
Index: c51/ipc.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/ipc.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/ipc.c	(working copy)
@@ -0,0 +1,191 @@
+/*
+ * Copyright 2016, Yichip Semiconductor(shenzhen office)
+ * All Rights Reserved.
+ *
+ * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Yichip Semiconductor;
+ * the contents of this file may not be disclosed to third parties, copied
+ * or duplicated in any form, in whole or in part, without the prior
+ * written permission of Yichip Semiconductor.
+ */
+
+/** @file
+ *
+ * IPC Application for c51 devices
+ *
+ */
+ 
+#include "ipc.h"
+#include "utilities.h"
+
+#define IPC_READ_BUFF_LEN	150
+#define IPC_TX_BUFF_LEN		150
+#define IPC_HEAD_LEN 3
+#define IPC_CMD_LEN 3
+#define IPC_HID_LEN 10
+
+static const volatile u16_t ipcTxReadPtr _at_ IPC_TX_READ_PTR;	/*< read only*/
+static const  volatile u16_t ipcRxWritePtr _at_ IPC_RX_WRITE_PTR;	/*< read only*/
+static volatile u16_t ipcTxWritePtr _at_ IPC_TX_WRITE_PTR;	/*<read and wite */
+static volatile u16_t ipcRxReadPtr _at_ IPC_RX_READ_PTR;	/*<read and write */
+static tIPCControlBlock ipcCb _at_ IPC_CONTROL_BLOCK;
+static  volatile u8_t bbDisReason _at_ mem_disconn_reason_send;
+
+volatile u8_t xdata ipcPinlen _at_ mem_pin_length;
+volatile u8_t xdata ipcPin[BT_PIN_CODE_MAX_LEN] _at_ mem_pin;
+volatile u8_t xdata ipcReadBuff[IPC_READ_BUFF_LEN];
+volatile u8_t xdata ipcSendBuff[IPC_TX_BUFF_LEN];
+volatile u8_t current_task _at_  mem_c51_flag;
+volatile u8_t lpm_flag _at_ mem_c51_lmp_lock;
+volatile u16_t bttimer _at_ mem_ipc_bt_timer;
+volatile u16_t c51timer _at_ mem_ipc_c51_timer;
+volatile u8_t btstimer _at_ mem_ipc_bt_100ms_timer;
+volatile u8_t c51stimer _at_ mem_ipc_c51_100ms_timer;
+
+static void ipcRx(u8_t* dest, u8_t len)
+{
+	xu8_t* src = (xu8_t *)ipcRxReadPtr;
+	while(len--) {
+		*dest++ = *src++;
+		if ((u16_t)src == IPC_RX_END) {
+			src = (xu8_t *)IPC_RX_HEAD;
+		}
+	}
+	ipcRxReadPtr = (u16_t)src;
+}
+
+static void ipcTx(u8_t* src, u8_t len)
+{
+	xu8_t* dest = (xu8_t*)ipcTxWritePtr;
+	while(len--) {
+		*dest++ = *src++;
+		if ((u16_t)dest == IPC_TX_END) {
+			dest = (xu8_t *)IPC_TX_HEAD;
+		}
+	}
+	ipcTxWritePtr =  (u16_t)dest;
+}
+
+void IPC_TxControlCmd(u8_t cmd)
+{
+	u8_t cmdBuff[IPC_CMD_LEN] = {IPC_CONTROL_CMD,0x01};
+	cmdBuff[IPC_CMD_LEN - 1] = cmd;
+	ipcTx(cmdBuff, IPC_CMD_LEN);
+}
+
+void IPC_TxBREDRHidData(u8_t* dt, u8_t len)
+{
+	ipcSendBuff[0] = IPC_HID_DATA;
+	if (len == 0)
+		return;
+	while (ipcTxReadPtr!=ipcTxWritePtr);
+	ipcSendBuff[1] = len;
+	xmemcpy(&ipcSendBuff[2], dt, len);
+	ipcTx(ipcSendBuff, len + 2);
+}
+
+
+
+void IPC_Tx24GData(u8_t* dt, u8_t len)
+{
+	ipcSendBuff[0] = IPC_24G_DATA;
+	while (ipcTxReadPtr!=ipcTxWritePtr);
+	ipcSendBuff[1] = len;
+	xmemcpy(&ipcSendBuff[2], dt, len);
+	ipcTx(ipcSendBuff, len + 2);
+}
+
+
+u8_t IPC_GetBBDIsconnectReason()
+{
+	return bbDisReason;
+}
+
+void IPC_TxSppData(u8_t* dt, u8_t len)
+{
+	ipcSendBuff[0] = IPC_SPP_DATA;
+	while (ipcTxReadPtr!=ipcTxWritePtr);
+	ipcSendBuff[1] = len;
+	xmemcpy(&ipcSendBuff[2], dt, len);
+	ipcTx(ipcSendBuff, len + 2);
+}
+
+void IPC_TxBleData(u8_t* dt, u8_t len)
+{
+	ipcSendBuff[0] = IPC_BLE_DATA;
+	while (ipcTxReadPtr!=ipcTxWritePtr);
+	ipcSendBuff[1] = len;
+	xmemcpy(&ipcSendBuff[2], dt, len);
+	ipcTx(ipcSendBuff, len + 2);
+}
+
+void IPC_Initialize(tIPCControlBlock *cb)
+{
+	ipcCb = *cb;
+}
+
+void IPC_WaitLpm()
+{
+	lpm_flag = 0;
+	current_task = 0;
+	Delay1ms(1);
+}
+
+void IPC_AbandonLpm()
+{
+	lpm_flag = 1;
+	current_task = 0;
+}
+
+bit IPC_IsTxBuffEmpty()
+{
+	if (ipcTxReadPtr == ipcTxWritePtr)
+		return 1;
+	return 0;
+}
+
+
+void IPC_DealSingleStep()
+{
+	u8_t *pbuff = ipcReadBuff;
+	if (ipcRxReadPtr == ipcRxWritePtr)
+		goto IPC_TIMER;
+	ipcRx(ipcReadBuff, IPC_HEAD_LEN);
+	if (*pbuff == IPC_CONTROL_EVT) {
+		pbuff += 2;
+		ipcCb.evtcb(*pbuff);
+	}
+	else if (*pbuff == IPC_SPP_DATA) {
+		pbuff ++ ;
+		ipcRx(ipcReadBuff+3, *pbuff -1);
+		ipcCb.sppcb(pbuff+1, *pbuff);
+	}
+	else if (*pbuff == IPC_BLE_DATA) {
+		pbuff ++ ;
+		ipcRx(ipcReadBuff+3, *pbuff -1);
+		ipcCb.blecb(pbuff+1, *pbuff);
+	}
+	else if (*pbuff == IPC_HID_DATA) {
+		pbuff ++ ;
+		ipcRx(ipcReadBuff+3, *pbuff -1);
+		ipcCb.hidcb(pbuff+1, *pbuff);
+	}
+	else {
+		while(1);
+	}
+IPC_TIMER:
+	while (c51timer != bttimer) {
+		if (ipcCb.timercb == NULL)
+			return;
+		ipcCb.timercb();
+		c51timer ++;
+	}
+	while (c51stimer!= btstimer) {
+		if (ipcCb.stimercb == NULL)
+			return;
+		ipcCb.stimercb();
+		c51stimer ++;
+	}
+	//other app process
+}
+
+
Index: c51/kbhid.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/kbhid.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/kbhid.h	(working copy)
@@ -0,0 +1,273 @@
+    /// KB USB usages
+enum UsbUsage {
+        USB_USAGE_A=4,
+        USB_USAGE_B=5,
+        USB_USAGE_C=6,
+        USB_USAGE_D=7,
+        USB_USAGE_E=8,
+        USB_USAGE_F=9,
+        USB_USAGE_G=10,
+        USB_USAGE_H=11,
+        USB_USAGE_I=12,
+        USB_USAGE_J=13,
+        USB_USAGE_K=14,
+        USB_USAGE_L=15,
+        USB_USAGE_M=16,
+        USB_USAGE_N=17,
+        USB_USAGE_O=18,
+        USB_USAGE_P=19,
+        USB_USAGE_Q=20,
+        USB_USAGE_R=21,
+        USB_USAGE_S=22,
+        USB_USAGE_T=23,
+        USB_USAGE_U=24,
+        USB_USAGE_V=25,
+        USB_USAGE_W=26,
+        USB_USAGE_X=27,
+        USB_USAGE_Y=28,
+        USB_USAGE_Z=29,
+    
+        USB_USAGE_1=30,
+        USB_USAGE_2=31,
+        USB_USAGE_3=32,
+        USB_USAGE_4=33,
+        USB_USAGE_5=34,
+        USB_USAGE_6=35,
+        USB_USAGE_7=36,
+        USB_USAGE_8=37,
+        USB_USAGE_9=38,
+        USB_USAGE_0=39,
+    
+        USB_USAGE_ENTER=40,
+        USB_USAGE_ESCAPE=41,
+        USB_USAGE_BACKSPACE=42,
+        USB_USAGE_TAB=43,
+        USB_USAGE_SPACEBAR=44,
+        USB_USAGE_MINUS=45,
+        USB_USAGE_EQUAL=46,
+        USB_USAGE_LEFT_BRACKET=47,
+        USB_USAGE_RIGHT_BRACKET=48,
+        USB_USAGE_BACK_SLASH=49,
+    
+        USB_USAGE_NON_US_HASH=50,
+        USB_USAGE_SEMICOLON=51,
+        USB_USAGE_QUOTE=52,
+        USB_USAGE_ACCENT=53,
+        USB_USAGE_COMMA=54,
+        USB_USAGE_STOP_AND_GREATER=55,
+        USB_USAGE_SLASH=56,
+        USB_USAGE_CAPS_LOCK=57,
+        USB_USAGE_F1=58,
+        USB_USAGE_F2=59,
+    
+        USB_USAGE_F3=60,
+        USB_USAGE_F4=61,
+        USB_USAGE_F5=62,
+        USB_USAGE_F6=63,
+        USB_USAGE_F7=64,
+        USB_USAGE_F8=65,
+        USB_USAGE_F9=66,
+        USB_USAGE_F10=67,
+        USB_USAGE_F11=68,
+        USB_USAGE_F12=69,
+    
+        USB_USAGE_PRINT_SCREEN=70,
+        USB_USAGE_SCROLL_LOCK=71,
+        USB_USAGE_PAUSE=72,
+        USB_USAGE_INSERT=73,
+        USB_USAGE_HOME=74,
+        USB_USAGE_PAGE_UP=75,
+        USB_USAGE_DELETE=76,
+        USB_USAGE_END=77,
+        USB_USAGE_PAGE_DOWN=78,
+        USB_USAGE_RIGHT_ARROW=79,
+    
+        USB_USAGE_LEFT_ARROW=80,
+        USB_USAGE_DOWN_ARROW=81,
+        USB_USAGE_UP_ARROW=82,
+        USB_USAGE_NUM_LOCK=83,
+        USB_USAGE_KP_SLASH=84,
+        USB_USAGE_KP_ASTERISK=85,
+        USB_USAGE_KP_MINUS=86,
+        USB_USAGE_KP_PLUS=87,
+        USB_USAGE_KP_ENTER=88,
+        USB_USAGE_KP_1=89,
+    
+        USB_USAGE_KP_2=90,
+        USB_USAGE_KP_3=91,
+        USB_USAGE_KP_4=92,
+        USB_USAGE_KP_5=93,
+        USB_USAGE_KP_6=94,
+        USB_USAGE_KP_7=95,
+        USB_USAGE_KP_8=96,
+        USB_USAGE_KP_9=97,
+        USB_USAGE_KP_0=98,
+        USB_USAGE_KP_DOT=99,
+    
+        USB_USAGE_NON_US_BACK_SLASH=100,
+        USB_USAGE_APPLICATION=101,
+        USB_USAGE_POWER=102,
+        USB_USAGE_KP_EQUAL=103,
+        USB_USAGE_F13=104,
+        USB_USAGE_F14=105,
+        USB_USAGE_F15=106,
+        USB_USAGE_F16=107,
+        USB_USAGE_F17=108,
+        USB_USAGE_F18=109,
+    
+        USB_USAGE_F19=110,
+        USB_USAGE_F20=111,
+        USB_USAGE_F21=112,
+        USB_USAGE_F22=113,
+        USB_USAGE_F23=114,
+        USB_USAGE_F24=115,
+        USB_USAGE_EXECUTE=116,
+        USB_USAGE_HELP=117,
+        USB_USAGE_MENU=118,
+        USB_USAGE_SELECT=119,
+    
+        USB_USAGE_STOP=120,
+        USB_USAGE_AGAIN=121,
+        USB_USAGE_UNDO=122,
+        USB_USAGE_CUT=123,
+        USB_USAGE_COPY=124,
+        USB_USAGE_PASTE=125,
+        USB_USAGE_FIND=126,
+        USB_USAGE_MUTE=127,
+        USB_USAGE_VOL_UP=128,
+        USB_USAGE_VOL_DOWN=129,
+    
+        USB_USAGE_LOCKING_CAPS_LOCK=130,
+        USB_USAGE_LOCKING_NUM_LOCK=131,
+        USB_USAGE_LOCKING_SCROLL_LOCK=132,
+        USB_USAGE_KP_COMMA=133,
+        USB_USAGE_KP_EQUAL_AS400=134,
+        USB_USAGE_INTL_1=135,
+        USB_USAGE_INTL_2=136,
+        USB_USAGE_INTL_3=137,
+        USB_USAGE_INTL_4=138,
+        USB_USAGE_INTL_5=139,
+    
+        USB_USAGE_INTL_6=140,
+        USB_USAGE_INTL_7=141,
+        USB_USAGE_INTL_8=142,
+        USB_USAGE_INTL_9=143,
+        USB_USAGE_LANG_1=144,
+        USB_USAGE_LANG_2=145,
+        USB_USAGE_LANG_3=146,
+        USB_USAGE_LANG_4=147,
+        USB_USAGE_LANG_5=148,
+        USB_USAGE_LANG_6=149,
+    
+        USB_USAGE_LANG_7=150,
+        USB_USAGE_LANG_8=151,
+        USB_USAGE_LANG_9=152,
+        USB_USAGE_ALT_ERASE=153,
+        USB_USAGE_SYS_REQ=154,
+        USB_USAGE_CANCEL=155,
+        USB_USAGE_CLEAR=156,
+        USB_USAGE_PRIOR=157,
+        USB_USAGE_RETURN=158,
+        USB_USAGE_SEPARATOR=159,
+    
+        USB_USAGE_OUT=160,
+        USB_USAGE_OPER=161,
+        USB_USAGE_CLEAR_AGAIN=162,
+        USB_USAGE_CRSEL=163,
+        USB_USAGE_EXSEL=164,
+    
+        // Reserved 165-175
+    
+        USB_USAGE_KP_00=176,
+        USB_USAGE_KP_000=177,
+        USB_USAGE_THOUSANDS_SEPERATOR=178,
+        USB_USAGE_DECIMAL_SEPERATOR=179,
+    
+        USB_USAGE_CURRENCY_UNIT=180,
+        USB_USAGE_CURRENCY_SUB_UNIT=181,
+        USB_USAGE_KP_LEFT_PAREN=182,
+        USB_USAGE_KP_RIGHT_PAREN=183,
+        USB_USAGE_KP_LEFT_CURLY_BRACE=184,
+        USB_USAGE_KP_RIGHT_CURLY_BRACE=185,
+        USB_USAGE_KP_TAB=186,
+        USB_USAGE_KP_BACKSPACE=187,
+        USB_USAGE_KP_A=188,
+        USB_USAGE_KP_B=189,
+    
+        USB_USAGE_KP_C=190,
+        USB_USAGE_KP_D=191,
+        USB_USAGE_KP_E=192,
+        USB_USAGE_KP_F=193,
+        USB_USAGE_KP_XOR=194,
+        USB_USAGE_KP_CARET=195,
+        USB_USAGE_KP_PERCENT=196,
+        USB_USAGE_KP_LESS_THAN=197,
+        USB_USAGE_KP_GREATER_THAN=198,
+        USB_USAGE_KP_AMPERSAND=199,
+    
+        USB_USAGE_KP_DOUBLE_AMPERSAND=200,
+        USB_USAGE_KP_VERTICAL_BAR=201,
+        USB_USAGE_KP_DOUBLE_VERTICAL_BAR=202,
+        USB_USAGE_KP_COLON=203,
+        USB_USAGE_KP_HASH=204,
+        USB_USAGE_KP_SPACE=205,
+        USB_USAGE_KP_AT=206,
+        USB_USAGE_KP_EXCLAMATION=207,
+        USB_USAGE_KP_MEM_STORE=208,
+        USB_USAGE_KP_MEM_RECALL=209,
+    
+        USB_USAGE_KP_MEM_CLEAR=210,
+        USB_USAGE_KP_MEM_ADD=211,
+        USB_USAGE_KP_MEM_SUBTRACT=212,
+        USB_USAGE_KP_MEM_MULTIPLY=213,
+        USB_USAGE_KP_MEM_DIVIDE=214,
+        USB_USAGE_KP_PLUS_MINUS=215,
+        USB_USAGE_KP_CLEAR=216,
+        USB_USAGE_KP_CLEAR_ENTRY=217,
+        USB_USAGE_KP_BINARY=218,
+        USB_USAGE_KP_OCTAL=219,
+    
+        USB_USAGE_KP_DECIMAL=220,
+        USB_USAGE_KP_HEX=221,
+        // 222-223 reserved
+        USB_USAGE_LEFT_CTL=224,
+        USB_USAGE_LEFT_SHIFT=225,
+        USB_USAGE_LEFT_ALT=226,
+        USB_USAGE_LEFT_GUI=227,
+        USB_USAGE_RIGHT_CTL=228,
+        USB_USAGE_RIGHT_SHIFT=229,
+    
+        USB_USAGE_RIGHT_ALT=230,
+        USB_USAGE_RIGHT_GUI=231
+};
+
+enum multKey{
+//mult key
+	HID_MKEY_HOME = 0x01,
+	HID_MKEY_VIRKB	 = 0x02,
+	HID_MKEY_EMAILREADER = 0x03,
+	HID_MKEY_MENU = 0x04,
+	HID_MKEY_LIGHTUP = 0x05,
+	HID_MKEY_ACSEARCHER = 0x06,
+	HID_MKEY_PREMUSIC = 0x07,
+	HID_MKEY_STARTMUSIC = 0x08,
+	HID_MKEY_NEXTMUSIC = 0x09,
+	HID_MKEY_MUTE = 0x0a,
+	HID_MKEY_VOLDOWN = 0x0b,
+	HID_MKEY_VOLUP = 0x0c,
+	HID_MKEY_POWER = 0x0d,
+	HID_MKEY_MUSIC = 0x0e,
+	HID_MKEY_SCREESAVE = 0x13,
+	HID_MKEY_LIGHTDOWN = 0x15,
+};
+
+enum hidReportId{
+	HID_REPORTID_1 = 0x01,
+	HID_REPORTID_2 = 0x02
+};
+
+enum hidReportLen{
+	HID_REPORTLEN_1 = 0x09,
+	HID_REPORTLEN_2 = 0x05
+};
+
Index: c51/keyscan.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/keyscan.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/keyscan.h	(working copy)
@@ -0,0 +1,62 @@
+/*
+ * Copyright 2016, yichip Semiconductor(shenzhen office)
+ * All Rights Reserved.
+ *
+ * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Yichip Semiconductor;
+ * the contents of this file may not be disclosed to third parties, copied
+ * or duplicated in any form, in whole or in part, without the prior
+ * written permission of Yichip Semiconductor.
+ */
+
+#include "type.h"
+#include "btreg.h"
+#include "hwreg.h"
+
+#ifndef _KEYSCAN_
+#define _KEYSCAN_
+
+#define KS_SEL_RGUI					0x80
+#define KS_SEL_RALT					0x40
+#define KS_SEL_RSHIFT				0x20
+#define KS_SEL_RCTRL					0x10
+#define KS_SEL_LGUI					0x08
+#define KS_SEL_LALT					0x04
+#define KS_SEL_LSHIFT				0x02
+#define KS_SEL_LCTRL					0x01
+
+#define KS_BUFF_POLL_LEN 6
+typedef struct {
+	u8_t standardSel;
+	u8_t ksPool[KS_BUFF_POLL_LEN];
+}tKSEVENT;
+
+/**
+ * This function initlialize key scan hardware.
+ * 
+ * @param none.
+ * 
+ * @return none.
+*/
+void KS_Initialize(void);
+
+/**
+ * This function Get Keyscan event message.
+ * 
+ * @param none.
+ * 
+ * @return ptr of keyscan event.
+*/
+tKSEVENT *KS_GetCurrentEvt();
+
+/**
+ * This function scan ks matrix.
+ * 
+ * @param none.
+ * 
+ * @return ptr of keyscan event.
+*/
+void KS_ScanMatrix();
+
+void KS_Unistall();
+#endif
+ 
\ No newline at end of file
Index: c51/keyscan.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/keyscan.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/keyscan.c	(working copy)
@@ -0,0 +1,314 @@
+#include "keyscan.h"
+#include "utilities.h"
+#include "gpio.h"
+#include "kbhid.h"
+#include "global_variable.h"
+
+#define KS_EVENT_EVT_BLOCK (mem_c51_private_area + 40)
+
+#define GET_RAW_KEY_SEL(y, g, n)	REG_GPIO_PUP (g) &= ~n; \
+	REG_GPIO_OE(g) |= n; \
+	REG_GPIO_OUT(g) &= ~n;	\
+	y = ~ REG_GPIO_IN(0);	\
+	REG_GPIO_PUP(g) |= n;	\
+	REG_GPIO_OE(g) &= ~n
+
+
+#define GET_RAW_KEY_SEL0(y,x)		GPIO_SetOutput(x, 0); \
+		y = ~ REG_GPIO_IN(0);	\
+		GPIO_SetInput(x, 0)
+
+static tKSEVENT ksEvtPool _at_ KS_EVENT_EVT_BLOCK;//4ca5
+//static u8_t ksMap[KS_KEY_MAP_LEN] _at_ mem_kb_map_c51;
+
+u8_t YC_check_is_connected();
+
+
+
+
+#define MAX(a,b) ((a)>(b)?(a):(b))
+
+static u8_t bit_count(u8_t v)
+{
+	unsigned char c;
+	for (c = 0; v; c++) {
+    	v &= v - 1;
+    }
+    return c;
+}
+
+
+//u8_t col[] = {25,26};
+static void keyIn(u8_t key)
+{
+	u8_t i = 0;
+
+	if (key == USB_USAGE_RIGHT_GUI) {
+		ksEvtPool.standardSel |= KS_SEL_RGUI;
+		return;
+	}
+	else if (key ==USB_USAGE_RIGHT_ALT) {
+		ksEvtPool.standardSel |= KS_SEL_RALT;
+		return;
+	}
+	else if (key ==USB_USAGE_RIGHT_SHIFT) {
+		ksEvtPool.standardSel |= KS_SEL_RSHIFT;
+		return;
+	}
+	else if (key ==USB_USAGE_RIGHT_CTL) {
+		ksEvtPool.standardSel |= KS_SEL_RCTRL;
+		return;
+	}
+	else if (key ==USB_USAGE_LEFT_GUI) {
+		ksEvtPool.standardSel |= KS_SEL_LGUI;
+		return;
+	}
+	else if (key ==USB_USAGE_LEFT_ALT) {
+		ksEvtPool.standardSel |= KS_SEL_LALT;
+		return;
+	}
+	else if (key ==USB_USAGE_LEFT_SHIFT) {
+		ksEvtPool.standardSel |= KS_SEL_LSHIFT;
+		return;
+	}
+	else if (key ==USB_USAGE_LEFT_CTL) {
+		ksEvtPool.standardSel |= KS_SEL_LCTRL;
+		return;
+	}
+	//special key
+
+	for (i=0 ; i<KS_BUFF_POLL_LEN ; i++) {
+		if (ksEvtPool.ksPool[i] == key)
+			break;
+		if (ksEvtPool.ksPool[i] == 0) {
+			ksEvtPool.ksPool[i] = key;
+			break;
+		}
+	}
+}
+
+static void keyOut(u8_t key)
+{
+	u8_t i = 0 ;
+	u8_t found = 0;
+
+	if (key == USB_USAGE_RIGHT_GUI ) {
+		ksEvtPool.standardSel &= ~KS_SEL_RGUI;
+		return;
+	}
+	else if (key ==USB_USAGE_RIGHT_ALT ) {
+		ksEvtPool.standardSel &= ~KS_SEL_RALT;
+		return;
+	}
+	else if (key ==USB_USAGE_RIGHT_SHIFT) {
+		ksEvtPool.standardSel &= ~KS_SEL_RSHIFT;
+		return;
+	}
+	else if (key ==USB_USAGE_RIGHT_CTL) {
+		ksEvtPool.standardSel &= ~KS_SEL_RCTRL;
+		return;
+	}
+	else if (key ==USB_USAGE_LEFT_GUI) {
+		ksEvtPool.standardSel &= ~KS_SEL_LGUI;
+		return;
+	}
+	else if (key ==USB_USAGE_LEFT_ALT) {
+		ksEvtPool.standardSel &= ~KS_SEL_LALT;
+		return;
+	}
+	else if (key ==USB_USAGE_LEFT_SHIFT) {
+		ksEvtPool.standardSel &= ~KS_SEL_LSHIFT;
+		return;
+	}
+	else if (key ==USB_USAGE_LEFT_CTL) {
+		ksEvtPool.standardSel &= ~ KS_SEL_LCTRL;
+		return;
+	}
+	
+	for (i=0 ; i<KS_BUFF_POLL_LEN ; i++) {
+		if (found == 0) {
+			if (ksEvtPool.ksPool[i] == key) {
+				if (i == KS_BUFF_POLL_LEN-1) {
+					ksEvtPool.ksPool[i] = 0;
+				}
+				found = 1;
+			}
+		}
+		else {
+			ksEvtPool.ksPool[i-1] = ksEvtPool.ksPool[i];
+			if (ksEvtPool.ksPool[i] == 0)
+				break;
+			if (i == KS_BUFF_POLL_LEN-1) {
+				ksEvtPool.ksPool[i] = 0;
+			}
+		}
+	}
+}
+
+static void ksRawInitialize()
+{
+	u8_t i = 0;
+	
+	for (i=0; i<8; i++) {
+		GPIO_SetInput(i, 0);
+	}
+}
+
+static void ksColInitialize()
+{
+	u8_t i = 0;
+	for (i=0; col[i]!=0; i++) {
+		GPIO_SetInput(col[i], 0);
+	}
+}
+
+void KS_Initialize()
+{
+	REG_GPIO_SELECT(0) = 0;
+	REG_GPIO_SELECT(1) = 0;
+	REG_GPIO_SELECT(2) = 0;
+	ksRawInitialize();
+	ksColInitialize();
+}
+
+void KS_Unistall()
+{
+	u8_t i = 0;
+	u8_t temp = 0;
+	u8_t tgroup = 0;
+	u8_t tgpionum = 0;
+	for (i=0; col[i]!=0; i++) {
+		tgroup = col[i]  >> 3;
+		tgpionum = 1 << (col[i] & 7);
+		REG_GPIO_PUP (tgroup) &= ~tgpionum;
+		REG_GPIO_OE(tgroup) |= tgpionum;
+		REG_GPIO_OUT(tgroup) &= ~tgpionum;
+	}
+	temp = REG_GPIO_IN(0);
+	YC_GPIOWakeupL[0] = temp;
+	YC_GPIOWakeupH[0] = ~temp;
+}
+
+
+void KS_ScanMatrix()
+{
+	u8_t i = 0;
+	u8_t j = 0;
+	u8_t tgroup = 0;
+	u8_t tgpionum = 0;
+	u8_t temp = 0;
+	u8_t check = 0;
+	u8_t rawSel = 0;
+	for (i=0; col[i]!=0; i++) {
+		tgroup = col[i]  >> 3;
+		tgpionum = 1 << (col[i] & 7);
+		GET_RAW_KEY_SEL(g_variable.ksSelMapCurr[i], tgroup, tgpionum);
+	}
+
+	for (i=0; col[i]!=0; i++) {
+		tgroup = col[i]  >> 3;
+		tgpionum = 1 << (col[i] & 7);
+		GET_RAW_KEY_SEL(g_variable.ksSelMapCheck[i], tgroup, tgpionum);
+	}
+
+	for (i=0; col[i]!=0; i++) {
+		if (g_variable.ksSelMapCheck[i]!=g_variable.ksSelMapCurr[i]) {
+			g_variable.ksSelMapCurr[i] &= g_variable.ksSelMapCheck[i];
+		}
+	}
+}
+
+u8_t array_is_empty(u8_t * str1,u8_t len)
+{
+	u8_t i;
+	for (i=0;i < len;i++)
+	{
+		if (str1[i] != 0)
+			return 0x00;
+	}
+	return 0x01;
+}
+
+tKSEVENT *KS_GetCurrentEvt()
+{
+	//
+	u8_t i = 0;
+	u8_t j = 0;
+	u8_t temp = 0;
+	u8_t flag = 0;
+	u8_t offset = 0;
+	u8_t state = 0;
+	u8_t colCounttemp = 0;
+	u8_t rawSel =0;
+	u8_t keyCounttemp = 0;
+	//u8_t ksSelMapChange[]
+	KS_ScanMatrix();
+
+	if (compare_str(g_variable.ksSelMapCurr,g_variable.ksSelMapOld,KB_KSCAN_COL_NUM) 
+		&& !array_is_empty(g_variable.ksSelMapCurr,KB_KSCAN_COL_NUM))
+	{
+		g_variable.button_flag |= 0x02;
+	}
+	else
+	{	
+		g_variable.button_flag &= 0xFD;
+		g_variable.button_timer[1] = 0;
+	}
+
+	for (i=0; col[i]!=0; i++) {
+		temp = g_variable.ksSelMapCurr[i];
+		if (temp!=0) {
+			colCounttemp++;
+			rawSel = temp|rawSel;
+			keyCounttemp += bit_count(temp);
+		}
+	}
+	g_variable.keyCount = keyCounttemp;
+	g_variable.colCount = colCounttemp;
+	g_variable.rawCount = bit_count(rawSel);
+	if (g_variable.keyCount >2 && g_variable.keyCount > MAX(g_variable.colCount, g_variable.rawCount)) {
+		g_variable.ghost = 1;
+	}
+	else {
+		g_variable.ghost = 0;
+	}
+	
+	for (i=0; col[i]!=0; i++) {
+		temp = g_variable.ksSelMapCurr[i] ^ g_variable.ksSelMapOld[i];
+		state = g_variable.ksSelMapCurr[i];
+		if (temp == 0) {
+			continue;
+		}
+		else {
+			if (g_variable.ghost) 
+				return NULL;
+			g_variable.ksSelMapOld[i] = g_variable.ksSelMapCurr[i];
+			for (j = 0 ; j<8 ; j++) {
+				if (temp&1) {
+					offset = i<<3 |j;
+					if (state & 1) {
+						g_variable.keyinCount++;
+						keyIn(ksMap[offset]);
+					}
+					else {
+						g_variable.keyoutCount++;
+						keyOut(ksMap[offset]);
+					}
+				}
+				temp = temp >>1;
+				state = state>>1;
+			}
+			flag = 1;
+		}
+	}
+	
+	if (flag) {
+		return &ksEvtPool;
+	}
+	else {
+		return NULL;
+	}
+	
+
+}
+
Index: c51/make.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/make.exe
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/make.exe	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/make.exe	(working copy)

Property changes on: c51/make.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/output/FW
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/output/FW
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/FW	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/FW	(working copy)

Property changes on: c51/output/FW
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/output/FW.COD
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/FW.COD	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/FW.COD	(working copy)
@@ -0,0 +1,5988 @@
+LX51 LINKER/LOCATER V4.41                                                               06/22/2020  10:20:42  PAGE 1
+
+
+
+
+
+ASSEMBLER CODE PACKING OF MODULE:  OUTPUT\FW (RAM)
+
+
+----- FUNCTION main (BEGIN) -----
+ FILE: 'ram.c'
+    5: void main()
+;----                  JMP     YC_SysMain
+    6: {
+    7: 	YC_SysMain();
+    8: 	//while(1){
+    9: 	//}
+----- FUNCTION main (END) -------
+
+
+----- FUNCTION YC_SysMain (BEGIN) -----
+ FILE: 'sys.c'
+ 1451: void YC_SysMain(void)
+ 1452: {		
+ 1453: 	u8_t i;
+ 1454: 	deviceInit();
+0002DF F1EE              ACALL   deviceInit
+0002E1         ?C0173?SYS:
+ 1455: //	if(1 == m_enable24gShortLpm){
+ 1456: //		YC_24gShortLpmProcess();
+ 1457: //	}
+ 1458: 	while(1)
+ 1459: 	{
+ 1460: 		IPC_DealSingleStep();
+0002E1 121861            LCALL   IPC_DealSingleStep
+ 1461: //		mouseWheelScan();
+ 1462: //		mouseKeyDetect();
+ 1463: 		mouseMotion();
+0002E4 1210BA            LCALL   mouseMotion
+ 1464: #if OTA_ENABLE
+ 1465: 		wirelessConfigProcess();
+ 1466: #endif		
+ 1467: 		switch (current_task) 
+0002E7 900B2A            MOV     DPTR,#current_task
+0002EA E0                MOVX    A,@DPTR
+0002EB 14                DEC     A
+0002EC 6020              JZ      ?C0182?SYS
+0002EE 24FE              ADD     A,#0FEH
+0002F0 70EF              JNZ     ?C0173?SYS
+ 1468: 		{
+ 1469: 			case FIX_ENTER_HIBERNATE:
+0002F2         ?C0176?SYS:
+ 1470: 				g_variable.read_sensor_count = 0;
+0002F2 E4                CLR     A
+0002F3 904EF0            MOV     DPTR,#g_variable+045H
+0002F6 F0                MOVX    @DPTR,A
+ 1471: //				sensorPowerDown();
+ 1472: 				for (i = 0; i < 16; i ++) {
+;---- Variable 'i' assigned to Register 'R7' ----
+0002F7 FF                MOV     R7,A
+0002F8         ?C0177?SYS:
+ 1473: 					REG_GPIO_OE(i) = 0x00;
+0002F8 EF                MOV     A,R7
+0002F9 2470              ADD     A,#070H
+0002FB FD                MOV     R5,A
+0002FC E4                CLR     A
+0002FD 3480              ADDC    A,#080H
+0002FF 8D82              MOV     DPL,R5
+000301 F583              MOV     DPH,A
+000303 E4                CLR     A
+000304 F0                MOVX    @DPTR,A
+ 1474: 				}
+000305 0F                INC     R7
+000306 EF                MOV     A,R7
+000307 B410EE            CJNE    A,#010H,?C0177?SYS
+00030A         ?C0178?SYS:
+ 1475: //				if (GPIO_GetInputStatus(WHEEL_DATA_A_GPIO))
+ 1476: //					GPIO_SetInput(WHEEL_DATA_A_GPIO, 0);
+ 1477: //				else GPIO_SetInput(WHEEL_DATA_A_GPIO, 1);
+ 1478: //				if (GPIO_GetInputStatus(WHEEL_DATA_B_GPIO))
+ 1479: //					GPIO_SetInput(WHEEL_DATA_B_GPIO, 0);
+ 1480: //				else GPIO_SetInput(WHEEL_DATA_B_GPIO, 1);
+ 1481: //				GPIO_SetOutput(LED_GPIO, 1);
+ 1482: //				YC_SetWake();
+ 1483: 				IPC_WaitLpm();
+00030A 7147              ACALL   IPC_WaitLpm
+00030C         ?C0180?SYS:
+ 1484: 				while(1);
+00030C 80FE              SJMP    ?C0180?SYS
+ 1485: 				break;
+ 1486: 			case FIX_ENTER_LPM:
+00030E         ?C0182?SYS:
+ 1487: 				if (g_variable.wheelTimer ||g_variable.lockLpm)
+00030E 904EB7            MOV     DPTR,#g_variable+0CH
+000311 E0                MOVX    A,@DPTR
+000312 7006              JNZ     ?C0184?SYS
+000314 904EB1            MOV     DPTR,#g_variable+06H
+000317 E0                MOVX    A,@DPTR
+000318 6004              JZ      ?C0183?SYS
+00031A         ?C0184?SYS:
+ 1488: 				{
+ 1489: 					IPC_AbandonLpm();
+00031A 713B              ACALL   IPC_AbandonLpm
+ 1490: 					break;
+00031C 80C3              SJMP    ?C0173?SYS
+ 1491: 				}
+00031E         ?C0183?SYS:
+ 1492: 				if (g_variable.currentState == DEVICE_MODE_24G 
+00031E 904EAD            MOV     DPTR,#g_variable+02H
+000321 E0                MOVX    A,@DPTR
+000322 FF                MOV     R7,A
+000323 6401              XRL     A,#01H
+000325 6009              JZ      ?C0186?SYS
+000327 EF                MOV     A,R7
+000328 6402              XRL     A,#02H
+00032A 6004              JZ      ?C0186?SYS
+00032C EF                MOV     A,R7
+00032D B40704            CJNE    A,#07H,?C0185?SYS
+000330         ?C0186?SYS:
+ 1493: 					||g_variable.currentState == DEVICE_MODE_BT
+ 1494: 					||g_variable.currentState == DEVICE_MODE_BLE_BB_CONNECT)
+ 1495: 				{
+ 1496: //					YC_SetWake();
+ 1497: //					GPIO_SetWakeup(SENSOR_MOTION_GPIO,0);
+ 1498: 					IPC_WaitLpm();	/*<wait enter lpm,do nothing*/
+000330 7147              ACALL   IPC_WaitLpm
+ 1499: 					break;
+000332 80AD              SJMP    ?C0173?SYS
+ 1500: 				}
+000334         ?C0185?SYS:
+ 1501: 				else
+ 1502: 				{
+ 1503: 					IPC_AbandonLpm();
+000334 713B              ACALL   IPC_AbandonLpm
+ 1504: 					break;
+000336 80A9              SJMP    ?C0173?SYS
+ 1505: 				}
+ 1506: 		}
+ 1507: 	}
+000338 80A7              SJMP    ?C0173?SYS
+00033A 22                RET     
+----- FUNCTION YC_SysMain (END) -------
+
+
+----- FUNCTION IPC_AbandonLpm (BEGIN) -----
+ FILE: 'ipc.c'
+  133: void IPC_AbandonLpm()
+  134: {
+  135: 	lpm_flag = 1;
+  136: 	current_task = 0;
+00033B 900B2B            MOV     DPTR,#lpm_flag
+00033E 7401              MOV     A,#01H
+000340 F0                MOVX    @DPTR,A
+  137: }
+000341 E4                CLR     A
+000342 900B2A            MOV     DPTR,#current_task
+000345 F0                MOVX    @DPTR,A
+  138: 
+000346 22                RET     
+----- FUNCTION IPC_AbandonLpm (END) -------
+
+
+----- FUNCTION IPC_WaitLpm (BEGIN) -----
+ FILE: 'ipc.c'
+  126: void IPC_WaitLpm()
+  127: {
+  128: 	lpm_flag = 0;
+  129: 	current_task = 0;
+000347 E4                CLR     A
+000348 900B2B            MOV     DPTR,#lpm_flag
+00034B F0                MOVX    @DPTR,A
+  130: 	Delay1ms(1);
+00034C 900B2A            MOV     DPTR,#current_task
+00034F F0                MOVX    @DPTR,A
+  131: }
+000350 7F01              MOV     R7,#01H
+000352 FE                MOV     R6,A
+;----                  JMP     _Delay1ms
+----- FUNCTION IPC_WaitLpm (END) -------
+
+
+----- FUNCTION _Delay1ms (BEGIN) -----
+ FILE: 'utilities.c'
+   46: void Delay1ms(u16_t Time)
+   47: {
+;---- Variable 'Time' assigned to Register 'R6/R7' ----
+   48: 	u16_t j; 
+   49: 	for(;Time>0;Time--)
+000353         ?C0014?UTILITIES:
+000353 D3                SETB    C
+000354 EF                MOV     A,R7
+000355 9400              SUBB    A,#00H
+000357 EE                MOV     A,R6
+000358 9400              SUBB    A,#00H
+00035A 4015              JC      ?C0020?UTILITIES
+   50: 	{
+   51: 		for(j=0;j<1190;j++);
+;---- Variable 'j' assigned to Register 'R4/R5' ----
+00035C E4                CLR     A
+00035D FD                MOV     R5,A
+00035E FC                MOV     R4,A
+00035F         ?C0017?UTILITIES:
+00035F 0D                INC     R5
+000360 BD0001            CJNE    R5,#00H,?C0028?UTILITIES
+000363 0C                INC     R4
+000364         ?C0028?UTILITIES:
+000364 BC04F8            CJNE    R4,#04H,?C0017?UTILITIES
+000367 BDA6F5            CJNE    R5,#0A6H,?C0017?UTILITIES
+   52: 	}
+00036A         ?C0016?UTILITIES:
+00036A EF                MOV     A,R7
+00036B 1F                DEC     R7
+00036C 7001              JNZ     ?C0029?UTILITIES
+00036E 1E                DEC     R6
+00036F         ?C0029?UTILITIES:
+00036F 80E2              SJMP    ?C0014?UTILITIES
+   53: }
+000371         ?C0020?UTILITIES:
+000371 22                RET     
+----- FUNCTION _Delay1ms (END) -------
+
+
+----- FUNCTION _deviceEvtCB (BEGIN) -----
+ FILE: 'sys.c'
+  868: static void deviceEvtCB(u8_t evt)
+  869: {
+000372 901BBD            MOV     DPTR,#evt
+000375 EF                MOV     A,R7
+000376 F0                MOVX    @DPTR,A
+  870: 	u8_t curentMode;
+  871: 	u8_t buttonLeft = 0,buttonRight = 0,buttonMiddle = 0;
+000377 E4                CLR     A
+000378 901BBF            MOV     DPTR,#buttonLeft
+00037B F0                MOVX    @DPTR,A
+00037C A3                INC     DPTR
+00037D F0                MOVX    @DPTR,A
+00037E A3                INC     DPTR
+00037F F0                MOVX    @DPTR,A
+  872: 	u8_t combkey = 0;
+000380 A3                INC     DPTR
+000381 F0                MOVX    @DPTR,A
+  873: 	u8_t reconnLeAddr_buff[6] = 0;
+000382 78C3              MOV     R0,#LOW reconnLeAddr_buff
+000384 7C1B              MOV     R4,#HIGH reconnLeAddr_buff
+000386 7D01              MOV     R5,#01H
+000388 7BFF              MOV     R3,#0FFH
+00038A 7A02              MOV     R2,#HIGH _?ix1000
+00038C 79D6              MOV     R1,#LOW _?ix1000
+00038E FE                MOV     R6,A
+00038F 7F06              MOV     R7,#06H
+000391 11D3              ACALL   ?C?COPY
+  874: 	
+  875: 	switch(evt)
+000393 901BBD            MOV     DPTR,#evt
+000396 E0                MOVX    A,@DPTR
+000397 31B3              ACALL   ?C?CCASE
+000399 0454              DW      ?C0146?SYS
+00039B 14                DB      014H
+00039C 04BB              DW      ?C0147?SYS
+00039E 15                DB      015H
+00039F 03BB              DW      ?C0134?SYS
+0003A1 2F                DB      02FH
+0003A2 03E4              DW      ?C0139?SYS
+0003A4 39                DB      039H
+0003A5 0422              DW      ?C0144?SYS
+0003A7 3A                DB      03AH
+0003A8 03FD              DW      ?C0140?SYS
+0003AA 3B                DB      03BH
+0003AB 03C5              DW      ?C0135?SYS
+0003AD 3C                DB      03CH
+0003AE 03B8              DW      ?C0133?SYS
+0003B0 3D                DB      03DH
+0003B1 0434              DW      ?C0145?SYS
+0003B3 40                DB      040H
+0003B4 0000              DW      00H
+0003B6 04D9              DW      ?C0152?SYS
+  876: 	{
+  877: 		case IPC_EVT_HIBERNATE_WAKE:
+0003B8         ?C0133?SYS:
+  878: 			clearGlobalMem();
+0003B8 121627            LCALL   clearGlobalMem
+  879: 		case IPC_EVT_RESET:
+0003BB         ?C0134?SYS:
+  880: 			leAddrRandomCntInit();
+0003BB 120D7C            LCALL   leAddrRandomCntInit
+  881: //			GPIO_SetInput(SENSOR_MOTION_GPIO, 0);
+  882: //			GPIO_SetInput(SENSOR_DIRECTION_GPIO_CHOICE,0);
+  883: //			GPIO_SetInput(LOWPOWER_GPIO_CHOICE, 0);
+  884: //			GPIO_SetInput(WHEEL_DATA_A_GPIO, 0);
+  885: //			GPIO_SetInput(WHEEL_DATA_B_GPIO, 0);
+  886: //			GPIO_SetInput(KS_BL_GPIO, 0);
+  887: //			GPIO_SetInput(KS_BM_GPIO, 0);
+  888: //			GPIO_SetInput(KS_BR_GPIO, 0);
+  889: //			GPIO_SetInput(KS_BK_GPIO, 0);
+  890: //			GPIO_SetInput(KS_FW_GPIO, 0);
+  891: //			GPIO_SetInput(CPI_GPIO, 0);
+  892: //			GPIO_SetOutput(LED_GPIO,1);
+  893: //			GPIO_SetOutput(Timer_div_io, 1);
+  894: //						
+  895: //			if (!GPIO_GetInputStatus(SENSOR_DIRECTION_GPIO_CHOICE)) {
+  896: //				g_variable.sensorChoice = 0;
+  897: //			}
+  898: //			else {
+  899: //				g_variable.sensorChoice = 1;
+  900: //			}
+  901: //			
+  902: //			if (!GPIO_GetInputStatus(LOWPOWER_GPIO_CHOICE)){
+  903: //			
+  904: //#if ADC_VINLPM_ENABLE
+  905: //				(*(volatile unsigned char xdata *)mem_adc_config_flag) = 0x01;
+  906: //#endif
+  907: //			}
+  908: //			else {
+  909: //#if ADC_GPIO_ENABLE
+  910: //				(*(volatile unsigned char xdata *)mem_adc_config_flag) = 0x04;
+  911: //				(*(volatile unsigned char xdata *)mem_adc_channel) = 0x30;//gpio5 for adc
+  912: //#endif				
+  913: //			}
+  914: //			SPI_Initialize();
+  915: 			Drawing_optima_init();
+0003BE 121B18            LCALL   Drawing_optima_init
+  916: //			g_variable.sensorType = SPI_ResetSensor();
+  917: //			IIC_Read(EEPROM_DPI_ADDR, 1, &g_variable.dpiCount);
+  918: //			if(g_variable.dpiCount>3) 
+  919: //				g_variable.dpiCount=0x02;
+  920: //			IIC_WriteBlock(EEPROM_DPI_ADDR, 1, &g_variable.dpiCount);
+  921: //			dpiWriteInSensor();
+  922: //			REG_GPIO_SELECT(0) = 0x00;
+  923: //			g_variable.dpiLedStay = 0;
+  924: //			g_variable.dpiLedFlipTime = 0;
+  925: //			buttonLeft = !GPIO_GetInputStatus(KS_BL_GPIO);
+  926: //			buttonMiddle = !GPIO_GetInputStatus(KS_BM_GPIO);
+  927: //			buttonRight = !GPIO_GetInputStatus(KS_BR_GPIO);
+  928: //			combkey = buttonLeft |buttonRight<<1|buttonMiddle<<2;
+  929: //			if ((combkey == 0x05)&&(evt == IPC_EVT_RESET)) 
+  930: //			{
+  931: 				IPC_TxControlCmd(IPC_CMD_PAIR_24G);
+0003C1 7F25              MOV     R7,#025H
+0003C3 E14A              AJMP    _IPC_TxControlCmd
+  932: //				break;
+  933: //			}
+  934: //			deviceSwitch24GMode();
+  935: 			break;
+  936: 		case IPC_EVT_WAKEUP:
+0003C5         ?C0135?SYS:
+  937: 			if(g_variable.currentState == DEVICE_MODE_BLE_BB_CONNECT)
+0003C5 904EAD            MOV     DPTR,#g_variable+02H
+0003C8 E0                MOVX    A,@DPTR
+0003C9 B40715            CJNE    A,#07H,?C0136?SYS
+  938: 			{
+  939: 				if(m_btWakeupFromLongMult == 1)
+0003CC 9049C1            MOV     DPTR,#m_btWakeupFromLongMult
+0003CF E0                MOVX    A,@DPTR
+0003D0 FF                MOV     R7,A
+0003D1 6401              XRL     A,#01H
+0003D3 7002              JNZ     $ + 4H
+0003D5 81D9              AJMP    ?C0152?SYS
+  940: 					break;
+0003D7         ?C0137?SYS:
+  941: 				if(m_btWakeupFromLongMult == 2)
+0003D7 EF                MOV     A,R7
+0003D8 B40206            CJNE    A,#02H,?C0136?SYS
+  942: 					m_btWakeupFromLongMult = 1;
+0003DB 9049C1            MOV     DPTR,#m_btWakeupFromLongMult
+0003DE 7401              MOV     A,#01H
+0003E0 F0                MOVX    @DPTR,A
+  943: 			}
+0003E1         ?C0136?SYS:
+  944: //			SPI_Initialize();//spi
+  945: //			GPIO_SetOutput(Timer_div_io,1);
+  946: //			GPIO_SetInput(Timer_div_io,0);
+  947: 			Drawing_optima_init();
+0003E1 021B18            LJMP    Drawing_optima_init
+  948: 			break;
+  949: #if MOUSE_BT_MODE_ENABLE			
+  950: 		case IPC_EVT_BB_CONNECTED:
+  951: 			IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+  952: 			IPC_TxControlCmd(IPC_CMD_STOP_DISCOVERY);
+  953: 			g_variable.currentState = DEVICE_MODE_BB;
+  954: 			if (g_variable.reconnFlag)
+  955: 			{
+  956: 				g_variable.nextMode = DEVICE_MODE_NONE;
+  957: 			}
+  958: 			else 
+  959: 			{
+  960: 				g_variable.nextMode = DEVICE_MODE_DISC;
+  961: 			}
+  962: 			break;
+  963: 	
+  964: 		case IPC_EVT_PINCODE_REQ:
+  965: 			IPC_SetPincode("0000",4);
+  966: 			IPC_TxControlCmd(IPC_CMD_SET_PIN_CODE);
+  967: 			g_variable.nextMode = DEVICE_MODE_DISC;
+  968: 			break;
+  969: 		case IPC_EVT_HID_HANDSHAKE:
+  970: 			g_variable.currentState = DEVICE_MODE_BT;
+  971: //			sensorClearData();
+  972: 			IIC_WriteBlock(EEPROM_RECON_INFO_BASE,6,(u8_t *)m_remoteAddr);
+  973: 			Delay1ms(10);
+  974: 			IIC_WriteBlock(EEPROM_CONN_MODE,1,&g_variable.currentState);
+  975: 			IPC_TxControlCmd(IPC_CMD_ENTER_SNIFF);
+  976: 			g_variable.nextMode = DEVICE_MODE_NONE;
+  977: 			g_variable.reconnFlag = 0;
+  978: 			break;
+  979: 		case IPC_EVT_LINKKEY_GENERATE:
+  980: 			IIC_WriteBlock(EEPROM_LINK_KEY,16,(u8_t *)m_linkKey);
+  981: 			break;
+  982: 		case IPC_EVT_VIRTUAL_CABLE_UNPLUG:
+  983: 		case IPC_EVT_CLEAR_LINKKEY:
+  984: 			xmemclear_ff(m_remoteAddr,6);
+  985: 			IIC_WriteBlock(EEPROM_RECON_INFO_BASE,6,(u8_t *)m_remoteAddr);
+  986: 
+  987: 		case IPC_EVT_RECONN_FAILED:
+  988: 		case IPC_EVT_RECONN_PAGE_TIMEOUT:
+  989: 		case IPC_EVT_BB_DISCONNECTED:
+  990: 			if (g_variable.nextMode == DEVICE_MODE_24G) 
+  991: 			{
+  992: 				deviceSwitch24GMode();
+  993: 				g_variable.nextMode = DEVICE_MODE_NONE;
+  994: 				break;
+  995: 			}
+  996: 			else if (g_variable.nextMode == DEVICE_MODE_DISC) 
+  997: 			{
+  998: 				g_variable.currentState = DEVICE_MODE_DISC;
+  999: 				g_variable.nextMode = DEVICE_MODE_NONE;
+ 1000: 				
+ 1001: #if MOUSE_BT_MODE_ENABLE	
+ 1002: 				IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+ 1003: #endif
+ 1004: 				leADVStart();
+ 1005: 				break;
+ 1006: 			}
+ 1007: 			g_variable.currentState = DEVICE_MODE_PREPARE_SLEEP;
+ 1008: 			break;
+ 1009: #endif			
+ 1010: 		case IPC_EVT_24G_PAIRING_COMPLETE:
+0003E4         ?C0139?SYS:
+ 1011: 			g_variable.currentState = DEVICE_MODE_24G;
+0003E4 904EAD            MOV     DPTR,#g_variable+02H
+0003E7 7401              MOV     A,#01H
+0003E9 F0                MOVX    @DPTR,A
+ 1012: 			IIC_WriteBlock(EEPROM_CONN_MODE, 1,&g_variable.currentState);
+0003EA FB                MOV     R3,A
+0003EB 7A4E              MOV     R2,#HIGH g_variable+02H
+0003ED 79AD              MOV     R1,#LOW g_variable+02H
+0003EF FD                MOV     R5,A
+0003F0 7C00              MOV     R4,#00H
+0003F2 7FA9              MOV     R7,#0A9H
+0003F4 7E3F              MOV     R6,#03FH
+0003F6 120CCB            LCALL   _IIC_WriteBlock
+ 1013: 		//	IIC_WriteBlock(EEPROM_24G_ADDR,6,(u8_t *)m_24gRxPayload);
+ 1014: 			IPC_TxControlCmd( IPC_CMD_START_24G);
+0003F9 7F23              MOV     R7,#023H
+0003FB E14A              AJMP    _IPC_TxControlCmd
+ 1015: 			break;
+ 1016: 		case IPC_EVT_24G_ATTEMPT_FAIL:	
+0003FD         ?C0140?SYS:
+ 1017: 			deviceStop24g();
+0003FD F1E4              ACALL   deviceStop24g
+ 1018: 			g_variable.g24DongleExist = 0;
+0003FF E4                CLR     A
+000400 904ED3            MOV     DPTR,#g_variable+028H
+000403 F0                MOVX    @DPTR,A
+ 1019: 			if (g_variable.Factory_Pwr_on_f)
+000404 904EE2            MOV     DPTR,#g_variable+037H
+000407 E0                MOVX    A,@DPTR
+000408 6011              JZ      ?C0141?SYS
+ 1020: 			{
+ 1021: 				g_variable.Factory_Pwr_on_f++;
+00040A 04                INC     A
+00040B F0                MOVX    @DPTR,A
+ 1022: 				g_variable.Factory_Pwr_on_f = (g_variable.Factory_Pwr_on_f) & 0x07;
+00040C E0                MOVX    A,@DPTR
+00040D 5407              ANL     A,#07H
+00040F F0                MOVX    @DPTR,A
+ 1023: 				if (g_variable.Factory_Pwr_on_f & 0x01)
+000410 30E004            JNB     ACC.0,?C0142?SYS
+ 1024: 					IPC_TxControlCmd(IPC_CMD_START_24G);
+000413 7F23              MOV     R7,#023H
+000415 E14A              AJMP    _IPC_TxControlCmd
+000417         ?C0142?SYS:
+ 1025: 				else 
+ 1026: 					IPC_TxControlCmd(IPC_CMD_PAIR_24G);
+000417 7F25              MOV     R7,#025H
+000419 E14A              AJMP    _IPC_TxControlCmd
+ 1027: 				break;
+ 1028: 			}
+00041B         ?C0141?SYS:
+ 1029: 
+ 1030: 			REG_RST = 1;
+00041B 908010            MOV     DPTR,#08010H
+00041E 7401              MOV     A,#01H
+000420 F0                MOVX    @DPTR,A
+ 1031: 			
+ 1032: //#if MOUSE_BT_MODE_ENABLE			
+ 1033: //			IIC_Read(EEPROM_CONN_MODE, 1,&curentMode);
+ 1034: //			Delay1ms(10);
+ 1035: //			if (curentMode == DEVICE_MODE_BT) 
+ 1036: //			{
+ 1037: //				Delay1ms(10);
+ 1038: //				IIC_Read(EEPROM_RECON_INFO_BASE ,6 , m_reconnAddr);
+ 1039: //				Delay1ms(10);
+ 1040: //				IIC_Read(EEPROM_LINK_KEY, 16, m_linkKey);
+ 1041: //				if (m_reconnAddr[0]!=0) 
+ 1042: //				{
+ 1043: //					g_variable.currentState = DEVICE_MODE_PAGE;
+ 1044: //					IPC_TxControlCmd(IPC_CMD_RECONNECT);
+ 1045: //					break;
+ 1046: //				}
+ 1047: //				else 
+ 1048: //				{
+ 1049: //					IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+ 1050: //					break;
+ 1051: //				}
+ 1052: //			}
+ 1053: //			else
+ 1054: //			{
+ 1055: //				leReconnStart();
+ 1056: //			}
+ 1057: //#else
+ 1058: //			IIC_Read(EEPROM_RECONN_LE_ADDR, 6,reconnLeAddr_buff);
+ 1059: //			if((reconnLeAddr_buff[0] == 0xff) && (reconnLeAddr_buff[1] == 0xff) 
+ 1060: //				&& (reconnLeAddr_buff[2] == 0xff) && (reconnLeAddr_buff[3] == 0xff) 
+ 1061: //				&& (reconnLeAddr_buff[4] == 0xff) && (reconnLeAddr_buff[5] == 0xff)){
+ 1062: //				g_variable.enterHibernateFlag = 1;
+ 1063: //				g_variable.enterHibernateTimer = 30;	//wait bt to exit 2.4G short lpm (about 50ms)
+ 1064: //				break;
+ 1065: //			}
+ 1066: //			leReconnStart();
+ 1067: //#endif
+ 1068: 			break;
+000421 22                RET     
+ 1069: 		case IPC_EVT_24G_ATTEMPT_SUCCESS:
+000422         ?C0144?SYS:
+ 1070: //			sensorClearData();
+ 1071: 			g_variable.g24DongleExist = 1;
+000422 904ED3            MOV     DPTR,#g_variable+028H
+000425 7401              MOV     A,#01H
+000427 F0                MOVX    @DPTR,A
+ 1072: 			g_variable.mouseFlag = 0;
+000428 E4                CLR     A
+000429 904EE1            MOV     DPTR,#g_variable+036H
+00042C F0                MOVX    @DPTR,A
+ 1073: 			g_variable.Factory_Pwr_on_f = 0;
+00042D A3                INC     DPTR
+00042E F0                MOVX    @DPTR,A
+ 1074: //			curentMode = DEVICE_MODE_24G;
+ 1075: //			IIC_WriteBlock(EEPROM_CONN_MODE,1,&curentMode);
+ 1076: 			g_variable.nextMode = DEVICE_MODE_NONE;
+00042F 904EAE            MOV     DPTR,#g_variable+03H
+000432 F0                MOVX    @DPTR,A
+ 1077: 			break;
+000433 22                RET     
+ 1078: 
+ 1079: 		case IPC_EVT_LE_NOTIFY_ENABLE:
+000434         ?C0145?SYS:
+ 1080: 			SPI_Initialize();//spi
+000434 1213EA            LCALL   SPI_Initialize
+ 1081: 			SPI_TwReset();
+000437 120A9E            LCALL   SPI_TwReset
+ 1082: 			SPI_WriteSensor(0x80,0x06);			
+00043A 7D06              MOV     R5,#06H
+00043C 7F80              MOV     R7,#080H
+00043E 91DA              ACALL   _SPI_WriteSensor
+ 1083: 			IIC_Read(EEPROM_DPI_ADDR, 1, &g_variable.dpiCount);
+000440 7B01              MOV     R3,#01H
+000442 7A4E              MOV     R2,#HIGH g_variable+020H
+000444 79CB              MOV     R1,#LOW g_variable+020H
+000446 7D01              MOV     R5,#01H
+000448 7C00              MOV     R4,#00H
+00044A 7FA8              MOV     R7,#0A8H
+00044C 7E3F              MOV     R6,#03FH
+00044E 120ED1            LCALL   _IIC_Read
+ 1084: 			dpiWriteInSensor();
+000451 020DC8            LJMP    dpiWriteInSensor
+ 1085: 			break;
+ 1086: 		case IPC_EVT_LE_CONNECTED:
+000454         ?C0146?SYS:
+ 1087: 			m_51ReadSensor = 0;
+000454 E4                CLR     A
+000455 904E84            MOV     DPTR,#m_51ReadSensor
+000458 F0                MOVX    @DPTR,A
+ 1088: 			IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+000459 7F0E              MOV     R7,#0EH
+00045B F14A              ACALL   _IPC_TxControlCmd
+ 1089: 			IPC_TxControlCmd(IPC_CMD_STOP_DISCOVERY);
+00045D 7F02              MOV     R7,#02H
+00045F F14A              ACALL   _IPC_TxControlCmd
+ 1090: 			g_variable.currentState = DEVICE_MODE_BLE_BB_CONNECT;
+000461 904EAD            MOV     DPTR,#g_variable+02H
+000464 7407              MOV     A,#07H
+000466 F0                MOVX    @DPTR,A
+ 1091: 			curentMode = DEVICE_MODE_BLE;
+000467 901BBE            MOV     DPTR,#curentMode
+00046A 7409              MOV     A,#09H
+00046C F0                MOVX    @DPTR,A
+ 1092: 			sensorClearData();
+00046D 120801            LCALL   sensorClearData
+ 1093: 			IIC_WriteBlock(EEPROM_REMOTE_LE_ADDR,6,(u8_t *)m_remoteLeAddr);
+000470 7B01              MOV     R3,#01H
+000472 7A03              MOV     R2,#HIGH m_remoteLeAddr
+000474 7972              MOV     R1,#LOW m_remoteLeAddr
+000476 7D06              MOV     R5,#06H
+000478 7C00              MOV     R4,#00H
+00047A 7F96              MOV     R7,#096H
+00047C 7E3F              MOV     R6,#03FH
+00047E 120CCB            LCALL   _IIC_WriteBlock
+ 1094: 			Delay1ms(10);
+000481 7F0A              MOV     R7,#0AH
+000483 7E00              MOV     R6,#00H
+000485 7153              ACALL   _Delay1ms
+ 1095: 			IIC_WriteBlock(EEPROM_RECONN_LE_ADDR,6,(u8_t *)m_reconnLeAddr);
+000487 7B01              MOV     R3,#01H
+000489 7A45              MOV     R2,#HIGH m_reconnLeAddr
+00048B 793E              MOV     R1,#LOW m_reconnLeAddr
+00048D 7D06              MOV     R5,#06H
+00048F 7C00              MOV     R4,#00H
+000491 7F9C              MOV     R7,#09CH
+000493 7E3F              MOV     R6,#03FH
+000495 120CCB            LCALL   _IIC_WriteBlock
+ 1096: 			Delay1ms(10);				
+000498 7F0A              MOV     R7,#0AH
+00049A 7E00              MOV     R6,#00H
+00049C 7153              ACALL   _Delay1ms
+ 1097: 			IIC_WriteBlock(EEPROM_CONN_MODE,1,&curentMode);
+00049E 7B01              MOV     R3,#01H
+0004A0 7A1B              MOV     R2,#HIGH curentMode
+0004A2 79BE              MOV     R1,#LOW curentMode
+0004A4 7D01              MOV     R5,#01H
+0004A6 7C00              MOV     R4,#00H
+0004A8 7FA9              MOV     R7,#0A9H
+0004AA 7E3F              MOV     R6,#03FH
+0004AC 120CCB            LCALL   _IIC_WriteBlock
+ 1098: 			g_variable.nextMode = DEVICE_MODE_PREPARE_SLEEP;
+0004AF 904EAE            MOV     DPTR,#g_variable+03H
+0004B2 7406              MOV     A,#06H
+0004B4 F0                MOVX    @DPTR,A
+ 1099: 			g_variable.reconnFlag = 0;
+0004B5 E4                CLR     A
+0004B6 904EB2            MOV     DPTR,#g_variable+07H
+0004B9 F0                MOVX    @DPTR,A
+ 1100: 			break;
+0004BA 22                RET     
+ 1101: 		case IPC_EVT_LE_DISCONNECTED:	
+0004BB         ?C0147?SYS:
+ 1102: 			if(g_variable.nextMode == DEVICE_MODE_BLE_ADV)
+0004BB 904EAE            MOV     DPTR,#g_variable+03H
+0004BE E0                MOVX    A,@DPTR
+0004BF B4080A            CJNE    A,#08H,?C0148?SYS
+ 1103: 			{
+ 1104: #if MOUSE_BT_MODE_ENABLE	
+ 1105: 				IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+ 1106: #endif
+ 1107: 				leADVStart();
+0004C2 120E90            LCALL   leADVStart
+ 1108: 				g_variable.currentState = DEVICE_MODE_DISC;
+0004C5 904EAD            MOV     DPTR,#g_variable+02H
+0004C8 7403              MOV     A,#03H
+0004CA F0                MOVX    @DPTR,A
+ 1109: 			}
+0004CB 22                RET     
+0004CC         ?C0148?SYS:
+ 1110: 			else if(g_variable.nextMode == DEVICE_MODE_PREPARE_SLEEP)
+0004CC 904EAE            MOV     DPTR,#g_variable+03H
+0004CF E0                MOVX    A,@DPTR
+0004D0 B40603            CJNE    A,#06H,?C0150?SYS
+ 1111: 			{
+ 1112: 				deviceLongSleep();
+0004D3 021593            LJMP    deviceLongSleep
+ 1113: 			}
+0004D6         ?C0150?SYS:
+ 1114: 			else 
+ 1115: 			{
+ 1116: 				leReconnStart();
+0004D6 121676            LCALL   leReconnStart
+ 1117: 			}
+ 1118: 			break;
+ 1119: 		}
+ 1120: 			
+ 1121: }
+0004D9         ?C0152?SYS:
+0004D9 22                RET     
+----- FUNCTION _deviceEvtCB (END) -------
+
+
+----- FUNCTION _SPI_WriteSensor (BEGIN) -----
+ FILE: 'spi.c'
+   39: u8_t SPI_WriteSensor(u8_t value, u8_t reg_num)
+   40: {
+;---- Variable 'reg_num' assigned to Register 'R5' ----
+;---- Variable 'value' assigned to Register 'R4' ----
+0004DA AC07              MOV     R4,AR7
+   41: 	spi_tx_buff[0] = reg_num|0x80;
+   42: 	spi_tx_buff[1] = value;
+0004DC ED                MOV     A,R5
+0004DD 4480              ORL     A,#080H
+0004DF 900218            MOV     DPTR,#spi_tx_buff
+0004E2 F0                MOVX    @DPTR,A
+   43: 
+0004E3 A3                INC     DPTR
+0004E4 EF                MOV     A,R7
+0004E5 F0                MOVX    @DPTR,A
+   44: 	REG_SPID_TXLEN = ESWAP(WRITE_SENSOR_TXLEN);
+0004E6 908088            MOV     DPTR,#08088H
+0004E9 7402              MOV     A,#02H
+0004EB F0                MOVX    @DPTR,A
+0004EC A3                INC     DPTR
+0004ED E4                CLR     A
+0004EE F0                MOVX    @DPTR,A
+   45: 	REG_SPID_RXLEN = ESWAP(WRITE_SENSOR_RXLEN);
+0004EF 90808E            MOV     DPTR,#0808EH
+0004F2 F0                MOVX    @DPTR,A
+0004F3 A3                INC     DPTR
+0004F4 F0                MOVX    @DPTR,A
+   46: 
+   47: 	REG_MISC_CTRL = DMA_SPI_START;
+0004F5 908006            MOV     DPTR,#08006H
+0004F8 7402              MOV     A,#02H
+0004FA F0                MOVX    @DPTR,A
+   48: 	do {
+   49: 		
+   50: 	}
+0004FB         ?C0006?SPI:
+   51: 	while(!(REG_DMA_STATUS & 0x08));
+0004FB 90812C            MOV     DPTR,#0812CH
+0004FE E0                MOVX    A,@DPTR
+0004FF 30E3F9            JNB     ACC.3,?C0006?SPI
+   52: 	return 0;
+000502 7F00              MOV     R7,#00H
+   53: }
+000504 22                RET     
+----- FUNCTION _SPI_WriteSensor (END) -------
+
+
+----- FUNCTION SPI_ResetSensor (BEGIN) -----
+ FILE: 'sensor.c'
+   90: u8_t SPI_ResetSensor()
+   91: {
+   92: 	u8_t sensorConfig=0;
+   93: 	u8_t Sensor_type = 0;
+000505 E4                CLR     A
+000506 901C16            MOV     DPTR,#sensorConfig
+000509 F0                MOVX    @DPTR,A
+   94: 	while (1) 
+00050A A3                INC     DPTR
+00050B F0                MOVX    @DPTR,A
+00050C         ?C0007?SENSOR:
+   95: 	{
+   96: 		if (SPI_ReadSensor(0) == FCT3065_ID)// FCT3065_ID PAW3205DB_ID
+   97: 		{
+00050C E4                CLR     A
+00050D FF                MOV     R7,A
+00050E F121              ACALL   _SPI_ReadSensor
+000510 BF3118            CJNE    R7,#031H,?C0009?SENSOR
+   98: 			sensorConfig = SPI_ReadSensor(SENSOR_POWER)|0x80;
+   99: 			SPI_WriteSensor(sensorConfig, SENSOR_POWER);//dpi 1300
+000513 7F06              MOV     R7,#06H
+000515 F121              ACALL   _SPI_ReadSensor
+000517 EF                MOV     A,R7
+000518 4480              ORL     A,#080H
+00051A FF                MOV     R7,A
+00051B 901C16            MOV     DPTR,#sensorConfig
+00051E F0                MOVX    @DPTR,A
+  100: 			Sensor_type= FCT3065_ID;
+00051F 7D06              MOV     R5,#06H
+000521 91DA              ACALL   _SPI_WriteSensor
+  101: 			break;
+000523 901C17            MOV     DPTR,#Sensor_type
+000526 7431              MOV     A,#031H
+000528 F0                MOVX    @DPTR,A
+  102: 		}
+000529 A1E5              AJMP    ?C0008?SENSOR
+  103: 		else if((SPI_ReadSensor(1) == MA8650_ID))
+00052B         ?C0009?SENSOR:
+  104: 		{
+00052B 7F01              MOV     R7,#01H
+00052D F121              ACALL   _SPI_ReadSensor
+00052F BF5A18            CJNE    R7,#05AH,?C0011?SENSOR
+  105: 			Sensor_type= MA8650_ID;
+  106: 			sensorConfig = SPI_ReadSensor(SENSOR_POWER)|0x80;
+000532 901C17            MOV     DPTR,#Sensor_type
+000535 745A              MOV     A,#05AH
+000537 F0                MOVX    @DPTR,A
+  107: 			SPI_WriteSensor(sensorConfig, SENSOR_POWER);//dpi 1300
+000538 7F06              MOV     R7,#06H
+00053A F121              ACALL   _SPI_ReadSensor
+00053C EF                MOV     A,R7
+00053D 4480              ORL     A,#080H
+00053F FF                MOV     R7,A
+000540 901C16            MOV     DPTR,#sensorConfig
+000543 F0                MOVX    @DPTR,A
+  108: 			break;
+000544 7D06              MOV     R5,#06H
+000546 91DA              ACALL   _SPI_WriteSensor
+  109: 		}
+000548 A1E5              AJMP    ?C0008?SENSOR
+  110: 		else if (SPI_ReadSensor(0) == PIXART_ID)// FCT3065_ID PAW3205DB_ID
+00054A         ?C0011?SENSOR:
+  111: 		{
+00054A E4                CLR     A
+00054B FF                MOV     R7,A
+00054C F121              ACALL   _SPI_ReadSensor
+00054E EF                MOV     A,R7
+00054F 6430              XRL     A,#030H
+000551 6002              JZ      $ + 4H
+000553 A1E0              AJMP    ?C0010?SENSOR
+  112: 			if(SPI_ReadSensor(1) == X816_ID)
+  113: 			{
+000555 7F01              MOV     R7,#01H
+000557 F121              ACALL   _SPI_ReadSensor
+000559 BF5408            CJNE    R7,#054H,?C0014?SENSOR
+  114: 				Sensor_type= FCT3065_ID;
+  115: 				break;
+00055C 901C17            MOV     DPTR,#Sensor_type
+00055F 7431              MOV     A,#031H
+000561 F0                MOVX    @DPTR,A
+  116: 			}
+000562 A1E5              AJMP    ?C0008?SENSOR
+  117: #if MOUSE_3205_ENABLE
+000564         ?C0014?SENSOR:
+  118: 			if ((SPI_ReadSensor(1) & 0xf0) == PAW3205_ID)// FCT3065_ID PAW3205DB_ID
+000564 7F01              MOV     R7,#01H
+000566 F121              ACALL   _SPI_ReadSensor
+000568 EF                MOV     A,R7
+000569 54F0              ANL     A,#0F0H
+00056B 64D0              XRL     A,#0D0H
+00056D 7028              JNZ     ?C0015?SENSOR
+  119: 			{
+  120: 				if (SPI_ReadSensor(0x1e) & 0x01)
+00056F 7F1E              MOV     R7,#01EH
+000571 F121              ACALL   _SPI_ReadSensor
+000573 EF                MOV     A,R7
+000574 30E008            JNB     ACC.0,?C0016?SENSOR
+  121: 					Sensor_type= PAW3204UL_ID;
+000577 901C17            MOV     DPTR,#Sensor_type
+00057A 74D1              MOV     A,#0D1H
+00057C F0                MOVX    @DPTR,A
+00057D 8006              SJMP    ?C0017?SENSOR
+00057F         ?C0016?SENSOR:
+  122: 				else 
+  123: 					Sensor_type= PAW3205_ID;
+00057F 901C17            MOV     DPTR,#Sensor_type
+000582 74D0              MOV     A,#0D0H
+000584 F0                MOVX    @DPTR,A
+000585         ?C0017?SENSOR:
+  124: 				sensorConfig = SPI_ReadSensor(SENSOR_POWER)|0x80;
+000585 7F06              MOV     R7,#06H
+000587 F121              ACALL   _SPI_ReadSensor
+000589 EF                MOV     A,R7
+00058A 4480              ORL     A,#080H
+00058C FF                MOV     R7,A
+00058D 901C16            MOV     DPTR,#sensorConfig
+000590 F0                MOVX    @DPTR,A
+  125: 				SPI_WriteSensor(sensorConfig, SENSOR_POWER);//dpi 1300
+000591 7D06              MOV     R5,#06H
+000593 91DA              ACALL   _SPI_WriteSensor
+  126: 				break;
+000595 804E              SJMP    ?C0008?SENSOR
+  127: 			}
+000597         ?C0015?SENSOR:
+  128: #endif
+  129: 
+  130: #if MOUSE_3204_ENABLE
+  131: 			if(((SPI_ReadSensor(1) & 0xf0) == PAW3204DB_ID))
+000597 7F01              MOV     R7,#01H
+000599 F121              ACALL   _SPI_ReadSensor
+00059B EF                MOV     A,R7
+00059C 54F0              ANL     A,#0F0H
+00059E FF                MOV     R7,A
+00059F BF5018            CJNE    R7,#050H,?C0018?SENSOR
+  132: 			{
+  133: 				Sensor_type= PAW3204DB_ID;
+0005A2 901C17            MOV     DPTR,#Sensor_type
+0005A5 7450              MOV     A,#050H
+0005A7 F0                MOVX    @DPTR,A
+  134: 				sensorConfig = SPI_ReadSensor(SENSOR_POWER)|0x80;
+0005A8 7F06              MOV     R7,#06H
+0005AA F121              ACALL   _SPI_ReadSensor
+0005AC EF                MOV     A,R7
+0005AD 4480              ORL     A,#080H
+0005AF FF                MOV     R7,A
+0005B0 901C16            MOV     DPTR,#sensorConfig
+0005B3 F0                MOVX    @DPTR,A
+  135: 				SPI_WriteSensor(sensorConfig, SENSOR_POWER);//dpi 1300
+0005B4 7D06              MOV     R5,#06H
+0005B6 91DA              ACALL   _SPI_WriteSensor
+  136: 				break;
+0005B8 802B              SJMP    ?C0008?SENSOR
+  137: 			}
+0005BA         ?C0018?SENSOR:
+  138: #endif
+  139: 			
+  140: #if MOUSE_3212_ENABLE
+  141: 			if (SPI_ReadSensor(1) == PAW3212_ID)// FCT3065_ID PAW3205DB_ID
+0005BA 7F01              MOV     R7,#01H
+0005BC F121              ACALL   _SPI_ReadSensor
+0005BE BF021F            CJNE    R7,#02H,?C0010?SENSOR
+  142: 			{
+  143: 				sensorConfig = SPI_ReadSensor(SENSOR_POWER)|0x80;
+0005C1 7F06              MOV     R7,#06H
+0005C3 F121              ACALL   _SPI_ReadSensor
+0005C5 EF                MOV     A,R7
+0005C6 4480              ORL     A,#080H
+0005C8 FF                MOV     R7,A
+0005C9 901C16            MOV     DPTR,#sensorConfig
+0005CC F0                MOVX    @DPTR,A
+  144: 				SPI_WriteSensor(sensorConfig, SENSOR_POWER);//dpi 1300
+0005CD 7D06              MOV     R5,#06H
+0005CF 91DA              ACALL   _SPI_WriteSensor
+  145: 				Sensor_type= PAW3212_ID;
+0005D1 901C17            MOV     DPTR,#Sensor_type
+0005D4 7402              MOV     A,#02H
+0005D6 F0                MOVX    @DPTR,A
+  146: 				if (SPI_ReadSensor(1) == PAW3212_ID)
+0005D7 7F01              MOV     R7,#01H
+0005D9 F121              ACALL   _SPI_ReadSensor
+0005DB EF                MOV     A,R7
+0005DC 6402              XRL     A,#02H
+0005DE 6005              JZ      ?C0008?SENSOR
+  147: 					break;
+0005E0         ?C0020?SENSOR:
+  148: 			}
+  149: #endif
+  150: 		}
+0005E0         ?C0010?SENSOR:
+  151: 		SPI_TwReset();
+0005E0 120A9E            LCALL   SPI_TwReset
+  152: 	}
+0005E3 A10C              AJMP    ?C0007?SENSOR
+0005E5         ?C0008?SENSOR:
+  153: 
+  154: #if MOUSE_3205_ENABLE
+  155: 	if (Sensor_type== PAW3205_ID)
+0005E5 901C17            MOV     DPTR,#Sensor_type
+0005E8 E0                MOVX    A,@DPTR
+0005E9 64D0              XRL     A,#0D0H
+0005EB 6002              JZ      $ + 4H
+0005ED C1B5              AJMP    ?C0021?SENSOR
+  156: 	{
+  157: 		SPI_WriteSensor(0x5A,0x09);
+0005EF 7D09              MOV     R5,#09H
+0005F1 7F5A              MOV     R7,#05AH
+0005F3 91DA              ACALL   _SPI_WriteSensor
+  158: 		SPI_WriteSensor(0x0A,0x0D);
+0005F5 7D0D              MOV     R5,#0DH
+0005F7 7F0A              MOV     R7,#0AH
+0005F9 91DA              ACALL   _SPI_WriteSensor
+  159: 		SPI_WriteSensor(0x35,0x1B);
+0005FB 7D1B              MOV     R5,#01BH
+0005FD 7F35              MOV     R7,#035H
+0005FF 91DA              ACALL   _SPI_WriteSensor
+  160: 		SPI_WriteSensor(0xDB,0x1D);
+000601 7D1D              MOV     R5,#01DH
+000603 7FDB              MOV     R7,#0DBH
+000605 91DA              ACALL   _SPI_WriteSensor
+  161: 		SPI_WriteSensor(0xB4,0x28);
+000607 7D28              MOV     R5,#028H
+000609 7FB4              MOV     R7,#0B4H
+00060B 91DA              ACALL   _SPI_WriteSensor
+  162: 		SPI_WriteSensor(0x46,0x29);
+00060D 7D29              MOV     R5,#029H
+00060F 7F46              MOV     R7,#046H
+000611 91DA              ACALL   _SPI_WriteSensor
+  163: 		SPI_WriteSensor(0x96,0x2A);
+000613 7D2A              MOV     R5,#02AH
+000615 7F96              MOV     R7,#096H
+000617 91DA              ACALL   _SPI_WriteSensor
+  164: 		SPI_WriteSensor(0x8C,0x2B);
+000619 7D2B              MOV     R5,#02BH
+00061B 7F8C              MOV     R7,#08CH
+00061D 91DA              ACALL   _SPI_WriteSensor
+  165: 		SPI_WriteSensor(0x6E,0x2C);
+00061F 7D2C              MOV     R5,#02CH
+000621 7F6E              MOV     R7,#06EH
+000623 91DA              ACALL   _SPI_WriteSensor
+  166: 		SPI_WriteSensor(0x64,0x2D);
+000625 7D2D              MOV     R5,#02DH
+000627 7F64              MOV     R7,#064H
+000629 91DA              ACALL   _SPI_WriteSensor
+  167: 		SPI_WriteSensor(0x5F,0x38);
+00062B 7D38              MOV     R5,#038H
+00062D 7F5F              MOV     R7,#05FH
+00062F 91DA              ACALL   _SPI_WriteSensor
+  168: 		SPI_WriteSensor(0x0F,0x39);
+000631 7D39              MOV     R5,#039H
+000633 7F0F              MOV     R7,#0FH
+000635 91DA              ACALL   _SPI_WriteSensor
+  169: 		SPI_WriteSensor(0x32,0x3A);
+000637 7D3A              MOV     R5,#03AH
+000639 7F32              MOV     R7,#032H
+00063B 91DA              ACALL   _SPI_WriteSensor
+  170: 		SPI_WriteSensor(0x47,0x3B);
+00063D 7D3B              MOV     R5,#03BH
+00063F 7F47              MOV     R7,#047H
+000641 91DA              ACALL   _SPI_WriteSensor
+  171: 		SPI_WriteSensor(0x10,0x42);
+000643 7D42              MOV     R5,#042H
+000645 7F10              MOV     R7,#010H
+000647 91DA              ACALL   _SPI_WriteSensor
+  172: 		SPI_WriteSensor(0x09,0x43);
+000649 7D43              MOV     R5,#043H
+00064B 7F09              MOV     R7,#09H
+00064D 91DA              ACALL   _SPI_WriteSensor
+  173: 		SPI_WriteSensor(0x2E,0x54);
+00064F 7D54              MOV     R5,#054H
+000651 7F2E              MOV     R7,#02EH
+000653 91DA              ACALL   _SPI_WriteSensor
+  174: 		SPI_WriteSensor(0xF2,0x55);
+000655 7D55              MOV     R5,#055H
+000657 7FF2              MOV     R7,#0F2H
+000659 91DA              ACALL   _SPI_WriteSensor
+  175: 		SPI_WriteSensor(0xF4,0x61);
+00065B 7D61              MOV     R5,#061H
+00065D 7FF4              MOV     R7,#0F4H
+00065F 91DA              ACALL   _SPI_WriteSensor
+  176: 		SPI_WriteSensor(0x70,0x63);
+000661 7D63              MOV     R5,#063H
+000663 7F70              MOV     R7,#070H
+000665 91DA              ACALL   _SPI_WriteSensor
+  177: 		SPI_WriteSensor(0x52,0x75);
+000667 7D75              MOV     R5,#075H
+000669 7F52              MOV     R7,#052H
+00066B 91DA              ACALL   _SPI_WriteSensor
+  178: 		SPI_WriteSensor(0x41,0x76);
+00066D 7D76              MOV     R5,#076H
+00066F 7F41              MOV     R7,#041H
+000671 91DA              ACALL   _SPI_WriteSensor
+  179: 		SPI_WriteSensor(0xED,0x77);
+000673 7D77              MOV     R5,#077H
+000675 7FED              MOV     R7,#0EDH
+000677 91DA              ACALL   _SPI_WriteSensor
+  180: 		SPI_WriteSensor(0x23,0x78);
+000679 7D78              MOV     R5,#078H
+00067B 7F23              MOV     R7,#023H
+00067D 91DA              ACALL   _SPI_WriteSensor
+  181: 		SPI_WriteSensor(0x46,0x79);
+00067F 7D79              MOV     R5,#079H
+000681 7F46              MOV     R7,#046H
+000683 91DA              ACALL   _SPI_WriteSensor
+  182: 		SPI_WriteSensor(0xE5,0x7A);
+000685 7D7A              MOV     R5,#07AH
+000687 7FE5              MOV     R7,#0E5H
+000689 91DA              ACALL   _SPI_WriteSensor
+  183: 		SPI_WriteSensor(0x48,0x7C);
+00068B 7D7C              MOV     R5,#07CH
+00068D 7F48              MOV     R7,#048H
+00068F 91DA              ACALL   _SPI_WriteSensor
+  184: 		SPI_WriteSensor(0x80,0x7D);
+000691 7D7D              MOV     R5,#07DH
+000693 7F80              MOV     R7,#080H
+000695 91DA              ACALL   _SPI_WriteSensor
+  185: 		SPI_WriteSensor(0x77,0x7E);
+000697 7D7E              MOV     R5,#07EH
+000699 7F77              MOV     R7,#077H
+00069B 91DA              ACALL   _SPI_WriteSensor
+  186: 		SPI_WriteSensor(0x01,0x7F);
+00069D 7D7F              MOV     R5,#07FH
+00069F 7F01              MOV     R7,#01H
+0006A1 91DA              ACALL   _SPI_WriteSensor
+  187: 		SPI_WriteSensor(0x00,0x0B);
+0006A3 7D0B              MOV     R5,#0BH
+0006A5 E4                CLR     A
+0006A6 FF                MOV     R7,A
+0006A7 91DA              ACALL   _SPI_WriteSensor
+  188: 		SPI_WriteSensor(0x00,0x7F);
+0006A9 7D7F              MOV     R5,#07FH
+0006AB E4                CLR     A
+0006AC FF                MOV     R7,A
+0006AD 91DA              ACALL   _SPI_WriteSensor
+  189: 		SPI_WriteSensor(0x00,0x09);
+0006AF 7D09              MOV     R5,#09H
+0006B1 E4                CLR     A
+0006B2 FF                MOV     R7,A
+0006B3 91DA              ACALL   _SPI_WriteSensor
+  190: 	}
+0006B5         ?C0021?SENSOR:
+  191: #endif
+  192: 
+  193: #if MOUSE_3212_ENABLE
+  194: 	if(Sensor_type== PAW3212_ID) 
+0006B5 901C17            MOV     DPTR,#Sensor_type
+0006B8 E0                MOVX    A,@DPTR
+0006B9 B40218            CJNE    A,#02H,?C0022?SENSOR
+  195: 	{
+  196: 		SPI_WriteSensor(0x5a, 0x09);
+0006BC 7D09              MOV     R5,#09H
+0006BE 7F5A              MOV     R7,#05AH
+0006C0 91DA              ACALL   _SPI_WriteSensor
+  197: 		SPI_WriteSensor(0x34, 0x26);
+0006C2 7D26              MOV     R5,#026H
+0006C4 7F34              MOV     R7,#034H
+0006C6 91DA              ACALL   _SPI_WriteSensor
+  198: 		SPI_WriteSensor(0x14, 0x19);	
+0006C8 7D19              MOV     R5,#019H
+0006CA 7F14              MOV     R7,#014H
+0006CC 91DA              ACALL   _SPI_WriteSensor
+  199: 		SPI_WriteSensor(0x00, 0x09);
+0006CE 7D09              MOV     R5,#09H
+0006D0 E4                CLR     A
+0006D1 FF                MOV     R7,A
+0006D2 91DA              ACALL   _SPI_WriteSensor
+  200: 	}
+0006D4         ?C0022?SENSOR:
+  201: #endif
+  202: 
+  203: #if MOUSE_3204_ENABLE
+  204: 	if(Sensor_type== PAW3204DB_ID)
+0006D4 901C17            MOV     DPTR,#Sensor_type
+0006D7 E0                MOVX    A,@DPTR
+0006D8 6450              XRL     A,#050H
+0006DA 703F              JNZ     ?C0023?SENSOR
+  205: 	{
+  206: 		SPI_WriteSensor(0x5a, 0x09);
+0006DC 7D09              MOV     R5,#09H
+0006DE 7F5A              MOV     R7,#05AH
+0006E0 91DA              ACALL   _SPI_WriteSensor
+  207: 		SPI_WriteSensor(0x9a, 0x5b);
+0006E2 7D5B              MOV     R5,#05BH
+0006E4 7F9A              MOV     R7,#09AH
+0006E6 91DA              ACALL   _SPI_WriteSensor
+0006E8         ?C0024?SENSOR:
+  208: 		while (SPI_ReadSensor(0x0d) != 0x12)
+0006E8 7F0D              MOV     R7,#0DH
+0006EA F121              ACALL   _SPI_ReadSensor
+0006EC EF                MOV     A,R7
+0006ED 6412              XRL     A,#012H
+0006EF 6008              JZ      ?C0026?SENSOR
+  209: 			SPI_WriteSensor(0x12, 0x0d);
+0006F1 7D0D              MOV     R5,#0DH
+0006F3 7F12              MOV     R7,#012H
+0006F5 91DA              ACALL   _SPI_WriteSensor
+0006F7 80EF              SJMP    ?C0024?SENSOR
+0006F9         ?C0026?SENSOR:
+  210: 		while (SPI_ReadSensor(0x0e) != 0xc5)
+0006F9 7F0E              MOV     R7,#0EH
+0006FB F121              ACALL   _SPI_ReadSensor
+0006FD EF                MOV     A,R7
+0006FE 64C5              XRL     A,#0C5H
+000700 6008              JZ      ?C0028?SENSOR
+  211: 			SPI_WriteSensor(0xc5, 0x0e);
+000702 7D0E              MOV     R5,#0EH
+000704 7FC5              MOV     R7,#0C5H
+000706 91DA              ACALL   _SPI_WriteSensor
+000708 80EF              SJMP    ?C0026?SENSOR
+00070A         ?C0028?SENSOR:
+  212: 		while (SPI_ReadSensor(0x53) != 0x48)
+00070A 7F53              MOV     R7,#053H
+00070C F121              ACALL   _SPI_ReadSensor
+00070E EF                MOV     A,R7
+00070F 6448              XRL     A,#048H
+000711 6008              JZ      ?C0023?SENSOR
+  213: 			SPI_WriteSensor(0x48, 0x53);
+000713 7D53              MOV     R5,#053H
+000715 7F48              MOV     R7,#048H
+000717 91DA              ACALL   _SPI_WriteSensor
+000719 80EF              SJMP    ?C0028?SENSOR
+  214: 	}
+00071B         ?C0023?SENSOR:
+  215: #endif
+  216: 
+  217: 	return Sensor_type;
+00071B 901C17            MOV     DPTR,#Sensor_type
+00071E E0                MOVX    A,@DPTR
+00071F FF                MOV     R7,A
+  218: }
+000720 22                RET     
+----- FUNCTION SPI_ResetSensor (END) -------
+
+
+----- FUNCTION _SPI_ReadSensor (BEGIN) -----
+ FILE: 'spi.c'
+   26: u8_t SPI_ReadSensor(u8_t reg_num)
+   27: {
+;---- Variable 'reg_num' assigned to Register 'R7' ----
+   28: 	spi_tx_buff[0] = reg_num;
+   29: 	REG_SPID_TXLEN = ESWAP(READ_SENSOR_TXLEN);
+000721 900218            MOV     DPTR,#spi_tx_buff
+000724 EF                MOV     A,R7
+000725 F0                MOVX    @DPTR,A
+   30: 	REG_SPID_RXLEN = ESWAP(READ_SENSOR_TXLEN);
+000726 908088            MOV     DPTR,#08088H
+000729 7401              MOV     A,#01H
+00072B F0                MOVX    @DPTR,A
+00072C A3                INC     DPTR
+00072D E4                CLR     A
+00072E F0                MOVX    @DPTR,A
+   31: 	REG_MISC_CTRL = DMA_SPI_START;
+00072F 90808E            MOV     DPTR,#0808EH
+000732 04                INC     A
+000733 F0                MOVX    @DPTR,A
+000734 A3                INC     DPTR
+000735 E4                CLR     A
+000736 F0                MOVX    @DPTR,A
+   32: 	do {
+000737 908006            MOV     DPTR,#08006H
+00073A 7402              MOV     A,#02H
+00073C F0                MOVX    @DPTR,A
+   33: 	
+   34: 	}
+00073D         ?C0002?SPI:
+   35: 	while(!(REG_DMA_STATUS & 0x08));
+00073D 90812C            MOV     DPTR,#0812CH
+000740 E0                MOVX    A,@DPTR
+000741 30E3F9            JNB     ACC.3,?C0002?SPI
+   36: 	return  *spi_rx_buff;
+000744 90021D            MOV     DPTR,#spi_rx_buff
+000747 E0                MOVX    A,@DPTR
+000748 FF                MOV     R7,A
+   37: }
+000749 22                RET     
+----- FUNCTION _SPI_ReadSensor (END) -------
+
+
+----- FUNCTION _IPC_TxControlCmd (BEGIN) -----
+ FILE: 'ipc.c'
+   68: void IPC_TxControlCmd(u8_t cmd)
+   69: {
+00074A 901C03            MOV     DPTR,#cmd
+00074D EF                MOV     A,R7
+00074E F0                MOVX    @DPTR,A
+   70: 	u8_t cmdBuff[IPC_CMD_LEN] = {IPC_CONTROL_CMD,0x01};
+   71: 	cmdBuff[IPC_CMD_LEN - 1] = cmd;
+00074F 7804              MOV     R0,#LOW cmdBuff
+000751 7C1C              MOV     R4,#HIGH cmdBuff
+000753 7D01              MOV     R5,#01H
+000755 7BFF              MOV     R3,#0FFH
+000757 7A02              MOV     R2,#HIGH _?ix1000
+000759 79DC              MOV     R1,#LOW _?ix1000
+00075B 7E00              MOV     R6,#00H
+00075D 7F03              MOV     R7,#03H
+00075F 11D3              ACALL   ?C?COPY
+   72: 	ipcTx(cmdBuff, IPC_CMD_LEN);
+000761 901C03            MOV     DPTR,#cmd
+000764 E0                MOVX    A,@DPTR
+000765 901C06            MOV     DPTR,#cmdBuff+02H
+000768 F0                MOVX    @DPTR,A
+   73: }
+000769 7B01              MOV     R3,#01H
+00076B 7A1C              MOV     R2,#HIGH cmdBuff
+00076D 7904              MOV     R1,#LOW cmdBuff
+00076F 7D03              MOV     R5,#03H
+;----                  JMP     _ipcTx
+----- FUNCTION _IPC_TxControlCmd (END) -------
+
+
+----- FUNCTION _ipcTx (BEGIN) -----
+ FILE: 'ipc.c'
+   56: static void ipcTx(u8_t* src, u8_t len)
+   57: {
+000771 901BE7            MOV     DPTR,#src
+000774 EB                MOV     A,R3
+000775 F0                MOVX    @DPTR,A
+000776 A3                INC     DPTR
+000777 EA                MOV     A,R2
+000778 F0                MOVX    @DPTR,A
+000779 A3                INC     DPTR
+00077A E9                MOV     A,R1
+00077B F0                MOVX    @DPTR,A
+00077C A3                INC     DPTR
+00077D ED                MOV     A,R5
+00077E F0                MOVX    @DPTR,A
+   58: 	xu8_t* dest = (xu8_t*)ipcTxWritePtr;
+   59: 	while(len--) {
+00077F 9047C6            MOV     DPTR,#ipcTxWritePtr
+000782 E0                MOVX    A,@DPTR
+000783 FF                MOV     R7,A
+000784 A3                INC     DPTR
+000785 E0                MOVX    A,@DPTR
+000786 901BEB            MOV     DPTR,#dest
+000789 CF                XCH     A,R7
+00078A F0                MOVX    @DPTR,A
+00078B A3                INC     DPTR
+00078C EF                MOV     A,R7
+00078D F0                MOVX    @DPTR,A
+00078E         ?C0005?IPC:
+   60: 		*dest++ = *src++;
+00078E 901BEA            MOV     DPTR,#len
+000791 E0                MOVX    A,@DPTR
+000792 FF                MOV     R7,A
+000793 14                DEC     A
+000794 F0                MOVX    @DPTR,A
+000795 EF                MOV     A,R7
+000796 603C              JZ      ?C0006?IPC
+   61: 		if ((u16_t)dest == IPC_TX_END) {
+000798 901BE7            MOV     DPTR,#src
+00079B E0                MOVX    A,@DPTR
+00079C FB                MOV     R3,A
+00079D A3                INC     DPTR
+00079E E4                CLR     A
+00079F 75F001            MOV     B,#01H
+0007A2 319D              ACALL   ?C?ILDIX
+0007A4 A9F0              MOV     R1,B
+0007A6 FA                MOV     R2,A
+0007A7 11F9              ACALL   ?C?CLDPTR
+0007A9 FF                MOV     R7,A
+0007AA 901BEB            MOV     DPTR,#dest
+0007AD E4                CLR     A
+0007AE 75F001            MOV     B,#01H
+0007B1 319D              ACALL   ?C?ILDIX
+0007B3 85F082            MOV     DPL,B
+0007B6 F583              MOV     DPH,A
+0007B8 EF                MOV     A,R7
+0007B9 F0                MOVX    @DPTR,A
+   62: 			dest = (xu8_t *)IPC_TX_HEAD;
+0007BA 901BEB            MOV     DPTR,#dest
+0007BD E0                MOVX    A,@DPTR
+0007BE FE                MOV     R6,A
+0007BF A3                INC     DPTR
+0007C0 E0                MOVX    A,@DPTR
+0007C1 FF                MOV     R7,A
+0007C2 BE47C9            CJNE    R6,#047H,?C0005?IPC
+0007C5 BFC4C6            CJNE    R7,#0C4H,?C0005?IPC
+   63: 		}
+0007C8 901BEB            MOV     DPTR,#dest
+0007CB 7447              MOV     A,#047H
+0007CD F0                MOVX    @DPTR,A
+0007CE A3                INC     DPTR
+0007CF 742E              MOV     A,#02EH
+0007D1 F0                MOVX    @DPTR,A
+   64: 	}
+   65: 	ipcTxWritePtr =  (u16_t)dest;
+0007D2 80BA              SJMP    ?C0005?IPC
+0007D4         ?C0006?IPC:
+   66: }
+0007D4 901BEB            MOV     DPTR,#dest
+0007D7 E0                MOVX    A,@DPTR
+0007D8 FF                MOV     R7,A
+0007D9 A3                INC     DPTR
+0007DA E0                MOVX    A,@DPTR
+0007DB 9047C6            MOV     DPTR,#ipcTxWritePtr
+0007DE CF                XCH     A,R7
+0007DF F0                MOVX    @DPTR,A
+0007E0 A3                INC     DPTR
+0007E1 EF                MOV     A,R7
+0007E2 F0                MOVX    @DPTR,A
+   67: 
+0007E3 22                RET     
+----- FUNCTION _ipcTx (END) -------
+
+
+----- FUNCTION deviceStop24g (BEGIN) -----
+ FILE: 'sys.c'
+  709: static void deviceStop24g()
+  710: {
+  711: 	IPC_TxControlCmd(IPC_CMD_STOP_24G);
+  712: 	g_variable.currentState = DEVICE_MODE_NONE;
+0007E4 7F24              MOV     R7,#024H
+0007E6 F14A              ACALL   _IPC_TxControlCmd
+  713: }
+0007E8 E4                CLR     A
+0007E9 904EAD            MOV     DPTR,#g_variable+02H
+0007EC F0                MOVX    @DPTR,A
+  714: 
+0007ED 22                RET     
+----- FUNCTION deviceStop24g (END) -------
+
+
+----- FUNCTION deviceInit (BEGIN) -----
+ FILE: 'sys.c'
+ 1332: static void deviceInit()
+ 1333: {
+ 1334: 	IPC_Initialize(&cb);
+ 1335: }
+0007EE 7B01              MOV     R3,#01H
+0007F0 7A1B              MOV     R2,#HIGH cb
+0007F2 79AB              MOV     R1,#LOW cb
+;----                  JMP     _IPC_Initialize
+----- FUNCTION deviceInit (END) -------
+
+
+----- FUNCTION _IPC_Initialize (BEGIN) -----
+ FILE: 'ipc.c'
+  121: void IPC_Initialize(tIPCControlBlock *cb)
+  122: {
+;---- Variable 'cb' assigned to Register 'R1/R2/R3' ----
+  123: 	ipcCb = *cb;
+  124: }
+0007F4 7830              MOV     R0,#LOW ipcCb
+0007F6 7C48              MOV     R4,#HIGH ipcCb
+0007F8 7D01              MOV     R5,#01H
+0007FA 7E00              MOV     R6,#00H
+0007FC 7F12              MOV     R7,#012H
+0007FE 0200D3            LJMP    ?C?COPY
+----- FUNCTION _IPC_Initialize (END) -------
+
+
+----- FUNCTION sensorClearData (BEGIN) -----
+ FILE: 'sys.c'
+  209: void sensorClearData()
+  210: {
+  211: 	sensorPowerOn();
+  212: 	SPI_TwReset();
+000801 5173              ACALL   sensorPowerOn
+  213: 	while(!GPIO_GetInputStatus(SENSOR_MOTION_GPIO)){
+000803 519E              ACALL   SPI_TwReset
+000805         ?C0001?SYS:
+  214: 		SPI_ReadSensor(SENSOR_MOTION);
+000805 7F18              MOV     R7,#018H
+000807 111D              ACALL   _GPIO_GetInputStatus
+000809 4011              JC      ?C0003?SYS
+  215: 		SPI_ReadSensor(SENSOR_X_ADDR);
+00080B 7F02              MOV     R7,#02H
+00080D 120721            LCALL   _SPI_ReadSensor
+  216: 		SPI_ReadSensor(SENSOR_Y_ADDR);
+000810 7F03              MOV     R7,#03H
+000812 120721            LCALL   _SPI_ReadSensor
+  217: 	}
+000815 7F04              MOV     R7,#04H
+000817 120721            LCALL   _SPI_ReadSensor
+  218: }
+00081A 80E9              SJMP    ?C0001?SYS
+  219: 
+00081C         ?C0003?SYS:
+00081C 22                RET     
+----- FUNCTION sensorClearData (END) -------
+
+
+----- FUNCTION _GPIO_GetInputStatus (BEGIN) -----
+ FILE: 'gpio.c'
+   35: bool GPIO_GetInputStatus(u8_t gpio_num)
+   36: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   37: 	return gpioGetBit(gpio_num, &REG_GPIO_IN(0));
+   38: }
+00081D 7B01              MOV     R3,#01H
+00081F 7A81              MOV     R2,#081H
+000821 791C              MOV     R1,#01CH
+;----                  JMP     _gpioGetBit
+----- FUNCTION _GPIO_GetInputStatus (END) -------
+
+
+----- FUNCTION _gpioGetBit (BEGIN) -----
+ FILE: 'gpio.c'
+   24: static bool gpioGetBit(u8_t gpio_num, char *reg_base)
+   25: {
+;---- Variable 'gpio_num' assigned to Register 'R5' ----
+000823 AD07              MOV     R5,AR7
+;---- Variable 'reg_base' assigned to Register 'R1/R2/R3' ----
+   26: 	u8_t queue = 0;
+   27: 	u8_t group = 0;
+000825 E4                CLR     A
+000826 901C1B            MOV     DPTR,#queue
+000829 F0                MOVX    @DPTR,A
+   28: 
+;---- Variable 'group' assigned to Register 'R6' ----
+00082A FE                MOV     R6,A
+   29: 	queue = (gpio_num & 7);
+00082B EF                MOV     A,R7
+00082C 5407              ANL     A,#07H
+00082E F0                MOVX    @DPTR,A
+   30: 	group = gpio_num >> 3 & 3;
+00082F EF                MOV     A,R7
+000830 13                RRC     A
+000831 13                RRC     A
+000832 13                RRC     A
+000833 5403              ANL     A,#03H
+000835 FE                MOV     R6,A
+   31: 	return (*(reg_base + group)&(1<<queue));
+000836 F582              MOV     DPL,A
+000838 758300            MOV     DPH,#00H
+00083B 120112            LCALL   ?C?CLDOPTR
+00083E FD                MOV     R5,A
+00083F 33                RLC     A
+000840 95E0              SUBB    A,ACC
+000842 FC                MOV     R4,A
+000843 901C1B            MOV     DPTR,#queue
+000846 E0                MOVX    A,@DPTR
+000847 FF                MOV     R7,A
+000848 7401              MOV     A,#01H
+00084A 7E00              MOV     R6,#00H
+00084C A807              MOV     R0,AR7
+00084E 08                INC     R0
+00084F 8005              SJMP    ?C0023?GPIO
+000851         ?C0022?GPIO:
+000851 C3                CLR     C
+000852 33                RLC     A
+000853 CE                XCH     A,R6
+000854 33                RLC     A
+000855 CE                XCH     A,R6
+000856         ?C0023?GPIO:
+000856 D8F9              DJNZ    R0,?C0022?GPIO
+000858 FF                MOV     R7,A
+000859 EE                MOV     A,R6
+00085A 5C                ANL     A,R4
+00085B FE                MOV     R6,A
+00085C EF                MOV     A,R7
+00085D 5D                ANL     A,R5
+00085E 4E                ORL     A,R6
+00085F 24FF              ADD     A,#0FFH
+   32: 	
+   33: }
+000861 22                RET     
+----- FUNCTION _gpioGetBit (END) -------
+
+
+----- FUNCTION mouseBkKeyCheck (BEGIN) -----
+ FILE: 'sys.c'
+  360: static u8_t mouseBkKeyCheck()
+  361: {
+  362: 	if (!GPIO_GetInputStatus(KS_BK_GPIO)) return 0;
+  363: 	GPIO_SetOutput(Timer_div_io, 0);
+000862 7F17              MOV     R7,#017H
+000864 111D              ACALL   _GPIO_GetInputStatus
+000866 4003              JC      ?C0046?SYS
+000868 7F00              MOV     R7,#00H
+00086A 22                RET     
+00086B         ?C0046?SYS:
+  364: 	g_variable.bkKeyTemp <<=1;
+00086B C207              CLR     ?_GPIO_SetOutput?BIT
+00086D 7F07              MOV     R7,#07H
+00086F 11C6              ACALL   _GPIO_SetOutput
+  365: 	g_variable.bkKeyTemp |= !GPIO_GetInputStatus(KS_BK_GPIO);
+000871 904EC2            MOV     DPTR,#g_variable+017H
+000874 E0                MOVX    A,@DPTR
+000875 FF                MOV     R7,A
+000876 25E0              ADD     A,ACC
+000878 F0                MOVX    @DPTR,A
+  366: 	GPIO_SetOutput(Timer_div_io,1);
+000879 E0                MOVX    A,@DPTR
+00087A FF                MOV     R7,A
+00087B C007              PUSH    AR7
+00087D 7F17              MOV     R7,#017H
+00087F 111D              ACALL   _GPIO_GetInputStatus
+000881 4004              JC      ?C0048?SYS
+000883 7E01              MOV     R6,#01H
+000885 8002              SJMP    ?C0049?SYS
+000887         ?C0048?SYS:
+000887 7E00              MOV     R6,#00H
+000889         ?C0049?SYS:
+000889 D0E0              POP     ACC
+00088B 4E                ORL     A,R6
+00088C 904EC2            MOV     DPTR,#g_variable+017H
+00088F F0                MOVX    @DPTR,A
+  367: 	GPIO_SetInput(Timer_div_io, 0);	
+000890 D207              SETB    ?_GPIO_SetOutput?BIT
+000892 7F07              MOV     R7,#07H
+000894 11C6              ACALL   _GPIO_SetOutput
+  368: 	if (g_variable.bkKeyTemp&0x01)
+000896 C206              CLR     ?_GPIO_SetInput?BIT
+000898 7F07              MOV     R7,#07H
+00089A 31A7              ACALL   _GPIO_SetInput
+  369: 	{
+00089C 904EC2            MOV     DPTR,#g_variable+017H
+00089F E0                MOVX    A,@DPTR
+0008A0 30E006            JNB     ACC.0,?C0053?SYS
+  370: 		g_variable.wheelTimer= 2 ;
+  371: 	}	
+0008A3 904EB7            MOV     DPTR,#g_variable+0CH
+0008A6 7402              MOV     A,#02H
+0008A8 F0                MOVX    @DPTR,A
+  372: 	do 
+0008A9         ?C0053?SYS:
+  373: 	{ 
+  374: 		if((g_variable.bkKeyTemp & 0x07) == 0x07)
+0008A9 904EC2            MOV     DPTR,#g_variable+017H
+0008AC E0                MOVX    A,@DPTR
+0008AD 5407              ANL     A,#07H
+0008AF FF                MOV     R7,A
+0008B0 BF0706            CJNE    R7,#07H,?C0054?SYS
+  375: 		{
+  376: 			g_variable.bkKey = 1;
+0008B3 A3                INC     DPTR
+0008B4 7401              MOV     A,#01H
+0008B6 F0                MOVX    @DPTR,A
+  377: 			break;
+0008B7 8007              SJMP    ?C0052?SYS
+  378: 		}
+0008B9         ?C0054?SYS:
+  379: 		if((g_variable.bkKeyTemp & 0x07) == 0x00)
+0008B9 EF                MOV     A,R7
+0008BA 7004              JNZ     ?C0052?SYS
+  380: 		{
+  381: 			g_variable.bkKey = 0;
+0008BC 904EC3            MOV     DPTR,#g_variable+018H
+0008BF F0                MOVX    @DPTR,A
+  382: 			break;
+  383: 		}
+  384: 	}while(0);
+0008C0         ?C0052?SYS:
+  385: 	return g_variable.bkKey;
+0008C0 904EC3            MOV     DPTR,#g_variable+018H
+0008C3 E0                MOVX    A,@DPTR
+0008C4 FF                MOV     R7,A
+  386: }
+0008C5 22                RET     
+----- FUNCTION mouseBkKeyCheck (END) -------
+
+
+----- FUNCTION _GPIO_SetOutput (BEGIN) -----
+ FILE: 'gpio.c'
+   67: void GPIO_SetOutput(u8_t gpio_num, bit  st)
+   68: {
+;---- Variable 'gpio_num' assigned to Register 'R4' ----
+0008C6 AC07              MOV     R4,AR7
+   69: 	GPIO_Setoe(gpio_num,1);
+   70: 	GPIO_Setout(gpio_num,st);
+0008C8 D205              SETB    ?_GPIO_Setoe?BIT
+0008CA 31BC              ACALL   _GPIO_Setoe
+   71: 	GPIO_SetPu(gpio_num,0);
+0008CC AF04              MOV     R7,AR4
+0008CE A207              MOV     C,st
+0008D0 9202              MOV     ?_GPIO_Setout?BIT,C
+0008D2 515B              ACALL   _GPIO_Setout
+   72: }
+0008D4 AF04              MOV     R7,AR4
+0008D6 C203              CLR     ?_GPIO_SetPu?BIT
+;----                  JMP     _GPIO_SetPu
+----- FUNCTION _GPIO_SetOutput (END) -------
+
+
+----- FUNCTION _GPIO_SetPu (BEGIN) -----
+ FILE: 'gpio.c'
+   45: void GPIO_SetPu(u8_t gpio_num, bool bit_val)
+   46: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   47: 	gpioSetBit(gpio_num, &REG_GPIO_PUP(0), bit_val);	
+   48: }
+0008D8 7B01              MOV     R3,#01H
+0008DA 7A80              MOV     R2,#080H
+0008DC 7978              MOV     R1,#078H
+0008DE A203              MOV     C,bit_val
+0008E0 9201              MOV     ?_gpioSetBit?BIT,C
+;----                  JMP     _gpioSetBit
+----- FUNCTION _GPIO_SetPu (END) -------
+
+
+----- FUNCTION _gpioSetBit (BEGIN) -----
+ FILE: 'gpio.c'
+    8: static void gpioSetBit(u8_t gpio_num, char *reg_base, bool bit_val)
+    9: {
+0008E2 901C10            MOV     DPTR,#reg_base
+0008E5 EB                MOV     A,R3
+0008E6 F0                MOVX    @DPTR,A
+0008E7 A3                INC     DPTR
+0008E8 EA                MOV     A,R2
+0008E9 F0                MOVX    @DPTR,A
+0008EA A3                INC     DPTR
+0008EB E9                MOV     A,R1
+0008EC F0                MOVX    @DPTR,A
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   10: 	u8_t queue = 0;
+   11: 	u8_t group = 0;
+;---- Variable 'queue' assigned to Register 'R6' ----
+0008ED E4                CLR     A
+0008EE FE                MOV     R6,A
+   12: 
+;---- Variable 'group' assigned to Register 'R5' ----
+0008EF FD                MOV     R5,A
+   13: 	queue = (gpio_num & 7);
+0008F0 EF                MOV     A,R7
+0008F1 5407              ANL     A,#07H
+0008F3 FE                MOV     R6,A
+   14: 	group = gpio_num >> 3 & 3;
+0008F4 EF                MOV     A,R7
+0008F5 13                RRC     A
+0008F6 13                RRC     A
+0008F7 13                RRC     A
+0008F8 5403              ANL     A,#03H
+0008FA FD                MOV     R5,A
+   15: 
+   16: 	if(bit_val) {
+0008FB 300122            JNB     bit_val,?C0001?GPIO
+   17: 		*(reg_base + group) |= 1<<queue;
+0008FE 901C10            MOV     DPTR,#reg_base
+000901 E0                MOVX    A,@DPTR
+000902 FB                MOV     R3,A
+000903 A3                INC     DPTR
+000904 E0                MOVX    A,@DPTR
+000905 FA                MOV     R2,A
+000906 A3                INC     DPTR
+000907 E0                MOVX    A,@DPTR
+000908 2D                ADD     A,R5
+000909 F9                MOV     R1,A
+00090A E4                CLR     A
+00090B 3A                ADDC    A,R2
+00090C FA                MOV     R2,A
+00090D 1200F9            LCALL   ?C?CLDPTR
+000910 FF                MOV     R7,A
+000911 7401              MOV     A,#01H
+000913 A806              MOV     R0,AR6
+000915 08                INC     R0
+000916 8002              SJMP    ?C0019?GPIO
+000918         ?C0018?GPIO:
+000918 C3                CLR     C
+000919 33                RLC     A
+00091A         ?C0019?GPIO:
+00091A D8FC              DJNZ    R0,?C0018?GPIO
+00091C 4F                ORL     A,R7
+00091D 02013F            LJMP    ?C?CSTPTR
+   18: 	}
+000920         ?C0001?GPIO:
+   19: 	else {
+   20: 		*(reg_base + group) &= ~(1<<queue);
+000920 901C10            MOV     DPTR,#reg_base
+000923 E0                MOVX    A,@DPTR
+000924 FB                MOV     R3,A
+000925 A3                INC     DPTR
+000926 E0                MOVX    A,@DPTR
+000927 FA                MOV     R2,A
+000928 A3                INC     DPTR
+000929 E0                MOVX    A,@DPTR
+00092A 2D                ADD     A,R5
+00092B F9                MOV     R1,A
+00092C E4                CLR     A
+00092D 3A                ADDC    A,R2
+00092E FA                MOV     R2,A
+00092F 1200F9            LCALL   ?C?CLDPTR
+000932 FF                MOV     R7,A
+000933 7401              MOV     A,#01H
+000935 A806              MOV     R0,AR6
+000937 08                INC     R0
+000938 8002              SJMP    ?C0021?GPIO
+00093A         ?C0020?GPIO:
+00093A C3                CLR     C
+00093B 33                RLC     A
+00093C         ?C0021?GPIO:
+00093C D8FC              DJNZ    R0,?C0020?GPIO
+00093E F4                CPL     A
+00093F 5F                ANL     A,R7
+000940 02013F            LJMP    ?C?CSTPTR
+   21: 	}
+----- FUNCTION _gpioSetBit (END) -------
+
+
+----- FUNCTION mouseFwKeyCheck (BEGIN) -----
+ FILE: 'sys.c'
+  388: static u8_t mouseFwKeyCheck()
+  389: {
+  390: 	if (!GPIO_GetInputStatus(KS_FW_GPIO)) return 0;
+  391: 	GPIO_SetOutput(Timer_div_io, 0);
+000943 7F04              MOV     R7,#04H
+000945 111D              ACALL   _GPIO_GetInputStatus
+000947 4003              JC      ?C0056?SYS
+000949 7F00              MOV     R7,#00H
+00094B 22                RET     
+00094C         ?C0056?SYS:
+  392: 	g_variable.fwKeyTemp <<=1;
+00094C C207              CLR     ?_GPIO_SetOutput?BIT
+00094E 7F07              MOV     R7,#07H
+000950 11C6              ACALL   _GPIO_SetOutput
+  393: 	g_variable.fwKeyTemp |= !GPIO_GetInputStatus(KS_FW_GPIO);
+000952 904EC0            MOV     DPTR,#g_variable+015H
+000955 E0                MOVX    A,@DPTR
+000956 FF                MOV     R7,A
+000957 25E0              ADD     A,ACC
+000959 F0                MOVX    @DPTR,A
+  394: 	GPIO_SetOutput(Timer_div_io,1);
+00095A E0                MOVX    A,@DPTR
+00095B FF                MOV     R7,A
+00095C C007              PUSH    AR7
+00095E 7F04              MOV     R7,#04H
+000960 111D              ACALL   _GPIO_GetInputStatus
+000962 4004              JC      ?C0058?SYS
+000964 7E01              MOV     R6,#01H
+000966 8002              SJMP    ?C0059?SYS
+000968         ?C0058?SYS:
+000968 7E00              MOV     R6,#00H
+00096A         ?C0059?SYS:
+00096A D0E0              POP     ACC
+00096C 4E                ORL     A,R6
+00096D 904EC0            MOV     DPTR,#g_variable+015H
+000970 F0                MOVX    @DPTR,A
+  395: 	GPIO_SetInput(Timer_div_io, 0);	
+000971 D207              SETB    ?_GPIO_SetOutput?BIT
+000973 7F07              MOV     R7,#07H
+000975 11C6              ACALL   _GPIO_SetOutput
+  396: 	if (g_variable.fwKeyTemp&0x01) 
+000977 C206              CLR     ?_GPIO_SetInput?BIT
+000979 7F07              MOV     R7,#07H
+00097B 31A7              ACALL   _GPIO_SetInput
+  397: 	{
+00097D 904EC0            MOV     DPTR,#g_variable+015H
+000980 E0                MOVX    A,@DPTR
+000981 30E006            JNB     ACC.0,?C0063?SYS
+  398: 		g_variable.wheelTimer= 2 ;
+  399: 	}
+000984 904EB7            MOV     DPTR,#g_variable+0CH
+000987 7402              MOV     A,#02H
+000989 F0                MOVX    @DPTR,A
+  400: 	do
+00098A         ?C0063?SYS:
+  401: 	{ 
+  402: 		if((g_variable.fwKeyTemp & 0x07) == 0x07) 
+00098A 904EC0            MOV     DPTR,#g_variable+015H
+00098D E0                MOVX    A,@DPTR
+00098E 5407              ANL     A,#07H
+000990 FF                MOV     R7,A
+000991 BF0706            CJNE    R7,#07H,?C0064?SYS
+  403: 		{
+  404: 			g_variable.fwKey = 1;
+000994 A3                INC     DPTR
+000995 7401              MOV     A,#01H
+000997 F0                MOVX    @DPTR,A
+  405: 			break;
+000998 8007              SJMP    ?C0062?SYS
+  406: 		}
+00099A         ?C0064?SYS:
+  407: 		if((g_variable.fwKeyTemp & 0x07) == 0x00)
+00099A EF                MOV     A,R7
+00099B 7004              JNZ     ?C0062?SYS
+  408: 		{
+  409: 			g_variable.fwKey = 0;
+00099D 904EC1            MOV     DPTR,#g_variable+016H
+0009A0 F0                MOVX    @DPTR,A
+  410: 			break;
+  411: 		}
+  412: 	}while(0);
+0009A1         ?C0062?SYS:
+  413: 	return g_variable.fwKey;
+0009A1 904EC1            MOV     DPTR,#g_variable+016H
+0009A4 E0                MOVX    A,@DPTR
+0009A5 FF                MOV     R7,A
+  414: }
+0009A6 22                RET     
+----- FUNCTION mouseFwKeyCheck (END) -------
+
+
+----- FUNCTION _GPIO_SetInput (BEGIN) -----
+ FILE: 'gpio.c'
+   60: void GPIO_SetInput(u8_t gpio_num, bit  st)
+   61: {
+;---- Variable 'gpio_num' assigned to Register 'R4' ----
+0009A7 AC07              MOV     R4,AR7
+   62: 	GPIO_SetPd(gpio_num,st);
+   63: 	GPIO_SetPu(gpio_num,~st);
+0009A9 A206              MOV     C,st
+0009AB 9204              MOV     ?_GPIO_SetPd?BIT,C
+0009AD 5167              ACALL   _GPIO_SetPd
+   64: 	GPIO_Setoe(gpio_num,0);
+0009AF AF04              MOV     R7,AR4
+0009B1 A206              MOV     C,st
+0009B3 B3                CPL     C
+0009B4 9203              MOV     ?_GPIO_SetPu?BIT,C
+0009B6 11D8              ACALL   _GPIO_SetPu
+   65: }
+0009B8 AF04              MOV     R7,AR4
+0009BA C205              CLR     ?_GPIO_Setoe?BIT
+;----                  JMP     _GPIO_Setoe
+----- FUNCTION _GPIO_SetInput (END) -------
+
+
+----- FUNCTION _GPIO_Setoe (BEGIN) -----
+ FILE: 'gpio.c'
+   55: void GPIO_Setoe(u8_t gpio_num, bool bit_val)
+   56: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   57: 	gpioSetBit(gpio_num, &REG_GPIO_OE(0), bit_val);	
+   58: }
+0009BC 7B01              MOV     R3,#01H
+0009BE 7A80              MOV     R2,#080H
+0009C0 7970              MOV     R1,#070H
+0009C2 A205              MOV     C,bit_val
+0009C4 9201              MOV     ?_gpioSetBit?BIT,C
+0009C6 01E2              AJMP    _gpioSetBit
+----- FUNCTION _GPIO_Setoe (END) -------
+
+
+----- FUNCTION mouseWheelScan (BEGIN) -----
+ FILE: 'sys.c'
+  441: void mouseWheelScan(void)
+  442: {
+  443: 	u16_t result = 0;
+  444: 	u8_t tempStateA = GPIO_GetInputStatus(WHEEL_DATA_A_GPIO);
+0009C8 E4                CLR     A
+0009C9 901C07            MOV     DPTR,#result
+0009CC F0                MOVX    @DPTR,A
+0009CD A3                INC     DPTR
+0009CE F0                MOVX    @DPTR,A
+  445: 	u8_t tempState = (tempStateA << 1)|
+0009CF 7F02              MOV     R7,#02H
+0009D1 111D              ACALL   _GPIO_GetInputStatus
+0009D3 E4                CLR     A
+0009D4 33                RLC     A
+0009D5 901C09            MOV     DPTR,#tempStateA
+0009D8 F0                MOVX    @DPTR,A
+  446: 		GPIO_GetInputStatus(WHEEL_DATA_B_GPIO);
+0009D9 7F03              MOV     R7,#03H
+0009DB 111D              ACALL   _GPIO_GetInputStatus
+0009DD E4                CLR     A
+0009DE 33                RLC     A
+0009DF FF                MOV     R7,A
+0009E0 901C09            MOV     DPTR,#tempStateA
+0009E3 E0                MOVX    A,@DPTR
+0009E4 FE                MOV     R6,A
+0009E5 25E0              ADD     A,ACC
+0009E7 4F                ORL     A,R7
+0009E8 FF                MOV     R7,A
+;---- Variable 'tempState' assigned to Register 'R7' ----
+  447: 	
+  448: 	if (g_variable.wheelStateNow == tempState)
+0009E9 904EC5            MOV     DPTR,#g_variable+01AH
+0009EC E0                MOVX    A,@DPTR
+0009ED 6F                XRL     A,R7
+0009EE 605B              JZ      ?C0075?SYS
+0009F0         ?C0074?SYS:
+  449: 		return;
+  450: 
+  451: 	g_variable.wheelStateLast = g_variable.wheelStateBefore;
+0009F0 904EC6            MOV     DPTR,#g_variable+01BH
+0009F3 E0                MOVX    A,@DPTR
+0009F4 A3                INC     DPTR
+0009F5 F0                MOVX    @DPTR,A
+  452: 	g_variable.wheelStateBefore = g_variable.wheelStateNow;
+0009F6 904EC5            MOV     DPTR,#g_variable+01AH
+0009F9 E0                MOVX    A,@DPTR
+0009FA A3                INC     DPTR
+0009FB F0                MOVX    @DPTR,A
+  453: 	g_variable.wheelStateNow = tempState;
+0009FC 904EC5            MOV     DPTR,#g_variable+01AH
+0009FF EF                MOV     A,R7
+000A00 F0                MOVX    @DPTR,A
+000A01 FD                MOV     R5,A
+  454: 
+  455: 	result = (g_variable.wheelStateNow << 4) |(g_variable.wheelStateBefore << 2) |g_variable.wheelStateLast;
+000A02 A3                INC     DPTR
+000A03 E0                MOVX    A,@DPTR
+000A04 75F004            MOV     B,#04H
+000A07 A4                MUL     AB
+000A08 FB                MOV     R3,A
+000A09 AAF0              MOV     R2,B
+000A0B ED                MOV     A,R5
+000A0C 75F010            MOV     B,#010H
+000A0F A4                MUL     AB
+000A10 FF                MOV     R7,A
+000A11 E5F0              MOV     A,B
+000A13 4A                ORL     A,R2
+000A14 FE                MOV     R6,A
+000A15 EF                MOV     A,R7
+000A16 4B                ORL     A,R3
+000A17 FF                MOV     R7,A
+000A18 A3                INC     DPTR
+000A19 E0                MOVX    A,@DPTR
+000A1A FD                MOV     R5,A
+000A1B EE                MOV     A,R6
+000A1C EF                MOV     A,R7
+000A1D 4D                ORL     A,R5
+000A1E FF                MOV     R7,A
+000A1F 901C07            MOV     DPTR,#result
+000A22 EE                MOV     A,R6
+000A23 F0                MOVX    @DPTR,A
+000A24 A3                INC     DPTR
+000A25 EF                MOV     A,R7
+000A26 F0                MOVX    @DPTR,A
+  456: 
+  457: 	switch (result) 
+000A27 EE                MOV     A,R6
+000A28 7021              JNZ     ?C0075?SYS
+000A2A EF                MOV     A,R7
+000A2B 24F5              ADD     A,#0F5H
+000A2D 6014              JZ      ?C0080?SYS
+000A2F 24D7              ADD     A,#0D7H
+000A31 6010              JZ      ?C0080?SYS
+000A33 24FC              ADD     A,#0FCH
+000A35 6004              JZ      ?C0078?SYS
+000A37 2431              ADD     A,#031H
+000A39 7010              JNZ     ?C0075?SYS
+  458: 	{
+  459: 		case 0x38:
+  460: 		case 0x07:
+000A3B         ?C0078?SYS:
+  461: 			g_variable.deltaZWheel --;
+000A3B 904EC8            MOV     DPTR,#g_variable+01DH
+000A3E E0                MOVX    A,@DPTR
+000A3F 14                DEC     A
+000A40 F0                MOVX    @DPTR,A
+  462: 			mouse_wheel_delay_lpm();
+000A41 8009              SJMP    mouse_wheel_delay_lpm
+  463: 			break;
+  464: 		case 0x34:
+  465: 		case 0x0b:
+000A43         ?C0080?SYS:
+  466: 			g_variable.deltaZWheel ++;
+000A43 904EC8            MOV     DPTR,#g_variable+01DH
+000A46 E0                MOVX    A,@DPTR
+000A47 04                INC     A
+000A48 F0                MOVX    @DPTR,A
+  467: 			mouse_wheel_delay_lpm();
+000A49 514C              ACALL   mouse_wheel_delay_lpm
+  468: 			break;
+  469: 		default:
+  470: 			break;
+  471: 	}
+  472: }
+000A4B         ?C0075?SYS:
+000A4B 22                RET     
+----- FUNCTION mouseWheelScan (END) -------
+
+
+----- FUNCTION mouse_wheel_delay_lpm (BEGIN) -----
+ FILE: 'sys.c'
+  433: void mouse_wheel_delay_lpm(void)
+  434: {
+  435: 	if(g_variable.currentState != DEVICE_MODE_24G)
+  436: 	{
+000A4C 904EAD            MOV     DPTR,#g_variable+02H
+000A4F E0                MOVX    A,@DPTR
+000A50 6401              XRL     A,#01H
+000A52 6006              JZ      ?C0073?SYS
+  437: 		g_variable.wheelTimer= 3;			//   10
+  438: 	}
+000A54 904EB7            MOV     DPTR,#g_variable+0CH
+000A57 7403              MOV     A,#03H
+000A59 F0                MOVX    @DPTR,A
+  439: }
+  440: 
+000A5A         ?C0073?SYS:
+000A5A 22                RET     
+----- FUNCTION mouse_wheel_delay_lpm (END) -------
+
+
+----- FUNCTION _GPIO_Setout (BEGIN) -----
+ FILE: 'gpio.c'
+   40: void GPIO_Setout(u8_t gpio_num, bool bit_val)
+   41: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   42: 	gpioSetBit(gpio_num, &REG_GPIO_OUT(0), bit_val);	
+   43: }
+000A5B 7B01              MOV     R3,#01H
+000A5D 7A80              MOV     R2,#080H
+000A5F 7974              MOV     R1,#074H
+000A61 A202              MOV     C,bit_val
+000A63 9201              MOV     ?_gpioSetBit?BIT,C
+000A65 01E2              AJMP    _gpioSetBit
+----- FUNCTION _GPIO_Setout (END) -------
+
+
+----- FUNCTION _GPIO_SetPd (BEGIN) -----
+ FILE: 'gpio.c'
+   50: void GPIO_SetPd(u8_t gpio_num, bool bit_val)
+   51: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   52: 	gpioSetBit(gpio_num, &REG_GPIO_PDN(0), bit_val);	
+   53: }
+000A67 7B01              MOV     R3,#01H
+000A69 7A80              MOV     R2,#080H
+000A6B 797C              MOV     R1,#07CH
+000A6D A204              MOV     C,bit_val
+000A6F 9201              MOV     ?_gpioSetBit?BIT,C
+000A71 01E2              AJMP    _gpioSetBit
+----- FUNCTION _GPIO_SetPd (END) -------
+
+
+----- FUNCTION sensorPowerOn (BEGIN) -----
+ FILE: 'sensor.c'
+  238: void sensorPowerOn()
+  239: {
+  240: 	u8_t config = 0;
+  241: 	SPI_TwReset();
+;---- Variable 'config' assigned to Register 'R7' ----
+000A73 E4                CLR     A
+000A74 FF                MOV     R7,A
+  242: 	config = SPI_ReadSensor(0x06)&0xf7;
+000A75 519E              ACALL   SPI_TwReset
+  243: 	SPI_WriteSensor(config, 0x06);		//sensor Power on
+000A77 7F06              MOV     R7,#06H
+000A79 120721            LCALL   _SPI_ReadSensor
+000A7C EF                MOV     A,R7
+000A7D 54F7              ANL     A,#0F7H
+000A7F FF                MOV     R7,A
+  244: 	SPI_ReadSensor(2);
+000A80 7D06              MOV     R5,#06H
+000A82 1204DA            LCALL   _SPI_WriteSensor
+  245: 	Sensor_spi_disable();
+000A85 7F02              MOV     R7,#02H
+000A87 120721            LCALL   _SPI_ReadSensor
+;----                  JMP     Sensor_spi_disable
+  246: }
+----- FUNCTION sensorPowerOn (END) -------
+
+
+----- FUNCTION Sensor_spi_disable (BEGIN) -----
+ FILE: 'sensor.c'
+  220: void Sensor_spi_disable(void)
+  221: {
+  222: 	REG_GPIO_SEL(1) = 0;
+  223: 	REG_GPIO_OE(3) |= 0x02;
+000A8A 908081            MOV     DPTR,#08081H
+000A8D E4                CLR     A
+000A8E F0                MOVX    @DPTR,A
+  224: 	REG_GPIO_OUT(3) |= 0x02;
+000A8F 908073            MOV     DPTR,#08073H
+000A92 E0                MOVX    A,@DPTR
+000A93 4402              ORL     A,#02H
+000A95 F0                MOVX    @DPTR,A
+  225: }
+000A96 908077            MOV     DPTR,#08077H
+000A99 E0                MOVX    A,@DPTR
+000A9A 4402              ORL     A,#02H
+000A9C F0                MOVX    @DPTR,A
+  226: 
+000A9D 22                RET     
+----- FUNCTION Sensor_spi_disable (END) -------
+
+
+----- FUNCTION SPI_TwReset (BEGIN) -----
+ FILE: 'sensor.c'
+   67: void SPI_TwReset()
+   68: {
+   69: 	u8_t sensorId = 0;
+   70: 	REG_GPIO_SEL(1) = 1;
+000A9E E4                CLR     A
+000A9F 901C22            MOV     DPTR,#sensorId
+000AA2 F0                MOVX    @DPTR,A
+   71: 	g_variable.read_sensor_count = 0;
+000AA3 908081            MOV     DPTR,#08081H
+000AA6 04                INC     A
+000AA7 F0                MOVX    @DPTR,A
+   72: 	while (1) 
+000AA8 E4                CLR     A
+000AA9 904EF0            MOV     DPTR,#g_variable+045H
+000AAC F0                MOVX    @DPTR,A
+000AAD         ?C0001?SENSOR:
+   73: 	{
+   74: 		g_variable.read_sensor_count++;
+   75: 		if(g_variable.read_sensor_count >= 6)
+000AAD 904EF0            MOV     DPTR,#g_variable+045H
+000AB0 E0                MOVX    A,@DPTR
+000AB1 04                INC     A
+000AB2 F0                MOVX    @DPTR,A
+   76: 		{
+000AB3 E0                MOVX    A,@DPTR
+000AB4 C3                CLR     C
+000AB5 9406              SUBB    A,#06H
+000AB7 4003              JC      ?C0003?SENSOR
+   77: 			SPI_Initialize();
+   78: 		}
+000AB9 1213EA            LCALL   SPI_Initialize
+   79: 		sensorId = SPI_ReadSensor(0) ;
+000ABC         ?C0003?SENSOR:
+   80: 		if (( sensorId == PIXART_ID) ||(sensorId == FCT3065_ID))
+000ABC E4                CLR     A
+000ABD FF                MOV     R7,A
+000ABE 120721            LCALL   _SPI_ReadSensor
+000AC1 901C22            MOV     DPTR,#sensorId
+000AC4 EF                MOV     A,R7
+000AC5 F0                MOVX    @DPTR,A
+   81: 			break;
+000AC6 6430              XRL     A,#030H
+000AC8 6027              JZ      ?C0006?SENSOR
+000ACA E0                MOVX    A,@DPTR
+000ACB 6431              XRL     A,#031H
+000ACD 6022              JZ      ?C0006?SENSOR
+   82: 		REG_GPIO_SEL(1) = 0;
+000ACF         ?C0004?SENSOR:
+   83: 		REG_GPIO_OE(3) |= 0x02;
+000ACF 908081            MOV     DPTR,#08081H
+000AD2 E4                CLR     A
+000AD3 F0                MOVX    @DPTR,A
+   84: 		REG_GPIO_OUT(3) &= 0xfd;
+000AD4 908073            MOV     DPTR,#08073H
+000AD7 E0                MOVX    A,@DPTR
+000AD8 4402              ORL     A,#02H
+000ADA F0                MOVX    @DPTR,A
+   85: 		REG_GPIO_OE(3) |= 0x02;
+000ADB 908077            MOV     DPTR,#08077H
+000ADE E0                MOVX    A,@DPTR
+000ADF 54FD              ANL     A,#0FDH
+000AE1 F0                MOVX    @DPTR,A
+   86: 		REG_GPIO_SEL(1) = 1;
+000AE2 908073            MOV     DPTR,#08073H
+000AE5 E0                MOVX    A,@DPTR
+000AE6 4402              ORL     A,#02H
+000AE8 F0                MOVX    @DPTR,A
+   87: 	} 
+000AE9 908081            MOV     DPTR,#08081H
+000AEC 7401              MOV     A,#01H
+000AEE F0                MOVX    @DPTR,A
+   88: }
+000AEF 80BC              SJMP    ?C0001?SENSOR
+   89: 
+000AF1         ?C0006?SENSOR:
+000AF1 22                RET     
+----- FUNCTION SPI_TwReset (END) -------
+
+
+----- FUNCTION sensorPowerDown (BEGIN) -----
+ FILE: 'sensor.c'
+  227: void sensorPowerDown()
+  228: {
+  229: 	u8_t config = 0;
+  230: 	SPI_TwReset();
+;---- Variable 'config' assigned to Register 'R7' ----
+000AF2 E4                CLR     A
+000AF3 FF                MOV     R7,A
+  231: 	config = SPI_ReadSensor(0x06) |0x08;
+000AF4 519E              ACALL   SPI_TwReset
+  232: 	SPI_WriteSensor(config, 0x06);		//sensor Power down
+000AF6 7F06              MOV     R7,#06H
+000AF8 120721            LCALL   _SPI_ReadSensor
+000AFB EF                MOV     A,R7
+000AFC 4408              ORL     A,#08H
+000AFE FF                MOV     R7,A
+  233: 	REG_GPIO_SEL(1) = 0;
+000AFF 7D06              MOV     R5,#06H
+000B01 1204DA            LCALL   _SPI_WriteSensor
+  234: 	GPIO_SetInput(25, 0);
+000B04 908081            MOV     DPTR,#08081H
+000B07 E4                CLR     A
+000B08 F0                MOVX    @DPTR,A
+  235: 	GPIO_SetInput(26, 0);
+000B09 C206              CLR     ?_GPIO_SetInput?BIT
+000B0B 7F19              MOV     R7,#019H
+000B0D 31A7              ACALL   _GPIO_SetInput
+  236: }
+000B0F C206              CLR     ?_GPIO_SetInput?BIT
+000B11 7F1A              MOV     R7,#01AH
+000B13 21A7              AJMP    _GPIO_SetInput
+----- FUNCTION sensorPowerDown (END) -------
+
+
+----- FUNCTION _GPIO_FlipOutBit (BEGIN) -----
+ FILE: 'gpio.c'
+  104: void GPIO_FlipOutBit(u8_t gpio_num)
+  105: {
+000B15 901C1D            MOV     DPTR,#gpio_num
+000B18 EF                MOV     A,R7
+000B19 F0                MOVX    @DPTR,A
+  106: 	bool st = gpioGetBit(gpio_num, &REG_GPIO_OUT(0));
+  107: 	GPIO_Setout(gpio_num, ~st);
+000B1A 7B01              MOV     R3,#01H
+000B1C 7A80              MOV     R2,#080H
+000B1E 7974              MOV     R1,#074H
+000B20 1123              ACALL   _gpioGetBit
+000B22 920A              MOV     st,C
+  108: }
+000B24 901C1D            MOV     DPTR,#gpio_num
+000B27 E0                MOVX    A,@DPTR
+000B28 FF                MOV     R7,A
+000B29 A20A              MOV     C,st
+000B2B B3                CPL     C
+000B2C 9202              MOV     ?_GPIO_Setout?BIT,C
+000B2E 415B              AJMP    _GPIO_Setout
+----- FUNCTION _GPIO_FlipOutBit (END) -------
+
+
+----- FUNCTION mouseLKeyCheck (BEGIN) -----
+ FILE: 'sys.c'
+  284: static u8_t mouseLKeyCheck()
+  285: {
+  286: 	GPIO_SetOutput(Timer_div_io, 1);
+  287: 	g_variable.lKeyTemp <<=1;
+000B30 D207              SETB    ?_GPIO_SetOutput?BIT
+000B32 7F07              MOV     R7,#07H
+000B34 11C6              ACALL   _GPIO_SetOutput
+  288: 	g_variable.lKeyTemp |= !GPIO_GetInputStatus(KS_BL_GPIO);
+000B36 904EBA            MOV     DPTR,#g_variable+0FH
+000B39 E0                MOVX    A,@DPTR
+000B3A FF                MOV     R7,A
+000B3B 25E0              ADD     A,ACC
+000B3D F0                MOVX    @DPTR,A
+  289: 	if (g_variable.lKeyTemp&0x01)
+000B3E E0                MOVX    A,@DPTR
+000B3F FF                MOV     R7,A
+000B40 C007              PUSH    AR7
+000B42 7F04              MOV     R7,#04H
+000B44 111D              ACALL   _GPIO_GetInputStatus
+000B46 4004              JC      ?C0019?SYS
+000B48 7E01              MOV     R6,#01H
+000B4A 8002              SJMP    ?C0020?SYS
+000B4C         ?C0019?SYS:
+000B4C 7E00              MOV     R6,#00H
+000B4E         ?C0020?SYS:
+000B4E D0E0              POP     ACC
+000B50 4E                ORL     A,R6
+000B51 904EBA            MOV     DPTR,#g_variable+0FH
+000B54 F0                MOVX    @DPTR,A
+  290: 	{
+000B55 30E006            JNB     ACC.0,?C0024?SYS
+  291: 		g_variable.wheelTimer= 2;
+  292: 	}
+000B58 904EB7            MOV     DPTR,#g_variable+0CH
+000B5B 7402              MOV     A,#02H
+000B5D F0                MOVX    @DPTR,A
+  293: 	do
+000B5E         ?C0024?SYS:
+  294: 	{ 
+  295: 		if((g_variable.lKeyTemp & 0x07) == 0x07)
+000B5E 904EBA            MOV     DPTR,#g_variable+0FH
+000B61 E0                MOVX    A,@DPTR
+000B62 5407              ANL     A,#07H
+000B64 FF                MOV     R7,A
+000B65 BF0706            CJNE    R7,#07H,?C0025?SYS
+  296: 		{
+  297: 			g_variable.lKey = 1;
+000B68 A3                INC     DPTR
+000B69 7401              MOV     A,#01H
+000B6B F0                MOVX    @DPTR,A
+  298: 			break;
+000B6C 8007              SJMP    ?C0023?SYS
+  299: 		}
+000B6E         ?C0025?SYS:
+  300: 		if((g_variable.lKeyTemp & 0x07) == 0x00)
+000B6E EF                MOV     A,R7
+000B6F 7004              JNZ     ?C0023?SYS
+  301: 		{
+  302: 			g_variable.lKey = 0;
+000B71 904EBB            MOV     DPTR,#g_variable+010H
+000B74 F0                MOVX    @DPTR,A
+  303: 			break;
+  304: 		}
+  305: 	}while(0);
+000B75         ?C0023?SYS:
+  306: 	return g_variable.lKey;
+000B75 904EBB            MOV     DPTR,#g_variable+010H
+000B78 E0                MOVX    A,@DPTR
+000B79 FF                MOV     R7,A
+  307: }
+000B7A 22                RET     
+----- FUNCTION mouseLKeyCheck (END) -------
+
+
+----- FUNCTION mouseKeyDetect (BEGIN) -----
+ FILE: 'sys.c'
+  500: void mouseKeyDetect()
+  501: {
+  502: 	u8_t buttonLeft = 0,buttonRight = 0,buttonMiddle = 0,buttonBack=0,buttonForward=0;
+  503: 	buttonLeft = mouseLKeyCheck();
+000B7B E4                CLR     A
+000B7C 901BED            MOV     DPTR,#buttonLeft
+000B7F F0                MOVX    @DPTR,A
+000B80 A3                INC     DPTR
+000B81 F0                MOVX    @DPTR,A
+000B82 A3                INC     DPTR
+000B83 F0                MOVX    @DPTR,A
+000B84 A3                INC     DPTR
+000B85 F0                MOVX    @DPTR,A
+000B86 A3                INC     DPTR
+000B87 F0                MOVX    @DPTR,A
+  504: 	buttonMiddle = mouseMKeyCheck();
+000B88 7130              ACALL   mouseLKeyCheck
+000B8A 901BED            MOV     DPTR,#buttonLeft
+000B8D EF                MOV     A,R7
+000B8E F0                MOVX    @DPTR,A
+  505: 	buttonRight = mouseRKeyCheck();
+000B8F 71DC              ACALL   mouseMKeyCheck
+000B91 901BEF            MOV     DPTR,#buttonMiddle
+000B94 EF                MOV     A,R7
+000B95 F0                MOVX    @DPTR,A
+  506: 	buttonBack = mouseBkKeyCheck();
+000B96 9127              ACALL   mouseRKeyCheck
+000B98 901BEE            MOV     DPTR,#buttonRight
+000B9B EF                MOV     A,R7
+000B9C F0                MOVX    @DPTR,A
+  507: 	buttonForward = mouseFwKeyCheck();
+000B9D 1162              ACALL   mouseBkKeyCheck
+000B9F 901BF0            MOV     DPTR,#buttonBack
+000BA2 EF                MOV     A,R7
+000BA3 F0                MOVX    @DPTR,A
+  508: 
+000BA4 3143              ACALL   mouseFwKeyCheck
+000BA6 901BF1            MOV     DPTR,#buttonForward
+000BA9 EF                MOV     A,R7
+000BAA F0                MOVX    @DPTR,A
+  509: 	mouseDpiKeyCheck();
+000BAB 9172              ACALL   mouseDpiKeyCheck
+  510: 	g_variable.keyDetect = buttonLeft |buttonRight<<1|buttonMiddle<<2|buttonBack<<3|buttonForward<<4;
+000BAD 901BEE            MOV     DPTR,#buttonRight
+000BB0 E0                MOVX    A,@DPTR
+000BB1 FF                MOV     R7,A
+000BB2 25E0              ADD     A,ACC
+000BB4 FF                MOV     R7,A
+000BB5 901BED            MOV     DPTR,#buttonLeft
+000BB8 E0                MOVX    A,@DPTR
+000BB9 4F                ORL     A,R7
+000BBA FF                MOV     R7,A
+000BBB 901BEF            MOV     DPTR,#buttonMiddle
+000BBE E0                MOVX    A,@DPTR
+000BBF FE                MOV     R6,A
+000BC0 25E0              ADD     A,ACC
+000BC2 25E0              ADD     A,ACC
+000BC4 4F                ORL     A,R7
+000BC5 FF                MOV     R7,A
+000BC6 A3                INC     DPTR
+000BC7 E0                MOVX    A,@DPTR
+000BC8 FE                MOV     R6,A
+000BC9 33                RLC     A
+000BCA 33                RLC     A
+000BCB 33                RLC     A
+000BCC 54F8              ANL     A,#0F8H
+000BCE 4F                ORL     A,R7
+000BCF FF                MOV     R7,A
+000BD0 A3                INC     DPTR
+000BD1 E0                MOVX    A,@DPTR
+000BD2 FE                MOV     R6,A
+000BD3 C4                SWAP    A
+000BD4 54F0              ANL     A,#0F0H
+000BD6 4F                ORL     A,R7
+000BD7 904EDD            MOV     DPTR,#g_variable+032H
+000BDA F0                MOVX    @DPTR,A
+  511: }
+000BDB 22                RET     
+----- FUNCTION mouseKeyDetect (END) -------
+
+
+----- FUNCTION mouseMKeyCheck (BEGIN) -----
+ FILE: 'sys.c'
+  309: static u8_t mouseMKeyCheck()
+  310: {
+  311: 	GPIO_SetOutput(Timer_div_io, 1);
+  312: 	g_variable.mKeyTemp <<=1;
+000BDC D207              SETB    ?_GPIO_SetOutput?BIT
+000BDE 7F07              MOV     R7,#07H
+000BE0 11C6              ACALL   _GPIO_SetOutput
+  313: 	g_variable.mKeyTemp |= !GPIO_GetInputStatus(KS_BM_GPIO);
+000BE2 904EBC            MOV     DPTR,#g_variable+011H
+000BE5 E0                MOVX    A,@DPTR
+000BE6 FF                MOV     R7,A
+000BE7 25E0              ADD     A,ACC
+000BE9 F0                MOVX    @DPTR,A
+  314: 	if (g_variable.mKeyTemp&0x01) 
+000BEA E0                MOVX    A,@DPTR
+000BEB FF                MOV     R7,A
+000BEC C007              PUSH    AR7
+000BEE 7F17              MOV     R7,#017H
+000BF0 111D              ACALL   _GPIO_GetInputStatus
+000BF2 4004              JC      ?C0028?SYS
+000BF4 7E01              MOV     R6,#01H
+000BF6 8002              SJMP    ?C0029?SYS
+000BF8         ?C0028?SYS:
+000BF8 7E00              MOV     R6,#00H
+000BFA         ?C0029?SYS:
+000BFA D0E0              POP     ACC
+000BFC 4E                ORL     A,R6
+000BFD 904EBC            MOV     DPTR,#g_variable+011H
+000C00 F0                MOVX    @DPTR,A
+  315: 	{
+000C01 30E006            JNB     ACC.0,?C0033?SYS
+  316: 		g_variable.wheelTimer= 2 ;
+  317: 	}
+000C04 904EB7            MOV     DPTR,#g_variable+0CH
+000C07 7402              MOV     A,#02H
+000C09 F0                MOVX    @DPTR,A
+  318: 	do 
+000C0A         ?C0033?SYS:
+  319: 	{ 
+  320: 		if((g_variable.mKeyTemp & 0x07) == 0x07) 
+000C0A 904EBC            MOV     DPTR,#g_variable+011H
+000C0D E0                MOVX    A,@DPTR
+000C0E 5407              ANL     A,#07H
+000C10 FF                MOV     R7,A
+000C11 BF0706            CJNE    R7,#07H,?C0034?SYS
+  321: 		{
+  322: 			g_variable.mKey = 1;
+000C14 A3                INC     DPTR
+000C15 7401              MOV     A,#01H
+000C17 F0                MOVX    @DPTR,A
+  323: 			break;
+000C18 8007              SJMP    ?C0032?SYS
+  324: 		}
+000C1A         ?C0034?SYS:
+  325: 		if((g_variable.mKeyTemp & 0x07) == 0x00) 
+000C1A EF                MOV     A,R7
+000C1B 7004              JNZ     ?C0032?SYS
+  326: 		{
+  327: 			g_variable.mKey = 0;
+000C1D 904EBD            MOV     DPTR,#g_variable+012H
+000C20 F0                MOVX    @DPTR,A
+  328: 			break;
+  329: 		}
+  330: 	}while(0);
+000C21         ?C0032?SYS:
+  331: 	return g_variable.mKey;
+000C21 904EBD            MOV     DPTR,#g_variable+012H
+000C24 E0                MOVX    A,@DPTR
+000C25 FF                MOV     R7,A
+  332: }
+000C26 22                RET     
+----- FUNCTION mouseMKeyCheck (END) -------
+
+
+----- FUNCTION mouseRKeyCheck (BEGIN) -----
+ FILE: 'sys.c'
+  335: static u8_t mouseRKeyCheck()
+  336: {
+  337: 	GPIO_SetOutput(Timer_div_io, 1);
+  338: 	g_variable.rKeyTemp <<=1;
+000C27 D207              SETB    ?_GPIO_SetOutput?BIT
+000C29 7F07              MOV     R7,#07H
+000C2B 11C6              ACALL   _GPIO_SetOutput
+  339: 	g_variable.rKeyTemp |= !GPIO_GetInputStatus(KS_BR_GPIO);
+000C2D 904EBE            MOV     DPTR,#g_variable+013H
+000C30 E0                MOVX    A,@DPTR
+000C31 FF                MOV     R7,A
+000C32 25E0              ADD     A,ACC
+000C34 F0                MOVX    @DPTR,A
+  340: 	if (g_variable.rKeyTemp&0x01) 
+000C35 E0                MOVX    A,@DPTR
+000C36 FF                MOV     R7,A
+000C37 C007              PUSH    AR7
+000C39 7F1B              MOV     R7,#01BH
+000C3B 111D              ACALL   _GPIO_GetInputStatus
+000C3D 4004              JC      ?C0037?SYS
+000C3F 7E01              MOV     R6,#01H
+000C41 8002              SJMP    ?C0038?SYS
+000C43         ?C0037?SYS:
+000C43 7E00              MOV     R6,#00H
+000C45         ?C0038?SYS:
+000C45 D0E0              POP     ACC
+000C47 4E                ORL     A,R6
+000C48 904EBE            MOV     DPTR,#g_variable+013H
+000C4B F0                MOVX    @DPTR,A
+  341: 	{
+000C4C 30E006            JNB     ACC.0,?C0042?SYS
+  342: 		g_variable.wheelTimer= 2 ;
+  343: 	}
+000C4F 904EB7            MOV     DPTR,#g_variable+0CH
+000C52 7402              MOV     A,#02H
+000C54 F0                MOVX    @DPTR,A
+  344: 	do 
+000C55         ?C0042?SYS:
+  345: 	{ 
+  346: 		if((g_variable.rKeyTemp & 0x07) == 0x07) 
+000C55 904EBE            MOV     DPTR,#g_variable+013H
+000C58 E0                MOVX    A,@DPTR
+000C59 5407              ANL     A,#07H
+000C5B FF                MOV     R7,A
+000C5C BF0706            CJNE    R7,#07H,?C0043?SYS
+  347: 		{
+  348: 			g_variable.rKey = 1;
+000C5F A3                INC     DPTR
+000C60 7401              MOV     A,#01H
+000C62 F0                MOVX    @DPTR,A
+  349: 			break;
+000C63 8007              SJMP    ?C0041?SYS
+  350: 		}
+000C65         ?C0043?SYS:
+  351: 		if((g_variable.rKeyTemp & 0x07) == 0x00) 
+000C65 EF                MOV     A,R7
+000C66 7004              JNZ     ?C0041?SYS
+  352: 		{
+  353: 			g_variable.rKey = 0;
+000C68 904EBF            MOV     DPTR,#g_variable+014H
+000C6B F0                MOVX    @DPTR,A
+  354: 			break;
+  355: 		}
+  356: 	}while(0);
+000C6C         ?C0041?SYS:
+  357: 	return g_variable.rKey;
+000C6C 904EBF            MOV     DPTR,#g_variable+014H
+000C6F E0                MOVX    A,@DPTR
+000C70 FF                MOV     R7,A
+  358: }
+000C71 22                RET     
+----- FUNCTION mouseRKeyCheck (END) -------
+
+
+----- FUNCTION mouseDpiKeyCheck (BEGIN) -----
+ FILE: 'sys.c'
+  416: void mouseDpiKeyCheck(void)
+  417: {
+  418: 	g_variable.dpiKeyTemp <<=1;
+  419: 	g_variable.dpiKeyTemp |= !GPIO_GetInputStatus(CPI_GPIO);
+000C72 904ECC            MOV     DPTR,#g_variable+021H
+000C75 E0                MOVX    A,@DPTR
+000C76 FF                MOV     R7,A
+000C77 25E0              ADD     A,ACC
+000C79 F0                MOVX    @DPTR,A
+  420: 	if (g_variable.dpiKeyTemp&0x01)	g_variable.wheelTimer= 2 ;
+000C7A E0                MOVX    A,@DPTR
+000C7B FF                MOV     R7,A
+000C7C C007              PUSH    AR7
+000C7E 7F06              MOV     R7,#06H
+000C80 111D              ACALL   _GPIO_GetInputStatus
+000C82 4004              JC      ?C0066?SYS
+000C84 7E01              MOV     R6,#01H
+000C86 8002              SJMP    ?C0067?SYS
+000C88         ?C0066?SYS:
+000C88 7E00              MOV     R6,#00H
+000C8A         ?C0067?SYS:
+000C8A D0E0              POP     ACC
+000C8C 4E                ORL     A,R6
+000C8D 904ECC            MOV     DPTR,#g_variable+021H
+000C90 F0                MOVX    @DPTR,A
+  421: 	if((g_variable.dpiKeyTemp & 0xff) == 0x07)  
+000C91 30E006            JNB     ACC.0,?C0068?SYS
+000C94 904EB7            MOV     DPTR,#g_variable+0CH
+000C97 7402              MOV     A,#02H
+000C99 F0                MOVX    @DPTR,A
+000C9A         ?C0068?SYS:
+  422: 	{
+000C9A 904ECC            MOV     DPTR,#g_variable+021H
+000C9D E0                MOVX    A,@DPTR
+000C9E 6407              XRL     A,#07H
+000CA0 7028              JNZ     ?C0071?SYS
+  423: 		g_variable.dpiCount++;
+  424: 		g_variable.dpiCount &= 0x03;
+000CA2 904ECB            MOV     DPTR,#g_variable+020H
+000CA5 E0                MOVX    A,@DPTR
+000CA6 04                INC     A
+000CA7 F0                MOVX    @DPTR,A
+  425: 		if (g_variable.dpiCount == 0 ) g_variable.dpiCount = 1;
+000CA8 E0                MOVX    A,@DPTR
+000CA9 5403              ANL     A,#03H
+000CAB F0                MOVX    @DPTR,A
+  426: 		g_variable.dpiLedFlipTime = g_variable.dpiCount;
+000CAC 7002              JNZ     ?C0070?SYS
+000CAE 04                INC     A
+000CAF F0                MOVX    @DPTR,A
+000CB0         ?C0070?SYS:
+  427: 		dpiWriteInSensor();
+000CB0 904ECB            MOV     DPTR,#g_variable+020H
+000CB3 E0                MOVX    A,@DPTR
+000CB4 904ECD            MOV     DPTR,#g_variable+022H
+000CB7 F0                MOVX    @DPTR,A
+  428: 		IIC_WriteBlock(EEPROM_DPI_ADDR, 1,&g_variable.dpiCount);
+000CB8 B1C8              ACALL   dpiWriteInSensor
+  429: 	}
+000CBA 7B01              MOV     R3,#01H
+000CBC 7A4E              MOV     R2,#HIGH g_variable+020H
+000CBE 79CB              MOV     R1,#LOW g_variable+020H
+000CC0 7D01              MOV     R5,#01H
+000CC2 7C00              MOV     R4,#00H
+000CC4 7FA8              MOV     R7,#0A8H
+000CC6 7E3F              MOV     R6,#03FH
+000CC8 91CB              ACALL   _IIC_WriteBlock
+  430: }
+  431: 
+000CCA         ?C0071?SYS:
+000CCA 22                RET     
+----- FUNCTION mouseDpiKeyCheck (END) -------
+
+
+----- FUNCTION _IIC_WriteBlock (BEGIN) -----
+ FILE: 'iic.c'
+   50: void IIC_WriteBlock(u16_t addr, u16_t len, u8_t* pbuff)
+   51: {
+000CCB 901BC9            MOV     DPTR,#addr
+000CCE EE                MOV     A,R6
+000CCF F0                MOVX    @DPTR,A
+000CD0 A3                INC     DPTR
+000CD1 EF                MOV     A,R7
+000CD2 F0                MOVX    @DPTR,A
+000CD3 A3                INC     DPTR
+000CD4 EC                MOV     A,R4
+000CD5 F0                MOVX    @DPTR,A
+000CD6 A3                INC     DPTR
+000CD7 ED                MOV     A,R5
+000CD8 F0                MOVX    @DPTR,A
+000CD9 A3                INC     DPTR
+000CDA EB                MOV     A,R3
+000CDB F0                MOVX    @DPTR,A
+000CDC A3                INC     DPTR
+000CDD EA                MOV     A,R2
+000CDE F0                MOVX    @DPTR,A
+000CDF A3                INC     DPTR
+000CE0 E9                MOV     A,R1
+000CE1 F0                MOVX    @DPTR,A
+   52: 	u16_t cris,curr_len;
+000CE2         ?C0007?IIC:
+   53: 	while (len)
+000CE2 901BCB            MOV     DPTR,#len
+000CE5 E0                MOVX    A,@DPTR
+000CE6 7002              JNZ     ?C0012?IIC
+000CE8 A3                INC     DPTR
+000CE9 E0                MOVX    A,@DPTR
+000CEA         ?C0012?IIC:
+000CEA 7002              JNZ     $ + 4H
+000CEC A17B              AJMP    ?C0011?IIC
+   54: 	{
+   55: 		cris = (addr|(EEP_PAZE_SIZE-1)) +1;
+000CEE 901BC9            MOV     DPTR,#addr
+000CF1 E0                MOVX    A,@DPTR
+000CF2 FE                MOV     R6,A
+000CF3 A3                INC     DPTR
+000CF4 E0                MOVX    A,@DPTR
+000CF5 FF                MOV     R7,A
+000CF6 440F              ORL     A,#0FH
+000CF8 2401              ADD     A,#01H
+000CFA FD                MOV     R5,A
+000CFB E4                CLR     A
+000CFC 3E                ADDC    A,R6
+000CFD FC                MOV     R4,A
+;---- Variable 'cris' assigned to Register 'R4/R5' ----
+   56: 		curr_len = cris - addr;
+000CFE C3                CLR     C
+000CFF ED                MOV     A,R5
+000D00 9F                SUBB    A,R7
+000D01 FF                MOV     R7,A
+000D02 EC                MOV     A,R4
+000D03 9E                SUBB    A,R6
+000D04 FE                MOV     R6,A
+000D05 901BD0            MOV     DPTR,#curr_len
+000D08 F0                MOVX    @DPTR,A
+000D09 A3                INC     DPTR
+000D0A EF                MOV     A,R7
+000D0B F0                MOVX    @DPTR,A
+   57: 		curr_len = min(curr_len,len);
+000D0C 901BCB            MOV     DPTR,#len
+000D0F E0                MOVX    A,@DPTR
+000D10 FC                MOV     R4,A
+000D11 A3                INC     DPTR
+000D12 E0                MOVX    A,@DPTR
+000D13 FD                MOV     R5,A
+000D14 D3                SETB    C
+000D15 9F                SUBB    A,R7
+000D16 EC                MOV     A,R4
+000D17 9E                SUBB    A,R6
+000D18 400A              JC      ?C0009?IIC
+000D1A 901BD0            MOV     DPTR,#curr_len
+000D1D E0                MOVX    A,@DPTR
+000D1E FE                MOV     R6,A
+000D1F A3                INC     DPTR
+000D20 E0                MOVX    A,@DPTR
+000D21 FF                MOV     R7,A
+000D22 8004              SJMP    ?C0010?IIC
+000D24         ?C0009?IIC:
+000D24 AE04              MOV     R6,AR4
+000D26 AF05              MOV     R7,AR5
+000D28         ?C0010?IIC:
+000D28 901BD0            MOV     DPTR,#curr_len
+000D2B EE                MOV     A,R6
+000D2C F0                MOVX    @DPTR,A
+000D2D FC                MOV     R4,A
+000D2E A3                INC     DPTR
+000D2F EF                MOV     A,R7
+000D30 F0                MOVX    @DPTR,A
+000D31 FD                MOV     R5,A
+   58: 		len -= curr_len;
+000D32 C3                CLR     C
+000D33 901BCC            MOV     DPTR,#len+01H
+000D36 E0                MOVX    A,@DPTR
+000D37 9D                SUBB    A,R5
+000D38 F0                MOVX    @DPTR,A
+000D39 901BCB            MOV     DPTR,#len
+000D3C E0                MOVX    A,@DPTR
+000D3D 9C                SUBB    A,R4
+000D3E F0                MOVX    @DPTR,A
+   59: 		IIC_write(addr,curr_len,pbuff);
+000D3F 901BC9            MOV     DPTR,#addr
+000D42 E0                MOVX    A,@DPTR
+000D43 FE                MOV     R6,A
+000D44 A3                INC     DPTR
+000D45 E0                MOVX    A,@DPTR
+000D46 FF                MOV     R7,A
+000D47 901BCD            MOV     DPTR,#pbuff
+000D4A E0                MOVX    A,@DPTR
+000D4B FB                MOV     R3,A
+000D4C A3                INC     DPTR
+000D4D E0                MOVX    A,@DPTR
+000D4E FA                MOV     R2,A
+000D4F A3                INC     DPTR
+000D50 E0                MOVX    A,@DPTR
+000D51 F9                MOV     R1,A
+000D52 121795            LCALL   _IIC_write
+   60: 		Delay1ms(10);
+000D55 7F0A              MOV     R7,#0AH
+000D57 7E00              MOV     R6,#00H
+000D59 120353            LCALL   _Delay1ms
+   61: 		pbuff += curr_len;
+000D5C 901BD0            MOV     DPTR,#curr_len
+000D5F E0                MOVX    A,@DPTR
+000D60 FE                MOV     R6,A
+000D61 A3                INC     DPTR
+000D62 E0                MOVX    A,@DPTR
+000D63 FF                MOV     R7,A
+000D64 901BCE            MOV     DPTR,#pbuff+01H
+000D67 EE                MOV     A,R6
+000D68 8FF0              MOV     B,R7
+000D6A 120187            LCALL   ?C?IILDX
+   62: 		addr += curr_len;
+000D6D 901BCA            MOV     DPTR,#addr+01H
+000D70 E0                MOVX    A,@DPTR
+000D71 2F                ADD     A,R7
+000D72 F0                MOVX    @DPTR,A
+000D73 901BC9            MOV     DPTR,#addr
+000D76 E0                MOVX    A,@DPTR
+000D77 3E                ADDC    A,R6
+000D78 F0                MOVX    @DPTR,A
+   63: 	};
+000D79 81E2              AJMP    ?C0007?IIC
+   64: 	
+   65: }
+000D7B         ?C0011?IIC:
+000D7B 22                RET     
+----- FUNCTION _IIC_WriteBlock (END) -------
+
+
+----- FUNCTION leAddrRandomCntInit (BEGIN) -----
+ FILE: 'sys.c'
+  855: void leAddrRandomCntInit()
+  856: {	
+  857: 	u8_t leAddrE2WP = 0;
+  858: 	IIC_Read(EEPROM_BLE_ADDR_RANDOM_CNT_WP, 1, &leAddrE2WP);
+000D7C E4                CLR     A
+000D7D 901C19            MOV     DPTR,#leAddrE2WP
+000D80 F0                MOVX    @DPTR,A
+  859: 	if(leAddrE2WP == 0xff)
+000D81 7B01              MOV     R3,#01H
+000D83 7A1C              MOV     R2,#HIGH leAddrE2WP
+000D85 7919              MOV     R1,#LOW leAddrE2WP
+000D87 7D01              MOV     R5,#01H
+000D89 FC                MOV     R4,A
+000D8A 7FAC              MOV     R7,#0ACH
+000D8C 7E3F              MOV     R6,#03FH
+000D8E D1D1              ACALL   _IIC_Read
+  860: 	{
+000D90 901C19            MOV     DPTR,#leAddrE2WP
+000D93 E0                MOVX    A,@DPTR
+000D94 B4FF30            CJNE    A,#0FFH,?C0131?SYS
+  861: 		g_variable.leAddrRandomCnt = ADC_Get0vBase();
+  862: 		IIC_WriteBlock(EEPROM_BLE_ADDR_RANDOM_CNT, 2, (u8_t *)&g_variable.leAddrRandomCnt);
+000D97 F1C9              ACALL   ADC_Get0vBase
+000D99 904F01            MOV     DPTR,#g_variable+056H
+000D9C EE                MOV     A,R6
+000D9D F0                MOVX    @DPTR,A
+000D9E A3                INC     DPTR
+000D9F EF                MOV     A,R7
+000DA0 F0                MOVX    @DPTR,A
+  863: 		leAddrE2WP = 0x5a;
+000DA1 7B01              MOV     R3,#01H
+000DA3 7A4F              MOV     R2,#HIGH g_variable+056H
+000DA5 7901              MOV     R1,#LOW g_variable+056H
+000DA7 7D02              MOV     R5,#02H
+000DA9 7C00              MOV     R4,#00H
+000DAB 7FAA              MOV     R7,#0AAH
+000DAD 7E3F              MOV     R6,#03FH
+000DAF 91CB              ACALL   _IIC_WriteBlock
+  864: 		IIC_WriteBlock(EEPROM_BLE_ADDR_RANDOM_CNT_WP, 1, &leAddrE2WP);
+000DB1 901C19            MOV     DPTR,#leAddrE2WP
+000DB4 745A              MOV     A,#05AH
+000DB6 F0                MOVX    @DPTR,A
+  865: 	}
+000DB7 7B01              MOV     R3,#01H
+000DB9 7A1C              MOV     R2,#HIGH leAddrE2WP
+000DBB 7919              MOV     R1,#LOW leAddrE2WP
+000DBD 7D01              MOV     R5,#01H
+000DBF 7C00              MOV     R4,#00H
+000DC1 7FAC              MOV     R7,#0ACH
+000DC3 7E3F              MOV     R6,#03FH
+000DC5 91CB              ACALL   _IIC_WriteBlock
+  866: }
+  867: 
+000DC7         ?C0131?SYS:
+000DC7 22                RET     
+----- FUNCTION leAddrRandomCntInit (END) -------
+
+
+----- FUNCTION dpiWriteInSensor (BEGIN) -----
+ FILE: 'sys.c'
+  220: void dpiWriteInSensor()
+  221: {
+  222: 	SPI_TwReset();
+  223: #if MOUSE_3205_ENABLE
+000DC8 519E              ACALL   SPI_TwReset
+  224: 	if((g_variable.sensorType == PAW3205_ID) ||(g_variable.sensorType == PAW3204UL_ID)) 
+000DCA 904EC9            MOV     DPTR,#g_variable+01EH
+000DCD E0                MOVX    A,@DPTR
+000DCE FF                MOV     R7,A
+000DCF 64D0              XRL     A,#0D0H
+000DD1 6004              JZ      ?C0005?SYS
+000DD3 EF                MOV     A,R7
+000DD4 B4D10B            CJNE    A,#0D1H,?C0004?SYS
+000DD7         ?C0005?SYS:
+  225: 	{
+  226: 		SPI_WriteSensor((g_variable.dpiCount+1), SENSOR_POWER);
+000DD7 904ECB            MOV     DPTR,#g_variable+020H
+000DDA E0                MOVX    A,@DPTR
+000DDB 04                INC     A
+000DDC FF                MOV     R7,A
+000DDD 7D06              MOV     R5,#06H
+000DDF 1204DA            LCALL   _SPI_WriteSensor
+  227: 	}
+000DE2         ?C0004?SYS:
+  228: #endif
+  229: 
+  230: 	if (g_variable.sensorType == FCT3065_ID)
+000DE2 904EC9            MOV     DPTR,#g_variable+01EH
+000DE5 E0                MOVX    A,@DPTR
+000DE6 B4311A            CJNE    A,#031H,?C0006?SYS
+  231: 	{
+  232: 		if(g_variable.dpiCount == 1)
+000DE9 904ECB            MOV     DPTR,#g_variable+020H
+000DEC E0                MOVX    A,@DPTR
+000DED B40109            CJNE    A,#01H,?C0007?SYS
+  233: 			SPI_WriteSensor(0, SENSOR_POWER);
+000DF0 7D06              MOV     R5,#06H
+000DF2 E4                CLR     A
+000DF3 FF                MOV     R7,A
+000DF4 1204DA            LCALL   _SPI_WriteSensor
+000DF7 800A              SJMP    ?C0006?SYS
+000DF9         ?C0007?SYS:
+  234: 		else
+  235: 			SPI_WriteSensor(g_variable.dpiCount, SENSOR_POWER);
+000DF9 904ECB            MOV     DPTR,#g_variable+020H
+000DFC E0                MOVX    A,@DPTR
+000DFD FF                MOV     R7,A
+000DFE 7D06              MOV     R5,#06H
+000E00 1204DA            LCALL   _SPI_WriteSensor
+  236: 	}
+000E03         ?C0006?SYS:
+  237: 	
+  238: #if MOUSE_3204_ENABLE
+  239: 	if (g_variable.sensorType == PAW3204DB_ID)
+000E03 904EC9            MOV     DPTR,#g_variable+01EH
+000E06 E0                MOVX    A,@DPTR
+000E07 B4500C            CJNE    A,#050H,?C0009?SYS
+  240: 	{
+  241: 		SPI_WriteSensor((g_variable.dpiCount+3), SENSOR_POWER);
+000E0A 904ECB            MOV     DPTR,#g_variable+020H
+000E0D E0                MOVX    A,@DPTR
+000E0E 2403              ADD     A,#03H
+000E10 FF                MOV     R7,A
+000E11 7D06              MOV     R5,#06H
+000E13 1204DA            LCALL   _SPI_WriteSensor
+  242: 	}
+000E16         ?C0009?SYS:
+  243: #endif
+  244: 
+  245: #if MOUSE_8650_ENABLE
+  246: 	if (g_variable.sensorType == MA8650_ID)
+000E16 904EC9            MOV     DPTR,#g_variable+01EH
+000E19 E0                MOVX    A,@DPTR
+000E1A B45A0C            CJNE    A,#05AH,?C0010?SYS
+  247: 	{
+  248: 		SPI_WriteSensor((g_variable.dpiCount+3), SENSOR_POWER);
+000E1D 904ECB            MOV     DPTR,#g_variable+020H
+000E20 E0                MOVX    A,@DPTR
+000E21 2403              ADD     A,#03H
+000E23 FF                MOV     R7,A
+000E24 7D06              MOV     R5,#06H
+000E26 1204DA            LCALL   _SPI_WriteSensor
+  249: 	}
+000E29         ?C0010?SYS:
+  250: #endif
+  251: 
+  252: #if MOUSE_3212_ENABLE	
+  253: 	if (g_variable.sensorType == PAW3212_ID) 
+000E29 904EC9            MOV     DPTR,#g_variable+01EH
+000E2C E0                MOVX    A,@DPTR
+000E2D 6402              XRL     A,#02H
+000E2F 705D              JNZ     ?C0011?SYS
+  254: 	{
+  255: 		SPI_WriteSensor(0x5a,0x09);
+000E31 7D09              MOV     R5,#09H
+000E33 7F5A              MOV     R7,#05AH
+000E35 1204DA            LCALL   _SPI_WriteSensor
+  256: 		switch (g_variable.dpiCount)
+000E38 904ECB            MOV     DPTR,#g_variable+020H
+000E3B E0                MOVX    A,@DPTR
+000E3C 14                DEC     A
+000E3D 601A              JZ      ?C0014?SYS
+000E3F 14                DEC     A
+000E40 6027              JZ      ?C0015?SYS
+000E42 14                DEC     A
+000E43 6034              JZ      ?C0016?SYS
+000E45 2403              ADD     A,#03H
+000E47 703E              JNZ     ?C0012?SYS
+  257: 		{
+  258: 			case 0:
+000E49         ?C0013?SYS:
+  259: 				SPI_WriteSensor(PAW3212_DPI0, 0x0d);
+000E49 7D0D              MOV     R5,#0DH
+000E4B 7F15              MOV     R7,#015H
+000E4D 1204DA            LCALL   _SPI_WriteSensor
+  260: 				SPI_WriteSensor(PAW3212_DPI0, 0x0e);
+000E50 7D0E              MOV     R5,#0EH
+000E52 7F15              MOV     R7,#015H
+000E54 1204DA            LCALL   _SPI_WriteSensor
+  261: 				break;
+000E57 802E              SJMP    ?C0012?SYS
+  262: 			case 1:
+000E59         ?C0014?SYS:
+  263: 				SPI_WriteSensor(PAW3212_DPI1, 0x0d);
+000E59 7D0D              MOV     R5,#0DH
+000E5B 7F20              MOV     R7,#020H
+000E5D 1204DA            LCALL   _SPI_WriteSensor
+  264: 				SPI_WriteSensor(PAW3212_DPI1, 0x0e);
+000E60 7D0E              MOV     R5,#0EH
+000E62 7F20              MOV     R7,#020H
+000E64 1204DA            LCALL   _SPI_WriteSensor
+  265: 				break;				
+000E67 801E              SJMP    ?C0012?SYS
+  266: 			case 2:
+000E69         ?C0015?SYS:
+  267: 				SPI_WriteSensor(PAW3212_DPI2, 0x0d);
+000E69 7D0D              MOV     R5,#0DH
+000E6B 7F2A              MOV     R7,#02AH
+000E6D 1204DA            LCALL   _SPI_WriteSensor
+  268: 				SPI_WriteSensor(PAW3212_DPI2, 0x0e);
+000E70 7D0E              MOV     R5,#0EH
+000E72 7F2A              MOV     R7,#02AH
+000E74 1204DA            LCALL   _SPI_WriteSensor
+  269: 				break;
+000E77 800E              SJMP    ?C0012?SYS
+  270: 			case 3:
+000E79         ?C0016?SYS:
+  271: 				SPI_WriteSensor(PAW3212_DPI3, 0x0d);
+000E79 7D0D              MOV     R5,#0DH
+000E7B 7F3F              MOV     R7,#03FH
+000E7D 1204DA            LCALL   _SPI_WriteSensor
+  272: 				SPI_WriteSensor(PAW3212_DPI3, 0x0e);
+000E80 7D0E              MOV     R5,#0EH
+000E82 7F3F              MOV     R7,#03FH
+000E84 1204DA            LCALL   _SPI_WriteSensor
+  273: 				break;
+  274: 			default:
+  275: 				break;
+  276: 		}
+000E87         ?C0012?SYS:
+  277: 		SPI_WriteSensor(0x00,0x09);
+000E87 7D09              MOV     R5,#09H
+000E89 E4                CLR     A
+000E8A FF                MOV     R7,A
+000E8B 1204DA            LCALL   _SPI_WriteSensor
+  278: 	}
+000E8E         ?C0011?SYS:
+  279: #endif
+  280: 
+  281: 	Sensor_spi_disable();
+000E8E 418A              AJMP    Sensor_spi_disable
+  282: }
+----- FUNCTION dpiWriteInSensor (END) -------
+
+
+----- FUNCTION leADVStart (BEGIN) -----
+ FILE: 'sys.c'
+  845: void leADVStart()
+  846: {
+  847: 	IIC_Read(EEPROM_BLE_ADDR_RANDOM_CNT, 2, (u8_t *)&g_variable.leAddrRandomCnt);
+  848: 	g_variable.leAddrRandomCnt++;
+000E90 7B01              MOV     R3,#01H
+000E92 7A4F              MOV     R2,#HIGH g_variable+056H
+000E94 7901              MOV     R1,#LOW g_variable+056H
+000E96 7D02              MOV     R5,#02H
+000E98 7C00              MOV     R4,#00H
+000E9A 7FAA              MOV     R7,#0AAH
+000E9C 7E3F              MOV     R6,#03FH
+000E9E D1D1              ACALL   _IIC_Read
+  849: 	IIC_WriteBlock(EEPROM_BLE_ADDR_RANDOM_CNT, 2, (u8_t *)&g_variable.leAddrRandomCnt);
+000EA0 904F02            MOV     DPTR,#g_variable+057H
+000EA3 E0                MOVX    A,@DPTR
+000EA4 04                INC     A
+000EA5 F0                MOVX    @DPTR,A
+000EA6 7006              JNZ     ?C0189?SYS
+000EA8 904F01            MOV     DPTR,#g_variable+056H
+000EAB E0                MOVX    A,@DPTR
+000EAC 04                INC     A
+000EAD F0                MOVX    @DPTR,A
+000EAE         ?C0189?SYS:
+  850: 	m_reconnLeAddr[1] = g_variable.leAddrRandomCnt & 0xff;
+000EAE 7B01              MOV     R3,#01H
+000EB0 7A4F              MOV     R2,#HIGH g_variable+056H
+000EB2 7901              MOV     R1,#LOW g_variable+056H
+000EB4 7D02              MOV     R5,#02H
+000EB6 7C00              MOV     R4,#00H
+000EB8 7FAA              MOV     R7,#0AAH
+000EBA 7E3F              MOV     R6,#03FH
+000EBC 91CB              ACALL   _IIC_WriteBlock
+  851: 	m_reconnLeAddr[2] = g_variable.leAddrRandomCnt >> 8;
+000EBE 904F01            MOV     DPTR,#g_variable+056H
+000EC1 E0                MOVX    A,@DPTR
+000EC2 FC                MOV     R4,A
+000EC3 A3                INC     DPTR
+000EC4 E0                MOVX    A,@DPTR
+000EC5 90453F            MOV     DPTR,#m_reconnLeAddr+01H
+000EC8 F0                MOVX    @DPTR,A
+  852: 	IPC_TxControlCmd(IPC_CMD_START_ADV);
+000EC9 EC                MOV     A,R4
+000ECA A3                INC     DPTR
+000ECB F0                MOVX    @DPTR,A
+  853: }
+000ECC 7F0D              MOV     R7,#0DH
+000ECE 02074A            LJMP    _IPC_TxControlCmd
+----- FUNCTION leADVStart (END) -------
+
+
+----- FUNCTION _IIC_Read (BEGIN) -----
+ FILE: 'iic.c'
+   15: void IIC_Read(u16_t addr, u16_t len, u8_t* pbuff)
+   16: {
+000ED1 901BF2            MOV     DPTR,#len
+000ED4 EC                MOV     A,R4
+000ED5 F0                MOVX    @DPTR,A
+000ED6 A3                INC     DPTR
+000ED7 ED                MOV     A,R5
+000ED8 F0                MOVX    @DPTR,A
+000ED9 A3                INC     DPTR
+000EDA EB                MOV     A,R3
+000EDB F0                MOVX    @DPTR,A
+000EDC A3                INC     DPTR
+000EDD EA                MOV     A,R2
+000EDE F0                MOVX    @DPTR,A
+000EDF A3                INC     DPTR
+000EE0 E9                MOV     A,R1
+000EE1 F0                MOVX    @DPTR,A
+;---- Variable 'addr' assigned to Register 'R6/R7' ----
+   17: 	u16_t mem_src =  addr;
+   18: 	REG_IICD_TXLEN = ESWAP(4);
+;---- Variable 'mem_src' assigned to Register 'R6/R7' ----
+   19: 	YC_IICDTbuf[0] = 0xa0 |EEP_DEV_ADDR;
+000EE2 908098            MOV     DPTR,#08098H
+000EE5 7404              MOV     A,#04H
+000EE7 F0                MOVX    @DPTR,A
+000EE8 A3                INC     DPTR
+000EE9 E4                CLR     A
+000EEA F0                MOVX    @DPTR,A
+   20: 	*(u16_t*)(YC_IICDTbuf+1) = mem_src;
+000EEB 901B2C            MOV     DPTR,#YC_IICDTbuf
+000EEE 74A0              MOV     A,#0A0H
+000EF0 F0                MOVX    @DPTR,A
+   21: 	YC_IICDTbuf[3] = 0xa1 | EEP_DEV_ADDR;
+000EF1 A3                INC     DPTR
+000EF2 EE                MOV     A,R6
+000EF3 F0                MOVX    @DPTR,A
+000EF4 A3                INC     DPTR
+000EF5 EF                MOV     A,R7
+000EF6 F0                MOVX    @DPTR,A
+   22: 	REG_IICD_TXADDR = ESWAP((u16_t)&YC_IICDTbuf);
+000EF7 901B2F            MOV     DPTR,#YC_IICDTbuf+03H
+000EFA 74A1              MOV     A,#0A1H
+000EFC F0                MOVX    @DPTR,A
+   23: 	REG_IICD_RXLEN = ESWAP(len);
+000EFD 7A1B              MOV     R2,#HIGH YC_IICDTbuf
+000EFF 792C              MOV     R1,#LOW YC_IICDTbuf
+000F01 7E1B              MOV     R6,#HIGH YC_IICDTbuf
+000F03 7F2C              MOV     R7,#LOW YC_IICDTbuf
+000F05 742C              MOV     A,#LOW YC_IICDTbuf
+000F07 FC                MOV     R4,A
+000F08 741B              MOV     A,#HIGH YC_IICDTbuf
+000F0A FF                MOV     R7,A
+000F0B EC                MOV     A,R4
+000F0C FE                MOV     R6,A
+000F0D EF                MOV     A,R7
+000F0E 90809A            MOV     DPTR,#0809AH
+000F11 EE                MOV     A,R6
+000F12 F0                MOVX    @DPTR,A
+000F13 A3                INC     DPTR
+000F14 EF                MOV     A,R7
+000F15 F0                MOVX    @DPTR,A
+   24: 	REG_IICD_RXADDR = ESWAP((u16_t)IIC_TempBuff);
+000F16 901BF2            MOV     DPTR,#len
+000F19 E0                MOVX    A,@DPTR
+000F1A FC                MOV     R4,A
+000F1B A3                INC     DPTR
+000F1C E0                MOVX    A,@DPTR
+000F1D FA                MOV     R2,A
+000F1E EC                MOV     A,R4
+000F1F FF                MOV     R7,A
+000F20 EA                MOV     A,R2
+000F21 FE                MOV     R6,A
+000F22 EF                MOV     A,R7
+000F23 90809E            MOV     DPTR,#0809EH
+000F26 EE                MOV     A,R6
+000F27 F0                MOVX    @DPTR,A
+000F28 A3                INC     DPTR
+000F29 EF                MOV     A,R7
+000F2A F0                MOVX    @DPTR,A
+   25: 	REG_IICD_CTRL = 2;
+000F2B 7A1B              MOV     R2,#HIGH IIC_TempBuff
+000F2D 7930              MOV     R1,#LOW IIC_TempBuff
+000F2F 7E1B              MOV     R6,#HIGH IIC_TempBuff
+000F31 7F30              MOV     R7,#LOW IIC_TempBuff
+000F33 7430              MOV     A,#LOW IIC_TempBuff
+000F35 FC                MOV     R4,A
+000F36 741B              MOV     A,#HIGH IIC_TempBuff
+000F38 FF                MOV     R7,A
+000F39 EC                MOV     A,R4
+000F3A FE                MOV     R6,A
+000F3B EF                MOV     A,R7
+000F3C 90809C            MOV     DPTR,#0809CH
+000F3F EE                MOV     A,R6
+000F40 F0                MOVX    @DPTR,A
+000F41 A3                INC     DPTR
+000F42 EF                MOV     A,R7
+000F43 F0                MOVX    @DPTR,A
+   26: 	if(!(REG_IICD_RXADDR&(1<<7)))
+000F44 908090            MOV     DPTR,#08090H
+000F47 7402              MOV     A,#02H
+000F49 F0                MOVX    @DPTR,A
+   27: 	{
+000F4A 90809C            MOV     DPTR,#0809CH
+000F4D A3                INC     DPTR
+000F4E E0                MOVX    A,@DPTR
+000F4F 20E707            JB      ACC.7,?C0004?IIC
+   28: 		REG_IICD_CTRL |= 1;
+   29: 	}
+000F52 908090            MOV     DPTR,#08090H
+000F55 E0                MOVX    A,@DPTR
+000F56 4401              ORL     A,#01H
+000F58 F0                MOVX    @DPTR,A
+   30: 	REG_MISC_CTRL |= 1 << 2;	//start iic dma
+000F59         ?C0004?IIC:
+   31: 	IIcWaitDone();	
+000F59 908006            MOV     DPTR,#08006H
+000F5C E0                MOVX    A,@DPTR
+000F5D 4404              ORL     A,#04H
+000F5F F0                MOVX    @DPTR,A
+   32: 	xmemcpy(pbuff,IIC_TempBuff,len);
+000F60 F1C1              ACALL   IIcWaitDone
+   33: }
+000F62 901BF4            MOV     DPTR,#pbuff
+000F65 E0                MOVX    A,@DPTR
+000F66 A3                INC     DPTR
+000F67 E0                MOVX    A,@DPTR
+000F68 FA                MOV     R2,A
+000F69 A3                INC     DPTR
+000F6A E0                MOVX    A,@DPTR
+000F6B AE02              MOV     R6,AR2
+000F6D FF                MOV     R7,A
+000F6E 7B01              MOV     R3,#01H
+000F70 7A1B              MOV     R2,#HIGH IIC_TempBuff
+000F72 7930              MOV     R1,#LOW IIC_TempBuff
+000F74 901BF2            MOV     DPTR,#len
+000F77 E0                MOVX    A,@DPTR
+000F78 A3                INC     DPTR
+000F79 E0                MOVX    A,@DPTR
+000F7A 901BE6            MOV     DPTR,#?_xmemcpy?BYTE+05H
+000F7D F0                MOVX    @DPTR,A
+;----                  JMP     _xmemcpy
+----- FUNCTION _IIC_Read (END) -------
+
+
+----- FUNCTION _xmemcpy (BEGIN) -----
+ FILE: 'utilities.c'
+   10: void xmemcpy(pxbyte dest, u8_t* src, u8_t len) 
+   11: {
+000F7E 901BE1            MOV     DPTR,#dest
+000F81 EE                MOV     A,R6
+000F82 F0                MOVX    @DPTR,A
+000F83 A3                INC     DPTR
+000F84 EF                MOV     A,R7
+000F85 F0                MOVX    @DPTR,A
+000F86 A3                INC     DPTR
+000F87 EB                MOV     A,R3
+000F88 F0                MOVX    @DPTR,A
+000F89 A3                INC     DPTR
+000F8A EA                MOV     A,R2
+000F8B F0                MOVX    @DPTR,A
+000F8C A3                INC     DPTR
+000F8D E9                MOV     A,R1
+000F8E F0                MOVX    @DPTR,A
+   12: 	while(len--)
+000F8F         ?C0002?UTILITIES:
+   13: 		*dest++ = *src++;
+000F8F 901BE6            MOV     DPTR,#len
+000F92 E0                MOVX    A,@DPTR
+000F93 FF                MOV     R7,A
+000F94 14                DEC     A
+000F95 F0                MOVX    @DPTR,A
+000F96 EF                MOV     A,R7
+000F97 6027              JZ      ?C0004?UTILITIES
+   14: 	return;
+000F99 901BE3            MOV     DPTR,#src
+000F9C E0                MOVX    A,@DPTR
+000F9D FB                MOV     R3,A
+000F9E A3                INC     DPTR
+000F9F E4                CLR     A
+000FA0 75F001            MOV     B,#01H
+000FA3 12019D            LCALL   ?C?ILDIX
+000FA6 A9F0              MOV     R1,B
+000FA8 FA                MOV     R2,A
+000FA9 1200F9            LCALL   ?C?CLDPTR
+000FAC FF                MOV     R7,A
+000FAD 901BE1            MOV     DPTR,#dest
+000FB0 E4                CLR     A
+000FB1 75F001            MOV     B,#01H
+000FB4 12019D            LCALL   ?C?ILDIX
+000FB7 85F082            MOV     DPL,B
+000FBA F583              MOV     DPH,A
+000FBC EF                MOV     A,R7
+000FBD F0                MOVX    @DPTR,A
+000FBE 80CF              SJMP    ?C0002?UTILITIES
+   15: }
+000FC0         ?C0004?UTILITIES:
+000FC0 22                RET     
+----- FUNCTION _xmemcpy (END) -------
+
+
+----- FUNCTION IIcWaitDone (BEGIN) -----
+ FILE: 'iic.c'
+   10: static void IIcWaitDone(void)
+   11: {
+   12: 	while(!(REG_DMA_STATUS&(1<<5)));
+000FC1         ?C0001?IIC:
+   13: }
+000FC1 90812C            MOV     DPTR,#0812CH
+000FC4 E0                MOVX    A,@DPTR
+000FC5 30E5F9            JNB     ACC.5,?C0001?IIC
+   14: 
+000FC8 22                RET     
+----- FUNCTION IIcWaitDone (END) -------
+
+
+----- FUNCTION ADC_Get0vBase (BEGIN) -----
+ FILE: 'adc.c'
+   14: u16_t ADC_Get0vBase()
+   15: {
+   16: 	return m_adc0vBase;
+   17: }
+000FC9 904E41            MOV     DPTR,#m_adc0vBase
+000FCC E0                MOVX    A,@DPTR
+000FCD FE                MOV     R6,A
+000FCE A3                INC     DPTR
+000FCF E0                MOVX    A,@DPTR
+000FD0 FF                MOV     R7,A
+   17: 
+000FD1 22                RET     
+----- FUNCTION ADC_Get0vBase (END) -------
+
+
+----- FUNCTION _GPIO_SetWakeupByCurrentState (BEGIN) -----
+ FILE: 'gpio.c'
+   98: void GPIO_SetWakeupByCurrentState(u8_t gpio_num)
+   99: {
+000FD2 901C1C            MOV     DPTR,#gpio_num
+000FD5 EF                MOV     A,R7
+000FD6 F0                MOVX    @DPTR,A
+  100: 	bool st = GPIO_GetInputStatus(gpio_num);
+  101: 	GPIO_SetWakeup(gpio_num, ~st);
+000FD7 111D              ACALL   _GPIO_GetInputStatus
+000FD9 9209              MOV     st,C
+  102: }
+000FDB 901C1C            MOV     DPTR,#gpio_num
+000FDE E0                MOVX    A,@DPTR
+000FDF FF                MOV     R7,A
+000FE0 A209              MOV     C,st
+000FE2 B3                CPL     C
+000FE3 9208              MOV     ?_GPIO_SetWakeup?BIT,C
+;----                  JMP     _GPIO_SetWakeup
+----- FUNCTION _GPIO_SetWakeupByCurrentState (END) -------
+
+
+----- FUNCTION _GPIO_SetWakeup (BEGIN) -----
+ FILE: 'gpio.c'
+   74: void GPIO_SetWakeup(u8_t gpio_num, bit  st)
+   75: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   76: 	u8_t queue, group;
+   77: 	queue = (gpio_num & 7);
+000FE5 EF                MOV     A,R7
+000FE6 5407              ANL     A,#07H
+000FE8 FE                MOV     R6,A
+;---- Variable 'queue' assigned to Register 'R6' ----
+   78: 	group = (gpio_num>>3 & 3);
+000FE9 EF                MOV     A,R7
+000FEA 13                RRC     A
+000FEB 13                RRC     A
+000FEC 13                RRC     A
+000FED 5403              ANL     A,#03H
+000FEF FF                MOV     R7,A
+;---- Variable 'group' assigned to Register 'R7' ----
+   79: 	if (st){
+000FF0 300843            JNB     st,?C0012?GPIO
+   80: 		*(YC_GPIOWakeupL+group) &= ~(1<<queue);
+000FF3 24A0              ADD     A,#LOW YC_GPIOWakeupL
+000FF5 F582              MOV     DPL,A
+000FF7 E4                CLR     A
+000FF8 3400              ADDC    A,#HIGH YC_GPIOWakeupL
+000FFA F583              MOV     DPH,A
+000FFC C083              PUSH    DPH
+000FFE C082              PUSH    DPL
+001000 E0                MOVX    A,@DPTR
+001001 FD                MOV     R5,A
+001002 7401              MOV     A,#01H
+001004 A806              MOV     R0,AR6
+001006 08                INC     R0
+001007 8002              SJMP    ?C0025?GPIO
+001009         ?C0024?GPIO:
+001009 C3                CLR     C
+00100A 33                RLC     A
+00100B         ?C0025?GPIO:
+00100B D8FC              DJNZ    R0,?C0024?GPIO
+00100D F4                CPL     A
+00100E 5D                ANL     A,R5
+00100F D082              POP     DPL
+001011 D083              POP     DPH
+001013 F0                MOVX    @DPTR,A
+   81: 		*(YC_GPIOWakeupH+group) |= 1<<queue;	//high wakeup
+001014 74A4              MOV     A,#LOW YC_GPIOWakeupH
+001016 2F                ADD     A,R7
+001017 F582              MOV     DPL,A
+001019 E4                CLR     A
+00101A 3400              ADDC    A,#HIGH YC_GPIOWakeupH
+00101C F583              MOV     DPH,A
+00101E C083              PUSH    DPH
+001020 C082              PUSH    DPL
+001022 E0                MOVX    A,@DPTR
+001023 FF                MOV     R7,A
+001024 7401              MOV     A,#01H
+001026 A806              MOV     R0,AR6
+001028 08                INC     R0
+001029 8002              SJMP    ?C0027?GPIO
+00102B         ?C0026?GPIO:
+00102B C3                CLR     C
+00102C 33                RLC     A
+00102D         ?C0027?GPIO:
+00102D D8FC              DJNZ    R0,?C0026?GPIO
+00102F 4F                ORL     A,R7
+001030 D082              POP     DPL
+001032 D083              POP     DPH
+001034 F0                MOVX    @DPTR,A
+   82: 	}
+001035 22                RET     
+001036         ?C0012?GPIO:
+   83: 	else{
+   84: 		*(YC_GPIOWakeupL+group) |= 1<<queue;	//low wakeup
+001036 74A0              MOV     A,#LOW YC_GPIOWakeupL
+001038 2F                ADD     A,R7
+001039 F582              MOV     DPL,A
+00103B E4                CLR     A
+00103C 3400              ADDC    A,#HIGH YC_GPIOWakeupL
+00103E F583              MOV     DPH,A
+001040 C083              PUSH    DPH
+001042 C082              PUSH    DPL
+001044 E0                MOVX    A,@DPTR
+001045 FD                MOV     R5,A
+001046 7401              MOV     A,#01H
+001048 A806              MOV     R0,AR6
+00104A 08                INC     R0
+00104B 8002              SJMP    ?C0029?GPIO
+00104D         ?C0028?GPIO:
+00104D C3                CLR     C
+00104E 33                RLC     A
+00104F         ?C0029?GPIO:
+00104F D8FC              DJNZ    R0,?C0028?GPIO
+001051 FC                MOV     R4,A
+001052 4D                ORL     A,R5
+001053 D082              POP     DPL
+001055 D083              POP     DPH
+001057 F0                MOVX    @DPTR,A
+   85: 		*(YC_GPIOWakeupH+group) &= ~(1<<queue);
+001058 74A4              MOV     A,#LOW YC_GPIOWakeupH
+00105A 2F                ADD     A,R7
+00105B F582              MOV     DPL,A
+00105D E4                CLR     A
+00105E 3400              ADDC    A,#HIGH YC_GPIOWakeupH
+001060 F583              MOV     DPH,A
+001062 E0                MOVX    A,@DPTR
+001063 FF                MOV     R7,A
+001064 EC                MOV     A,R4
+001065 F4                CPL     A
+001066 FE                MOV     R6,A
+001067 EF                MOV     A,R7
+001068 5E                ANL     A,R6
+001069 F0                MOVX    @DPTR,A
+   86: 	}
+   87: }
+00106A 22                RET     
+----- FUNCTION _GPIO_SetWakeup (END) -------
+
+
+----- FUNCTION _IPC_TxHidData (BEGIN) -----
+ FILE: 'sys.c'
+  474: void IPC_TxHidData(u8_t* dt, u8_t len)
+  475: {
+00106B 901BF7            MOV     DPTR,#dt
+00106E EB                MOV     A,R3
+00106F F0                MOVX    @DPTR,A
+001070 A3                INC     DPTR
+001071 EA                MOV     A,R2
+001072 F0                MOVX    @DPTR,A
+001073 A3                INC     DPTR
+001074 E9                MOV     A,R1
+001075 F0                MOVX    @DPTR,A
+001076 A3                INC     DPTR
+001077 ED                MOV     A,R5
+001078 F0                MOVX    @DPTR,A
+  476: 	if(g_variable.currentState != DEVICE_MODE_24G
+  477: 		&&g_variable.currentState != DEVICE_MODE_BT
+001079 904EAD            MOV     DPTR,#g_variable+02H
+00107C E0                MOVX    A,@DPTR
+00107D FF                MOV     R7,A
+00107E 6401              XRL     A,#01H
+001080 600A              JZ      ?C0082?SYS
+001082 EF                MOV     A,R7
+001083 6402              XRL     A,#02H
+001085 6005              JZ      ?C0082?SYS
+001087 EF                MOV     A,R7
+001088 6407              XRL     A,#07H
+00108A 702D              JNZ     ?C0083?SYS
+00108C         ?C0082?SYS:
+  478: 		&& g_variable.currentState != DEVICE_MODE_BLE_BB_CONNECT)
+  479: 		return;
+  480: 	if(g_variable.currentState == DEVICE_MODE_24G)
+00108C EF                MOV     A,R7
+00108D B40110            CJNE    A,#01H,?C0084?SYS
+  481: 	{
+  482: 		IPC_Tx24GData(dt,len);
+001090 901BF7            MOV     DPTR,#dt
+001093 E0                MOVX    A,@DPTR
+001094 FB                MOV     R3,A
+001095 A3                INC     DPTR
+001096 E0                MOVX    A,@DPTR
+001097 FA                MOV     R2,A
+001098 A3                INC     DPTR
+001099 E0                MOVX    A,@DPTR
+00109A F9                MOV     R1,A
+00109B A3                INC     DPTR
+00109C E0                MOVX    A,@DPTR
+00109D FD                MOV     R5,A
+00109E 8152              AJMP    _IPC_Tx24GData
+  483: 	}	
+0010A0         ?C0084?SYS:
+  484: #if MOUSE_BT_MODE_ENABLE
+  485: 	else if(g_variable.currentState == DEVICE_MODE_BT)
+  486: 	{
+  487: 		IPC_TxBREDRHidData(dt,len);
+  488: 	}
+  489: #endif
+  490: 	else if(g_variable.currentState == DEVICE_MODE_BLE_BB_CONNECT)
+0010A0 904EAD            MOV     DPTR,#g_variable+02H
+0010A3 E0                MOVX    A,@DPTR
+0010A4 B40710            CJNE    A,#07H,?C0088?SYS
+  491: 	{
+  492: 		IPC_TxBleData(dt,len);
+0010A7 901BF7            MOV     DPTR,#dt
+0010AA E0                MOVX    A,@DPTR
+0010AB FB                MOV     R3,A
+0010AC A3                INC     DPTR
+0010AD E0                MOVX    A,@DPTR
+0010AE FA                MOV     R2,A
+0010AF A3                INC     DPTR
+0010B0 E0                MOVX    A,@DPTR
+0010B1 F9                MOV     R1,A
+0010B2 A3                INC     DPTR
+0010B3 E0                MOVX    A,@DPTR
+0010B4 FD                MOV     R5,A
+0010B5 8196              AJMP    _IPC_TxBleData
+  493: 	}
+  494: 	else
+  495: 	{
+0010B7         ?C0088?SYS:
+  496: 		while(1);
+0010B7 80FE              SJMP    ?C0088?SYS
+  497: 	}
+  498: }
+0010B9         ?C0083?SYS:
+0010B9 22                RET     
+----- FUNCTION _IPC_TxHidData (END) -------
+
+
+----- FUNCTION mouseMotion (BEGIN) -----
+ FILE: 'sys.c'
+  584: static void mouseMotion()
+  585: {
+  586: 	u8_t deltaXL=0, deltaYL=0, deltaXH=0, deltaYH=0;
+  587: 	bool sendFlag = 0;
+0010BA E4                CLR     A
+0010BB 901BFB            MOV     DPTR,#deltaXL
+0010BE F0                MOVX    @DPTR,A
+0010BF A3                INC     DPTR
+0010C0 F0                MOVX    @DPTR,A
+0010C1 A3                INC     DPTR
+0010C2 F0                MOVX    @DPTR,A
+0010C3 A3                INC     DPTR
+0010C4 F0                MOVX    @DPTR,A
+  588: 
+0010C5 C200              CLR     sendFlag
+  589: #if MOUSE_BT_MODE_ENABLE
+  590: 	if ((g_variable.currentState != DEVICE_MODE_24G)
+  591: 		&&(g_variable.currentState != DEVICE_MODE_BLE_BB_CONNECT)
+  592: 		&&(g_variable.currentState != DEVICE_MODE_BT))
+  593: 	{
+  594: #else
+  595: 	if ((g_variable.currentState != DEVICE_MODE_24G)&&(g_variable.currentState != DEVICE_MODE_BLE_BB_CONNECT))
+0010C7 904EAD            MOV     DPTR,#g_variable+02H
+0010CA E0                MOVX    A,@DPTR
+0010CB FF                MOV     R7,A
+0010CC 6401              XRL     A,#01H
+0010CE 6007              JZ      ?C0105?SYS
+0010D0 EF                MOV     A,R7
+0010D1 6407              XRL     A,#07H
+0010D3 6002              JZ      $ + 4H
+0010D5 21C4              AJMP    ?C0106?SYS
+  596: 	{
+  597: #endif
+  598: 		return;
+  599: 	}
+0010D7         ?C0105?SYS:
+  600: 	if ((g_variable.g24DongleExist == 0)&&(g_variable.currentState == DEVICE_MODE_24G)){
+0010D7 904ED3            MOV     DPTR,#g_variable+028H
+0010DA E0                MOVX    A,@DPTR
+0010DB 700A              JNZ     ?C0107?SYS
+0010DD 904EAD            MOV     DPTR,#g_variable+02H
+0010E0 E0                MOVX    A,@DPTR
+0010E1 6401              XRL     A,#01H
+0010E3 7002              JNZ     $ + 4H
+0010E5 21C4              AJMP    ?C0106?SYS
+  601: 		return;	
+  602: 	}
+0010E7         ?C0107?SYS:
+  603: 
+  604: 	if (!IPC_IsTxBuffEmpty()) {
+0010E7 71D2              ACALL   IPC_IsTxBuffEmpty
+0010E9 4002              JC      $ + 4H
+0010EB 21C4              AJMP    ?C0106?SYS
+  605: 		return;
+  606: 	}
+0010ED         ?C0108?SYS:
+  607: 	
+  608: #if OTA_ENABLE
+  609: 	//OTA
+  610: 	if(m_new24gOtaEnable == 1 
+  611: 		&& g_variable.otaReqPacEnable == 1
+  612: 		&& g_variable.currentState == DEVICE_MODE_24G)
+  613: 	{
+  614: 		g_variable.sleepTimer = 0;
+  615: 		m_hidBuff[0] = CMD_OTA;
+  616: 		m_hidBuff[1] = g_variable.otaReqPacValue[0];	//ackpayload type
+  617: 		m_hidBuff[2] = g_variable.otaReqPacValue[1];	//ackpayload low byte
+  618: 		m_hidBuff[3] = g_variable.otaReqPacValue[2];	//ackpayload high byte
+  619: 		m_hidBuff[4] = g_variable.otaReqPacValue[3];
+  620: 		m_hidBuff[5] = g_variable.otaReqPacValue[4];
+  621: 		m_hidBuff[6] = 0;
+  622: 		IPC_TxHidData(m_hidBuff,7);
+  623: 		return;
+  624: 	}
+  625: #endif
+  626: 	
+  627: 	if(g_variable.deltaKey != g_variable.keyDetect
+0010ED 904EDD            MOV     DPTR,#g_variable+032H
+0010F0 E0                MOVX    A,@DPTR
+0010F1 FF                MOV     R7,A
+0010F2 904EC4            MOV     DPTR,#g_variable+019H
+0010F5 E0                MOVX    A,@DPTR
+0010F6 B50719            CJNE    A,AR7,?C0110?SYS
+0010F9 904EB7            MOV     DPTR,#g_variable+0CH
+0010FC E0                MOVX    A,@DPTR
+0010FD FE                MOV     R6,A
+0010FE D3                SETB    C
+0010FF 9400              SUBB    A,#00H
+001101 4005              JC      ?C0111?SYS
+001103 EE                MOV     A,R6
+001104 9403              SUBB    A,#03H
+001106 400A              JC      ?C0110?SYS
+001108         ?C0111?SYS:
+001108 904EAD            MOV     DPTR,#g_variable+02H
+00110B E0                MOVX    A,@DPTR
+00110C B4010B            CJNE    A,#01H,?C0109?SYS
+00110F EF                MOV     A,R7
+001110 6008              JZ      ?C0109?SYS
+001112         ?C0110?SYS:
+  628: 		||(g_variable.wheelTimer > 0 && g_variable.wheelTimer < 3)
+  629: 		||((g_variable.currentState == DEVICE_MODE_24G) && (g_variable.keyDetect != 0)))
+  630: 	{
+  631: 		sendFlag = 1;
+001112 D200              SETB    sendFlag
+  632: 		m_new24gKWEvent = 1;
+001114 9049B7            MOV     DPTR,#m_new24gKWEvent
+001117 7401              MOV     A,#01H
+001119 F0                MOVX    @DPTR,A
+  633: 	}
+00111A         ?C0109?SYS:
+  634: 	g_variable.deltaKey = g_variable.keyDetect;
+00111A 904EDD            MOV     DPTR,#g_variable+032H
+00111D E0                MOVX    A,@DPTR
+00111E 904EC4            MOV     DPTR,#g_variable+019H
+001121 F0                MOVX    @DPTR,A
+  635: 		
+  636: 	g_variable.X_data = 0;g_variable.Y_data = 0;
+001122 E4                CLR     A
+001123 904EEB            MOV     DPTR,#g_variable+040H
+001126 F0                MOVX    @DPTR,A
+001127 A3                INC     DPTR
+001128 F0                MOVX    @DPTR,A
+001129 A3                INC     DPTR
+00112A F0                MOVX    @DPTR,A
+00112B A3                INC     DPTR
+00112C F0                MOVX    @DPTR,A
+  637: 	
+  638: #if MOUSE_BT_MODE_ENABLE
+  639: 
+  640: 	if(g_variable.currentState == DEVICE_MODE_BT)
+  641: 	{
+  642: 		sendFlag |= mouseReadSensor();
+  643: 	}
+  644: 
+  645: #endif
+  646: 	if ( (g_variable.currentState == DEVICE_MODE_24G) ) {
+00112D 904EAD            MOV     DPTR,#g_variable+02H
+001130 E0                MOVX    A,@DPTR
+001131 B40106            CJNE    A,#01H,?C0112?SYS
+  647: 		sendFlag |= mouseReadSensor();
+001134 31C5              ACALL   mouseReadSensor
+001136 7200              ORL     C,sendFlag
+001138 9200              MOV     sendFlag,C
+  648: 	}
+00113A         ?C0112?SYS:
+  649: 	
+  650: 	if ( (g_variable.currentState == DEVICE_MODE_BLE_BB_CONNECT) && m_bleSendDataFlag == 1 ) 
+00113A 904EAD            MOV     DPTR,#g_variable+02H
+00113D E0                MOVX    A,@DPTR
+00113E B4071E            CJNE    A,#07H,?C0113?SYS
+001141 904595            MOV     DPTR,#m_bleSendDataFlag
+001144 E0                MOVX    A,@DPTR
+001145 B40117            CJNE    A,#01H,?C0113?SYS
+  651: 	{
+  652: 			SPI_Initialize();//spi
+001148 71EA              ACALL   SPI_Initialize
+  653: 			sendFlag |= mouseReadSensor();
+00114A 31C5              ACALL   mouseReadSensor
+00114C 7200              ORL     C,sendFlag
+00114E 9200              MOV     sendFlag,C
+  654: 			if(m_51ReadSensor != m_BtReadIpcCount)
+001150 904E83            MOV     DPTR,#m_BtReadIpcCount
+001153 E0                MOVX    A,@DPTR
+001154 FF                MOV     R7,A
+001155 904E84            MOV     DPTR,#m_51ReadSensor
+001158 E0                MOVX    A,@DPTR
+001159 6F                XRL     A,R7
+00115A 6003              JZ      ?C0113?SYS
+  655: 			{
+  656: 				m_51ReadSensor ++;
+00115C E0                MOVX    A,@DPTR
+00115D 04                INC     A
+00115E F0                MOVX    @DPTR,A
+  657: 			}
+  658: 	}
+00115F         ?C0113?SYS:
+  659: 
+  660: 	if (g_variable.deltaZWheel)
+00115F 904EC8            MOV     DPTR,#g_variable+01DH
+001162 E0                MOVX    A,@DPTR
+001163 601F              JZ      ?C0115?SYS
+  661: 	{
+  662: 		sendFlag = 1;
+001165 D200              SETB    sendFlag
+  663: 		m_new24gKWEvent = 1;
+001167 9049B7            MOV     DPTR,#m_new24gKWEvent
+00116A 7401              MOV     A,#01H
+00116C F0                MOVX    @DPTR,A
+  664: 		m_shortDataWheel = 1;
+00116D 904E80            MOV     DPTR,#m_shortDataWheel
+001170 F0                MOVX    @DPTR,A
+  665: 		if(g_variable.currentState == DEVICE_MODE_BLE_BB_CONNECT)
+001171 904EAD            MOV     DPTR,#g_variable+02H
+001174 E0                MOVX    A,@DPTR
+001175 B4070C            CJNE    A,#07H,?C0115?SYS
+  666: 		{
+  667: 			m_bleDataWheel = 1;
+001178 904E81            MOV     DPTR,#m_bleDataWheel
+00117B 7401              MOV     A,#01H
+00117D F0                MOVX    @DPTR,A
+  668: 			m_bleDataWheelLpmTimer = 10;
+00117E 904E82            MOV     DPTR,#m_bleDataWheelLpmTimer
+001181 740A              MOV     A,#0AH
+001183 F0                MOVX    @DPTR,A
+  669: 		}
+  670: 	}
+001184         ?C0115?SYS:
+  671: 
+  672: 	if(g_variable.buttonTimer >= (MOUSE_ENTER_PB_TIME - 2))
+001184 904EB6            MOV     DPTR,#g_variable+0BH
+001187 E0                MOVX    A,@DPTR
+001188 C3                CLR     C
+001189 9417              SUBB    A,#017H
+00118B 4007              JC      ?C0117?SYS
+  673: 	{
+  674: 		g_variable.deltaKey = 0;	
+00118D E4                CLR     A
+00118E 904EC4            MOV     DPTR,#g_variable+019H
+001191 F0                MOVX    @DPTR,A
+  675: 		sendFlag = 1;
+001192 D200              SETB    sendFlag
+  676: 	}
+001194         ?C0117?SYS:
+  677: 	
+  678: 	if ((!sendFlag) ||(g_variable.buttonTimer >= (MOUSE_ENTER_PB_TIME - 1)))
+001194 30002D            JNB     sendFlag,?C0106?SYS
+001197 904EB6            MOV     DPTR,#g_variable+0BH
+00119A E0                MOVX    A,@DPTR
+00119B C3                CLR     C
+00119C 9418              SUBB    A,#018H
+00119E 5024              JNC     ?C0106?SYS
+0011A0         ?C0118?SYS:
+  679: 		return;
+  680: 	
+  681: 	m_btMotionEvent = 1;
+0011A0 9049C2            MOV     DPTR,#m_btMotionEvent
+0011A3 7401              MOV     A,#01H
+0011A5 F0                MOVX    @DPTR,A
+  682: 	if (g_variable.currentState == DEVICE_MODE_24G
+0011A6 904EAD            MOV     DPTR,#g_variable+02H
+0011A9 E0                MOVX    A,@DPTR
+0011AA FF                MOV     R7,A
+0011AB 6401              XRL     A,#01H
+0011AD 6009              JZ      ?C0121?SYS
+0011AF EF                MOV     A,R7
+0011B0 6402              XRL     A,#02H
+0011B2 6004              JZ      ?C0121?SYS
+0011B4 EF                MOV     A,R7
+0011B5 B4070C            CJNE    A,#07H,?C0106?SYS
+0011B8         ?C0121?SYS:
+  683: 		||g_variable.currentState == DEVICE_MODE_BT
+  684: 		||g_variable.currentState == DEVICE_MODE_BLE_BB_CONNECT)
+  685: 	{
+  686: 		mousePackage();
+0011B8 910E              ACALL   mousePackage
+  687: 		IPC_TxHidData(m_hidBuff,7);
+0011BA 7B01              MOV     R3,#01H
+0011BC 7A4E              MOV     R2,#HIGH m_hidBuff
+0011BE 7921              MOV     R1,#LOW m_hidBuff
+0011C0 7D07              MOV     R5,#07H
+0011C2 116B              ACALL   _IPC_TxHidData
+  688: 	}
+  689: }
+0011C4         ?C0106?SYS:
+0011C4 22                RET     
+----- FUNCTION mouseMotion (END) -------
+
+
+----- FUNCTION mouseReadSensor (BEGIN) -----
+ FILE: 'sys.c'
+  514: static bool mouseReadSensor(void)
+  515: {
+  516: 	u8_t deltaXL=0, deltaYL=0, deltaXH=0, deltaYH=0;
+  517: 
+0011C5 E4                CLR     A
+0011C6 901C18            MOV     DPTR,#deltaXL
+0011C9 F0                MOVX    @DPTR,A
+;---- Variable 'deltaYL' assigned to Register 'R1' ----
+0011CA F9                MOV     R1,A
+;---- Variable 'deltaXH' assigned to Register 'R7' ----
+0011CB FF                MOV     R7,A
+;---- Variable 'deltaYH' assigned to Register 'R5' ----
+0011CC FD                MOV     R5,A
+  518: 	g_variable.SensorDataCnt++;
+0011CD 904F03            MOV     DPTR,#g_variable+058H
+0011D0 E0                MOVX    A,@DPTR
+0011D1 04                INC     A
+0011D2 F0                MOVX    @DPTR,A
+  519: 	g_variable.wheelTimer= 2;
+0011D3 904EB7            MOV     DPTR,#g_variable+0CH
+0011D6 7402              MOV     A,#02H
+0011D8 F0                MOVX    @DPTR,A
+  520: 	if(g_variable.SensorDataCnt>=0 && g_variable.SensorDataCnt<=50)
+0011D9 904F03            MOV     DPTR,#g_variable+058H
+0011DC E0                MOVX    A,@DPTR
+0011DD FE                MOV     R6,A
+0011DE C3                CLR     C
+0011DF 9400              SUBB    A,#00H
+0011E1 400F              JC      ?C0091?SYS
+0011E3 EE                MOV     A,R6
+0011E4 D3                SETB    C
+0011E5 9432              SUBB    A,#032H
+0011E7 5009              JNC     ?C0091?SYS
+  521: 	{
+  522: 		deltaXL = 5;
+0011E9 901C18            MOV     DPTR,#deltaXL
+0011EC 7405              MOV     A,#05H
+0011EE F0                MOVX    @DPTR,A
+  523: 		deltaXH = 0;
+0011EF E4                CLR     A
+  524: 		deltaYL = 0;
+  525: 		deltaYH = 0;
+  526: 	}
+0011F0 804F              SJMP    ?C0092?SYS
+0011F2         ?C0091?SYS:
+  527: 	else if(g_variable.SensorDataCnt>=51 && g_variable.SensorDataCnt<=100)
+0011F2 EE                MOV     A,R6
+0011F3 C3                CLR     C
+0011F4 9433              SUBB    A,#033H
+0011F6 4011              JC      ?C0093?SYS
+0011F8 EE                MOV     A,R6
+0011F9 D3                SETB    C
+0011FA 9464              SUBB    A,#064H
+0011FC 500B              JNC     ?C0093?SYS
+  528: 	{
+  529: 		deltaXL = 0;
+0011FE E4                CLR     A
+0011FF 901C18            MOV     DPTR,#deltaXL
+001202 F0                MOVX    @DPTR,A
+  530: 		deltaXH = 0;
+001203 FF                MOV     R7,A
+  531: 		deltaYL = 5;
+001204 7905              MOV     R1,#05H
+  532: 		deltaYH = 0;
+001206 FD                MOV     R5,A
+  533: 	}
+001207 8038              SJMP    ?C0092?SYS
+001209         ?C0093?SYS:
+  534: 	else if(g_variable.SensorDataCnt>=101 && g_variable.SensorDataCnt<=150)
+001209 EE                MOV     A,R6
+00120A C3                CLR     C
+00120B 9465              SUBB    A,#065H
+00120D 4013              JC      ?C0095?SYS
+00120F EE                MOV     A,R6
+001210 D3                SETB    C
+001211 9496              SUBB    A,#096H
+001213 500D              JNC     ?C0095?SYS
+  535: 	{
+  536: 		deltaXL = 0xfb;
+001215 901C18            MOV     DPTR,#deltaXL
+001218 74FB              MOV     A,#0FBH
+00121A F0                MOVX    @DPTR,A
+  537: 		deltaXH = 0xff;
+00121B 7FFF              MOV     R7,#0FFH
+  538: 		deltaYL = 0;
+00121D E4                CLR     A
+00121E F9                MOV     R1,A
+  539: 		deltaYH = 0;
+00121F FD                MOV     R5,A
+  540: 	}
+001220 801F              SJMP    ?C0092?SYS
+001222         ?C0095?SYS:
+  541: 	else if(g_variable.SensorDataCnt>=151 && g_variable.SensorDataCnt<=200)
+001222 EE                MOV     A,R6
+001223 C3                CLR     C
+001224 9497              SUBB    A,#097H
+001226 4019              JC      ?C0092?SYS
+001228 EE                MOV     A,R6
+001229 D3                SETB    C
+00122A 94C8              SUBB    A,#0C8H
+00122C 5013              JNC     ?C0092?SYS
+  542: 	{
+  543: 		deltaXL = 0;
+00122E E4                CLR     A
+00122F 901C18            MOV     DPTR,#deltaXL
+001232 F0                MOVX    @DPTR,A
+  544: 		deltaXH = 0;
+001233 FF                MOV     R7,A
+  545: 		deltaYL = 0xfb;
+001234 79FB              MOV     R1,#0FBH
+  546: 		deltaYH = 0xff;
+001236 7DFF              MOV     R5,#0FFH
+  547: 		if(g_variable.SensorDataCnt == 200)
+001238 EE                MOV     A,R6
+001239 B4C805            CJNE    A,#0C8H,?C0092?SYS
+  548: 			g_variable.SensorDataCnt =0;
+00123C E4                CLR     A
+00123D 904F03            MOV     DPTR,#g_variable+058H
+001240 F0                MOVX    @DPTR,A
+  549: 	}
+  550: 	else
+  551: 	{
+  552: 
+  553: 	}
+001241         ?C0092?SYS:
+  554: 	if (g_variable.sensorChoice == 0) {
+001241 904EE0            MOV     DPTR,#g_variable+035H
+001244 E0                MOVX    A,@DPTR
+001245 7028              JNZ     ?C0100?SYS
+  555: 		g_variable.Y_data = 0 -(deltaXL | deltaXH<<8);
+001247 EF                MOV     A,R7
+001248 FE                MOV     R6,A
+001249 901C18            MOV     DPTR,#deltaXL
+00124C E0                MOVX    A,@DPTR
+00124D FB                MOV     R3,A
+00124E EE                MOV     A,R6
+00124F EB                MOV     A,R3
+001250 FF                MOV     R7,A
+001251 C3                CLR     C
+001252 E4                CLR     A
+001253 9F                SUBB    A,R7
+001254 FF                MOV     R7,A
+001255 E4                CLR     A
+001256 9E                SUBB    A,R6
+001257 904EED            MOV     DPTR,#g_variable+042H
+00125A F0                MOVX    @DPTR,A
+00125B A3                INC     DPTR
+00125C EF                MOV     A,R7
+00125D F0                MOVX    @DPTR,A
+  556: 		g_variable.X_data = deltaYL | deltaYH<<8;
+00125E ED                MOV     A,R5
+00125F FE                MOV     R6,A
+001260 E9                MOV     A,R1
+001261 FD                MOV     R5,A
+001262 EE                MOV     A,R6
+001263 ED                MOV     A,R5
+001264 FF                MOV     R7,A
+001265 904EEB            MOV     DPTR,#g_variable+040H
+001268 EE                MOV     A,R6
+001269 F0                MOVX    @DPTR,A
+00126A A3                INC     DPTR
+00126B EF                MOV     A,R7
+00126C F0                MOVX    @DPTR,A
+  557: 	}
+00126D 801B              SJMP    ?C0101?SYS
+00126F         ?C0100?SYS:
+  558: 	else {
+  559: 		g_variable.X_data = deltaXL | deltaXH<<8;
+00126F EF                MOV     A,R7
+001270 FE                MOV     R6,A
+001271 901C18            MOV     DPTR,#deltaXL
+001274 E0                MOVX    A,@DPTR
+001275 FB                MOV     R3,A
+001276 EE                MOV     A,R6
+001277 EB                MOV     A,R3
+001278 FF                MOV     R7,A
+001279 904EEB            MOV     DPTR,#g_variable+040H
+00127C EE                MOV     A,R6
+00127D F0                MOVX    @DPTR,A
+00127E A3                INC     DPTR
+00127F EF                MOV     A,R7
+001280 F0                MOVX    @DPTR,A
+  560: 		g_variable.Y_data = deltaYL | deltaYH<<8;
+001281 ED                MOV     A,R5
+001282 FF                MOV     R7,A
+001283 E9                MOV     A,R1
+001284 A3                INC     DPTR
+001285 CF                XCH     A,R7
+001286 F0                MOVX    @DPTR,A
+001287 A3                INC     DPTR
+001288 EF                MOV     A,R7
+001289 F0                MOVX    @DPTR,A
+  561: 	}
+00128A         ?C0101?SYS:
+  562: 	g_variable.X_data = 0 -g_variable.X_data ;
+00128A 904EEB            MOV     DPTR,#g_variable+040H
+00128D E0                MOVX    A,@DPTR
+00128E FE                MOV     R6,A
+00128F A3                INC     DPTR
+001290 E0                MOVX    A,@DPTR
+001291 FF                MOV     R7,A
+001292 C3                CLR     C
+001293 E4                CLR     A
+001294 9F                SUBB    A,R7
+001295 FF                MOV     R7,A
+001296 E4                CLR     A
+001297 9E                SUBB    A,R6
+001298 904EEB            MOV     DPTR,#g_variable+040H
+00129B F0                MOVX    @DPTR,A
+00129C A3                INC     DPTR
+00129D EF                MOV     A,R7
+00129E F0                MOVX    @DPTR,A
+  563: 	g_variable.Y_data = 0 -g_variable.Y_data;
+00129F A3                INC     DPTR
+0012A0 E0                MOVX    A,@DPTR
+0012A1 FE                MOV     R6,A
+0012A2 A3                INC     DPTR
+0012A3 E0                MOVX    A,@DPTR
+0012A4 FF                MOV     R7,A
+0012A5 C3                CLR     C
+0012A6 E4                CLR     A
+0012A7 9F                SUBB    A,R7
+0012A8 FF                MOV     R7,A
+0012A9 E4                CLR     A
+0012AA 9E                SUBB    A,R6
+0012AB 904EED            MOV     DPTR,#g_variable+042H
+0012AE F0                MOVX    @DPTR,A
+0012AF A3                INC     DPTR
+0012B0 EF                MOV     A,R7
+0012B1 F0                MOVX    @DPTR,A
+  564: 	
+  565: 	if(g_variable.currentState == DEVICE_MODE_24G)
+0012B2 904EAD            MOV     DPTR,#g_variable+02H
+0012B5 E0                MOVX    A,@DPTR
+0012B6 B40102            CJNE    A,#01H,?C0102?SYS
+  566: 		Drawing_optima();
+0012B9 51BD              ACALL   Drawing_optima
+0012BB         ?C0102?SYS:
+  567: 	return (1);
+0012BB D3                SETB    C
+  568: }
+0012BC 22                RET     
+----- FUNCTION mouseReadSensor (END) -------
+
+
+----- FUNCTION Drawing_optima (BEGIN) -----
+ FILE: 'sensor.c'
+  267: void Drawing_optima()
+  268: {
+  269: 	if ((g_variable.X_data > 6) ||(g_variable.X_data < -6)||(g_variable.Y_data > 6) ||(g_variable.Y_data < -6))
+  270: 		g_variable.asm_flag = 1;
+0012BD 904EEB            MOV     DPTR,#g_variable+040H
+0012C0 E0                MOVX    A,@DPTR
+0012C1 FE                MOV     R6,A
+0012C2 A3                INC     DPTR
+0012C3 E0                MOVX    A,@DPTR
+0012C4 FF                MOV     R7,A
+0012C5 D3                SETB    C
+0012C6 9406              SUBB    A,#06H
+0012C8 EE                MOV     A,R6
+0012C9 6480              XRL     A,#080H
+0012CB 9480              SUBB    A,#080H
+0012CD 5026              JNC     ?C0037?SENSOR
+0012CF C3                CLR     C
+0012D0 EF                MOV     A,R7
+0012D1 94FA              SUBB    A,#0FAH
+0012D3 EE                MOV     A,R6
+0012D4 6480              XRL     A,#080H
+0012D6 947F              SUBB    A,#07FH
+0012D8 401B              JC      ?C0037?SENSOR
+0012DA A3                INC     DPTR
+0012DB E0                MOVX    A,@DPTR
+0012DC FE                MOV     R6,A
+0012DD A3                INC     DPTR
+0012DE E0                MOVX    A,@DPTR
+0012DF FF                MOV     R7,A
+0012E0 D3                SETB    C
+0012E1 9406              SUBB    A,#06H
+0012E3 EE                MOV     A,R6
+0012E4 6480              XRL     A,#080H
+0012E6 9480              SUBB    A,#080H
+0012E8 500B              JNC     ?C0037?SENSOR
+0012EA C3                CLR     C
+0012EB EF                MOV     A,R7
+0012EC 94FA              SUBB    A,#0FAH
+0012EE EE                MOV     A,R6
+0012EF 6480              XRL     A,#080H
+0012F1 947F              SUBB    A,#07FH
+0012F3 5006              JNC     ?C0036?SENSOR
+0012F5         ?C0037?SENSOR:
+  271: 	if ((abs(g_variable.X_data) <3) &&(abs(g_variable.Y_data) <3))
+0012F5 904EEF            MOV     DPTR,#g_variable+044H
+0012F8 7401              MOV     A,#01H
+0012FA F0                MOVX    @DPTR,A
+0012FB         ?C0036?SENSOR:
+  272: 		g_variable.asm_flag = 0;
+0012FB 904EEB            MOV     DPTR,#g_variable+040H
+0012FE E0                MOVX    A,@DPTR
+0012FF FE                MOV     R6,A
+001300 A3                INC     DPTR
+001301 E0                MOVX    A,@DPTR
+001302 FF                MOV     R7,A
+001303 71BF              ACALL   _abs
+001305 C3                CLR     C
+001306 EF                MOV     A,R7
+001307 9403              SUBB    A,#03H
+001309 EE                MOV     A,R6
+00130A 9400              SUBB    A,#00H
+00130C 5014              JNC     ?C0038?SENSOR
+00130E A3                INC     DPTR
+00130F E0                MOVX    A,@DPTR
+001310 FE                MOV     R6,A
+001311 A3                INC     DPTR
+001312 E0                MOVX    A,@DPTR
+001313 FF                MOV     R7,A
+001314 71BF              ACALL   _abs
+001316 C3                CLR     C
+001317 EF                MOV     A,R7
+001318 9403              SUBB    A,#03H
+00131A EE                MOV     A,R6
+00131B 9400              SUBB    A,#00H
+00131D 5003              JNC     ?C0038?SENSOR
+  273: 	if(g_variable.asm_flag == 1) {
+00131F E4                CLR     A
+001320 A3                INC     DPTR
+001321 F0                MOVX    @DPTR,A
+001322         ?C0038?SENSOR:
+  274: 		g_variable.X_sum = g_variable.X_sum - g_variable.X_pre + g_variable.X_data;
+001322 904EEF            MOV     DPTR,#g_variable+044H
+001325 E0                MOVX    A,@DPTR
+001326 6401              XRL     A,#01H
+001328 6002              JZ      $ + 4H
+00132A 61AB              AJMP    ?C0039?SENSOR
+  275: 		g_variable.X_pre = g_variable.X_sum/2;
+00132C 904EE7            MOV     DPTR,#g_variable+03CH
+00132F E0                MOVX    A,@DPTR
+001330 FE                MOV     R6,A
+001331 A3                INC     DPTR
+001332 E0                MOVX    A,@DPTR
+001333 FF                MOV     R7,A
+001334 C3                CLR     C
+001335 904EE4            MOV     DPTR,#g_variable+039H
+001338 E0                MOVX    A,@DPTR
+001339 9F                SUBB    A,R7
+00133A FF                MOV     R7,A
+00133B 904EE3            MOV     DPTR,#g_variable+038H
+00133E E0                MOVX    A,@DPTR
+00133F 9E                SUBB    A,R6
+001340 FE                MOV     R6,A
+001341 904EEC            MOV     DPTR,#g_variable+041H
+001344 E0                MOVX    A,@DPTR
+001345 2F                ADD     A,R7
+001346 FF                MOV     R7,A
+001347 904EEB            MOV     DPTR,#g_variable+040H
+00134A E0                MOVX    A,@DPTR
+00134B 3E                ADDC    A,R6
+00134C FE                MOV     R6,A
+00134D 904EE3            MOV     DPTR,#g_variable+038H
+001350 F0                MOVX    @DPTR,A
+001351 A3                INC     DPTR
+001352 EF                MOV     A,R7
+001353 F0                MOVX    @DPTR,A
+  276: 		g_variable.X_data = g_variable.X_pre;
+001354 7C00              MOV     R4,#00H
+001356 7D02              MOV     R5,#02H
+001358 120151            LCALL   ?C?SIDIV
+00135B 904EE7            MOV     DPTR,#g_variable+03CH
+00135E EE                MOV     A,R6
+00135F F0                MOVX    @DPTR,A
+001360 A3                INC     DPTR
+001361 EF                MOV     A,R7
+001362 F0                MOVX    @DPTR,A
+  277: 		g_variable.Y_sum = g_variable.Y_sum - g_variable.Y_pre + g_variable.Y_data;
+001363 904EEB            MOV     DPTR,#g_variable+040H
+001366 EE                MOV     A,R6
+001367 F0                MOVX    @DPTR,A
+001368 A3                INC     DPTR
+001369 EF                MOV     A,R7
+00136A F0                MOVX    @DPTR,A
+  278: 		g_variable.Y_pre = g_variable.Y_sum/2;
+00136B 904EE9            MOV     DPTR,#g_variable+03EH
+00136E E0                MOVX    A,@DPTR
+00136F FE                MOV     R6,A
+001370 A3                INC     DPTR
+001371 E0                MOVX    A,@DPTR
+001372 FF                MOV     R7,A
+001373 C3                CLR     C
+001374 904EE6            MOV     DPTR,#g_variable+03BH
+001377 E0                MOVX    A,@DPTR
+001378 9F                SUBB    A,R7
+001379 FF                MOV     R7,A
+00137A 904EE5            MOV     DPTR,#g_variable+03AH
+00137D E0                MOVX    A,@DPTR
+00137E 9E                SUBB    A,R6
+00137F FE                MOV     R6,A
+001380 904EEE            MOV     DPTR,#g_variable+043H
+001383 E0                MOVX    A,@DPTR
+001384 2F                ADD     A,R7
+001385 FF                MOV     R7,A
+001386 904EED            MOV     DPTR,#g_variable+042H
+001389 E0                MOVX    A,@DPTR
+00138A 3E                ADDC    A,R6
+00138B FE                MOV     R6,A
+00138C 904EE5            MOV     DPTR,#g_variable+03AH
+00138F F0                MOVX    @DPTR,A
+001390 A3                INC     DPTR
+001391 EF                MOV     A,R7
+001392 F0                MOVX    @DPTR,A
+  279: 		g_variable.Y_data = g_variable.Y_pre;
+001393 7C00              MOV     R4,#00H
+001395 7D02              MOV     R5,#02H
+001397 120151            LCALL   ?C?SIDIV
+00139A 904EE9            MOV     DPTR,#g_variable+03EH
+00139D EE                MOV     A,R6
+00139E F0                MOVX    @DPTR,A
+00139F A3                INC     DPTR
+0013A0 EF                MOV     A,R7
+0013A1 F0                MOVX    @DPTR,A
+  280: 	}else{
+0013A2 904EED            MOV     DPTR,#g_variable+042H
+0013A5 EE                MOV     A,R6
+0013A6 F0                MOVX    @DPTR,A
+0013A7 A3                INC     DPTR
+0013A8 EF                MOV     A,R7
+0013A9 F0                MOVX    @DPTR,A
+  281: 		g_variable.X_sum = 0;
+0013AA 22                RET     
+0013AB         ?C0039?SENSOR:
+  282: 		g_variable.Y_sum = 0;
+0013AB E4                CLR     A
+0013AC 904EE3            MOV     DPTR,#g_variable+038H
+0013AF F0                MOVX    @DPTR,A
+0013B0 A3                INC     DPTR
+0013B1 F0                MOVX    @DPTR,A
+  283: 	 	g_variable.X_pre = 0;
+0013B2 A3                INC     DPTR
+0013B3 F0                MOVX    @DPTR,A
+0013B4 A3                INC     DPTR
+0013B5 F0                MOVX    @DPTR,A
+  284: 	 	g_variable.Y_pre = 0;
+0013B6 A3                INC     DPTR
+0013B7 F0                MOVX    @DPTR,A
+0013B8 A3                INC     DPTR
+0013B9 F0                MOVX    @DPTR,A
+  285:  	}
+0013BA A3                INC     DPTR
+0013BB F0                MOVX    @DPTR,A
+0013BC A3                INC     DPTR
+0013BD F0                MOVX    @DPTR,A
+  286: }
+  287: 
+0013BE 22                RET     
+----- FUNCTION Drawing_optima (END) -------
+
+
+----- FUNCTION _abs (BEGIN) -----
+ FILE: 'sensor.c'
+  259: u16_t abs(s16_t data_in)
+  260: {
+;---- Variable 'data_in' assigned to Register 'R6/R7' ----
+  261: 	if( data_in<=0)
+  262: 		data_in = 0 - data_in;
+0013BF D3                SETB    C
+0013C0 EF                MOV     A,R7
+0013C1 9400              SUBB    A,#00H
+0013C3 EE                MOV     A,R6
+0013C4 6480              XRL     A,#080H
+0013C6 9480              SUBB    A,#080H
+0013C8 5007              JNC     ?C0034?SENSOR
+  263: 	return ((u16_t) data_in);
+0013CA C3                CLR     C
+0013CB E4                CLR     A
+0013CC 9F                SUBB    A,R7
+0013CD FF                MOV     R7,A
+0013CE E4                CLR     A
+0013CF 9E                SUBB    A,R6
+0013D0 FE                MOV     R6,A
+0013D1         ?C0034?SENSOR:
+  264: }
+  265: 
+0013D1 22                RET     
+----- FUNCTION _abs (END) -------
+
+
+----- FUNCTION IPC_IsTxBuffEmpty (BEGIN) -----
+ FILE: 'ipc.c'
+  139: bit IPC_IsTxBuffEmpty()
+  140: {
+  141: 	if (ipcTxReadPtr == ipcTxWritePtr)
+  142: 		return 1;
+0013D2 9047C6            MOV     DPTR,#ipcTxWritePtr
+0013D5 E0                MOVX    A,@DPTR
+0013D6 FE                MOV     R6,A
+0013D7 A3                INC     DPTR
+0013D8 E0                MOVX    A,@DPTR
+0013D9 FF                MOV     R7,A
+0013DA 9047C4            MOV     DPTR,#ipcTxReadPtr
+0013DD E0                MOVX    A,@DPTR
+0013DE B50607            CJNE    A,AR6,?C0027?IPC
+0013E1 A3                INC     DPTR
+0013E2 E0                MOVX    A,@DPTR
+0013E3 B50702            CJNE    A,AR7,?C0027?IPC
+  143: 	return 0;
+0013E6 D3                SETB    C
+0013E7 22                RET     
+0013E8         ?C0027?IPC:
+  144: }
+0013E8 C3                CLR     C
+  145: 
+0013E9 22                RET     
+----- FUNCTION IPC_IsTxBuffEmpty (END) -------
+
+
+----- FUNCTION SPI_Initialize (BEGIN) -----
+ FILE: 'spi.c'
+   17: void SPI_Initialize()
+   18: {
+   19: 	REG_SPID_CTRL = 0x75;
+   20: 	REG_SPID_DELAY = 10;
+0013EA 908086            MOV     DPTR,#08086H
+0013ED 7475              MOV     A,#075H
+0013EF F0                MOVX    @DPTR,A
+   21: 	REG_SPID_TXADDR = ESWAP(SPI_TBUFF);
+0013F0 A3                INC     DPTR
+0013F1 740A              MOV     A,#0AH
+0013F3 F0                MOVX    @DPTR,A
+   22: 	REG_SPID_RXADDR = ESWAP(SPI_RBUFF);
+0013F4 90808A            MOV     DPTR,#0808AH
+0013F7 7418              MOV     A,#018H
+0013F9 F0                MOVX    @DPTR,A
+0013FA A3                INC     DPTR
+0013FB 7402              MOV     A,#02H
+0013FD F0                MOVX    @DPTR,A
+   23: 	REG_GPIO_OUT(3) |= 0x02;
+0013FE A3                INC     DPTR
+0013FF 741D              MOV     A,#01DH
+001401 F0                MOVX    @DPTR,A
+001402 A3                INC     DPTR
+001403 7402              MOV     A,#02H
+001405 F0                MOVX    @DPTR,A
+   24: }
+001406 908077            MOV     DPTR,#08077H
+001409 E0                MOVX    A,@DPTR
+00140A 4402              ORL     A,#02H
+00140C F0                MOVX    @DPTR,A
+   25: 
+00140D 22                RET     
+----- FUNCTION SPI_Initialize (END) -------
+
+
+----- FUNCTION mousePackage (BEGIN) -----
+ FILE: 'sys.c'
+  571: void mousePackage()
+  572: {	
+  573: 	m_hidBuff[0] = g_variable.deltaKey;
+  574: 	m_hidBuff[1] = (u8_t)(g_variable.X_data & 0x00ff);
+00140E 904EC4            MOV     DPTR,#g_variable+019H
+001411 E0                MOVX    A,@DPTR
+001412 904E21            MOV     DPTR,#m_hidBuff
+001415 F0                MOVX    @DPTR,A
+  575: 	m_hidBuff[2] = (u8_t)(g_variable.X_data >>8);
+001416 904EEB            MOV     DPTR,#g_variable+040H
+001419 E0                MOVX    A,@DPTR
+00141A FC                MOV     R4,A
+00141B A3                INC     DPTR
+00141C E0                MOVX    A,@DPTR
+00141D 904E22            MOV     DPTR,#m_hidBuff+01H
+001420 F0                MOVX    @DPTR,A
+  576: 	m_hidBuff[3] = (u8_t)(g_variable.Y_data & 0x00ff);
+001421 EC                MOV     A,R4
+001422 FF                MOV     R7,A
+001423 33                RLC     A
+001424 95E0              SUBB    A,ACC
+001426 A3                INC     DPTR
+001427 EF                MOV     A,R7
+001428 F0                MOVX    @DPTR,A
+  577: 	m_hidBuff[4] = (u8_t)(g_variable.Y_data >>8);
+001429 904EED            MOV     DPTR,#g_variable+042H
+00142C E0                MOVX    A,@DPTR
+00142D FC                MOV     R4,A
+00142E A3                INC     DPTR
+00142F E0                MOVX    A,@DPTR
+001430 904E24            MOV     DPTR,#m_hidBuff+03H
+001433 F0                MOVX    @DPTR,A
+  578: 	m_hidBuff[5] = g_variable.deltaZWheel;
+001434 EC                MOV     A,R4
+001435 FF                MOV     R7,A
+001436 33                RLC     A
+001437 95E0              SUBB    A,ACC
+001439 A3                INC     DPTR
+00143A EF                MOV     A,R7
+00143B F0                MOVX    @DPTR,A
+  579: 	m_hidBuff[6] = 0;	//tz
+00143C 904EC8            MOV     DPTR,#g_variable+01DH
+00143F E0                MOVX    A,@DPTR
+001440 904E26            MOV     DPTR,#m_hidBuff+05H
+001443 F0                MOVX    @DPTR,A
+  580: 	g_variable.deltaZWheel = 0;	
+001444 E4                CLR     A
+001445 A3                INC     DPTR
+001446 F0                MOVX    @DPTR,A
+  581: 	g_variable.sleepTimer = 0;
+001447 904EC8            MOV     DPTR,#g_variable+01DH
+00144A F0                MOVX    @DPTR,A
+  582: }
+00144B 904EB4            MOV     DPTR,#g_variable+09H
+00144E F0                MOVX    @DPTR,A
+00144F A3                INC     DPTR
+001450 F0                MOVX    @DPTR,A
+  583: 
+001451 22                RET     
+----- FUNCTION mousePackage (END) -------
+
+
+----- FUNCTION _IPC_Tx24GData (BEGIN) -----
+ FILE: 'ipc.c'
+   88: void IPC_Tx24GData(u8_t* dt, u8_t len)
+   89: {
+001452 901C1F            MOV     DPTR,#len
+001455 ED                MOV     A,R5
+001456 F0                MOVX    @DPTR,A
+;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
+   90: 	ipcSendBuff[0] = IPC_24G_DATA;
+   91: 	while (ipcTxReadPtr!=ipcTxWritePtr);
+001457 901A96            MOV     DPTR,#ipcSendBuff
+00145A 7406              MOV     A,#06H
+00145C F0                MOVX    @DPTR,A
+00145D         ?C0014?IPC:
+   92: 	ipcSendBuff[1] = len;
+00145D 9047C6            MOV     DPTR,#ipcTxWritePtr
+001460 E0                MOVX    A,@DPTR
+001461 FE                MOV     R6,A
+001462 A3                INC     DPTR
+001463 E0                MOVX    A,@DPTR
+001464 FF                MOV     R7,A
+001465 9047C4            MOV     DPTR,#ipcTxReadPtr
+001468 E0                MOVX    A,@DPTR
+001469 B506F1            CJNE    A,AR6,?C0014?IPC
+00146C A3                INC     DPTR
+00146D E0                MOVX    A,@DPTR
+00146E B507EC            CJNE    A,AR7,?C0014?IPC
+001471         ?C0015?IPC:
+   93: 	xmemcpy(&ipcSendBuff[2], dt, len);
+001471 901C1F            MOV     DPTR,#len
+001474 E0                MOVX    A,@DPTR
+001475 FD                MOV     R5,A
+001476 901A97            MOV     DPTR,#ipcSendBuff+01H
+001479 F0                MOVX    @DPTR,A
+   94: 	ipcTx(ipcSendBuff, len + 2);
+00147A 7E1A              MOV     R6,#HIGH ipcSendBuff+02H
+00147C 7F98              MOV     R7,#LOW ipcSendBuff+02H
+00147E 901BE6            MOV     DPTR,#?_xmemcpy?BYTE+05H
+001481 ED                MOV     A,R5
+001482 F0                MOVX    @DPTR,A
+001483 120F7E            LCALL   _xmemcpy
+   95: }
+001486 7B01              MOV     R3,#01H
+001488 7A1A              MOV     R2,#HIGH ipcSendBuff
+00148A 7996              MOV     R1,#LOW ipcSendBuff
+00148C 901C1F            MOV     DPTR,#len
+00148F E0                MOVX    A,@DPTR
+001490 2402              ADD     A,#02H
+001492 FD                MOV     R5,A
+001493 020771            LJMP    _ipcTx
+----- FUNCTION _IPC_Tx24GData (END) -------
+
+
+----- FUNCTION _IPC_TxBleData (BEGIN) -----
+ FILE: 'ipc.c'
+  112: void IPC_TxBleData(u8_t* dt, u8_t len)
+  113: {
+001496 901C21            MOV     DPTR,#len
+001499 ED                MOV     A,R5
+00149A F0                MOVX    @DPTR,A
+;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
+  114: 	ipcSendBuff[0] = IPC_BLE_DATA;
+  115: 	while (ipcTxReadPtr!=ipcTxWritePtr);
+00149B 901A96            MOV     DPTR,#ipcSendBuff
+00149E 7405              MOV     A,#05H
+0014A0 F0                MOVX    @DPTR,A
+0014A1         ?C0021?IPC:
+  116: 	ipcSendBuff[1] = len;
+0014A1 9047C6            MOV     DPTR,#ipcTxWritePtr
+0014A4 E0                MOVX    A,@DPTR
+0014A5 FE                MOV     R6,A
+0014A6 A3                INC     DPTR
+0014A7 E0                MOVX    A,@DPTR
+0014A8 FF                MOV     R7,A
+0014A9 9047C4            MOV     DPTR,#ipcTxReadPtr
+0014AC E0                MOVX    A,@DPTR
+0014AD B506F1            CJNE    A,AR6,?C0021?IPC
+0014B0 A3                INC     DPTR
+0014B1 E0                MOVX    A,@DPTR
+0014B2 B507EC            CJNE    A,AR7,?C0021?IPC
+0014B5         ?C0022?IPC:
+  117: 	xmemcpy(&ipcSendBuff[2], dt, len);
+0014B5 901C21            MOV     DPTR,#len
+0014B8 E0                MOVX    A,@DPTR
+0014B9 FD                MOV     R5,A
+0014BA 901A97            MOV     DPTR,#ipcSendBuff+01H
+0014BD F0                MOVX    @DPTR,A
+  118: 	ipcTx(ipcSendBuff, len + 2);
+0014BE 7E1A              MOV     R6,#HIGH ipcSendBuff+02H
+0014C0 7F98              MOV     R7,#LOW ipcSendBuff+02H
+0014C2 901BE6            MOV     DPTR,#?_xmemcpy?BYTE+05H
+0014C5 ED                MOV     A,R5
+0014C6 F0                MOVX    @DPTR,A
+0014C7 120F7E            LCALL   _xmemcpy
+  119: }
+0014CA 7B01              MOV     R3,#01H
+0014CC 7A1A              MOV     R2,#HIGH ipcSendBuff
+0014CE 7996              MOV     R1,#LOW ipcSendBuff
+0014D0 901C21            MOV     DPTR,#len
+0014D3 E0                MOVX    A,@DPTR
+0014D4 2402              ADD     A,#02H
+0014D6 FD                MOV     R5,A
+0014D7 020771            LJMP    _ipcTx
+----- FUNCTION _IPC_TxBleData (END) -------
+
+
+----- FUNCTION deviceTimer500ms (BEGIN) -----
+ FILE: 'sys.c'
+ 1199: static void deviceTimer500ms()
+ 1200: {
+ 1201: 	u8_t sleepState = 0;
+ 1202: 	g_variable.sleepTimer++;
+0014DA E4                CLR     A
+0014DB 901C1A            MOV     DPTR,#sleepState
+0014DE F0                MOVX    @DPTR,A
+ 1203: 	switch (g_variable.currentState) 
+0014DF 904EB5            MOV     DPTR,#g_variable+0AH
+0014E2 E0                MOVX    A,@DPTR
+0014E3 04                INC     A
+0014E4 F0                MOVX    @DPTR,A
+0014E5 7006              JNZ     ?C0190?SYS
+0014E7 904EB4            MOV     DPTR,#g_variable+09H
+0014EA E0                MOVX    A,@DPTR
+0014EB 04                INC     A
+0014EC F0                MOVX    @DPTR,A
+0014ED         ?C0190?SYS:
+ 1204: 	{
+0014ED 904EAD            MOV     DPTR,#g_variable+02H
+0014F0 E0                MOVX    A,@DPTR
+0014F1 14                DEC     A
+0014F2 6060              JZ      ?C0161?SYS
+0014F4 24FE              ADD     A,#0FEH
+0014F6 6021              JZ      ?C0157?SYS
+0014F8 24FD              ADD     A,#0FDH
+0014FA 6077              JZ      ?C0163?SYS
+0014FC 14                DEC     A
+0014FD 6035              JZ      ?C0159?SYS
+0014FF 14                DEC     A
+001500 6002              JZ      $ + 4H
+001502 A192              AJMP    ?C0165?SYS
+ 1205: 		case DEVICE_MODE_BLE_ADV:
+ 1206: 			 sleepState = DEVICE_MODE_BLE;
+001504         ?C0154?SYS:
+ 1207: 			 if (g_variable.sleepTimer == 16)
+001504 901C1A            MOV     DPTR,#sleepState
+001507 7409              MOV     A,#09H
+001509 F0                MOVX    @DPTR,A
+ 1208: 			 {
+00150A 904EB4            MOV     DPTR,#g_variable+09H
+00150D E0                MOVX    A,@DPTR
+00150E 7004              JNZ     ?C0191?SYS
+001510 A3                INC     DPTR
+001511 E0                MOVX    A,@DPTR
+001512 6410              XRL     A,#010H
+001514         ?C0191?SYS:
+001514 707C              JNZ     ?C0165?SYS
+ 1209: 		 		goto LONG_SLEEP;
+ 1210: 			 }
+001516 8078              SJMP    LONG_SLEEP?SYS
+ 1211: 			 break;
+ 1212: 		case DEVICE_MODE_DISC:
+001518 22                RET     
+ 1213: 			sleepState = DEVICE_MODE_BT;
+001519         ?C0157?SYS:
+ 1214: 			if (g_variable.sleepTimer == 360)	//BT Discover time 360 = 3min
+001519 901C1A            MOV     DPTR,#sleepState
+00151C 7402              MOV     A,#02H
+00151E F0                MOVX    @DPTR,A
+ 1215: 			{
+00151F 904EB4            MOV     DPTR,#g_variable+09H
+001522 E0                MOVX    A,@DPTR
+001523 6401              XRL     A,#01H
+001525 7004              JNZ     ?C0192?SYS
+001527 A3                INC     DPTR
+001528 E0                MOVX    A,@DPTR
+001529 6468              XRL     A,#068H
+00152B         ?C0192?SYS:
+00152B 7065              JNZ     ?C0165?SYS
+ 1216: 				m_lpmMode = 1;
+ 1217: 				goto LONG_SLEEP;
+00152D 904131            MOV     DPTR,#m_lpmMode
+001530 04                INC     A
+001531 F0                MOVX    @DPTR,A
+ 1218: 			}
+001532 805C              SJMP    LONG_SLEEP?SYS
+ 1219: 			break;
+ 1220: 		case DEVICE_MODE_BLE_BB_CONNECT:	
+ 1221: 			sleepState = DEVICE_MODE_BLE;
+001534         ?C0159?SYS:
+ 1222: 			if (g_variable.sleepTimer == 1200)	//BT sleep time 1200 = 10min
+001534 901C1A            MOV     DPTR,#sleepState
+001537 7409              MOV     A,#09H
+001539 F0                MOVX    @DPTR,A
+ 1223: 			{	
+00153A 904EB4            MOV     DPTR,#g_variable+09H
+00153D E0                MOVX    A,@DPTR
+00153E 6404              XRL     A,#04H
+001540 7004              JNZ     ?C0193?SYS
+001542 A3                INC     DPTR
+001543 E0                MOVX    A,@DPTR
+001544 64B0              XRL     A,#0B0H
+001546         ?C0193?SYS:
+001546 704A              JNZ     ?C0165?SYS
+ 1224: 				IPC_TxControlCmd(IPC_CMD_LE_DISCONNECT);
+ 1225: 				g_variable.nextMode = DEVICE_MODE_PREPARE_SLEEP;
+001548 7F11              MOV     R7,#011H
+00154A 12074A            LCALL   _IPC_TxControlCmd
+ 1226: 			}
+00154D 904EAE            MOV     DPTR,#g_variable+03H
+001550 7406              MOV     A,#06H
+001552 F0                MOVX    @DPTR,A
+ 1227: 			break;
+ 1228: #if MOUSE_BT_MODE_ENABLE
+001553 22                RET     
+ 1229: 		case DEVICE_MODE_BT:
+ 1230: 			sleepState = DEVICE_MODE_BT;
+ 1231: 			if (g_variable.sleepTimer == 1200)	//BT sleep time 1200 = 10min
+ 1232: 			{	
+ 1233: 				IPC_TxControlCmd(IPC_CMD_DISCONNECT);
+ 1234: 				g_variable.nextMode = DEVICE_MODE_NONE;
+ 1235: 			}
+ 1236: 			break;
+ 1237: #endif
+ 1238: 		case DEVICE_MODE_24G:
+001554         ?C0161?SYS:
+ 1239: 			sleepState = DEVICE_MODE_24G;
+001554 901C1A            MOV     DPTR,#sleepState
+001557 7401              MOV     A,#01H
+001559 F0                MOVX    @DPTR,A
+ 1240: 			if ((g_variable.sleepTimer > 1200) && (g_variable.g24DongleExist == 1))
+00155A D3                SETB    C
+00155B 904EB5            MOV     DPTR,#g_variable+0AH
+00155E E0                MOVX    A,@DPTR
+00155F 94B0              SUBB    A,#0B0H
+001561 904EB4            MOV     DPTR,#g_variable+09H
+001564 E0                MOVX    A,@DPTR
+001565 9404              SUBB    A,#04H
+001567 4029              JC      ?C0165?SYS
+001569 904ED3            MOV     DPTR,#g_variable+028H
+00156C E0                MOVX    A,@DPTR
+00156D B40122            CJNE    A,#01H,?C0165?SYS
+ 1241: 			{
+ 1242: 				goto LONG_SLEEP; 
+001570 801E              SJMP    LONG_SLEEP?SYS
+ 1243: 			}
+ 1244: 			break;
+001572 22                RET     
+ 1245: 		case DEVICE_MODE_PREPARE_SLEEP:
+001573         ?C0163?SYS:
+ 1246: 			sleepState = DEVICE_MODE_BT;
+001573 901C1A            MOV     DPTR,#sleepState
+001576 7402              MOV     A,#02H
+001578 F0                MOVX    @DPTR,A
+ 1247: 			if (!IPC_IsTxBuffEmpty())
+001579 71D2              ACALL   IPC_IsTxBuffEmpty
+00157B 5015              JNC     ?C0165?SYS
+00157D         ?C0164?SYS:
+ 1248: 				return;
+ 1249: 			if (g_variable.sleepTimer >= 3)		//24G sleep time 600=10min
+00157D C3                CLR     C
+00157E 904EB5            MOV     DPTR,#g_variable+0AH
+001581 E0                MOVX    A,@DPTR
+001582 9403              SUBB    A,#03H
+001584 904EB4            MOV     DPTR,#g_variable+09H
+001587 E0                MOVX    A,@DPTR
+001588 9400              SUBB    A,#00H
+00158A 4006              JC      ?C0165?SYS
+ 1250: 			{
+ 1251: 				goto LONG_SLEEP;
+00158C 8002              SJMP    LONG_SLEEP?SYS
+ 1252: 			}
+ 1253: 			break;
+00158E 22                RET     
+ 1254: 	}
+00158F 22                RET     
+ 1255: 	return;
+ 1256: 		
+ 1257: 	LONG_SLEEP:
+001590         LONG_SLEEP:
+ 1258: //		IIC_WriteBlock(EEPROM_CONN_MODE,1,&sleepState);
+ 1259: 		deviceLongSleep();
+001590 B193              ACALL   deviceLongSleep
+ 1260: }
+001592         ?C0165?SYS:
+001592 22                RET     
+----- FUNCTION deviceTimer500ms (END) -------
+
+
+----- FUNCTION deviceLongSleep (BEGIN) -----
+ FILE: 'sys.c'
+  794: static void deviceLongSleep()
+  795: {
+  796: 	g_variable.sleepTimer = 0;
+  797: 	g_variable.wheelTimer = 0;
+001593 E4                CLR     A
+001594 904EB4            MOV     DPTR,#g_variable+09H
+001597 F0                MOVX    @DPTR,A
+001598 A3                INC     DPTR
+001599 F0                MOVX    @DPTR,A
+  798: 	g_variable.lockLpm = 1;
+00159A 904EB7            MOV     DPTR,#g_variable+0CH
+00159D F0                MOVX    @DPTR,A
+  799: 	g_variable.currentState = DEVICE_MODE_NONE;
+00159E 904EB1            MOV     DPTR,#g_variable+06H
+0015A1 04                INC     A
+0015A2 F0                MOVX    @DPTR,A
+  800: 	IPC_TxControlCmd(IPC_CMD_ENTER_HIBERNATE);
+0015A3 E4                CLR     A
+0015A4 904EAD            MOV     DPTR,#g_variable+02H
+0015A7 F0                MOVX    @DPTR,A
+  801: }
+0015A8 7F19              MOV     R7,#019H
+0015AA 02074A            LJMP    _IPC_TxControlCmd
+----- FUNCTION deviceLongSleep (END) -------
+
+
+----- FUNCTION deviceTimer100ms (BEGIN) -----
+ FILE: 'sys.c'
+ 1303: static void deviceTimer100ms()
+ 1304: {
+ 1305: 	if (g_variable.wheelTimer!=0) 
+ 1306: 		g_variable.wheelTimer--;
+0015AD 904EB7            MOV     DPTR,#g_variable+0CH
+0015B0 E0                MOVX    A,@DPTR
+0015B1 6002              JZ      ?C0167?SYS
+ 1307: 	g_variable.timer100msCount++;
+0015B3 14                DEC     A
+0015B4 F0                MOVX    @DPTR,A
+0015B5         ?C0167?SYS:
+ 1308: 	if (g_variable.modeSwCount)
+0015B5 904EB9            MOV     DPTR,#g_variable+0EH
+0015B8 E0                MOVX    A,@DPTR
+0015B9 04                INC     A
+0015BA F0                MOVX    @DPTR,A
+ 1309: 		g_variable.modeSwCount ++;
+0015BB 904EDC            MOV     DPTR,#g_variable+031H
+0015BE E0                MOVX    A,@DPTR
+0015BF 6002              JZ      ?C0168?SYS
+ 1310: //	deviceLedFlash();
+0015C1 04                INC     A
+0015C2 F0                MOVX    @DPTR,A
+0015C3         ?C0168?SYS:
+ 1311: //	comboKeyPb();
+ 1312: //	Power_low_detect();
+ 1313: 
+ 1314: 	if(g_variable.enterHibernateFlag == 1){
+0015C3 904EF1            MOV     DPTR,#g_variable+046H
+0015C6 E0                MOVX    A,@DPTR
+0015C7 B40110            CJNE    A,#01H,?C0171?SYS
+ 1315: 		if(g_variable.enterHibernateTimer == 0){
+0015CA A3                INC     DPTR
+0015CB E0                MOVX    A,@DPTR
+0015CC 7006              JNZ     ?C0170?SYS
+ 1316: 			g_variable.enterHibernateFlag = 0;
+0015CE 904EF1            MOV     DPTR,#g_variable+046H
+0015D1 F0                MOVX    @DPTR,A
+ 1317: 			deviceLongSleep();
+0015D2 B193              ACALL   deviceLongSleep
+ 1318: 		}
+0015D4         ?C0170?SYS:
+ 1319: 		g_variable.enterHibernateTimer--;
+0015D4 904EF2            MOV     DPTR,#g_variable+047H
+0015D7 E0                MOVX    A,@DPTR
+0015D8 14                DEC     A
+0015D9 F0                MOVX    @DPTR,A
+ 1320: 	}	
+ 1321: }
+0015DA         ?C0171?SYS:
+0015DA 22                RET     
+----- FUNCTION deviceTimer100ms (END) -------
+
+
+----- FUNCTION deviceSwitch24GMode (BEGIN) -----
+ FILE: 'sys.c'
+  692: static void deviceSwitch24GMode()
+  693: {
+  694: 	IIC_Read(EEPROM_24G_ADDR+2, 4, (u8_t *)m_24gAddr);
+  695: 	if(m_24gAddr[0] == 0xff && m_24gAddr[1] == 0xff && m_24gAddr[2] == 0xff && m_24gAddr[3] == 0xff)
+0015DB 7B01              MOV     R3,#01H
+0015DD 7A49              MOV     R2,#HIGH m_24gAddr
+0015DF 7950              MOV     R1,#LOW m_24gAddr
+0015E1 7D04              MOV     R5,#04H
+0015E3 7C00              MOV     R4,#00H
+0015E5 7FA4              MOV     R7,#0A4H
+0015E7 7E3F              MOV     R6,#03FH
+0015E9 120ED1            LCALL   _IIC_Read
+  696: 	{
+0015EC 904950            MOV     DPTR,#m_24gAddr
+0015EF E0                MOVX    A,@DPTR
+0015F0 F4                CPL     A
+0015F1 7028              JNZ     ?C0122?SYS
+0015F3 A3                INC     DPTR
+0015F4 E0                MOVX    A,@DPTR
+0015F5 F4                CPL     A
+0015F6 7023              JNZ     ?C0122?SYS
+0015F8 A3                INC     DPTR
+0015F9 E0                MOVX    A,@DPTR
+0015FA B4FF1E            CJNE    A,#0FFH,?C0122?SYS
+0015FD A3                INC     DPTR
+0015FE E0                MOVX    A,@DPTR
+0015FF B4FF19            CJNE    A,#0FFH,?C0122?SYS
+  697: 		m_24gAddr[0] = 0x0f;
+  698: 		m_24gAddr[1] = 0x0f;
+001602 904950            MOV     DPTR,#m_24gAddr
+001605 740F              MOV     A,#0FH
+001607 F0                MOVX    @DPTR,A
+  699: 		m_24gAddr[2] = 0x0f;
+001608 A3                INC     DPTR
+001609 F0                MOVX    @DPTR,A
+  700: 		m_24gAddr[3] = 0x0f;
+00160A A3                INC     DPTR
+00160B F0                MOVX    @DPTR,A
+  701: 		IPC_TxControlCmd(IPC_CMD_START_24G);
+00160C A3                INC     DPTR
+00160D F0                MOVX    @DPTR,A
+  702: 		g_variable.Factory_Pwr_on_f = 1;
+00160E 7F23              MOV     R7,#023H
+001610 12074A            LCALL   _IPC_TxControlCmd
+  703: 	}
+001613 904EE2            MOV     DPTR,#g_variable+037H
+001616 7401              MOV     A,#01H
+001618 F0                MOVX    @DPTR,A
+  704: 	else
+001619 8005              SJMP    ?C0123?SYS
+00161B         ?C0122?SYS:
+  705: 		IPC_TxControlCmd(IPC_CMD_START_24G);
+00161B 7F23              MOV     R7,#023H
+00161D 12074A            LCALL   _IPC_TxControlCmd
+001620         ?C0123?SYS:
+  706: 	g_variable.currentState = DEVICE_MODE_24G;
+001620 904EAD            MOV     DPTR,#g_variable+02H
+001623 7401              MOV     A,#01H
+001625 F0                MOVX    @DPTR,A
+  707: }
+001626 22                RET     
+----- FUNCTION deviceSwitch24GMode (END) -------
+
+
+----- FUNCTION clearGlobalMem (BEGIN) -----
+ FILE: 'sys.c'
+  786: void clearGlobalMem()
+  787: {
+  788: 	xmemclear_0(m_hidBuff,32);
+  789: 	xmemclear_0((u8_t *)&g_variable,sizeof(G_VARIABLE_MAP));
+001627 7B01              MOV     R3,#01H
+001629 7A4E              MOV     R2,#HIGH m_hidBuff
+00162B 7921              MOV     R1,#LOW m_hidBuff
+00162D 7D20              MOV     R5,#020H
+00162F 7C00              MOV     R4,#00H
+001631 D14A              ACALL   _xmemclear_0
+  790: 	g_variable.bufferEnd = 0xff;
+001633 7B01              MOV     R3,#01H
+001635 7A4E              MOV     R2,#HIGH g_variable
+001637 79AB              MOV     R1,#LOW g_variable
+001639 7D5B              MOV     R5,#05BH
+00163B 7C00              MOV     R4,#00H
+00163D D14A              ACALL   _xmemclear_0
+  791: 	g_variable.bufferSize = sizeof(g_variable);
+00163F 904F04            MOV     DPTR,#g_variable+059H
+001642 74FF              MOV     A,#0FFH
+001644 F0                MOVX    @DPTR,A
+  792: }
+001645 A3                INC     DPTR
+001646 745B              MOV     A,#05BH
+001648 F0                MOVX    @DPTR,A
+  793: 
+001649 22                RET     
+----- FUNCTION clearGlobalMem (END) -------
+
+
+----- FUNCTION _xmemclear_0 (BEGIN) -----
+ FILE: 'utilities.c'
+   24: void xmemclear_0(u8_t *dest, u16_t len)
+   25: {
+00164A 901C0A            MOV     DPTR,#dest
+00164D EB                MOV     A,R3
+00164E F0                MOVX    @DPTR,A
+00164F A3                INC     DPTR
+001650 EA                MOV     A,R2
+001651 F0                MOVX    @DPTR,A
+001652 A3                INC     DPTR
+001653 E9                MOV     A,R1
+001654 F0                MOVX    @DPTR,A
+;---- Variable 'len' assigned to Register 'R4/R5' ----
+   26: 	while(len--)
+001655         ?C0008?UTILITIES:
+   27: 		*dest++ = 0x00;
+001655 ED                MOV     A,R5
+001656 1D                DEC     R5
+001657 AE04              MOV     R6,AR4
+001659 7001              JNZ     ?C0026?UTILITIES
+00165B 1C                DEC     R4
+00165C         ?C0026?UTILITIES:
+00165C 4E                ORL     A,R6
+00165D 6016              JZ      ?C0010?UTILITIES
+   28: 	return;
+00165F 901C0A            MOV     DPTR,#dest
+001662 E0                MOVX    A,@DPTR
+001663 FB                MOV     R3,A
+001664 A3                INC     DPTR
+001665 E4                CLR     A
+001666 75F001            MOV     B,#01H
+001669 12019D            LCALL   ?C?ILDIX
+00166C A9F0              MOV     R1,B
+00166E FA                MOV     R2,A
+00166F E4                CLR     A
+001670 12013F            LCALL   ?C?CSTPTR
+001673 80E0              SJMP    ?C0008?UTILITIES
+   29: }
+001675         ?C0010?UTILITIES:
+001675 22                RET     
+----- FUNCTION _xmemclear_0 (END) -------
+
+
+----- FUNCTION leReconnStart (BEGIN) -----
+ FILE: 'sys.c'
+  837: void leReconnStart()
+  838: {
+  839: 	g_variable.sleepTimer = 0;
+  840: 	IIC_Read(EEPROM_RECONN_LE_ADDR,6,(u8_t *)m_reconnLeAddr);
+001676 E4                CLR     A
+001677 904EB4            MOV     DPTR,#g_variable+09H
+00167A F0                MOVX    @DPTR,A
+00167B A3                INC     DPTR
+00167C F0                MOVX    @DPTR,A
+  841: 	g_variable.currentState = DEVICE_MODE_BLE_ADV;
+00167D 7B01              MOV     R3,#01H
+00167F 7A45              MOV     R2,#HIGH m_reconnLeAddr
+001681 793E              MOV     R1,#LOW m_reconnLeAddr
+001683 7D06              MOV     R5,#06H
+001685 FC                MOV     R4,A
+001686 7F9C              MOV     R7,#09CH
+001688 7E3F              MOV     R6,#03FH
+00168A 120ED1            LCALL   _IIC_Read
+  842: 	IPC_TxControlCmd(IPC_CMD_START_ADV_RECONN);
+00168D 904EAD            MOV     DPTR,#g_variable+02H
+001690 7408              MOV     A,#08H
+001692 F0                MOVX    @DPTR,A
+  843: }
+001693 7F27              MOV     R7,#027H
+001695 02074A            LJMP    _IPC_TxControlCmd
+----- FUNCTION leReconnStart (END) -------
+
+
+----- FUNCTION YC_Ice_break (BEGIN) -----
+ FILE: 'utilities.c'
+    4: void YC_Ice_break()
+    5: {
+    6: 	CPUB_ICE_CTRL = 1;
+    7: 	return;
+001698 908280            MOV     DPTR,#08280H
+00169B 7401              MOV     A,#01H
+00169D F0                MOVX    @DPTR,A
+    8: }
+00169E 22                RET     
+----- FUNCTION YC_Ice_break (END) -------
+
+
+----- FUNCTION _dmemcpy (BEGIN) -----
+ FILE: 'utilities.c'
+   17: void dmemcpy(u8_t *dest, u8_t* src, u16_t len) 
+   18: {
+00169F 901BD2            MOV     DPTR,#dest
+0016A2 EB                MOV     A,R3
+0016A3 F0                MOVX    @DPTR,A
+0016A4 A3                INC     DPTR
+0016A5 EA                MOV     A,R2
+0016A6 F0                MOVX    @DPTR,A
+0016A7 A3                INC     DPTR
+0016A8 E9                MOV     A,R1
+0016A9 F0                MOVX    @DPTR,A
+   19: 	while(len--)
+0016AA         ?C0005?UTILITIES:
+   20: 		*dest++ = *src++;
+0016AA 901BD8            MOV     DPTR,#len
+0016AD 74FF              MOV     A,#0FFH
+0016AF F5F0              MOV     B,A
+0016B1 12019D            LCALL   ?C?ILDIX
+0016B4 45F0              ORL     A,B
+0016B6 602A              JZ      ?C0007?UTILITIES
+   21: 	return;
+0016B8 901BD5            MOV     DPTR,#src
+0016BB E0                MOVX    A,@DPTR
+0016BC FB                MOV     R3,A
+0016BD A3                INC     DPTR
+0016BE E4                CLR     A
+0016BF 75F001            MOV     B,#01H
+0016C2 12019D            LCALL   ?C?ILDIX
+0016C5 A9F0              MOV     R1,B
+0016C7 FA                MOV     R2,A
+0016C8 1200F9            LCALL   ?C?CLDPTR
+0016CB FF                MOV     R7,A
+0016CC 901BD2            MOV     DPTR,#dest
+0016CF E0                MOVX    A,@DPTR
+0016D0 FB                MOV     R3,A
+0016D1 A3                INC     DPTR
+0016D2 E4                CLR     A
+0016D3 75F001            MOV     B,#01H
+0016D6 12019D            LCALL   ?C?ILDIX
+0016D9 A9F0              MOV     R1,B
+0016DB FA                MOV     R2,A
+0016DC EF                MOV     A,R7
+0016DD 12013F            LCALL   ?C?CSTPTR
+0016E0 80C8              SJMP    ?C0005?UTILITIES
+   22: }
+0016E2         ?C0007?UTILITIES:
+0016E2 22                RET     
+----- FUNCTION _dmemcpy (END) -------
+
+
+----- FUNCTION _xmemclear_ff (BEGIN) -----
+ FILE: 'utilities.c'
+   31: void xmemclear_ff(u8_t *dest, u16_t len)
+   32: {
+0016E3 901C0D            MOV     DPTR,#dest
+0016E6 EB                MOV     A,R3
+0016E7 F0                MOVX    @DPTR,A
+0016E8 A3                INC     DPTR
+0016E9 EA                MOV     A,R2
+0016EA F0                MOVX    @DPTR,A
+0016EB A3                INC     DPTR
+0016EC E9                MOV     A,R1
+0016ED F0                MOVX    @DPTR,A
+;---- Variable 'len' assigned to Register 'R4/R5' ----
+   33: 	while(len--)
+0016EE         ?C0011?UTILITIES:
+   34: 		*dest++ = 0xff;
+0016EE ED                MOV     A,R5
+0016EF 1D                DEC     R5
+0016F0 AE04              MOV     R6,AR4
+0016F2 7001              JNZ     ?C0027?UTILITIES
+0016F4 1C                DEC     R4
+0016F5         ?C0027?UTILITIES:
+0016F5 4E                ORL     A,R6
+0016F6 6017              JZ      ?C0013?UTILITIES
+   35: 	return;
+0016F8 901C0D            MOV     DPTR,#dest
+0016FB E0                MOVX    A,@DPTR
+0016FC FB                MOV     R3,A
+0016FD A3                INC     DPTR
+0016FE E4                CLR     A
+0016FF 75F001            MOV     B,#01H
+001702 12019D            LCALL   ?C?ILDIX
+001705 A9F0              MOV     R1,B
+001707 FA                MOV     R2,A
+001708 74FF              MOV     A,#0FFH
+00170A 12013F            LCALL   ?C?CSTPTR
+00170D 80DF              SJMP    ?C0011?UTILITIES
+   36: }
+00170F         ?C0013?UTILITIES:
+00170F 22                RET     
+----- FUNCTION _xmemclear_ff (END) -------
+
+
+----- FUNCTION _compare_str (BEGIN) -----
+ FILE: 'utilities.c'
+   55: u8_t compare_str(u8_t * str1,u8_t * str2,u8_t len)
+   56: {
+001710 901BDA            MOV     DPTR,#str1
+001713 EB                MOV     A,R3
+001714 F0                MOVX    @DPTR,A
+001715 A3                INC     DPTR
+001716 EA                MOV     A,R2
+001717 F0                MOVX    @DPTR,A
+001718 A3                INC     DPTR
+001719 E9                MOV     A,R1
+00171A F0                MOVX    @DPTR,A
+   57: 	u8_t i;
+   58: 	for (i=0;i < len;i++)
+;---- Variable 'i' assigned to Register 'R7' ----
+00171B E4                CLR     A
+00171C FF                MOV     R7,A
+00171D         ?C0021?UTILITIES:
+00171D 901BE0            MOV     DPTR,#len
+001720 E0                MOVX    A,@DPTR
+001721 FE                MOV     R6,A
+001722 EF                MOV     A,R7
+001723 C3                CLR     C
+001724 9E                SUBB    A,R6
+001725 5030              JNC     ?C0022?UTILITIES
+   59: 	{
+   60: 		if (str1[i] != str2[i])
+001727 901BDD            MOV     DPTR,#str2
+00172A E0                MOVX    A,@DPTR
+00172B FB                MOV     R3,A
+00172C A3                INC     DPTR
+00172D E0                MOVX    A,@DPTR
+00172E FA                MOV     R2,A
+00172F A3                INC     DPTR
+001730 E0                MOVX    A,@DPTR
+001731 F9                MOV     R1,A
+001732 8F82              MOV     DPL,R7
+001734 758300            MOV     DPH,#00H
+001737 120112            LCALL   ?C?CLDOPTR
+00173A FE                MOV     R6,A
+00173B 901BDA            MOV     DPTR,#str1
+00173E E0                MOVX    A,@DPTR
+00173F FB                MOV     R3,A
+001740 A3                INC     DPTR
+001741 E0                MOVX    A,@DPTR
+001742 FA                MOV     R2,A
+001743 A3                INC     DPTR
+001744 E0                MOVX    A,@DPTR
+001745 F9                MOV     R1,A
+001746 8F82              MOV     DPL,R7
+001748 758300            MOV     DPH,#00H
+00174B 120112            LCALL   ?C?CLDOPTR
+00174E 6E                XRL     A,R6
+00174F 6003              JZ      ?C0023?UTILITIES
+   61: 			return 0x00;
+001751 7F00              MOV     R7,#00H
+001753 22                RET     
+   62: 	}
+001754         ?C0023?UTILITIES:
+001754 0F                INC     R7
+001755 80C6              SJMP    ?C0021?UTILITIES
+001757         ?C0022?UTILITIES:
+   63: 	return 0x01;
+001757 7F01              MOV     R7,#01H
+   64: }
+001759 22                RET     
+----- FUNCTION _compare_str (END) -------
+
+
+----- FUNCTION _GPIO_ClearWakeup (BEGIN) -----
+ FILE: 'gpio.c'
+   89: void GPIO_ClearWakeup(u8_t gpio_num)
+   90: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   91: 	u8_t queue, group;
+   92: 	queue = (gpio_num & 7);
+00175A EF                MOV     A,R7
+00175B 5407              ANL     A,#07H
+00175D FE                MOV     R6,A
+;---- Variable 'queue' assigned to Register 'R6' ----
+   93: 	group = (gpio_num>>3 & 3);
+00175E EF                MOV     A,R7
+00175F 13                RRC     A
+001760 13                RRC     A
+001761 13                RRC     A
+001762 5403              ANL     A,#03H
+001764 FF                MOV     R7,A
+;---- Variable 'group' assigned to Register 'R7' ----
+   94: 	*(YC_GPIOWakeupL+group) &= ~(1<<queue);
+001765 24A0              ADD     A,#LOW YC_GPIOWakeupL
+001767 F582              MOV     DPL,A
+001769 E4                CLR     A
+00176A 3400              ADDC    A,#HIGH YC_GPIOWakeupL
+00176C F583              MOV     DPH,A
+00176E C083              PUSH    DPH
+001770 C082              PUSH    DPL
+001772 E0                MOVX    A,@DPTR
+001773 FD                MOV     R5,A
+001774 7401              MOV     A,#01H
+001776 A806              MOV     R0,AR6
+001778 08                INC     R0
+001779 8002              SJMP    ?C0031?GPIO
+00177B         ?C0030?GPIO:
+00177B C3                CLR     C
+00177C 33                RLC     A
+00177D         ?C0031?GPIO:
+00177D D8FC              DJNZ    R0,?C0030?GPIO
+00177F F4                CPL     A
+001780 FC                MOV     R4,A
+001781 5D                ANL     A,R5
+001782 D082              POP     DPL
+001784 D083              POP     DPH
+001786 F0                MOVX    @DPTR,A
+   95: 	*(YC_GPIOWakeupH+group) &= ~(1<<queue);
+001787 74A4              MOV     A,#LOW YC_GPIOWakeupH
+001789 2F                ADD     A,R7
+00178A F582              MOV     DPL,A
+00178C E4                CLR     A
+00178D 3400              ADDC    A,#HIGH YC_GPIOWakeupH
+00178F F583              MOV     DPH,A
+001791 E0                MOVX    A,@DPTR
+001792 5C                ANL     A,R4
+001793 F0                MOVX    @DPTR,A
+   96: }
+001794 22                RET     
+----- FUNCTION _GPIO_ClearWakeup (END) -------
+
+
+----- FUNCTION _IIC_write (BEGIN) -----
+ FILE: 'iic.c'
+   35: void IIC_write(u16_t addr,u16_t len, u8_t* pbuff)
+   36: {
+001795 901B94            MOV     DPTR,#addr
+001798 EE                MOV     A,R6
+001799 F0                MOVX    @DPTR,A
+00179A A3                INC     DPTR
+00179B EF                MOV     A,R7
+00179C F0                MOVX    @DPTR,A
+;---- Variable 'pbuff' assigned to Register 'R1/R2/R3' ----
+00179D A3                INC     DPTR
+00179E EC                MOV     A,R4
+00179F F0                MOVX    @DPTR,A
+0017A0 A3                INC     DPTR
+0017A1 ED                MOV     A,R5
+0017A2 F0                MOVX    @DPTR,A
+   37: 	u8_t ptemp_addr[EEP_PAZE_SIZE+3];
+   38: 	xmemcpy(ptemp_addr+3, pbuff, len);
+0017A3 7E1B              MOV     R6,#HIGH ptemp_addr+03H
+0017A5 7F9B              MOV     R7,#LOW ptemp_addr+03H
+0017A7 901BE6            MOV     DPTR,#?_xmemcpy?BYTE+05H
+0017AA F0                MOVX    @DPTR,A
+0017AB 120F7E            LCALL   _xmemcpy
+   39: 	ptemp_addr[0] = 0xa0;
+0017AE 901B98            MOV     DPTR,#ptemp_addr
+0017B1 74A0              MOV     A,#0A0H
+0017B3 F0                MOVX    @DPTR,A
+   40: 	(u16_t)ptemp_addr[1] = addr;
+0017B4 901B94            MOV     DPTR,#addr
+0017B7 E0                MOVX    A,@DPTR
+0017B8 FF                MOV     R7,A
+0017B9 A3                INC     DPTR
+0017BA E0                MOVX    A,@DPTR
+0017BB 901B99            MOV     DPTR,#ptemp_addr+01H
+0017BE CF                XCH     A,R7
+0017BF F0                MOVX    @DPTR,A
+0017C0 A3                INC     DPTR
+0017C1 EF                MOV     A,R7
+0017C2 F0                MOVX    @DPTR,A
+   41: 	REG_IICD_TXLEN = ESWAP(len+3);
+0017C3 901B97            MOV     DPTR,#len+01H
+0017C6 E0                MOVX    A,@DPTR
+0017C7 2403              ADD     A,#03H
+0017C9 FD                MOV     R5,A
+0017CA 901B96            MOV     DPTR,#len
+0017CD E0                MOVX    A,@DPTR
+0017CE 3400              ADDC    A,#00H
+0017D0 FC                MOV     R4,A
+0017D1 ED                MOV     A,R5
+0017D2 FA                MOV     R2,A
+0017D3 EC                MOV     A,R4
+0017D4 FF                MOV     R7,A
+0017D5 EA                MOV     A,R2
+0017D6 FE                MOV     R6,A
+0017D7 EF                MOV     A,R7
+0017D8 908098            MOV     DPTR,#08098H
+0017DB EE                MOV     A,R6
+0017DC F0                MOVX    @DPTR,A
+0017DD A3                INC     DPTR
+0017DE EF                MOV     A,R7
+0017DF F0                MOVX    @DPTR,A
+   42: 	REG_IICD_TXADDR = ESWAP((u16_t)ptemp_addr);
+0017E0 7D98              MOV     R5,#LOW ptemp_addr
+0017E2 ED                MOV     A,R5
+0017E3 FA                MOV     R2,A
+0017E4 741B              MOV     A,#HIGH ptemp_addr
+0017E6 FF                MOV     R7,A
+0017E7 EA                MOV     A,R2
+0017E8 FE                MOV     R6,A
+0017E9 EF                MOV     A,R7
+0017EA A3                INC     DPTR
+0017EB EE                MOV     A,R6
+0017EC F0                MOVX    @DPTR,A
+0017ED A3                INC     DPTR
+0017EE EF                MOV     A,R7
+0017EF F0                MOVX    @DPTR,A
+   43: 	REG_IICD_RXLEN = 0;
+0017F0 90809E            MOV     DPTR,#0809EH
+0017F3 E4                CLR     A
+0017F4 F0                MOVX    @DPTR,A
+0017F5 A3                INC     DPTR
+0017F6 F0                MOVX    @DPTR,A
+   44: 	REG_IICD_CTRL = 1;
+0017F7 908090            MOV     DPTR,#08090H
+0017FA 04                INC     A
+0017FB F0                MOVX    @DPTR,A
+   45: 	
+   46: 	REG_MISC_CTRL |= 1 << 2;	//start iic dma
+0017FC 908006            MOV     DPTR,#08006H
+0017FF E0                MOVX    A,@DPTR
+001800 4404              ORL     A,#04H
+001802 F0                MOVX    @DPTR,A
+   47: 	IIcWaitDone();
+001803 020FC1            LJMP    IIcWaitDone
+   48: }
+----- FUNCTION _IIC_write (END) -------
+
+
+----- FUNCTION _ipcRx (BEGIN) -----
+ FILE: 'ipc.c'
+   44: static void ipcRx(u8_t* dest, u8_t len)
+   45: {
+001806 901BFF            MOV     DPTR,#dest
+001809 EB                MOV     A,R3
+00180A F0                MOVX    @DPTR,A
+00180B A3                INC     DPTR
+00180C EA                MOV     A,R2
+00180D F0                MOVX    @DPTR,A
+00180E A3                INC     DPTR
+00180F E9                MOV     A,R1
+001810 F0                MOVX    @DPTR,A
+001811 A3                INC     DPTR
+001812 ED                MOV     A,R5
+001813 F0                MOVX    @DPTR,A
+   46: 	xu8_t* src = (xu8_t *)ipcRxReadPtr;
+   47: 	while(len--) {
+001814 90482C            MOV     DPTR,#ipcRxReadPtr
+001817 E0                MOVX    A,@DPTR
+001818 FE                MOV     R6,A
+001819 A3                INC     DPTR
+00181A E0                MOVX    A,@DPTR
+00181B FF                MOV     R7,A
+;---- Variable 'src' assigned to Register 'R6/R7' ----
+00181C         ?C0001?IPC:
+   48: 		*dest++ = *src++;
+00181C 901C02            MOV     DPTR,#len
+00181F E0                MOVX    A,@DPTR
+001820 FD                MOV     R5,A
+001821 14                DEC     A
+001822 F0                MOVX    @DPTR,A
+001823 ED                MOV     A,R5
+001824 6032              JZ      ?C0002?IPC
+   49: 		if ((u16_t)src == IPC_RX_END) {
+001826 0F                INC     R7
+001827 EF                MOV     A,R7
+001828 AC06              MOV     R4,AR6
+00182A 7001              JNZ     ?C0048?IPC
+00182C 0E                INC     R6
+00182D         ?C0048?IPC:
+00182D 14                DEC     A
+00182E F582              MOV     DPL,A
+001830 8C83              MOV     DPH,R4
+001832 E0                MOVX    A,@DPTR
+001833 FD                MOV     R5,A
+001834 901BFF            MOV     DPTR,#dest
+001837 E0                MOVX    A,@DPTR
+001838 FB                MOV     R3,A
+001839 A3                INC     DPTR
+00183A E4                CLR     A
+00183B 75F001            MOV     B,#01H
+00183E 12019D            LCALL   ?C?ILDIX
+001841 A9F0              MOV     R1,B
+001843 FA                MOV     R2,A
+001844 ED                MOV     A,R5
+001845 12013F            LCALL   ?C?CSTPTR
+   50: 			src = (xu8_t *)IPC_RX_HEAD;
+001848 AD07              MOV     R5,AR7
+00184A AC06              MOV     R4,AR6
+00184C BC48CD            CJNE    R4,#048H,?C0001?IPC
+00184F BD2CCA            CJNE    R5,#02CH,?C0001?IPC
+   51: 		}
+001852 7E47              MOV     R6,#047H
+001854 7FC8              MOV     R7,#0C8H
+   52: 	}
+   53: 	ipcRxReadPtr = (u16_t)src;
+001856 80C4              SJMP    ?C0001?IPC
+001858         ?C0002?IPC:
+   54: }
+001858 90482C            MOV     DPTR,#ipcRxReadPtr
+00185B EE                MOV     A,R6
+00185C F0                MOVX    @DPTR,A
+00185D A3                INC     DPTR
+00185E EF                MOV     A,R7
+00185F F0                MOVX    @DPTR,A
+   55: 
+001860 22                RET     
+----- FUNCTION _ipcRx (END) -------
+
+
+----- FUNCTION IPC_DealSingleStep (BEGIN) -----
+ FILE: 'ipc.c'
+  147: void IPC_DealSingleStep()
+  148: {
+  149: 	u8_t *pbuff = ipcReadBuff;
+  150: 	if (ipcRxReadPtr == ipcRxWritePtr)
+001861 7A1A              MOV     R2,#HIGH ipcReadBuff
+001863 7900              MOV     R1,#LOW ipcReadBuff
+001865 901C13            MOV     DPTR,#pbuff
+001868 7401              MOV     A,#01H
+00186A F0                MOVX    @DPTR,A
+00186B A3                INC     DPTR
+00186C 741A              MOV     A,#HIGH ipcReadBuff
+00186E F0                MOVX    @DPTR,A
+00186F A3                INC     DPTR
+001870 7400              MOV     A,#LOW ipcReadBuff
+001872 F0                MOVX    @DPTR,A
+  151: 		goto IPC_TIMER;
+001873 90482E            MOV     DPTR,#ipcRxWritePtr
+001876 E0                MOVX    A,@DPTR
+001877 FE                MOV     R6,A
+001878 A3                INC     DPTR
+001879 E0                MOVX    A,@DPTR
+00187A FF                MOV     R7,A
+00187B 90482C            MOV     DPTR,#ipcRxReadPtr
+00187E E0                MOVX    A,@DPTR
+00187F 6E                XRL     A,R6
+001880 7003              JNZ     ?C0054?IPC
+001882 A3                INC     DPTR
+001883 E0                MOVX    A,@DPTR
+001884 6F                XRL     A,R7
+001885         ?C0054?IPC:
+001885 7002              JNZ     $ + 4H
+001887 4118              AJMP    ?C0041?IPC
+  152: 	ipcRx(ipcReadBuff, IPC_HEAD_LEN);
+001889         ?C0029?IPC:
+  153: 	if (*pbuff == IPC_CONTROL_EVT) {
+001889 7B01              MOV     R3,#01H
+00188B 7A1A              MOV     R2,#HIGH ipcReadBuff
+00188D 7900              MOV     R1,#LOW ipcReadBuff
+00188F 7D03              MOV     R5,#03H
+001891 1106              ACALL   _ipcRx
+  154: 		pbuff += 2;
+001893 901C13            MOV     DPTR,#pbuff
+001896 E0                MOVX    A,@DPTR
+001897 FB                MOV     R3,A
+001898 A3                INC     DPTR
+001899 E0                MOVX    A,@DPTR
+00189A FA                MOV     R2,A
+00189B A3                INC     DPTR
+00189C E0                MOVX    A,@DPTR
+00189D F9                MOV     R1,A
+00189E 1200F9            LCALL   ?C?CLDPTR
+0018A1 B4022B            CJNE    A,#02H,?C0031?IPC
+  155: 		ipcCb.evtcb(*pbuff);
+0018A4 901C14            MOV     DPTR,#pbuff+01H
+0018A7 E4                CLR     A
+0018A8 75F002            MOV     B,#02H
+0018AB 120187            LCALL   ?C?IILDX
+  156: 	}
+0018AE 901C13            MOV     DPTR,#pbuff
+0018B1 E0                MOVX    A,@DPTR
+0018B2 FB                MOV     R3,A
+0018B3 A3                INC     DPTR
+0018B4 E0                MOVX    A,@DPTR
+0018B5 FA                MOV     R2,A
+0018B6 A3                INC     DPTR
+0018B7 E0                MOVX    A,@DPTR
+0018B8 F9                MOV     R1,A
+0018B9 1200F9            LCALL   ?C?CLDPTR
+0018BC FF                MOV     R7,A
+0018BD 904830            MOV     DPTR,#ipcCb
+0018C0 E0                MOVX    A,@DPTR
+0018C1 A3                INC     DPTR
+0018C2 E0                MOVX    A,@DPTR
+0018C3 FA                MOV     R2,A
+0018C4 A3                INC     DPTR
+0018C5 E0                MOVX    A,@DPTR
+0018C6 F582              MOV     DPL,A
+0018C8 8A83              MOV     DPH,R2
+0018CA 1201DD            LCALL   ?C?ICALL2
+  157: 	else if (*pbuff == IPC_SPP_DATA) {
+0018CD 4118              AJMP    ?C0041?IPC
+0018CF         ?C0031?IPC:
+  158: 		pbuff ++ ;
+0018CF 901C13            MOV     DPTR,#pbuff
+0018D2 E0                MOVX    A,@DPTR
+0018D3 FB                MOV     R3,A
+0018D4 A3                INC     DPTR
+0018D5 E0                MOVX    A,@DPTR
+0018D6 FA                MOV     R2,A
+0018D7 A3                INC     DPTR
+0018D8 E0                MOVX    A,@DPTR
+0018D9 F9                MOV     R1,A
+0018DA 1200F9            LCALL   ?C?CLDPTR
+0018DD 6404              XRL     A,#04H
+0018DF 705B              JNZ     ?C0033?IPC
+  159: 		ipcRx(ipcReadBuff+3, *pbuff -1);
+0018E1 901C14            MOV     DPTR,#pbuff+01H
+0018E4 75F001            MOV     B,#01H
+0018E7 120187            LCALL   ?C?IILDX
+  160: 		ipcCb.sppcb(pbuff+1, *pbuff);
+0018EA 901C13            MOV     DPTR,#pbuff
+0018ED E0                MOVX    A,@DPTR
+0018EE FB                MOV     R3,A
+0018EF A3                INC     DPTR
+0018F0 E0                MOVX    A,@DPTR
+0018F1 FA                MOV     R2,A
+0018F2 A3                INC     DPTR
+0018F3 E0                MOVX    A,@DPTR
+0018F4 F9                MOV     R1,A
+0018F5 1200F9            LCALL   ?C?CLDPTR
+0018F8 14                DEC     A
+0018F9 FD                MOV     R5,A
+0018FA 7B01              MOV     R3,#01H
+0018FC 7A1A              MOV     R2,#HIGH ipcReadBuff+03H
+0018FE 7903              MOV     R1,#LOW ipcReadBuff+03H
+001900 1106              ACALL   _ipcRx
+  161: 	}
+001902 901C13            MOV     DPTR,#pbuff
+001905 E0                MOVX    A,@DPTR
+001906 FB                MOV     R3,A
+001907 A3                INC     DPTR
+001908 E0                MOVX    A,@DPTR
+001909 FA                MOV     R2,A
+00190A A3                INC     DPTR
+00190B E0                MOVX    A,@DPTR
+00190C 2401              ADD     A,#01H
+00190E F9                MOV     R1,A
+00190F E4                CLR     A
+001910 3A                ADDC    A,R2
+001911 FA                MOV     R2,A
+001912 C002              PUSH    AR2
+001914 C001              PUSH    AR1
+001916 901C13            MOV     DPTR,#pbuff
+001919 E0                MOVX    A,@DPTR
+00191A A3                INC     DPTR
+00191B E0                MOVX    A,@DPTR
+00191C FA                MOV     R2,A
+00191D A3                INC     DPTR
+00191E E0                MOVX    A,@DPTR
+00191F F9                MOV     R1,A
+001920 1200F9            LCALL   ?C?CLDPTR
+001923 FD                MOV     R5,A
+001924 7C00              MOV     R4,#00H
+001926 904833            MOV     DPTR,#ipcCb+03H
+001929 E0                MOVX    A,@DPTR
+00192A A3                INC     DPTR
+00192B E0                MOVX    A,@DPTR
+00192C FA                MOV     R2,A
+00192D A3                INC     DPTR
+00192E E0                MOVX    A,@DPTR
+00192F F582              MOV     DPL,A
+001931 8A83              MOV     DPH,R2
+001933 D001              POP     AR1
+001935 D002              POP     AR2
+001937 1201DD            LCALL   ?C?ICALL2
+  162: 	else if (*pbuff == IPC_BLE_DATA) {
+00193A 4118              AJMP    ?C0041?IPC
+00193C         ?C0033?IPC:
+  163: 		pbuff ++ ;
+00193C 901C13            MOV     DPTR,#pbuff
+00193F E0                MOVX    A,@DPTR
+001940 FB                MOV     R3,A
+001941 A3                INC     DPTR
+001942 E0                MOVX    A,@DPTR
+001943 FA                MOV     R2,A
+001944 A3                INC     DPTR
+001945 E0                MOVX    A,@DPTR
+001946 F9                MOV     R1,A
+001947 1200F9            LCALL   ?C?CLDPTR
+00194A 6405              XRL     A,#05H
+00194C 705B              JNZ     ?C0035?IPC
+  164: 		ipcRx(ipcReadBuff+3, *pbuff -1);
+00194E 901C14            MOV     DPTR,#pbuff+01H
+001951 75F001            MOV     B,#01H
+001954 120187            LCALL   ?C?IILDX
+  165: 		ipcCb.blecb(pbuff+1, *pbuff);
+001957 901C13            MOV     DPTR,#pbuff
+00195A E0                MOVX    A,@DPTR
+00195B FB                MOV     R3,A
+00195C A3                INC     DPTR
+00195D E0                MOVX    A,@DPTR
+00195E FA                MOV     R2,A
+00195F A3                INC     DPTR
+001960 E0                MOVX    A,@DPTR
+001961 F9                MOV     R1,A
+001962 1200F9            LCALL   ?C?CLDPTR
+001965 14                DEC     A
+001966 FD                MOV     R5,A
+001967 7B01              MOV     R3,#01H
+001969 7A1A              MOV     R2,#HIGH ipcReadBuff+03H
+00196B 7903              MOV     R1,#LOW ipcReadBuff+03H
+00196D 1106              ACALL   _ipcRx
+  166: 	}
+00196F 901C13            MOV     DPTR,#pbuff
+001972 E0                MOVX    A,@DPTR
+001973 FB                MOV     R3,A
+001974 A3                INC     DPTR
+001975 E0                MOVX    A,@DPTR
+001976 FA                MOV     R2,A
+001977 A3                INC     DPTR
+001978 E0                MOVX    A,@DPTR
+001979 2401              ADD     A,#01H
+00197B F9                MOV     R1,A
+00197C E4                CLR     A
+00197D 3A                ADDC    A,R2
+00197E FA                MOV     R2,A
+00197F C002              PUSH    AR2
+001981 C001              PUSH    AR1
+001983 901C13            MOV     DPTR,#pbuff
+001986 E0                MOVX    A,@DPTR
+001987 A3                INC     DPTR
+001988 E0                MOVX    A,@DPTR
+001989 FA                MOV     R2,A
+00198A A3                INC     DPTR
+00198B E0                MOVX    A,@DPTR
+00198C F9                MOV     R1,A
+00198D 1200F9            LCALL   ?C?CLDPTR
+001990 FD                MOV     R5,A
+001991 7C00              MOV     R4,#00H
+001993 90483C            MOV     DPTR,#ipcCb+0CH
+001996 E0                MOVX    A,@DPTR
+001997 A3                INC     DPTR
+001998 E0                MOVX    A,@DPTR
+001999 FA                MOV     R2,A
+00199A A3                INC     DPTR
+00199B E0                MOVX    A,@DPTR
+00199C F582              MOV     DPL,A
+00199E 8A83              MOV     DPH,R2
+0019A0 D001              POP     AR1
+0019A2 D002              POP     AR2
+0019A4 1201DD            LCALL   ?C?ICALL2
+  167: 	else if (*pbuff == IPC_HID_DATA) {
+0019A7 806F              SJMP    ?C0041?IPC
+0019A9         ?C0035?IPC:
+  168: 		pbuff ++ ;
+0019A9 901C13            MOV     DPTR,#pbuff
+0019AC E0                MOVX    A,@DPTR
+0019AD FB                MOV     R3,A
+0019AE A3                INC     DPTR
+0019AF E0                MOVX    A,@DPTR
+0019B0 FA                MOV     R2,A
+0019B1 A3                INC     DPTR
+0019B2 E0                MOVX    A,@DPTR
+0019B3 F9                MOV     R1,A
+0019B4 1200F9            LCALL   ?C?CLDPTR
+0019B7 6403              XRL     A,#03H
+0019B9 705B              JNZ     ?C0039?IPC
+  169: 		ipcRx(ipcReadBuff+3, *pbuff -1);
+0019BB 901C14            MOV     DPTR,#pbuff+01H
+0019BE 75F001            MOV     B,#01H
+0019C1 120187            LCALL   ?C?IILDX
+  170: 		ipcCb.hidcb(pbuff+1, *pbuff);
+0019C4 901C13            MOV     DPTR,#pbuff
+0019C7 E0                MOVX    A,@DPTR
+0019C8 FB                MOV     R3,A
+0019C9 A3                INC     DPTR
+0019CA E0                MOVX    A,@DPTR
+0019CB FA                MOV     R2,A
+0019CC A3                INC     DPTR
+0019CD E0                MOVX    A,@DPTR
+0019CE F9                MOV     R1,A
+0019CF 1200F9            LCALL   ?C?CLDPTR
+0019D2 14                DEC     A
+0019D3 FD                MOV     R5,A
+0019D4 7B01              MOV     R3,#01H
+0019D6 7A1A              MOV     R2,#HIGH ipcReadBuff+03H
+0019D8 7903              MOV     R1,#LOW ipcReadBuff+03H
+0019DA 1106              ACALL   _ipcRx
+  171: 	}
+0019DC 901C13            MOV     DPTR,#pbuff
+0019DF E0                MOVX    A,@DPTR
+0019E0 FB                MOV     R3,A
+0019E1 A3                INC     DPTR
+0019E2 E0                MOVX    A,@DPTR
+0019E3 FA                MOV     R2,A
+0019E4 A3                INC     DPTR
+0019E5 E0                MOVX    A,@DPTR
+0019E6 2401              ADD     A,#01H
+0019E8 F9                MOV     R1,A
+0019E9 E4                CLR     A
+0019EA 3A                ADDC    A,R2
+0019EB FA                MOV     R2,A
+0019EC C002              PUSH    AR2
+0019EE C001              PUSH    AR1
+0019F0 901C13            MOV     DPTR,#pbuff
+0019F3 E0                MOVX    A,@DPTR
+0019F4 A3                INC     DPTR
+0019F5 E0                MOVX    A,@DPTR
+0019F6 FA                MOV     R2,A
+0019F7 A3                INC     DPTR
+0019F8 E0                MOVX    A,@DPTR
+0019F9 F9                MOV     R1,A
+0019FA 1200F9            LCALL   ?C?CLDPTR
+0019FD FD                MOV     R5,A
+0019FE 7C00              MOV     R4,#00H
+001A00 90483F            MOV     DPTR,#ipcCb+0FH
+001A03 E0                MOVX    A,@DPTR
+001A04 A3                INC     DPTR
+001A05 E0                MOVX    A,@DPTR
+001A06 FA                MOV     R2,A
+001A07 A3                INC     DPTR
+001A08 E0                MOVX    A,@DPTR
+001A09 F582              MOV     DPL,A
+001A0B 8A83              MOV     DPH,R2
+001A0D D001              POP     AR1
+001A0F D002              POP     AR2
+001A11 1201DD            LCALL   ?C?ICALL2
+  172: 	else {
+001A14 8002              SJMP    ?C0041?IPC
+  173: 		while(1);
+001A16         ?C0039?IPC:
+  174: 	}
+001A16 80FE              SJMP    ?C0039?IPC
+  175: IPC_TIMER:
+  176: 	while (c51timer != bttimer) {
+001A18         IPC_TIMER:
+001A18         ?C0041?IPC:
+  177: 		if (ipcCb.timercb == NULL)
+001A18 904898            MOV     DPTR,#bttimer
+001A1B E0                MOVX    A,@DPTR
+001A1C FE                MOV     R6,A
+001A1D A3                INC     DPTR
+001A1E E0                MOVX    A,@DPTR
+001A1F FF                MOV     R7,A
+001A20 90489A            MOV     DPTR,#c51timer
+001A23 E0                MOVX    A,@DPTR
+001A24 6E                XRL     A,R6
+001A25 7003              JNZ     ?C0055?IPC
+001A27 A3                INC     DPTR
+001A28 E0                MOVX    A,@DPTR
+001A29 6F                XRL     A,R7
+001A2A         ?C0055?IPC:
+001A2A 6021              JZ      ?C0045?IPC
+  178: 			return;
+001A2C 904836            MOV     DPTR,#ipcCb+06H
+001A2F E0                MOVX    A,@DPTR
+001A30 FB                MOV     R3,A
+001A31 A3                INC     DPTR
+001A32 E0                MOVX    A,@DPTR
+001A33 FA                MOV     R2,A
+001A34 A3                INC     DPTR
+001A35 E0                MOVX    A,@DPTR
+001A36 F9                MOV     R1,A
+001A37 4A                ORL     A,R2
+001A38 6036              JZ      ?C0044?IPC
+001A3A         ?C0043?IPC:
+  179: 		ipcCb.timercb();
+001A3A 1201D9            LCALL   ?C?ICALL
+  180: 		c51timer ++;
+001A3D 90489B            MOV     DPTR,#c51timer+01H
+001A40 E0                MOVX    A,@DPTR
+001A41 04                INC     A
+001A42 F0                MOVX    @DPTR,A
+001A43 7006              JNZ     ?C0056?IPC
+001A45 90489A            MOV     DPTR,#c51timer
+001A48 E0                MOVX    A,@DPTR
+001A49 04                INC     A
+001A4A F0                MOVX    @DPTR,A
+001A4B         ?C0056?IPC:
+  181: 	}
+001A4B 80CB              SJMP    ?C0041?IPC
+001A4D         ?C0045?IPC:
+  182: 	while (c51stimer!= btstimer) {
+001A4D 90489C            MOV     DPTR,#btstimer
+001A50 E0                MOVX    A,@DPTR
+001A51 FF                MOV     R7,A
+001A52 A3                INC     DPTR
+001A53 E0                MOVX    A,@DPTR
+001A54 6F                XRL     A,R7
+001A55 6019              JZ      ?C0044?IPC
+  183: 		if (ipcCb.stimercb == NULL)
+001A57 904839            MOV     DPTR,#ipcCb+09H
+001A5A E0                MOVX    A,@DPTR
+001A5B FB                MOV     R3,A
+001A5C A3                INC     DPTR
+001A5D E0                MOVX    A,@DPTR
+001A5E FA                MOV     R2,A
+001A5F A3                INC     DPTR
+001A60 E0                MOVX    A,@DPTR
+001A61 F9                MOV     R1,A
+001A62 4A                ORL     A,R2
+001A63 600B              JZ      ?C0044?IPC
+001A65         ?C0047?IPC:
+  184: 			return;
+  185: 		ipcCb.stimercb();
+001A65 1201D9            LCALL   ?C?ICALL
+  186: 		c51stimer ++;
+001A68 90489D            MOV     DPTR,#c51stimer
+001A6B E0                MOVX    A,@DPTR
+001A6C 04                INC     A
+001A6D F0                MOVX    @DPTR,A
+  187: 	}
+001A6E 80DD              SJMP    ?C0045?IPC
+  188: 	//other app process
+  189: }
+001A70         ?C0044?IPC:
+001A70 22                RET     
+----- FUNCTION IPC_DealSingleStep (END) -------
+
+
+----- FUNCTION _IPC_TxBREDRHidData (BEGIN) -----
+ FILE: 'ipc.c'
+   75: void IPC_TxBREDRHidData(u8_t* dt, u8_t len)
+   76: {
+001A71 901C1E            MOV     DPTR,#len
+001A74 ED                MOV     A,R5
+001A75 F0                MOVX    @DPTR,A
+;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
+   77: 	ipcSendBuff[0] = IPC_HID_DATA;
+   78: 	if (len == 0)
+001A76 901A96            MOV     DPTR,#ipcSendBuff
+001A79 7403              MOV     A,#03H
+001A7B F0                MOVX    @DPTR,A
+   79: 		return;
+001A7C 901C1E            MOV     DPTR,#len
+001A7F E0                MOVX    A,@DPTR
+001A80 6039              JZ      ?C0011?IPC
+001A82         ?C0010?IPC:
+001A82         ?C0012?IPC:
+   80: 	while (ipcTxReadPtr!=ipcTxWritePtr);
+001A82 9047C6            MOV     DPTR,#ipcTxWritePtr
+001A85 E0                MOVX    A,@DPTR
+001A86 FE                MOV     R6,A
+001A87 A3                INC     DPTR
+001A88 E0                MOVX    A,@DPTR
+001A89 FF                MOV     R7,A
+001A8A 9047C4            MOV     DPTR,#ipcTxReadPtr
+001A8D E0                MOVX    A,@DPTR
+001A8E B506F1            CJNE    A,AR6,?C0012?IPC
+001A91 A3                INC     DPTR
+001A92 E0                MOVX    A,@DPTR
+001A93 B507EC            CJNE    A,AR7,?C0012?IPC
+001A96         ?C0013?IPC:
+   81: 	ipcSendBuff[1] = len;
+001A96 901C1E            MOV     DPTR,#len
+001A99 E0                MOVX    A,@DPTR
+001A9A FD                MOV     R5,A
+001A9B 901A97            MOV     DPTR,#ipcSendBuff+01H
+001A9E F0                MOVX    @DPTR,A
+   82: 	xmemcpy(&ipcSendBuff[2], dt, len);
+001A9F 7E1A              MOV     R6,#HIGH ipcSendBuff+02H
+001AA1 7F98              MOV     R7,#LOW ipcSendBuff+02H
+001AA3 901BE6            MOV     DPTR,#?_xmemcpy?BYTE+05H
+001AA6 ED                MOV     A,R5
+001AA7 F0                MOVX    @DPTR,A
+001AA8 120F7E            LCALL   _xmemcpy
+   83: 	ipcTx(ipcSendBuff, len + 2);
+001AAB 7B01              MOV     R3,#01H
+001AAD 7A1A              MOV     R2,#HIGH ipcSendBuff
+001AAF 7996              MOV     R1,#LOW ipcSendBuff
+001AB1 901C1E            MOV     DPTR,#len
+001AB4 E0                MOVX    A,@DPTR
+001AB5 2402              ADD     A,#02H
+001AB7 FD                MOV     R5,A
+001AB8 120771            LCALL   _ipcTx
+   84: }
+001ABB         ?C0011?IPC:
+001ABB 22                RET     
+----- FUNCTION _IPC_TxBREDRHidData (END) -------
+
+
+----- FUNCTION IPC_GetBBDIsconnectReason (BEGIN) -----
+ FILE: 'ipc.c'
+   98: u8_t IPC_GetBBDIsconnectReason()
+   99: {
+  100: 	return bbDisReason;
+  101: }
+001ABC 9003F0            MOV     DPTR,#bbDisReason
+001ABF E0                MOVX    A,@DPTR
+001AC0 FF                MOV     R7,A
+  102: 
+001AC1 22                RET     
+----- FUNCTION IPC_GetBBDIsconnectReason (END) -------
+
+
+----- FUNCTION _IPC_TxSppData (BEGIN) -----
+ FILE: 'ipc.c'
+  103: void IPC_TxSppData(u8_t* dt, u8_t len)
+  104: {
+001AC2 901C20            MOV     DPTR,#len
+001AC5 ED                MOV     A,R5
+001AC6 F0                MOVX    @DPTR,A
+;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
+  105: 	ipcSendBuff[0] = IPC_SPP_DATA;
+  106: 	while (ipcTxReadPtr!=ipcTxWritePtr);
+001AC7 901A96            MOV     DPTR,#ipcSendBuff
+001ACA 7404              MOV     A,#04H
+001ACC F0                MOVX    @DPTR,A
+001ACD         ?C0018?IPC:
+  107: 	ipcSendBuff[1] = len;
+001ACD 9047C6            MOV     DPTR,#ipcTxWritePtr
+001AD0 E0                MOVX    A,@DPTR
+001AD1 FE                MOV     R6,A
+001AD2 A3                INC     DPTR
+001AD3 E0                MOVX    A,@DPTR
+001AD4 FF                MOV     R7,A
+001AD5 9047C4            MOV     DPTR,#ipcTxReadPtr
+001AD8 E0                MOVX    A,@DPTR
+001AD9 B506F1            CJNE    A,AR6,?C0018?IPC
+001ADC A3                INC     DPTR
+001ADD E0                MOVX    A,@DPTR
+001ADE B507EC            CJNE    A,AR7,?C0018?IPC
+001AE1         ?C0019?IPC:
+  108: 	xmemcpy(&ipcSendBuff[2], dt, len);
+001AE1 901C20            MOV     DPTR,#len
+001AE4 E0                MOVX    A,@DPTR
+001AE5 FD                MOV     R5,A
+001AE6 901A97            MOV     DPTR,#ipcSendBuff+01H
+001AE9 F0                MOVX    @DPTR,A
+  109: 	ipcTx(ipcSendBuff, len + 2);
+001AEA 7E1A              MOV     R6,#HIGH ipcSendBuff+02H
+001AEC 7F98              MOV     R7,#LOW ipcSendBuff+02H
+001AEE 901BE6            MOV     DPTR,#?_xmemcpy?BYTE+05H
+001AF1 ED                MOV     A,R5
+001AF2 F0                MOVX    @DPTR,A
+001AF3 120F7E            LCALL   _xmemcpy
+  110: }
+001AF6 7B01              MOV     R3,#01H
+001AF8 7A1A              MOV     R2,#HIGH ipcSendBuff
+001AFA 7996              MOV     R1,#LOW ipcSendBuff
+001AFC 901C20            MOV     DPTR,#len
+001AFF E0                MOVX    A,@DPTR
+001B00 2402              ADD     A,#02H
+001B02 FD                MOV     R5,A
+001B03 020771            LJMP    _ipcTx
+----- FUNCTION _IPC_TxSppData (END) -------
+
+
+----- FUNCTION ADC_GetCurrentValue (BEGIN) -----
+ FILE: 'adc.c'
+    4: u16_t ADC_GetCurrentValue()
+    5: {
+    6: 	return m_adcCurrentValue;
+    7: }
+001B06 9042D1            MOV     DPTR,#m_adcCurrentValue
+001B09 E0                MOVX    A,@DPTR
+001B0A FE                MOV     R6,A
+001B0B A3                INC     DPTR
+001B0C E0                MOVX    A,@DPTR
+001B0D FF                MOV     R7,A
+    8: 
+001B0E 22                RET     
+----- FUNCTION ADC_GetCurrentValue (END) -------
+
+
+----- FUNCTION ADC_Get3vBase (BEGIN) -----
+ FILE: 'adc.c'
+    9: u16_t ADC_Get3vBase()
+   10: {
+   11: 	return m_adc3vValue;
+   12: }
+001B0F 904E43            MOV     DPTR,#m_adc3vValue
+001B12 E0                MOVX    A,@DPTR
+001B13 FE                MOV     R6,A
+001B14 A3                INC     DPTR
+001B15 E0                MOVX    A,@DPTR
+001B16 FF                MOV     R7,A
+   13: 
+001B17 22                RET     
+----- FUNCTION ADC_Get3vBase (END) -------
+
+
+----- FUNCTION Drawing_optima_init (BEGIN) -----
+ FILE: 'sensor.c'
+  288: void Drawing_optima_init()
+  289: {
+  290: 	g_variable.X_sum = 0;
+  291: 	g_variable.Y_sum = 0;
+001B18 E4                CLR     A
+001B19 904EE3            MOV     DPTR,#g_variable+038H
+001B1C F0                MOVX    @DPTR,A
+001B1D A3                INC     DPTR
+001B1E F0                MOVX    @DPTR,A
+  292:  	g_variable.X_pre = 0;
+001B1F A3                INC     DPTR
+001B20 F0                MOVX    @DPTR,A
+001B21 A3                INC     DPTR
+001B22 F0                MOVX    @DPTR,A
+  293:  	g_variable.Y_pre = 0;
+001B23 A3                INC     DPTR
+001B24 F0                MOVX    @DPTR,A
+001B25 A3                INC     DPTR
+001B26 F0                MOVX    @DPTR,A
+  294: 	g_variable.asm_flag = 0;
+001B27 A3                INC     DPTR
+001B28 F0                MOVX    @DPTR,A
+001B29 A3                INC     DPTR
+001B2A F0                MOVX    @DPTR,A
+  295: 	g_variable.X_data = 0;
+001B2B 904EEF            MOV     DPTR,#g_variable+044H
+001B2E F0                MOVX    @DPTR,A
+  296: 	g_variable.Y_data = 0;
+001B2F 904EEB            MOV     DPTR,#g_variable+040H
+001B32 F0                MOVX    @DPTR,A
+001B33 A3                INC     DPTR
+001B34 F0                MOVX    @DPTR,A
+  297: }
+001B35 A3                INC     DPTR
+001B36 F0                MOVX    @DPTR,A
+001B37 A3                INC     DPTR
+001B38 F0                MOVX    @DPTR,A
+  298: 
+001B39 22                RET     
+----- FUNCTION Drawing_optima_init (END) -------
+
+
Index: c51/output/FW.HTM
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/FW.HTM	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/FW.HTM	(working copy)
@@ -0,0 +1,879 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<title>LX51 Static Call Analysis</title>
+<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
+<style type="text/css">
+<!--
+p            { font-family: Verdana; font-size: 8pt; margin-top: 2; margin-bottom: 2 }
+.LI2         { margin-top: 2; margin-bottom: 2 }
+.Release     { background-color: #CCCCCC; font-weight: bold; padding: 6 }
+.ToolT       { font-size: 8pt; color: #808080 }
+.TinyT       { font-size: 8pt; text-align: Center }
+ul           { font-family: Verdana; font-size: 8pt; list-style-type: square;  margin-top: 2; margin-bottom: 2 }
+ol           { font-family: Verdana; font-size: 8pt }
+h1           { font-family: Verdana; font-size: 14pt; color: #000080; font-weight: bold; text-align: Center; margin-right: 3 }
+h2           { font-family: Verdana; font-size: 8pt; color: #000080; font-weight: bold; margin-top: 12; margin-bottom: 3; background-color: #CCCCCC; padding: 6 }
+h3           { font-family: Verdana; font-size: 8pt; font-weight: bold; margin-top: 12; margin-bottom: 3; background-color: #CCCCCC; padding: 6 }
+pre          { font-family: Courier New; font-size: 8pt; background-color: #CCFFCC; margin-left: 24; margin-right: 24 }
+li           { margin-top: 3; margin-bottom: 0 }
+-->
+</style>
+</head>
+<body>
+<h1>Static Call Analysis for<br>OUTPUT\FW (RAM)</h1>
+
+<p class="TinyT">
+Created from: <b>LX51 LINKER/LOCATER V4.41</b><br>
+Creation time: <b>06/22/2020  10:20:42</b><p>
+
+<hr>
+
+
+<h2><a name="S12"></a>?PR?MOUSEWHEELSCAN?SYS (C:0009C8H - C:000A4BH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S59">?PR?_GPIO_GETINPUTSTATUS?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S59">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
+<li><a href="#S11">?PR?MOUSE_WHEEL_DELAY_LPM?SYS</a></li>
+</ul>
+
+<h2><a name="S16"></a>?PR?MOUSEKEYDETECT?SYS (C:000B7BH - C:000BDBH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S10">?PR?MOUSEDPIKEYCHECK?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S8">?PR?MOUSEBKKEYCHECK?SYS</a></li>
+<li><a href="#S10">?PR?MOUSEDPIKEYCHECK?SYS</a></li>
+<li><a href="#S9">?PR?MOUSEFWKEYCHECK?SYS</a></li>
+<li><a href="#S5">?PR?MOUSELKEYCHECK?SYS</a></li>
+<li><a href="#S6">?PR?MOUSEMKEYCHECK?SYS</a></li>
+<li><a href="#S7">?PR?MOUSERKEYCHECK?SYS</a></li>
+</ul>
+
+<h2><a name="S24"></a>?PR?DEVICESWITCH24GMODE?SYS (C:0015DBH - C:001626H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S89">?PR?_IIC_READ?IIC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S89">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S100">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+</ul>
+
+<h2><a name="S32"></a>?PR?_DEVICEEVTCB?SYS (C:000372H - C:0004D9H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S30">?PR?LEADDRRANDOMCNTINIT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+<li><a href="#S51">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S89">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S93">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+<li><a href="#S100">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S85">?PR?_SPI_WRITESENSOR?SPI</a></li>
+<li><a href="#S26">?PR?CLEARGLOBALMEM?SYS</a></li>
+<li><a href="#S27">?PR?DEVICELONGSLEEP?SYS</a></li>
+<li><a href="#S25">?PR?DEVICESTOP24G?SYS</a></li>
+<li><a href="#S4">?PR?DPIWRITEINSENSOR?SYS</a></li>
+<li><a href="#S176">?PR?DRAWING_OPTIMA_INIT?SENSOR</a></li>
+<li><a href="#S30">?PR?LEADDRRANDOMCNTINIT?SYS</a></li>
+<li><a href="#S29">?PR?LEADVSTART?SYS</a></li>
+<li><a href="#S28">?PR?LERECONNSTART?SYS</a></li>
+<li><a href="#S3">?PR?SENSORCLEARDATA?SYS</a></li>
+<li><a href="#S83">?PR?SPI_INITIALIZE?SPI</a></li>
+<li><a href="#S167">?PR?SPI_TWRESET?SENSOR</a></li>
+</ul>
+
+<h2><a name="S34"></a>?PR?DEVICETIMER500MS?SYS (C:0014DAH - C:001592H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S100">?PR?_IPC_TXCONTROLCMD?IPC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S100">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S27">?PR?DEVICELONGSLEEP?SYS</a></li>
+<li><a href="#S114">?PR?IPC_ISTXBUFFEMPTY?IPC</a></li>
+</ul>
+
+<h2><a name="S36"></a>?PR?DEVICETIMER100MS?SYS (C:0015ADH - C:0015DAH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S27">?PR?DEVICELONGSLEEP?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S27">?PR?DEVICELONGSLEEP?SYS</a></li>
+</ul>
+
+<h2><a name="S38"></a>?PR?YC_SYSMAIN?SYS (C:0002DFH - C:00033AH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S21">?PR?MOUSEMOTION?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S37">?PR?DEVICEINIT?SYS</a></li>
+<li><a href="#S113">?PR?IPC_ABANDONLPM?IPC</a></li>
+<li><a href="#S115">?PR?IPC_DEALSINGLESTEP?IPC</a></li>
+<li><a href="#S112">?PR?IPC_WAITLPM?IPC</a></li>
+<li><a href="#S21">?PR?MOUSEMOTION?SYS</a></li>
+</ul>
+
+<h2><a name="S45"></a>?PR?_DMEMCPY?UTILITIES (C:00169FH - C:0016E2H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S179">?C?LIB_CODE</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+</ul>
+
+<h2><a name="S49"></a>?PR?_XMEMCLEAR_FF?UTILITIES (C:0016E3H - C:00170FH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S179">?C?LIB_CODE</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+</ul>
+
+<h2><a name="S52"></a>?PR?_COMPARE_STR?UTILITIES (C:001710H - C:001759H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S179">?C?LIB_CODE</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+</ul>
+
+<h2><a name="S75"></a>?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO (C:000FD2H - C:000FE4H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S59">?PR?_GPIO_GETINPUTSTATUS?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S59">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
+</ul>
+
+<h2><a name="S78"></a>?PR?_GPIO_FLIPOUTBIT?GPIO (C:000B15H - C:000B2FH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S57">?PR?_GPIOGETBIT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S60">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S57">?PR?_GPIOGETBIT?GPIO</a></li>
+</ul>
+
+<h2><a name="S102"></a>?PR?_IPC_TXBREDRHIDDATA?IPC (C:001A71H - C:001ABBH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S43">?PR?_XMEMCPY?UTILITIES</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S98">?PR?_IPCTX?IPC</a></li>
+<li><a href="#S43">?PR?_XMEMCPY?UTILITIES</a></li>
+</ul>
+
+<h2><a name="S107"></a>?PR?_IPC_TXSPPDATA?IPC (C:001AC2H - C:001B05H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S43">?PR?_XMEMCPY?UTILITIES</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S98">?PR?_IPCTX?IPC</a></li>
+<li><a href="#S43">?PR?_XMEMCPY?UTILITIES</a></li>
+</ul>
+
+<h2><a name="S111"></a>?PR?_IPC_INITIALIZE?IPC (C:0007F4H - C:000800H)</h2>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+</ul>
+
+<h2><a name="S169"></a>?PR?SPI_RESETSENSOR?SENSOR (C:000505H - C:000720H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S167">?PR?SPI_TWRESET?SENSOR</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S84">?PR?_SPI_READSENSOR?SPI</a></li>
+<li><a href="#S85">?PR?_SPI_WRITESENSOR?SPI</a></li>
+<li><a href="#S167">?PR?SPI_TWRESET?SENSOR</a></li>
+</ul>
+
+<h2><a name="S172"></a>?PR?SENSORPOWERDOWN?SENSOR (C:000AF2H - C:000B14H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S68">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S68">?PR?_GPIO_SETINPUT?GPIO</a></li>
+<li><a href="#S84">?PR?_SPI_READSENSOR?SPI</a></li>
+<li><a href="#S85">?PR?_SPI_WRITESENSOR?SPI</a></li>
+<li><a href="#S167">?PR?SPI_TWRESET?SENSOR</a></li>
+</ul>
+
+<h2><a name="S3"></a>?PR?SENSORCLEARDATA?SYS (C:000801H - C:00081CH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S173">?PR?SENSORPOWERON?SENSOR</a>) Top=2 Bytes (<a href="#S32">?PR?_DEVICEEVTCB?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S59">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
+<li><a href="#S84">?PR?_SPI_READSENSOR?SPI</a></li>
+<li><a href="#S173">?PR?SENSORPOWERON?SENSOR</a></li>
+<li><a href="#S167">?PR?SPI_TWRESET?SENSOR</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+</ul>
+
+<h2><a name="S4"></a>?PR?DPIWRITEINSENSOR?SYS (C:000DC8H - C:000E8FH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S167">?PR?SPI_TWRESET?SENSOR</a>) Top=4 Bytes (<a href="#S10">?PR?MOUSEDPIKEYCHECK?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S85">?PR?_SPI_WRITESENSOR?SPI</a></li>
+<li><a href="#S171">?PR?SENSOR_SPI_DISABLE?SENSOR</a></li>
+<li><a href="#S167">?PR?SPI_TWRESET?SENSOR</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+<li><a href="#S10">?PR?MOUSEDPIKEYCHECK?SYS</a></li>
+</ul>
+
+<h2><a name="S5"></a>?PR?MOUSELKEYCHECK?SYS (C:000B30H - C:000B7AH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a>) Top=2 Bytes (<a href="#S16">?PR?MOUSEKEYDETECT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S59">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
+<li><a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S16">?PR?MOUSEKEYDETECT?SYS</a></li>
+</ul>
+
+<h2><a name="S6"></a>?PR?MOUSEMKEYCHECK?SYS (C:000BDCH - C:000C26H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a>) Top=2 Bytes (<a href="#S16">?PR?MOUSEKEYDETECT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S59">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
+<li><a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S16">?PR?MOUSEKEYDETECT?SYS</a></li>
+</ul>
+
+<h2><a name="S7"></a>?PR?MOUSERKEYCHECK?SYS (C:000C27H - C:000C71H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a>) Top=2 Bytes (<a href="#S16">?PR?MOUSEKEYDETECT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S59">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
+<li><a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S16">?PR?MOUSEKEYDETECT?SYS</a></li>
+</ul>
+
+<h2><a name="S8"></a>?PR?MOUSEBKKEYCHECK?SYS (C:000862H - C:0008C5H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a>) Top=2 Bytes (<a href="#S16">?PR?MOUSEKEYDETECT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S59">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
+<li><a href="#S68">?PR?_GPIO_SETINPUT?GPIO</a></li>
+<li><a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S16">?PR?MOUSEKEYDETECT?SYS</a></li>
+</ul>
+
+<h2><a name="S9"></a>?PR?MOUSEFWKEYCHECK?SYS (C:000943H - C:0009A6H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a>) Top=2 Bytes (<a href="#S16">?PR?MOUSEKEYDETECT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S59">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
+<li><a href="#S68">?PR?_GPIO_SETINPUT?GPIO</a></li>
+<li><a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S16">?PR?MOUSEKEYDETECT?SYS</a></li>
+</ul>
+
+<h2><a name="S10"></a>?PR?MOUSEDPIKEYCHECK?SYS (C:000C72H - C:000CCAH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S93">?PR?_IIC_WRITEBLOCK?IIC</a>) Top=2 Bytes (<a href="#S16">?PR?MOUSEKEYDETECT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S59">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
+<li><a href="#S93">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+<li><a href="#S4">?PR?DPIWRITEINSENSOR?SYS</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S16">?PR?MOUSEKEYDETECT?SYS</a></li>
+</ul>
+
+<h2><a name="S11"></a>?PR?MOUSE_WHEEL_DELAY_LPM?SYS (C:000A4CH - C:000A5AH)</h2>
+<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S12">?PR?MOUSEWHEELSCAN?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S12">?PR?MOUSEWHEELSCAN?SYS</a></li>
+</ul>
+
+<h2><a name="S14"></a>?PR?_IPC_TXHIDDATA?SYS (C:00106BH - C:0010B9H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S104">?PR?_IPC_TX24GDATA?IPC</a>) Top=4 Bytes (<a href="#S21">?PR?MOUSEMOTION?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S104">?PR?_IPC_TX24GDATA?IPC</a></li>
+<li><a href="#S109">?PR?_IPC_TXBLEDATA?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S21">?PR?MOUSEMOTION?SYS</a></li>
+</ul>
+
+<h2><a name="S18"></a>?PR?MOUSEREADSENSOR?SYS (C:0011C5H - C:0012BCH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S175">?PR?DRAWING_OPTIMA?SENSOR</a>) Top=4 Bytes (<a href="#S21">?PR?MOUSEMOTION?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S175">?PR?DRAWING_OPTIMA?SENSOR</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S21">?PR?MOUSEMOTION?SYS</a></li>
+</ul>
+
+<h2><a name="S20"></a>?PR?MOUSEPACKAGE?SYS (C:00140EH - C:001451H)</h2>
+<p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S21">?PR?MOUSEMOTION?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S21">?PR?MOUSEMOTION?SYS</a></li>
+</ul>
+
+<h2><a name="S21"></a>?PR?MOUSEMOTION?SYS (C:0010BAH - C:0011C4H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S18">?PR?MOUSEREADSENSOR?SYS</a>) Top=2 Bytes (<a href="#S38">?PR?YC_SYSMAIN?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S14">?PR?_IPC_TXHIDDATA?SYS</a></li>
+<li><a href="#S114">?PR?IPC_ISTXBUFFEMPTY?IPC</a></li>
+<li><a href="#S20">?PR?MOUSEPACKAGE?SYS</a></li>
+<li><a href="#S18">?PR?MOUSEREADSENSOR?SYS</a></li>
+<li><a href="#S83">?PR?SPI_INITIALIZE?SPI</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S38">?PR?YC_SYSMAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S25"></a>?PR?DEVICESTOP24G?SYS (C:0007E4H - C:0007EDH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S100">?PR?_IPC_TXCONTROLCMD?IPC</a>) Top=2 Bytes (<a href="#S32">?PR?_DEVICEEVTCB?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S100">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+</ul>
+
+<h2><a name="S26"></a>?PR?CLEARGLOBALMEM?SYS (C:001627H - C:001649H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S47">?PR?_XMEMCLEAR_0?UTILITIES</a>) Top=2 Bytes (<a href="#S32">?PR?_DEVICEEVTCB?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S47">?PR?_XMEMCLEAR_0?UTILITIES</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+</ul>
+
+<h2><a name="S27"></a>?PR?DEVICELONGSLEEP?SYS (C:001593H - C:0015ACH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S100">?PR?_IPC_TXCONTROLCMD?IPC</a>) Top=2 Bytes (<a href="#S34">?PR?DEVICETIMER500MS?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S100">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+<li><a href="#S36">?PR?DEVICETIMER100MS?SYS</a></li>
+<li><a href="#S34">?PR?DEVICETIMER500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S28"></a>?PR?LERECONNSTART?SYS (C:001676H - C:001697H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S89">?PR?_IIC_READ?IIC</a>) Top=2 Bytes (<a href="#S32">?PR?_DEVICEEVTCB?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S89">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S100">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+</ul>
+
+<h2><a name="S29"></a>?PR?LEADVSTART?SYS (C:000E90H - C:000ED0H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S93">?PR?_IIC_WRITEBLOCK?IIC</a>) Top=2 Bytes (<a href="#S32">?PR?_DEVICEEVTCB?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S89">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S93">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+<li><a href="#S100">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+</ul>
+
+<h2><a name="S30"></a>?PR?LEADDRRANDOMCNTINIT?SYS (C:000D7CH - C:000DC7H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S93">?PR?_IIC_WRITEBLOCK?IIC</a>) Top=2 Bytes (<a href="#S32">?PR?_DEVICEEVTCB?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S89">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S93">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+<li><a href="#S135">?PR?ADC_GET0VBASE?ADC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+</ul>
+
+<h2><a name="S37"></a>?PR?DEVICEINIT?SYS (C:0007EEH - C:0007F3H)</h2>
+<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S38">?PR?YC_SYSMAIN?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S38">?PR?YC_SYSMAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S43"></a>?PR?_XMEMCPY?UTILITIES (C:000F7EH - C:000FC0H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S179">?C?LIB_CODE</a>) Top=8 Bytes (<a href="#S91">?PR?_IIC_WRITE?IIC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S91">?PR?_IIC_WRITE?IIC</a></li>
+<li><a href="#S104">?PR?_IPC_TX24GDATA?IPC</a></li>
+<li><a href="#S109">?PR?_IPC_TXBLEDATA?IPC</a></li>
+<li><a href="#S102">?PR?_IPC_TXBREDRHIDDATA?IPC</a></li>
+<li><a href="#S107">?PR?_IPC_TXSPPDATA?IPC</a></li>
+</ul>
+
+<h2><a name="S47"></a>?PR?_XMEMCLEAR_0?UTILITIES (C:00164AH - C:001675H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S179">?C?LIB_CODE</a>) Top=4 Bytes (<a href="#S26">?PR?CLEARGLOBALMEM?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S26">?PR?CLEARGLOBALMEM?SYS</a></li>
+</ul>
+
+<h2><a name="S51"></a>?PR?_DELAY1MS?UTILITIES (C:000353H - C:000371H)</h2>
+<p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S93">?PR?_IIC_WRITEBLOCK?IIC</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+<li><a href="#S93">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+</ul>
+
+<h2><a name="S54"></a>?PR?_GPIOSETBIT?GPIO (C:0008E2H - C:000942H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S179">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S66">?PR?_GPIO_SETOE?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S66">?PR?_GPIO_SETOE?GPIO</a></li>
+<li><a href="#S60">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S64">?PR?_GPIO_SETPD?GPIO</a></li>
+</ul>
+
+<h2><a name="S57"></a>?PR?_GPIOGETBIT?GPIO (C:000823H - C:000861H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S179">?C?LIB_CODE</a>) Top=2 Bytes (<a href="#S78">?PR?_GPIO_FLIPOUTBIT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S78">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
+</ul>
+
+<h2><a name="S59"></a>?PR?_GPIO_GETINPUTSTATUS?GPIO (C:00081DH - C:000822H)</h2>
+<p><br><b>Maximum Stack:</b> Top=5 Bytes (<a href="#S5">?PR?MOUSELKEYCHECK?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S75">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a></li>
+<li><a href="#S8">?PR?MOUSEBKKEYCHECK?SYS</a></li>
+<li><a href="#S10">?PR?MOUSEDPIKEYCHECK?SYS</a></li>
+<li><a href="#S9">?PR?MOUSEFWKEYCHECK?SYS</a></li>
+<li><a href="#S5">?PR?MOUSELKEYCHECK?SYS</a></li>
+<li><a href="#S6">?PR?MOUSEMKEYCHECK?SYS</a></li>
+<li><a href="#S7">?PR?MOUSERKEYCHECK?SYS</a></li>
+<li><a href="#S12">?PR?MOUSEWHEELSCAN?SYS</a></li>
+<li><a href="#S3">?PR?SENSORCLEARDATA?SYS</a></li>
+</ul>
+
+<h2><a name="S60"></a>?PR?_GPIO_SETOUT?GPIO (C:000A5BH - C:000A66H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S54">?PR?_GPIOSETBIT?GPIO</a>) Top=6 Bytes (<a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S54">?PR?_GPIOSETBIT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S78">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
+<li><a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+</ul>
+
+<h2><a name="S62"></a>?PR?_GPIO_SETPU?GPIO (C:0008D8H - C:0008E1H)</h2>
+<p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S68">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S68">?PR?_GPIO_SETINPUT?GPIO</a></li>
+</ul>
+
+<h2><a name="S64"></a>?PR?_GPIO_SETPD?GPIO (C:000A67H - C:000A72H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S54">?PR?_GPIOSETBIT?GPIO</a>) Top=6 Bytes (<a href="#S68">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S54">?PR?_GPIOSETBIT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S68">?PR?_GPIO_SETINPUT?GPIO</a></li>
+</ul>
+
+<h2><a name="S66"></a>?PR?_GPIO_SETOE?GPIO (C:0009BCH - C:0009C7H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S54">?PR?_GPIOSETBIT?GPIO</a>) Top=6 Bytes (<a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S54">?PR?_GPIOSETBIT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S70">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+</ul>
+
+<h2><a name="S68"></a>?PR?_GPIO_SETINPUT?GPIO (C:0009A7H - C:0009BBH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S64">?PR?_GPIO_SETPD?GPIO</a>) Top=4 Bytes (<a href="#S8">?PR?MOUSEBKKEYCHECK?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S64">?PR?_GPIO_SETPD?GPIO</a></li>
+<li><a href="#S62">?PR?_GPIO_SETPU?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S8">?PR?MOUSEBKKEYCHECK?SYS</a></li>
+<li><a href="#S9">?PR?MOUSEFWKEYCHECK?SYS</a></li>
+<li><a href="#S172">?PR?SENSORPOWERDOWN?SENSOR</a></li>
+</ul>
+
+<h2><a name="S70"></a>?PR?_GPIO_SETOUTPUT?GPIO (C:0008C6H - C:0008D7H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S66">?PR?_GPIO_SETOE?GPIO</a>) Top=4 Bytes (<a href="#S5">?PR?MOUSELKEYCHECK?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S66">?PR?_GPIO_SETOE?GPIO</a></li>
+<li><a href="#S60">?PR?_GPIO_SETOUT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S8">?PR?MOUSEBKKEYCHECK?SYS</a></li>
+<li><a href="#S9">?PR?MOUSEFWKEYCHECK?SYS</a></li>
+<li><a href="#S5">?PR?MOUSELKEYCHECK?SYS</a></li>
+<li><a href="#S6">?PR?MOUSEMKEYCHECK?SYS</a></li>
+<li><a href="#S7">?PR?MOUSERKEYCHECK?SYS</a></li>
+</ul>
+
+<h2><a name="S83"></a>?PR?SPI_INITIALIZE?SPI (C:0013EAH - C:00140DH)</h2>
+<p><br><b>Maximum Stack:</b> Top=8 Bytes (<a href="#S167">?PR?SPI_TWRESET?SENSOR</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+<li><a href="#S21">?PR?MOUSEMOTION?SYS</a></li>
+<li><a href="#S167">?PR?SPI_TWRESET?SENSOR</a></li>
+</ul>
+
+<h2><a name="S84"></a>?PR?_SPI_READSENSOR?SPI (C:000721H - C:000749H)</h2>
+<p><br><b>Maximum Stack:</b> Top=8 Bytes (<a href="#S167">?PR?SPI_TWRESET?SENSOR</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S3">?PR?SENSORCLEARDATA?SYS</a></li>
+<li><a href="#S172">?PR?SENSORPOWERDOWN?SENSOR</a></li>
+<li><a href="#S173">?PR?SENSORPOWERON?SENSOR</a></li>
+<li><a href="#S169">?PR?SPI_RESETSENSOR?SENSOR</a></li>
+<li><a href="#S167">?PR?SPI_TWRESET?SENSOR</a></li>
+</ul>
+
+<h2><a name="S85"></a>?PR?_SPI_WRITESENSOR?SPI (C:0004DAH - C:000504H)</h2>
+<p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S4">?PR?DPIWRITEINSENSOR?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+<li><a href="#S4">?PR?DPIWRITEINSENSOR?SYS</a></li>
+<li><a href="#S172">?PR?SENSORPOWERDOWN?SENSOR</a></li>
+<li><a href="#S173">?PR?SENSORPOWERON?SENSOR</a></li>
+<li><a href="#S169">?PR?SPI_RESETSENSOR?SENSOR</a></li>
+</ul>
+
+<h2><a name="S88"></a>?PR?IICWAITDONE?IIC (C:000FC1H - C:000FC8H)</h2>
+<p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S91">?PR?_IIC_WRITE?IIC</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S89">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S91">?PR?_IIC_WRITE?IIC</a></li>
+</ul>
+
+<h2><a name="S89"></a>?PR?_IIC_READ?IIC (C:000ED1H - C:000F7DH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S88">?PR?IICWAITDONE?IIC</a>) Top=4 Bytes (<a href="#S30">?PR?LEADDRRANDOMCNTINIT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S88">?PR?IICWAITDONE?IIC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+<li><a href="#S24">?PR?DEVICESWITCH24GMODE?SYS</a></li>
+<li><a href="#S30">?PR?LEADDRRANDOMCNTINIT?SYS</a></li>
+<li><a href="#S29">?PR?LEADVSTART?SYS</a></li>
+<li><a href="#S28">?PR?LERECONNSTART?SYS</a></li>
+</ul>
+
+<h2><a name="S91"></a>?PR?_IIC_WRITE?IIC (C:001795H - C:001805H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S43">?PR?_XMEMCPY?UTILITIES</a>) Top=6 Bytes (<a href="#S93">?PR?_IIC_WRITEBLOCK?IIC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S43">?PR?_XMEMCPY?UTILITIES</a></li>
+<li><a href="#S88">?PR?IICWAITDONE?IIC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S93">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+</ul>
+
+<h2><a name="S93"></a>?PR?_IIC_WRITEBLOCK?IIC (C:000CCBH - C:000D7BH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S91">?PR?_IIC_WRITE?IIC</a>) Top=4 Bytes (<a href="#S10">?PR?MOUSEDPIKEYCHECK?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+<li><a href="#S51">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S91">?PR?_IIC_WRITE?IIC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+<li><a href="#S30">?PR?LEADDRRANDOMCNTINIT?SYS</a></li>
+<li><a href="#S29">?PR?LEADVSTART?SYS</a></li>
+<li><a href="#S10">?PR?MOUSEDPIKEYCHECK?SYS</a></li>
+</ul>
+
+<h2><a name="S96"></a>?PR?_IPCRX?IPC (C:001806H - C:001860H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S179">?C?LIB_CODE</a>) Top=4 Bytes (<a href="#S115">?PR?IPC_DEALSINGLESTEP?IPC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S115">?PR?IPC_DEALSINGLESTEP?IPC</a></li>
+</ul>
+
+<h2><a name="S98"></a>?PR?_IPCTX?IPC (C:000771H - C:0007E3H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S179">?C?LIB_CODE</a>) Top=4 Bytes (<a href="#S104">?PR?_IPC_TX24GDATA?IPC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S104">?PR?_IPC_TX24GDATA?IPC</a></li>
+<li><a href="#S109">?PR?_IPC_TXBLEDATA?IPC</a></li>
+<li><a href="#S102">?PR?_IPC_TXBREDRHIDDATA?IPC</a></li>
+<li><a href="#S107">?PR?_IPC_TXSPPDATA?IPC</a></li>
+</ul>
+
+<h2><a name="S100"></a>?PR?_IPC_TXCONTROLCMD?IPC (C:00074AH - C:000770H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S179">?C?LIB_CODE</a>) Top=4 Bytes (<a href="#S25">?PR?DEVICESTOP24G?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+<li><a href="#S27">?PR?DEVICELONGSLEEP?SYS</a></li>
+<li><a href="#S25">?PR?DEVICESTOP24G?SYS</a></li>
+<li><a href="#S24">?PR?DEVICESWITCH24GMODE?SYS</a></li>
+<li><a href="#S34">?PR?DEVICETIMER500MS?SYS</a></li>
+<li><a href="#S29">?PR?LEADVSTART?SYS</a></li>
+<li><a href="#S28">?PR?LERECONNSTART?SYS</a></li>
+</ul>
+
+<h2><a name="S104"></a>?PR?_IPC_TX24GDATA?IPC (C:001452H - C:001495H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S43">?PR?_XMEMCPY?UTILITIES</a>) Top=4 Bytes (<a href="#S14">?PR?_IPC_TXHIDDATA?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S98">?PR?_IPCTX?IPC</a></li>
+<li><a href="#S43">?PR?_XMEMCPY?UTILITIES</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S14">?PR?_IPC_TXHIDDATA?SYS</a></li>
+</ul>
+
+<h2><a name="S109"></a>?PR?_IPC_TXBLEDATA?IPC (C:001496H - C:0014D9H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S43">?PR?_XMEMCPY?UTILITIES</a>) Top=4 Bytes (<a href="#S14">?PR?_IPC_TXHIDDATA?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S98">?PR?_IPCTX?IPC</a></li>
+<li><a href="#S43">?PR?_XMEMCPY?UTILITIES</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S14">?PR?_IPC_TXHIDDATA?SYS</a></li>
+</ul>
+
+<h2><a name="S112"></a>?PR?IPC_WAITLPM?IPC (C:000347H - C:000352H)</h2>
+<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S38">?PR?YC_SYSMAIN?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S38">?PR?YC_SYSMAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S113"></a>?PR?IPC_ABANDONLPM?IPC (C:00033BH - C:000346H)</h2>
+<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S38">?PR?YC_SYSMAIN?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S38">?PR?YC_SYSMAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S114"></a>?PR?IPC_ISTXBUFFEMPTY?IPC (C:0013D2H - C:0013E9H)</h2>
+<p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S21">?PR?MOUSEMOTION?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S34">?PR?DEVICETIMER500MS?SYS</a></li>
+<li><a href="#S21">?PR?MOUSEMOTION?SYS</a></li>
+</ul>
+
+<h2><a name="S115"></a>?PR?IPC_DEALSINGLESTEP?IPC (C:001861H - C:001A70H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S96">?PR?_IPCRX?IPC</a>) Top=2 Bytes (<a href="#S38">?PR?YC_SYSMAIN?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+<li><a href="#S96">?PR?_IPCRX?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S38">?PR?YC_SYSMAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S135"></a>?PR?ADC_GET0VBASE?ADC (C:000FC9H - C:000FD1H)</h2>
+<p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S30">?PR?LEADDRRANDOMCNTINIT?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S30">?PR?LEADDRRANDOMCNTINIT?SYS</a></li>
+</ul>
+
+<h2><a name="S167"></a>?PR?SPI_TWRESET?SENSOR (C:000A9EH - C:000AF1H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S83">?PR?SPI_INITIALIZE?SPI</a>) Top=6 Bytes (<a href="#S4">?PR?DPIWRITEINSENSOR?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S84">?PR?_SPI_READSENSOR?SPI</a></li>
+<li><a href="#S83">?PR?SPI_INITIALIZE?SPI</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+<li><a href="#S4">?PR?DPIWRITEINSENSOR?SYS</a></li>
+<li><a href="#S3">?PR?SENSORCLEARDATA?SYS</a></li>
+<li><a href="#S172">?PR?SENSORPOWERDOWN?SENSOR</a></li>
+<li><a href="#S173">?PR?SENSORPOWERON?SENSOR</a></li>
+<li><a href="#S169">?PR?SPI_RESETSENSOR?SENSOR</a></li>
+</ul>
+
+<h2><a name="S171"></a>?PR?SENSOR_SPI_DISABLE?SENSOR (C:000A8AH - C:000A9DH)</h2>
+<p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S4">?PR?DPIWRITEINSENSOR?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S4">?PR?DPIWRITEINSENSOR?SYS</a></li>
+</ul>
+
+<h2><a name="S173"></a>?PR?SENSORPOWERON?SENSOR (C:000A73H - C:000A89H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S167">?PR?SPI_TWRESET?SENSOR</a>) Top=4 Bytes (<a href="#S3">?PR?SENSORCLEARDATA?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S84">?PR?_SPI_READSENSOR?SPI</a></li>
+<li><a href="#S85">?PR?_SPI_WRITESENSOR?SPI</a></li>
+<li><a href="#S167">?PR?SPI_TWRESET?SENSOR</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S3">?PR?SENSORCLEARDATA?SYS</a></li>
+</ul>
+
+<h2><a name="S174"></a>?PR?_ABS?SENSOR (C:0013BFH - C:0013D1H)</h2>
+<p><br><b>Maximum Stack:</b> Top=8 Bytes (<a href="#S175">?PR?DRAWING_OPTIMA?SENSOR</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S175">?PR?DRAWING_OPTIMA?SENSOR</a></li>
+</ul>
+
+<h2><a name="S175"></a>?PR?DRAWING_OPTIMA?SENSOR (C:0012BDH - C:0013BEH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S174">?PR?_ABS?SENSOR</a>) Top=6 Bytes (<a href="#S18">?PR?MOUSEREADSENSOR?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S179">?C?LIB_CODE</a></li>
+<li><a href="#S174">?PR?_ABS?SENSOR</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S18">?PR?MOUSEREADSENSOR?SYS</a></li>
+</ul>
+
+<h2><a name="S176"></a>?PR?DRAWING_OPTIMA_INIT?SENSOR (C:001B18H - C:001B39H)</h2>
+<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S32">?PR?_DEVICEEVTCB?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+</ul>
+
+<h2><a name="S179"></a>?C?LIB_CODE (C:000003H - C:000233H)</h2>
+<p><br><b>Maximum Stack:</b> Top=10 Bytes (<a href="#S43">?PR?_XMEMCPY?UTILITIES</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S52">?PR?_COMPARE_STR?UTILITIES</a></li>
+<li><a href="#S32">?PR?_DEVICEEVTCB?SYS</a></li>
+<li><a href="#S45">?PR?_DMEMCPY?UTILITIES</a></li>
+<li><a href="#S57">?PR?_GPIOGETBIT?GPIO</a></li>
+<li><a href="#S54">?PR?_GPIOSETBIT?GPIO</a></li>
+<li><a href="#S93">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+<li><a href="#S111">?PR?_IPC_INITIALIZE?IPC</a></li>
+<li><a href="#S100">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S96">?PR?_IPCRX?IPC</a></li>
+<li><a href="#S98">?PR?_IPCTX?IPC</a></li>
+<li><a href="#S47">?PR?_XMEMCLEAR_0?UTILITIES</a></li>
+<li><a href="#S49">?PR?_XMEMCLEAR_FF?UTILITIES</a></li>
+<li><a href="#S43">?PR?_XMEMCPY?UTILITIES</a></li>
+<li><a href="#S175">?PR?DRAWING_OPTIMA?SENSOR</a></li>
+<li><a href="#S115">?PR?IPC_DEALSINGLESTEP?IPC</a></li>
+</ul>
+
+</body>
+</html>
Index: c51/output/FW.MAP
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/FW.MAP	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/FW.MAP	(working copy)
@@ -0,0 +1,2086 @@
+LX51 LINKER/LOCATER V4.41                                                               06/22/2020  10:20:42  PAGE 1
+
+
+LX51 LINKER/LOCATER V4.41, INVOKED BY:
+D:\SOFTWARE\PATH\KEIL\C51\BIN\LX51.EXE OUTPUT/RAM.OBJ, OUTPUT/SYS.OBJ, OUTPUT/UTILITIES.OBJ, OUTPUT/GPIO.OBJ, OUTPUT/SPI
+>> .OBJ, OUTPUT/IIC.OBJ, OUTPUT/IPC.OBJ, OUTPUT/ADC.OBJ, OUTPUT/GLOBAL_VARIABLE.OBJ, OUTPUT/SENSOR.OBJ TO OUTPUT\FW CLAS
+>> SES (XDATA (X:0X1A00-X:0X1DFF), CODE (C:0-C:0XFFFF), DATA (D:0X10-0X7F), IDATA (I:0X80-0XCF)) SEGMENTS (?STACK (D:0XD
+>> 0)) NOOVERLAY PAGELENGTH (60000) CODE
+
+
+CPU MODE:     8051 MODE
+MEMORY MODEL: LARGE
+
+
+INPUT MODULES INCLUDED:
+  OUTPUT/RAM.OBJ (RAM)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/SYS.OBJ (SYS)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/UTILITIES.OBJ (UTILITIES)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/GPIO.OBJ (GPIO)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/SPI.OBJ (SPI)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/IIC.OBJ (IIC)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/IPC.OBJ (IPC)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/ADC.OBJ (ADC)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/GLOBAL_VARIABLE.OBJ (GLOBAL_VARIABLE)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/SENSOR.OBJ (SENSOR)
+         COMMENT TYPE 0: C51 V9.00
+  D:\SOFTWARE\PATH\KEIL\C51\LIB\C51L.LIB (?C_STARTUP)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\SOFTWARE\PATH\KEIL\C51\LIB\C51L.LIB (?C?COPY)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\SOFTWARE\PATH\KEIL\C51\LIB\C51L.LIB (?C?CLDPTR)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\SOFTWARE\PATH\KEIL\C51\LIB\C51L.LIB (?C?CLDOPTR)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\SOFTWARE\PATH\KEIL\C51\LIB\C51L.LIB (?C?CSTPTR)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\SOFTWARE\PATH\KEIL\C51\LIB\C51L.LIB (?C?SIDIV)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\SOFTWARE\PATH\KEIL\C51\LIB\C51L.LIB (?C?IILDX)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\SOFTWARE\PATH\KEIL\C51\LIB\C51L.LIB (?C?ILDIX)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\SOFTWARE\PATH\KEIL\C51\LIB\C51L.LIB (?C?CCASE)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\SOFTWARE\PATH\KEIL\C51\LIB\C51L.LIB (?C?ICALL)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\SOFTWARE\PATH\KEIL\C51\LIB\C51L.LIB (?C_INIT)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\SOFTWARE\PATH\KEIL\C51\LIB\C51L.LIB (?C?UIDIV)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+
+
+ACTIVE MEMORY CLASSES OF MODULE:  OUTPUT\FW (RAM)
+
+BASE        START       END         USED      MEMORY CLASS
+==========================================================
+X:000000H   X:001A00H   X:001DFFH   000348H   XDATA
+C:000000H   C:000000H   C:00FFFFH   001B31H   CODE
+I:000000H   I:000010H   I:00007FH   000008H   DATA
+I:000000H   I:000080H   I:0000CFH   000001H   IDATA
+I:000020H.0 I:000020H.0 I:00002FH.7 000001H.3 BIT
+C:000000H   C:000000H   C:00FFFFH   000009H   CONST
+
+
+MEMORY MAP OF MODULE:  OUTPUT\FW (RAM)
+
+
+START     STOP      LENGTH    ALIGN  RELOC    MEMORY CLASS   SEGMENT NAME
+=========================================================================
+
+* * * * * * * * * * *   D A T A   M E M O R Y   * * * * * * * * * * * * *
+000000H   000007H   000008H   ---    AT..     DATA           "REG BANK 0"
+000008H.0 00001FH.7 000018H.0 ---    ---      **GAP**
+000020H.0 000020H.0 000000H.1 BIT    UNIT     BIT            ?BI?MOUSEMOTION?SYS
+000020H.1 000020H.1 000000H.1 BIT    UNIT     BIT            ?BI?_GPIOSETBIT?GPIO
+000020H.2 000020H.2 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETOUT?GPIO
+000020H.3 000020H.3 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETPU?GPIO
+000020H.4 000020H.4 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETPD?GPIO
+000020H.5 000020H.5 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETOE?GPIO
+000020H.6 000020H.6 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETINPUT?GPIO
+000020H.7 000020H.7 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETOUTPUT?GPIO
+000021H.0 000021H.0 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETWAKEUP?GPIO
+000021H.1 000021H.1 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO
+000021H.2 000021H.2 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_FLIPOUTBIT?GPIO
+000021H.3 0000CFH   0000AEH.5 ---    ---      **GAP**
+0000D0H   0000D0H   000001H   BYTE   UNIT     IDATA          ?STACK
+
+* * * * * * * * * * *   C O D E   M E M O R Y   * * * * * * * * * * * * *
+000000H   000002H   000003H   ---    OFFS..   CODE           ?CO??C_STARTUP?0
+000003H   000233H   000231H   BYTE   UNIT     CODE           ?C?LIB_CODE
+000234H   0002BFH   00008CH   BYTE   UNIT     CODE           ?C_C51STARTUP
+0002C0H   0002D5H   000016H   BYTE   UNIT     CODE           ?C_INITSEG
+0002D6H   0002DBH   000006H   BYTE   UNIT     CONST          ?CO?SYS
+0002DCH   0002DEH   000003H   BYTE   UNIT     CONST          ?CO?IPC
+0002DFH   ---       000000H   BYTE   UNIT     CODE           ?PR?MAIN?RAM
+0002DFH   00033AH   00005CH   BYTE   UNIT     CODE           ?PR?YC_SYSMAIN?SYS
+00033BH   000346H   00000CH   BYTE   UNIT     CODE           ?PR?IPC_ABANDONLPM?IPC
+000347H   000352H   00000CH   BYTE   UNIT     CODE           ?PR?IPC_WAITLPM?IPC
+000353H   000371H   00001FH   BYTE   UNIT     CODE           ?PR?_DELAY1MS?UTILITIES
+000372H   0004D9H   000168H   BYTE   UNIT     CODE           ?PR?_DEVICEEVTCB?SYS
+0004DAH   000504H   00002BH   BYTE   UNIT     CODE           ?PR?_SPI_WRITESENSOR?SPI
+000505H   000720H   00021CH   BYTE   UNIT     CODE           ?PR?SPI_RESETSENSOR?SENSOR
+000721H   000749H   000029H   BYTE   UNIT     CODE           ?PR?_SPI_READSENSOR?SPI
+00074AH   000770H   000027H   BYTE   UNIT     CODE           ?PR?_IPC_TXCONTROLCMD?IPC
+000771H   0007E3H   000073H   BYTE   UNIT     CODE           ?PR?_IPCTX?IPC
+0007E4H   0007EDH   00000AH   BYTE   UNIT     CODE           ?PR?DEVICESTOP24G?SYS
+0007EEH   0007F3H   000006H   BYTE   UNIT     CODE           ?PR?DEVICEINIT?SYS
+0007F4H   000800H   00000DH   BYTE   UNIT     CODE           ?PR?_IPC_INITIALIZE?IPC
+000801H   00081CH   00001CH   BYTE   UNIT     CODE           ?PR?SENSORCLEARDATA?SYS
+00081DH   000822H   000006H   BYTE   UNIT     CODE           ?PR?_GPIO_GETINPUTSTATUS?GPIO
+000823H   000861H   00003FH   BYTE   UNIT     CODE           ?PR?_GPIOGETBIT?GPIO
+000862H   0008C5H   000064H   BYTE   UNIT     CODE           ?PR?MOUSEBKKEYCHECK?SYS
+0008C6H   0008D7H   000012H   BYTE   UNIT     CODE           ?PR?_GPIO_SETOUTPUT?GPIO
+0008D8H   0008E1H   00000AH   BYTE   UNIT     CODE           ?PR?_GPIO_SETPU?GPIO
+0008E2H   000942H   000061H   BYTE   UNIT     CODE           ?PR?_GPIOSETBIT?GPIO
+000943H   0009A6H   000064H   BYTE   UNIT     CODE           ?PR?MOUSEFWKEYCHECK?SYS
+0009A7H   0009BBH   000015H   BYTE   UNIT     CODE           ?PR?_GPIO_SETINPUT?GPIO
+0009BCH   0009C7H   00000CH   BYTE   UNIT     CODE           ?PR?_GPIO_SETOE?GPIO
+0009C8H   000A4BH   000084H   BYTE   UNIT     CODE           ?PR?MOUSEWHEELSCAN?SYS
+000A4CH   000A5AH   00000FH   BYTE   UNIT     CODE           ?PR?MOUSE_WHEEL_DELAY_LPM?SYS
+000A5BH   000A66H   00000CH   BYTE   UNIT     CODE           ?PR?_GPIO_SETOUT?GPIO
+000A67H   000A72H   00000CH   BYTE   UNIT     CODE           ?PR?_GPIO_SETPD?GPIO
+000A73H   000A89H   000017H   BYTE   UNIT     CODE           ?PR?SENSORPOWERON?SENSOR
+000A8AH   000A9DH   000014H   BYTE   UNIT     CODE           ?PR?SENSOR_SPI_DISABLE?SENSOR
+000A9EH   000AF1H   000054H   BYTE   UNIT     CODE           ?PR?SPI_TWRESET?SENSOR
+000AF2H   000B14H   000023H   BYTE   UNIT     CODE           ?PR?SENSORPOWERDOWN?SENSOR
+000B15H   000B2FH   00001BH   BYTE   UNIT     CODE           ?PR?_GPIO_FLIPOUTBIT?GPIO
+000B30H   000B7AH   00004BH   BYTE   UNIT     CODE           ?PR?MOUSELKEYCHECK?SYS
+000B7BH   000BDBH   000061H   BYTE   UNIT     CODE           ?PR?MOUSEKEYDETECT?SYS
+000BDCH   000C26H   00004BH   BYTE   UNIT     CODE           ?PR?MOUSEMKEYCHECK?SYS
+000C27H   000C71H   00004BH   BYTE   UNIT     CODE           ?PR?MOUSERKEYCHECK?SYS
+000C72H   000CCAH   000059H   BYTE   UNIT     CODE           ?PR?MOUSEDPIKEYCHECK?SYS
+000CCBH   000D7BH   0000B1H   BYTE   UNIT     CODE           ?PR?_IIC_WRITEBLOCK?IIC
+000D7CH   000DC7H   00004CH   BYTE   UNIT     CODE           ?PR?LEADDRRANDOMCNTINIT?SYS
+000DC8H   000E8FH   0000C8H   BYTE   UNIT     CODE           ?PR?DPIWRITEINSENSOR?SYS
+000E90H   000ED0H   000041H   BYTE   UNIT     CODE           ?PR?LEADVSTART?SYS
+000ED1H   000F7DH   0000ADH   BYTE   UNIT     CODE           ?PR?_IIC_READ?IIC
+000F7EH   000FC0H   000043H   BYTE   UNIT     CODE           ?PR?_XMEMCPY?UTILITIES
+000FC1H   000FC8H   000008H   BYTE   UNIT     CODE           ?PR?IICWAITDONE?IIC
+000FC9H   000FD1H   000009H   BYTE   UNIT     CODE           ?PR?ADC_GET0VBASE?ADC
+000FD2H   000FE4H   000013H   BYTE   UNIT     CODE           ?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO
+000FE5H   00106AH   000086H   BYTE   UNIT     CODE           ?PR?_GPIO_SETWAKEUP?GPIO
+00106BH   0010B9H   00004FH   BYTE   UNIT     CODE           ?PR?_IPC_TXHIDDATA?SYS
+0010BAH   0011C4H   00010BH   BYTE   UNIT     CODE           ?PR?MOUSEMOTION?SYS
+0011C5H   0012BCH   0000F8H   BYTE   UNIT     CODE           ?PR?MOUSEREADSENSOR?SYS
+0012BDH   0013BEH   000102H   BYTE   UNIT     CODE           ?PR?DRAWING_OPTIMA?SENSOR
+0013BFH   0013D1H   000013H   BYTE   UNIT     CODE           ?PR?_ABS?SENSOR
+0013D2H   0013E9H   000018H   BYTE   UNIT     CODE           ?PR?IPC_ISTXBUFFEMPTY?IPC
+0013EAH   00140DH   000024H   BYTE   UNIT     CODE           ?PR?SPI_INITIALIZE?SPI
+00140EH   001451H   000044H   BYTE   UNIT     CODE           ?PR?MOUSEPACKAGE?SYS
+001452H   001495H   000044H   BYTE   UNIT     CODE           ?PR?_IPC_TX24GDATA?IPC
+001496H   0014D9H   000044H   BYTE   UNIT     CODE           ?PR?_IPC_TXBLEDATA?IPC
+0014DAH   001592H   0000B9H   BYTE   UNIT     CODE           ?PR?DEVICETIMER500MS?SYS
+001593H   0015ACH   00001AH   BYTE   UNIT     CODE           ?PR?DEVICELONGSLEEP?SYS
+0015ADH   0015DAH   00002EH   BYTE   UNIT     CODE           ?PR?DEVICETIMER100MS?SYS
+0015DBH   001626H   00004CH   BYTE   UNIT     CODE           ?PR?DEVICESWITCH24GMODE?SYS
+001627H   001649H   000023H   BYTE   UNIT     CODE           ?PR?CLEARGLOBALMEM?SYS
+00164AH   001675H   00002CH   BYTE   UNIT     CODE           ?PR?_XMEMCLEAR_0?UTILITIES
+001676H   001697H   000022H   BYTE   UNIT     CODE           ?PR?LERECONNSTART?SYS
+001698H   00169EH   000007H   BYTE   UNIT     CODE           ?PR?YC_ICE_BREAK?UTILITIES
+00169FH   0016E2H   000044H   BYTE   UNIT     CODE           ?PR?_DMEMCPY?UTILITIES
+0016E3H   00170FH   00002DH   BYTE   UNIT     CODE           ?PR?_XMEMCLEAR_FF?UTILITIES
+001710H   001759H   00004AH   BYTE   UNIT     CODE           ?PR?_COMPARE_STR?UTILITIES
+00175AH   001794H   00003BH   BYTE   UNIT     CODE           ?PR?_GPIO_CLEARWAKEUP?GPIO
+001795H   001805H   000071H   BYTE   UNIT     CODE           ?PR?_IIC_WRITE?IIC
+001806H   001860H   00005BH   BYTE   UNIT     CODE           ?PR?_IPCRX?IPC
+001861H   001A70H   000210H   BYTE   UNIT     CODE           ?PR?IPC_DEALSINGLESTEP?IPC
+001A71H   001ABBH   00004BH   BYTE   UNIT     CODE           ?PR?_IPC_TXBREDRHIDDATA?IPC
+001ABCH   001AC1H   000006H   BYTE   UNIT     CODE           ?PR?IPC_GETBBDISCONNECTREASON?IPC
+001AC2H   001B05H   000044H   BYTE   UNIT     CODE           ?PR?_IPC_TXSPPDATA?IPC
+001B06H   001B0EH   000009H   BYTE   UNIT     CODE           ?PR?ADC_GETCURRENTVALUE?ADC
+001B0FH   001B17H   000009H   BYTE   UNIT     CODE           ?PR?ADC_GET3VBASE?ADC
+001B18H   001B39H   000022H   BYTE   UNIT     CODE           ?PR?DRAWING_OPTIMA_INIT?SENSOR
+
+* * * * * * * * * * *  X D A T A   M E M O R Y  * * * * * * * * * * * * *
+000040H   000045H   000006H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?25
+000046H   00009FH   00005AH   ---    ---      **GAP**
+0000A0H   0000A3H   000004H   BYTE   OFFS..   XDATA          ?XD?GPIO?1
+0000A4H   0000A7H   000004H   BYTE   OFFS..   XDATA          ?XD?GPIO?0
+0000A8H   000217H   000170H   ---    ---      **GAP**
+000218H   00021BH   000004H   BYTE   OFFS..   XDATA          ?XD?SPI?1
+00021CH   00021CH   000001H   ---    ---      **GAP**
+00021DH   000220H   000004H   BYTE   OFFS..   XDATA          ?XD?SPI?0
+000221H   000371H   000151H   ---    ---      **GAP**
+000372H   000377H   000006H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?4
+000378H   0003EFH   000078H   ---    ---      **GAP**
+0003F0H   0003F0H   000001H   BYTE   OFFS..   XDATA          ?XD?IPC?7
+0003F1H   000B29H   000739H   ---    ---      **GAP**
+000B2AH   000B2AH   000001H   BYTE   OFFS..   XDATA          ?XD?IPC?0
+000B2BH   000B2BH   000001H   BYTE   OFFS..   XDATA          ?XD?IPC?4
+000B2CH   0019FFH   000ED4H   ---    ---      **GAP**
+001A00H   001B2BH   00012CH   BYTE   UNIT     XDATA          ?XD?IPC
+001B2CH   001B93H   000068H   BYTE   UNIT     XDATA          ?XD?IIC
+001B94H   001BAAH   000017H   BYTE   UNIT     XDATA          ?XD?_IIC_WRITE?IIC
+001BABH   001BBCH   000012H   BYTE   UNIT     XDATA          ?XD?SYS
+001BBDH   001BC8H   00000CH   BYTE   UNIT     XDATA          ?XD?_DEVICEEVTCB?SYS
+001BC9H   001BD1H   000009H   BYTE   UNIT     XDATA          ?XD?_IIC_WRITEBLOCK?IIC
+001BD2H   001BD9H   000008H   BYTE   UNIT     XDATA          ?XD?_DMEMCPY?UTILITIES
+001BDAH   001BE0H   000007H   BYTE   UNIT     XDATA          ?XD?_COMPARE_STR?UTILITIES
+001BE1H   001BE6H   000006H   BYTE   UNIT     XDATA          ?XD?_XMEMCPY?UTILITIES
+001BE7H   001BECH   000006H   BYTE   UNIT     XDATA          ?XD?_IPCTX?IPC
+001BEDH   001BF1H   000005H   BYTE   UNIT     XDATA          ?XD?MOUSEKEYDETECT?SYS
+001BF2H   001BF6H   000005H   BYTE   UNIT     XDATA          ?XD?_IIC_READ?IIC
+001BF7H   001BFAH   000004H   BYTE   UNIT     XDATA          ?XD?_IPC_TXHIDDATA?SYS
+001BFBH   001BFEH   000004H   BYTE   UNIT     XDATA          ?XD?MOUSEMOTION?SYS
+001BFFH   001C02H   000004H   BYTE   UNIT     XDATA          ?XD?_IPCRX?IPC
+001C03H   001C06H   000004H   BYTE   UNIT     XDATA          ?XD?_IPC_TXCONTROLCMD?IPC
+001C07H   001C09H   000003H   BYTE   UNIT     XDATA          ?XD?MOUSEWHEELSCAN?SYS
+001C0AH   001C0CH   000003H   BYTE   UNIT     XDATA          ?XD?_XMEMCLEAR_0?UTILITIES
+001C0DH   001C0FH   000003H   BYTE   UNIT     XDATA          ?XD?_XMEMCLEAR_FF?UTILITIES
+001C10H   001C12H   000003H   BYTE   UNIT     XDATA          ?XD?_GPIOSETBIT?GPIO
+001C13H   001C15H   000003H   BYTE   UNIT     XDATA          ?XD?IPC_DEALSINGLESTEP?IPC
+001C16H   001C17H   000002H   BYTE   UNIT     XDATA          ?XD?SPI_RESETSENSOR?SENSOR
+001C18H   001C18H   000001H   BYTE   UNIT     XDATA          ?XD?MOUSEREADSENSOR?SYS
+001C19H   001C19H   000001H   BYTE   UNIT     XDATA          ?XD?LEADDRRANDOMCNTINIT?SYS
+001C1AH   001C1AH   000001H   BYTE   UNIT     XDATA          ?XD?DEVICETIMER500MS?SYS
+001C1BH   001C1BH   000001H   BYTE   UNIT     XDATA          ?XD?_GPIOGETBIT?GPIO
+001C1CH   001C1CH   000001H   BYTE   UNIT     XDATA          ?XD?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO
+001C1DH   001C1DH   000001H   BYTE   UNIT     XDATA          ?XD?_GPIO_FLIPOUTBIT?GPIO
+001C1EH   001C1EH   000001H   BYTE   UNIT     XDATA          ?XD?_IPC_TXBREDRHIDDATA?IPC
+001C1FH   001C1FH   000001H   BYTE   UNIT     XDATA          ?XD?_IPC_TX24GDATA?IPC
+001C20H   001C20H   000001H   BYTE   UNIT     XDATA          ?XD?_IPC_TXSPPDATA?IPC
+001C21H   001C21H   000001H   BYTE   UNIT     XDATA          ?XD?_IPC_TXBLEDATA?IPC
+001C22H   001C22H   000001H   BYTE   UNIT     XDATA          ?XD?SPI_TWRESET?SENSOR
+001C23H   004130H   00250EH   ---    ---      **GAP**
+004131H   004131H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?9
+004132H   004260H   00012FH   ---    ---      **GAP**
+004261H   004270H   000010H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?14
+004271H   004272H   000002H   ---    ---      **GAP**
+004273H   004278H   000006H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?23
+004279H   0042B7H   00003FH   ---    ---      **GAP**
+0042B8H   0042B8H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?18
+0042B9H   0042D0H   000018H   ---    ---      **GAP**
+0042D1H   0042D2H   000002H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?26
+0042D3H   00453DH   00026BH   ---    ---      **GAP**
+00453EH   004543H   000006H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?1
+004544H   004594H   000051H   ---    ---      **GAP**
+004595H   004595H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?2
+004596H   00470AH   000175H   ---    ---      **GAP**
+00470BH   00470CH   000002H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?22
+00470DH   004717H   00000BH   ---    ---      **GAP**
+004718H   004718H   000001H   BYTE   OFFS..   XDATA          ?XD?IPC?1
+004719H   004728H   000010H   BYTE   OFFS..   XDATA          ?XD?IPC?10
+004729H   0047C3H   00009BH   ---    ---      **GAP**
+0047C4H   0047C5H   000002H   BYTE   OFFS..   XDATA          ?XD?IPC?3
+0047C6H   0047C7H   000002H   BYTE   OFFS..   XDATA          ?XD?IPC?6
+0047C8H   00482BH   000064H   ---    ---      **GAP**
+00482CH   00482DH   000002H   BYTE   OFFS..   XDATA          ?XD?IPC?2
+00482EH   00482FH   000002H   BYTE   OFFS..   XDATA          ?XD?IPC?5
+004830H   004841H   000012H   BYTE   OFFS..   XDATA          ?XD?IPC?9
+004842H   004897H   000056H   ---    ---      **GAP**
+004898H   004899H   000002H   BYTE   OFFS..   XDATA          ?XD?IPC?13
+00489AH   00489BH   000002H   BYTE   OFFS..   XDATA          ?XD?IPC?11
+00489CH   00489CH   000001H   BYTE   OFFS..   XDATA          ?XD?IPC?12
+00489DH   00489DH   000001H   BYTE   OFFS..   XDATA          ?XD?IPC?8
+00489EH   004905H   000068H   ---    ---      **GAP**
+004906H   004925H   000020H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?17
+004926H   00494DH   000028H   ---    ---      **GAP**
+00494EH   00494EH   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?19
+00494FH   00494FH   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?20
+004950H   004953H   000004H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?7
+004954H   004954H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?30
+004955H   0049B6H   000062H   ---    ---      **GAP**
+0049B7H   0049B7H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?5
+0049B8H   0049BFH   000008H   ---    ---      **GAP**
+0049C0H   0049C0H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?24
+0049C1H   0049C1H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?27
+0049C2H   0049C2H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?12
+0049C3H   004E20H   00045EH   ---    ---      **GAP**
+004E21H   004E40H   000020H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?3
+004E41H   004E42H   000002H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?8
+004E43H   004E44H   000002H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?11
+004E45H   004E77H   000033H   ---    ---      **GAP**
+004E78H   004E78H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?21
+004E79H   004E7CH   000004H   ---    ---      **GAP**
+004E7DH   004E7DH   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?0
+004E7EH   004E7EH   000001H   ---    ---      **GAP**
+004E7FH   004E7FH   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?10
+004E80H   004E80H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?28
+004E81H   004E81H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?29
+004E82H   004E82H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?13
+004E83H   004E83H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?15
+004E84H   004E84H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?16
+004E85H   004EAAH   000026H   ---    ---      **GAP**
+004EABH   004F05H   00005BH   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?6
+
+
+
+PUBLIC SYMBOLS OF MODULE:  OUTPUT\FW (RAM)
+
+
+      VALUE       CLASS    TYPE      PUBLIC SYMBOL NAME
+      =================================================
+      02001BDAH   XDATA    BYTE      ?_compare_str?BYTE
+      02001BD2H   XDATA    BYTE      ?_dmemcpy?BYTE
+      00000020H.6 BIT      BIT       ?_GPIO_SetInput?BIT
+      00000020H.5 BIT      BIT       ?_GPIO_Setoe?BIT
+      00000020H.2 BIT      BIT       ?_GPIO_Setout?BIT
+      00000020H.7 BIT      BIT       ?_GPIO_SetOutput?BIT
+      00000020H.4 BIT      BIT       ?_GPIO_SetPd?BIT
+      00000020H.3 BIT      BIT       ?_GPIO_SetPu?BIT
+      00000021H.0 BIT      BIT       ?_GPIO_SetWakeup?BIT
+      02001BE1H   XDATA    BYTE      ?_xmemcpy?BYTE
+      010001B3H   CODE     ---       ?C?CCASE
+      01000112H   CODE     ---       ?C?CLDOPTR
+      010000F9H   CODE     ---       ?C?CLDPTR
+      00000000H   NUMBER   ---       ?C?CODESEG
+      010000D3H   CODE     ---       ?C?COPY
+      0100013FH   CODE     ---       ?C?CSTPTR
+      010001D9H   CODE     ---       ?C?ICALL
+      010001DDH   CODE     ---       ?C?ICALL2
+      01000187H   CODE     ---       ?C?IILDX
+      0100019DH   CODE     ---       ?C?ILDIX
+      01000151H   CODE     ---       ?C?SIDIV
+      010001DFH   CODE     ---       ?C?UIDIV
+      00000000H   NUMBER   ---       ?C?XDATASEG
+      0100027BH   CODE     ---       ?C_START
+      01000000H   CODE     ---       ?C_STARTUP
+      010013BFH   CODE     ---       _abs
+      01001710H   CODE     ---       _compare_str
+      01000353H   CODE     ---       _Delay1ms
+      0100169FH   CODE     ---       _dmemcpy
+      0100175AH   CODE     ---       _GPIO_ClearWakeup
+      01000B15H   CODE     ---       _GPIO_FlipOutBit
+      0100081DH   CODE     ---       _GPIO_GetInputStatus
+      010009A7H   CODE     ---       _GPIO_SetInput
+      010009BCH   CODE     ---       _GPIO_Setoe
+      01000A5BH   CODE     ---       _GPIO_Setout
+      010008C6H   CODE     ---       _GPIO_SetOutput
+      01000A67H   CODE     ---       _GPIO_SetPd
+      010008D8H   CODE     ---       _GPIO_SetPu
+      01000FE5H   CODE     ---       _GPIO_SetWakeup
+      01000FD2H   CODE     ---       _GPIO_SetWakeupByCurrentState
+      01000ED1H   CODE     ---       _IIC_Read
+      01001795H   CODE     ---       _IIC_write
+      01000CCBH   CODE     ---       _IIC_WriteBlock
+      010007F4H   CODE     ---       _IPC_Initialize
+      01001452H   CODE     ---       _IPC_Tx24GData
+      01001496H   CODE     ---       _IPC_TxBleData
+      01001A71H   CODE     ---       _IPC_TxBREDRHidData
+      0100074AH   CODE     ---       _IPC_TxControlCmd
+      0100106BH   CODE     ---       _IPC_TxHidData
+      01001AC2H   CODE     ---       _IPC_TxSppData
+      01000721H   CODE     ---       _SPI_ReadSensor
+      010004DAH   CODE     ---       _SPI_WriteSensor
+      0100164AH   CODE     ---       _xmemclear_0
+      010016E3H   CODE     ---       _xmemclear_ff
+      01000F7EH   CODE     ---       _xmemcpy
+      01000FC9H   CODE     ---       ADC_Get0vBase
+      01001B0FH   CODE     ---       ADC_Get3vBase
+      01001B06H   CODE     ---       ADC_GetCurrentValue
+      0200489CH   XDATA    BYTE      btstimer
+      02004898H   XDATA    WORD      bttimer
+      0200489DH   XDATA    BYTE      c51stimer
+      0200489AH   XDATA    WORD      c51timer
+      01001627H   CODE     ---       clearGlobalMem
+      02000B2AH   XDATA    BYTE      current_task
+      01000DC8H   CODE     ---       dpiWriteInSensor
+      010012BDH   CODE     ---       Drawing_optima
+      01001B18H   CODE     ---       Drawing_optima_init
+      02004EABH   XDATA    ---       g_variable
+      0100033BH   CODE     ---       IPC_AbandonLpm
+      01001861H   CODE     ---       IPC_DealSingleStep
+      01001ABCH   CODE     ---       IPC_GetBBDIsconnectReason
+      010013D2H   CODE     ---       IPC_IsTxBuffEmpty
+      01000347H   CODE     ---       IPC_WaitLpm
+      02004719H   XDATA    ---       ipcPin
+      02004718H   XDATA    BYTE      ipcPinlen
+      02001A00H   XDATA    ---       ipcReadBuff
+      02001A96H   XDATA    ---       ipcSendBuff
+      01000D7CH   CODE     ---       leAddrRandomCntInit
+      01000E90H   CODE     ---       leADVStart
+      01001676H   CODE     ---       leReconnStart
+      02000B2BH   XDATA    BYTE      lpm_flag
+      02004950H   XDATA    ---       m_24gAddr
+      02004906H   XDATA    ---       m_24gRxPayload
+      02004E84H   XDATA    BYTE      m_51ReadSensor
+      02004E41H   XDATA    WORD      m_adc0vBase
+      02004E43H   XDATA    WORD      m_adc3vValue
+      020042D1H   XDATA    WORD      m_adcCurrentValue
+      02004E81H   XDATA    BYTE      m_bleDataWheel
+      02004E82H   XDATA    BYTE      m_bleDataWheelLpmTimer
+      02004595H   XDATA    BYTE      m_bleSendDataFlag
+      020049C2H   XDATA    BYTE      m_btMotionEvent
+      02004E83H   XDATA    BYTE      m_BtReadIpcCount
+      020049C1H   XDATA    BYTE      m_btWakeupFromLongMult
+      02004E78H   XDATA    BYTE      m_enable24gShortLpm
+      02004E21H   XDATA    ---       m_hidBuff
+      02004E7FH   XDATA    BYTE      m_IpcIsReady
+      02004261H   XDATA    ---       m_linkKey
+      02004131H   XDATA    BYTE      m_lpmMode
+      02004954H   XDATA    BYTE      m_new24gAbortPac
+      0200494FH   XDATA    BYTE      m_new24gIntMax
+      0200494EH   XDATA    BYTE      m_new24gIntMin
+      020049B7H   XDATA    BYTE      m_new24gKWEvent
+      020049C0H   XDATA    BYTE      m_new24gOtaEnable
+      020042B8H   XDATA    BYTE      m_powerOnFlag
+      02004273H   XDATA    ---       m_reconnAddr
+      0200453EH   XDATA    ---       m_reconnLeAddr
+      02000040H   XDATA    ---       m_remoteAddr
+      02000372H   XDATA    ---       m_remoteLeAddr
+      02004E7DH   XDATA    BYTE      m_sendData24gShortLpm
+      02004E80H   XDATA    BYTE      m_shortDataWheel
+      0200470BH   XDATA    WORD      m_uiStateMap
+      010002DFH   CODE     ---       main
+      01000A4CH   CODE     ---       mouse_wheel_delay_lpm
+      01000C72H   CODE     ---       mouseDpiKeyCheck
+      01000B7BH   CODE     ---       mouseKeyDetect
+      0100140EH   CODE     ---       mousePackage
+      010009C8H   CODE     ---       mouseWheelScan
+      01000A8AH   CODE     ---       Sensor_spi_disable
+      01000801H   CODE     ---       sensorClearData
+      01000AF2H   CODE     ---       sensorPowerDown
+      01000A73H   CODE     ---       sensorPowerOn
+      010013EAH   CODE     ---       SPI_Initialize
+      01000505H   CODE     ---       SPI_ResetSensor
+      0200021DH   XDATA    ---       spi_rx_buff
+      01000A9EH   CODE     ---       SPI_TwReset
+      02000218H   XDATA    ---       spi_tx_buff
+      020000A4H   XDATA    ---       YC_GPIOWakeupH
+      020000A0H   XDATA    ---       YC_GPIOWakeupL
+      01001698H   CODE     ---       YC_Ice_break
+      010002DFH   CODE     ---       YC_SysMain
+
+
+
+SYMBOL TABLE OF MODULE:  OUTPUT\FW (RAM)
+
+      VALUE       REP       CLASS    TYPE      SYMBOL NAME
+      ====================================================
+      ---         MODULE    ---      ---       RAM
+      010002DFH   PUBLIC    CODE     ---       main
+
+      010002DFH   BLOCK     CODE     ---       LVL=0
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      ---         MODULE    ---      ---       SYS
+      010002DFH   PUBLIC    CODE     ---       YC_SysMain
+      01000D7CH   PUBLIC    CODE     ---       leAddrRandomCntInit
+      01000E90H   PUBLIC    CODE     ---       leADVStart
+      01001676H   PUBLIC    CODE     ---       leReconnStart
+      01001627H   PUBLIC    CODE     ---       clearGlobalMem
+      0100140EH   PUBLIC    CODE     ---       mousePackage
+      01000B7BH   PUBLIC    CODE     ---       mouseKeyDetect
+      0100106BH   PUBLIC    CODE     ---       _IPC_TxHidData
+      010009C8H   PUBLIC    CODE     ---       mouseWheelScan
+      01000A4CH   PUBLIC    CODE     ---       mouse_wheel_delay_lpm
+      01000C72H   PUBLIC    CODE     ---       mouseDpiKeyCheck
+      01000DC8H   PUBLIC    CODE     ---       dpiWriteInSensor
+      01000801H   PUBLIC    CODE     ---       sensorClearData
+
+      01000801H   BLOCK     CODE     ---       LVL=0
+      01000801H   LINE      ---      ---       #209
+      01000801H   LINE      ---      ---       #210
+      01000801H   LINE      ---      ---       #211
+      01000803H   LINE      ---      ---       #212
+      01000805H   LINE      ---      ---       #213
+      0100080BH   LINE      ---      ---       #214
+      01000810H   LINE      ---      ---       #215
+      01000815H   LINE      ---      ---       #216
+      0100081AH   LINE      ---      ---       #217
+      0100081CH   LINE      ---      ---       #218
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000DC8H   BLOCK     CODE     ---       LVL=0
+      01000DC8H   LINE      ---      ---       #220
+      01000DC8H   LINE      ---      ---       #221
+      01000DC8H   LINE      ---      ---       #222
+      01000DCAH   LINE      ---      ---       #224
+      01000DD7H   LINE      ---      ---       #225
+      01000DD7H   LINE      ---      ---       #226
+      01000DE2H   LINE      ---      ---       #227
+      01000DE2H   LINE      ---      ---       #230
+      01000DE9H   LINE      ---      ---       #231
+      01000DE9H   LINE      ---      ---       #232
+      01000DF0H   LINE      ---      ---       #233
+      01000DF9H   LINE      ---      ---       #235
+      01000E03H   LINE      ---      ---       #236
+      01000E03H   LINE      ---      ---       #239
+      01000E0AH   LINE      ---      ---       #240
+      01000E0AH   LINE      ---      ---       #241
+      01000E16H   LINE      ---      ---       #242
+      01000E16H   LINE      ---      ---       #246
+      01000E1DH   LINE      ---      ---       #247
+      01000E1DH   LINE      ---      ---       #248
+      01000E29H   LINE      ---      ---       #249
+      01000E29H   LINE      ---      ---       #253
+      01000E31H   LINE      ---      ---       #254
+      01000E31H   LINE      ---      ---       #255
+      01000E38H   LINE      ---      ---       #256
+      01000E49H   LINE      ---      ---       #257
+      01000E49H   LINE      ---      ---       #258
+      01000E49H   LINE      ---      ---       #259
+      01000E50H   LINE      ---      ---       #260
+      01000E57H   LINE      ---      ---       #261
+      01000E59H   LINE      ---      ---       #262
+      01000E59H   LINE      ---      ---       #263
+      01000E60H   LINE      ---      ---       #264
+      01000E67H   LINE      ---      ---       #265
+      01000E69H   LINE      ---      ---       #266
+      01000E69H   LINE      ---      ---       #267
+      01000E70H   LINE      ---      ---       #268
+      01000E77H   LINE      ---      ---       #269
+      01000E79H   LINE      ---      ---       #270
+      01000E79H   LINE      ---      ---       #271
+      01000E80H   LINE      ---      ---       #272
+      01000E87H   LINE      ---      ---       #273
+      01000E87H   LINE      ---      ---       #274
+      01000E87H   LINE      ---      ---       #275
+      01000E87H   LINE      ---      ---       #276
+      01000E87H   LINE      ---      ---       #277
+      01000E8EH   LINE      ---      ---       #278
+      01000E8EH   LINE      ---      ---       #281
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000B30H   BLOCK     CODE     ---       LVL=0
+      01000B30H   LINE      ---      ---       #284
+      01000B30H   LINE      ---      ---       #285
+      01000B30H   LINE      ---      ---       #286
+      01000B36H   LINE      ---      ---       #287
+      01000B3EH   LINE      ---      ---       #288
+      01000B55H   LINE      ---      ---       #289
+      01000B58H   LINE      ---      ---       #290
+      01000B58H   LINE      ---      ---       #291
+      01000B5EH   LINE      ---      ---       #292
+      01000B5EH   LINE      ---      ---       #294
+      01000B5EH   LINE      ---      ---       #295
+      01000B68H   LINE      ---      ---       #296
+      01000B68H   LINE      ---      ---       #297
+      01000B6CH   LINE      ---      ---       #298
+      01000B6EH   LINE      ---      ---       #299
+      01000B6EH   LINE      ---      ---       #300
+      01000B71H   LINE      ---      ---       #301
+      01000B71H   LINE      ---      ---       #302
+      01000B75H   LINE      ---      ---       #303
+      01000B75H   LINE      ---      ---       #304
+      01000B75H   LINE      ---      ---       #305
+      01000B75H   LINE      ---      ---       #306
+      01000B7AH   LINE      ---      ---       #307
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000BDCH   BLOCK     CODE     ---       LVL=0
+      01000BDCH   LINE      ---      ---       #309
+      01000BDCH   LINE      ---      ---       #310
+      01000BDCH   LINE      ---      ---       #311
+      01000BE2H   LINE      ---      ---       #312
+      01000BEAH   LINE      ---      ---       #313
+      01000C01H   LINE      ---      ---       #314
+      01000C04H   LINE      ---      ---       #315
+      01000C04H   LINE      ---      ---       #316
+      01000C0AH   LINE      ---      ---       #317
+      01000C0AH   LINE      ---      ---       #319
+      01000C0AH   LINE      ---      ---       #320
+      01000C14H   LINE      ---      ---       #321
+      01000C14H   LINE      ---      ---       #322
+      01000C18H   LINE      ---      ---       #323
+      01000C1AH   LINE      ---      ---       #324
+      01000C1AH   LINE      ---      ---       #325
+      01000C1DH   LINE      ---      ---       #326
+      01000C1DH   LINE      ---      ---       #327
+      01000C21H   LINE      ---      ---       #328
+      01000C21H   LINE      ---      ---       #329
+      01000C21H   LINE      ---      ---       #330
+      01000C21H   LINE      ---      ---       #331
+      01000C26H   LINE      ---      ---       #332
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000C27H   BLOCK     CODE     ---       LVL=0
+      01000C27H   LINE      ---      ---       #335
+      01000C27H   LINE      ---      ---       #336
+      01000C27H   LINE      ---      ---       #337
+      01000C2DH   LINE      ---      ---       #338
+      01000C35H   LINE      ---      ---       #339
+      01000C4CH   LINE      ---      ---       #340
+      01000C4FH   LINE      ---      ---       #341
+      01000C4FH   LINE      ---      ---       #342
+      01000C55H   LINE      ---      ---       #343
+      01000C55H   LINE      ---      ---       #345
+      01000C55H   LINE      ---      ---       #346
+      01000C5FH   LINE      ---      ---       #347
+      01000C5FH   LINE      ---      ---       #348
+      01000C63H   LINE      ---      ---       #349
+      01000C65H   LINE      ---      ---       #350
+      01000C65H   LINE      ---      ---       #351
+      01000C68H   LINE      ---      ---       #352
+      01000C68H   LINE      ---      ---       #353
+      01000C6CH   LINE      ---      ---       #354
+      01000C6CH   LINE      ---      ---       #355
+      01000C6CH   LINE      ---      ---       #356
+      01000C6CH   LINE      ---      ---       #357
+      01000C71H   LINE      ---      ---       #358
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000862H   BLOCK     CODE     ---       LVL=0
+      01000862H   LINE      ---      ---       #360
+      01000862H   LINE      ---      ---       #361
+      01000862H   LINE      ---      ---       #362
+      0100086BH   LINE      ---      ---       #363
+      01000871H   LINE      ---      ---       #364
+      01000879H   LINE      ---      ---       #365
+      01000890H   LINE      ---      ---       #366
+      01000896H   LINE      ---      ---       #367
+      0100089CH   LINE      ---      ---       #368
+      010008A3H   LINE      ---      ---       #369
+      010008A3H   LINE      ---      ---       #370
+      010008A9H   LINE      ---      ---       #371
+      010008A9H   LINE      ---      ---       #373
+      010008A9H   LINE      ---      ---       #374
+      010008B3H   LINE      ---      ---       #375
+      010008B3H   LINE      ---      ---       #376
+      010008B7H   LINE      ---      ---       #377
+      010008B9H   LINE      ---      ---       #378
+      010008B9H   LINE      ---      ---       #379
+      010008BCH   LINE      ---      ---       #380
+      010008BCH   LINE      ---      ---       #381
+      010008C0H   LINE      ---      ---       #382
+      010008C0H   LINE      ---      ---       #383
+      010008C0H   LINE      ---      ---       #384
+      010008C0H   LINE      ---      ---       #385
+      010008C5H   LINE      ---      ---       #386
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000943H   BLOCK     CODE     ---       LVL=0
+      01000943H   LINE      ---      ---       #388
+      01000943H   LINE      ---      ---       #389
+      01000943H   LINE      ---      ---       #390
+      0100094CH   LINE      ---      ---       #391
+      01000952H   LINE      ---      ---       #392
+      0100095AH   LINE      ---      ---       #393
+      01000971H   LINE      ---      ---       #394
+      01000977H   LINE      ---      ---       #395
+      0100097DH   LINE      ---      ---       #396
+      01000984H   LINE      ---      ---       #397
+      01000984H   LINE      ---      ---       #398
+      0100098AH   LINE      ---      ---       #399
+      0100098AH   LINE      ---      ---       #401
+      0100098AH   LINE      ---      ---       #402
+      01000994H   LINE      ---      ---       #403
+      01000994H   LINE      ---      ---       #404
+      01000998H   LINE      ---      ---       #405
+      0100099AH   LINE      ---      ---       #406
+      0100099AH   LINE      ---      ---       #407
+      0100099DH   LINE      ---      ---       #408
+      0100099DH   LINE      ---      ---       #409
+      010009A1H   LINE      ---      ---       #410
+      010009A1H   LINE      ---      ---       #411
+      010009A1H   LINE      ---      ---       #412
+      010009A1H   LINE      ---      ---       #413
+      010009A6H   LINE      ---      ---       #414
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000C72H   BLOCK     CODE     ---       LVL=0
+      01000C72H   LINE      ---      ---       #416
+      01000C72H   LINE      ---      ---       #417
+      01000C72H   LINE      ---      ---       #418
+      01000C7AH   LINE      ---      ---       #419
+      01000C91H   LINE      ---      ---       #420
+      01000C9AH   LINE      ---      ---       #421
+      01000CA2H   LINE      ---      ---       #422
+      01000CA2H   LINE      ---      ---       #423
+      01000CA8H   LINE      ---      ---       #424
+      01000CACH   LINE      ---      ---       #425
+      01000CB0H   LINE      ---      ---       #426
+      01000CB8H   LINE      ---      ---       #427
+      01000CBAH   LINE      ---      ---       #428
+      01000CCAH   LINE      ---      ---       #429
+      01000CCAH   LINE      ---      ---       #430
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000A4CH   BLOCK     CODE     ---       LVL=0
+      01000A4CH   LINE      ---      ---       #433
+      01000A4CH   LINE      ---      ---       #434
+      01000A4CH   LINE      ---      ---       #435
+      01000A54H   LINE      ---      ---       #436
+      01000A54H   LINE      ---      ---       #437
+      01000A5AH   LINE      ---      ---       #438
+      01000A5AH   LINE      ---      ---       #439
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010009C8H   BLOCK     CODE     ---       LVL=0
+      010009C8H   LINE      ---      ---       #441
+      010009C8H   LINE      ---      ---       #442
+      010009C8H   BLOCK     CODE     NEAR LAB  LVL=1
+      010009C8H   LINE      ---      ---       #443
+      010009CFH   LINE      ---      ---       #444
+      010009D9H   LINE      ---      ---       #445
+      010009E9H   LINE      ---      ---       #448
+      010009F0H   LINE      ---      ---       #451
+      010009F6H   LINE      ---      ---       #452
+      010009FCH   LINE      ---      ---       #453
+      01000A02H   LINE      ---      ---       #455
+      01000A27H   LINE      ---      ---       #457
+      01000A3BH   LINE      ---      ---       #458
+      01000A3BH   LINE      ---      ---       #459
+      01000A3BH   LINE      ---      ---       #460
+      01000A3BH   LINE      ---      ---       #461
+      01000A41H   LINE      ---      ---       #462
+      01000A43H   LINE      ---      ---       #463
+      01000A43H   LINE      ---      ---       #464
+      01000A43H   LINE      ---      ---       #465
+      01000A43H   LINE      ---      ---       #466
+      01000A49H   LINE      ---      ---       #467
+      01000A4BH   LINE      ---      ---       #468
+      01000A4BH   LINE      ---      ---       #469
+      01000A4BH   LINE      ---      ---       #470
+      01000A4BH   LINE      ---      ---       #471
+      01000A4BH   LINE      ---      ---       #472
+      02001C07H   SYMBOL    XDATA    VOID      result
+      02001C09H   SYMBOL    XDATA    VOID      tempStateA
+      00000007H   SYMBOL    DATA     VOID      tempState
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      0100106BH   BLOCK     CODE     ---       LVL=0
+      0100106BH   LINE      ---      ---       #474
+      01001079H   LINE      ---      ---       #475
+      01001079H   LINE      ---      ---       #476
+      0100108CH   LINE      ---      ---       #480
+      01001090H   LINE      ---      ---       #481
+      01001090H   LINE      ---      ---       #482
+      010010A0H   LINE      ---      ---       #483
+      010010A0H   LINE      ---      ---       #490
+      010010A7H   LINE      ---      ---       #491
+      010010A7H   LINE      ---      ---       #492
+      010010B7H   LINE      ---      ---       #493
+      010010B7H   LINE      ---      ---       #495
+      010010B7H   LINE      ---      ---       #496
+      010010B9H   LINE      ---      ---       #497
+      010010B9H   LINE      ---      ---       #498
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000B7BH   BLOCK     CODE     ---       LVL=0
+      01000B7BH   LINE      ---      ---       #500
+      01000B7BH   LINE      ---      ---       #501
+      01000B7BH   BLOCK     CODE     NEAR LAB  LVL=1
+      01000B7BH   LINE      ---      ---       #502
+      01000B88H   LINE      ---      ---       #503
+      01000B8FH   LINE      ---      ---       #504
+      01000B96H   LINE      ---      ---       #505
+      01000B9DH   LINE      ---      ---       #506
+      01000BA4H   LINE      ---      ---       #507
+      01000BABH   LINE      ---      ---       #509
+      01000BADH   LINE      ---      ---       #510
+      01000BDBH   LINE      ---      ---       #511
+      02001BEDH   SYMBOL    XDATA    VOID      buttonLeft
+      02001BEEH   SYMBOL    XDATA    VOID      buttonRight
+      02001BEFH   SYMBOL    XDATA    VOID      buttonMiddle
+      02001BF0H   SYMBOL    XDATA    VOID      buttonBack
+      02001BF1H   SYMBOL    XDATA    VOID      buttonForward
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010011C5H   BLOCK     CODE     ---       LVL=0
+      010011C5H   LINE      ---      ---       #514
+      010011C5H   LINE      ---      ---       #515
+      010011C5H   BLOCK     CODE     NEAR LAB  LVL=1
+      010011C5H   LINE      ---      ---       #516
+      010011CDH   LINE      ---      ---       #518
+      010011D3H   LINE      ---      ---       #519
+      010011D9H   LINE      ---      ---       #520
+      010011E9H   LINE      ---      ---       #521
+      010011E9H   LINE      ---      ---       #522
+      010011EFH   LINE      ---      ---       #523
+      010011F0H   LINE      ---      ---       #524
+      010011F0H   LINE      ---      ---       #525
+      010011F0H   LINE      ---      ---       #526
+      010011F2H   LINE      ---      ---       #527
+      010011FEH   LINE      ---      ---       #528
+      010011FEH   LINE      ---      ---       #529
+      01001203H   LINE      ---      ---       #530
+      01001204H   LINE      ---      ---       #531
+      01001206H   LINE      ---      ---       #532
+      01001207H   LINE      ---      ---       #533
+      01001209H   LINE      ---      ---       #534
+      01001215H   LINE      ---      ---       #535
+      01001215H   LINE      ---      ---       #536
+      0100121BH   LINE      ---      ---       #537
+      0100121DH   LINE      ---      ---       #538
+      0100121FH   LINE      ---      ---       #539
+      01001220H   LINE      ---      ---       #540
+      01001222H   LINE      ---      ---       #541
+      0100122EH   LINE      ---      ---       #542
+      0100122EH   LINE      ---      ---       #543
+      01001233H   LINE      ---      ---       #544
+      01001234H   LINE      ---      ---       #545
+      01001236H   LINE      ---      ---       #546
+      01001238H   LINE      ---      ---       #547
+      0100123CH   LINE      ---      ---       #548
+      01001241H   LINE      ---      ---       #549
+      01001241H   LINE      ---      ---       #551
+      01001241H   LINE      ---      ---       #553
+      01001241H   LINE      ---      ---       #554
+      01001247H   LINE      ---      ---       #555
+      0100125EH   LINE      ---      ---       #556
+      0100126DH   LINE      ---      ---       #557
+      0100126FH   LINE      ---      ---       #558
+      0100126FH   LINE      ---      ---       #559
+      01001281H   LINE      ---      ---       #560
+      0100128AH   LINE      ---      ---       #561
+      0100128AH   LINE      ---      ---       #562
+      0100129FH   LINE      ---      ---       #563
+      010012B2H   LINE      ---      ---       #565
+      010012B9H   LINE      ---      ---       #566
+      010012BBH   LINE      ---      ---       #567
+      010012BCH   LINE      ---      ---       #568
+      02001C18H   SYMBOL    XDATA    VOID      deltaXL
+      00000001H   SYMBOL    DATA     VOID      deltaYL
+      00000007H   SYMBOL    DATA     VOID      deltaXH
+      00000005H   SYMBOL    DATA     VOID      deltaYH
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      0100140EH   BLOCK     CODE     ---       LVL=0
+      0100140EH   LINE      ---      ---       #571
+      0100140EH   LINE      ---      ---       #572
+      0100140EH   LINE      ---      ---       #573
+      01001416H   LINE      ---      ---       #574
+      01001421H   LINE      ---      ---       #575
+      01001429H   LINE      ---      ---       #576
+      01001434H   LINE      ---      ---       #577
+      0100143CH   LINE      ---      ---       #578
+      01001444H   LINE      ---      ---       #579
+      01001447H   LINE      ---      ---       #580
+      0100144BH   LINE      ---      ---       #581
+      01001451H   LINE      ---      ---       #582
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010010BAH   BLOCK     CODE     ---       LVL=0
+      010010BAH   LINE      ---      ---       #584
+      010010BAH   LINE      ---      ---       #585
+      010010BAH   BLOCK     CODE     NEAR LAB  LVL=1
+      010010BAH   LINE      ---      ---       #586
+      010010C5H   LINE      ---      ---       #587
+      010010C7H   LINE      ---      ---       #595
+      010010D7H   LINE      ---      ---       #596
+      010010D7H   LINE      ---      ---       #599
+      010010D7H   LINE      ---      ---       #600
+      010010E7H   LINE      ---      ---       #602
+      010010E7H   LINE      ---      ---       #604
+      010010EDH   LINE      ---      ---       #606
+      010010EDH   LINE      ---      ---       #627
+      01001112H   LINE      ---      ---       #630
+      01001112H   LINE      ---      ---       #631
+      01001114H   LINE      ---      ---       #632
+      0100111AH   LINE      ---      ---       #633
+      0100111AH   LINE      ---      ---       #634
+      01001122H   LINE      ---      ---       #636
+      0100112DH   LINE      ---      ---       #646
+      01001134H   LINE      ---      ---       #647
+      0100113AH   LINE      ---      ---       #648
+      0100113AH   LINE      ---      ---       #650
+      01001148H   LINE      ---      ---       #651
+      01001148H   LINE      ---      ---       #652
+      0100114AH   LINE      ---      ---       #653
+      01001150H   LINE      ---      ---       #654
+      0100115CH   LINE      ---      ---       #655
+      0100115CH   LINE      ---      ---       #656
+      0100115FH   LINE      ---      ---       #657
+      0100115FH   LINE      ---      ---       #658
+      0100115FH   LINE      ---      ---       #660
+      01001165H   LINE      ---      ---       #661
+      01001165H   LINE      ---      ---       #662
+      01001167H   LINE      ---      ---       #663
+      0100116DH   LINE      ---      ---       #664
+      01001171H   LINE      ---      ---       #665
+      01001178H   LINE      ---      ---       #666
+      01001178H   LINE      ---      ---       #667
+      0100117EH   LINE      ---      ---       #668
+      01001184H   LINE      ---      ---       #669
+      01001184H   LINE      ---      ---       #670
+      01001184H   LINE      ---      ---       #672
+      0100118DH   LINE      ---      ---       #673
+      0100118DH   LINE      ---      ---       #674
+      01001192H   LINE      ---      ---       #675
+      01001194H   LINE      ---      ---       #676
+      01001194H   LINE      ---      ---       #678
+      010011A0H   LINE      ---      ---       #681
+      010011A6H   LINE      ---      ---       #682
+      010011B8H   LINE      ---      ---       #685
+      010011B8H   LINE      ---      ---       #686
+      010011BAH   LINE      ---      ---       #687
+      010011C4H   LINE      ---      ---       #688
+      010011C4H   LINE      ---      ---       #689
+      02001BFBH   SYMBOL    XDATA    VOID      deltaXL
+      02001BFCH   SYMBOL    XDATA    VOID      deltaYL
+      02001BFDH   SYMBOL    XDATA    VOID      deltaXH
+      02001BFEH   SYMBOL    XDATA    VOID      deltaYH
+      00000020H.0 SYMBOL    BIT      VOID      sendFlag
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010015DBH   BLOCK     CODE     ---       LVL=0
+      010015DBH   LINE      ---      ---       #692
+      010015DBH   LINE      ---      ---       #693
+      010015DBH   LINE      ---      ---       #694
+      010015ECH   LINE      ---      ---       #695
+      01001602H   LINE      ---      ---       #696
+      01001602H   LINE      ---      ---       #697
+      01001608H   LINE      ---      ---       #698
+      0100160AH   LINE      ---      ---       #699
+      0100160CH   LINE      ---      ---       #700
+      0100160EH   LINE      ---      ---       #701
+      01001613H   LINE      ---      ---       #702
+      01001619H   LINE      ---      ---       #703
+      0100161BH   LINE      ---      ---       #705
+      01001620H   LINE      ---      ---       #706
+      01001626H   LINE      ---      ---       #707
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010007E4H   BLOCK     CODE     ---       LVL=0
+      010007E4H   LINE      ---      ---       #709
+      010007E4H   LINE      ---      ---       #710
+      010007E4H   LINE      ---      ---       #711
+      010007E8H   LINE      ---      ---       #712
+      010007EDH   LINE      ---      ---       #713
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001627H   BLOCK     CODE     ---       LVL=0
+      01001627H   LINE      ---      ---       #786
+      01001627H   LINE      ---      ---       #787
+      01001627H   LINE      ---      ---       #788
+      01001633H   LINE      ---      ---       #789
+      0100163FH   LINE      ---      ---       #790
+      01001645H   LINE      ---      ---       #791
+      01001649H   LINE      ---      ---       #792
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001593H   BLOCK     CODE     ---       LVL=0
+      01001593H   LINE      ---      ---       #794
+      01001593H   LINE      ---      ---       #795
+      01001593H   LINE      ---      ---       #796
+      0100159AH   LINE      ---      ---       #797
+      0100159EH   LINE      ---      ---       #798
+      010015A3H   LINE      ---      ---       #799
+      010015A8H   LINE      ---      ---       #800
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001676H   BLOCK     CODE     ---       LVL=0
+      01001676H   LINE      ---      ---       #837
+      01001676H   LINE      ---      ---       #838
+      01001676H   LINE      ---      ---       #839
+      0100167DH   LINE      ---      ---       #840
+      0100168DH   LINE      ---      ---       #841
+      01001693H   LINE      ---      ---       #842
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000E90H   BLOCK     CODE     ---       LVL=0
+      01000E90H   LINE      ---      ---       #845
+      01000E90H   LINE      ---      ---       #846
+      01000E90H   LINE      ---      ---       #847
+      01000EA0H   LINE      ---      ---       #848
+      01000EAEH   LINE      ---      ---       #849
+      01000EBEH   LINE      ---      ---       #850
+      01000EC9H   LINE      ---      ---       #851
+      01000ECCH   LINE      ---      ---       #852
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000D7CH   BLOCK     CODE     ---       LVL=0
+      01000D7CH   LINE      ---      ---       #855
+      01000D7CH   LINE      ---      ---       #856
+      01000D7CH   BLOCK     CODE     NEAR LAB  LVL=1
+      01000D7CH   LINE      ---      ---       #857
+      01000D81H   LINE      ---      ---       #858
+      01000D90H   LINE      ---      ---       #859
+      01000D97H   LINE      ---      ---       #860
+      01000D97H   LINE      ---      ---       #861
+      01000DA1H   LINE      ---      ---       #862
+      01000DB1H   LINE      ---      ---       #863
+      01000DB7H   LINE      ---      ---       #864
+      01000DC7H   LINE      ---      ---       #865
+      01000DC7H   LINE      ---      ---       #866
+      02001C19H   SYMBOL    XDATA    VOID      leAddrE2WP
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01000372H   BLOCK     CODE     ---       LVL=0
+      01000372H   LINE      ---      ---       #868
+      01000377H   LINE      ---      ---       #869
+      01000377H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000377H   LINE      ---      ---       #871
+      01000380H   LINE      ---      ---       #872
+      01000382H   LINE      ---      ---       #873
+      01000393H   LINE      ---      ---       #875
+      010003B8H   LINE      ---      ---       #876
+      010003B8H   LINE      ---      ---       #877
+      010003B8H   LINE      ---      ---       #878
+      010003BBH   LINE      ---      ---       #879
+      010003BBH   LINE      ---      ---       #880
+      010003BEH   LINE      ---      ---       #915
+      010003C1H   LINE      ---      ---       #931
+      010003C5H   LINE      ---      ---       #935
+      010003C5H   LINE      ---      ---       #936
+      010003C5H   LINE      ---      ---       #937
+      010003CCH   LINE      ---      ---       #938
+      010003CCH   LINE      ---      ---       #939
+      010003D7H   LINE      ---      ---       #940
+      010003D7H   LINE      ---      ---       #941
+      010003DBH   LINE      ---      ---       #942
+      010003E1H   LINE      ---      ---       #943
+      010003E1H   LINE      ---      ---       #947
+      010003E4H   LINE      ---      ---       #948
+      010003E4H   LINE      ---      ---       #1010
+      010003E4H   LINE      ---      ---       #1011
+      010003EAH   LINE      ---      ---       #1012
+      010003F9H   LINE      ---      ---       #1014
+      010003FDH   LINE      ---      ---       #1015
+      010003FDH   LINE      ---      ---       #1016
+      010003FDH   LINE      ---      ---       #1017
+      010003FFH   LINE      ---      ---       #1018
+      01000404H   LINE      ---      ---       #1019
+      0100040AH   LINE      ---      ---       #1020
+      0100040AH   LINE      ---      ---       #1021
+      0100040CH   LINE      ---      ---       #1022
+      01000410H   LINE      ---      ---       #1023
+      01000413H   LINE      ---      ---       #1024
+      01000417H   LINE      ---      ---       #1026
+      0100041BH   LINE      ---      ---       #1027
+      0100041BH   LINE      ---      ---       #1028
+      0100041BH   LINE      ---      ---       #1030
+      01000421H   LINE      ---      ---       #1068
+      01000422H   LINE      ---      ---       #1069
+      01000422H   LINE      ---      ---       #1071
+      01000428H   LINE      ---      ---       #1072
+      0100042DH   LINE      ---      ---       #1073
+      0100042FH   LINE      ---      ---       #1076
+      01000433H   LINE      ---      ---       #1077
+      01000434H   LINE      ---      ---       #1079
+      01000434H   LINE      ---      ---       #1080
+      01000437H   LINE      ---      ---       #1081
+      0100043AH   LINE      ---      ---       #1082
+      01000440H   LINE      ---      ---       #1083
+      01000451H   LINE      ---      ---       #1084
+      01000454H   LINE      ---      ---       #1085
+      01000454H   LINE      ---      ---       #1086
+      01000454H   LINE      ---      ---       #1087
+      01000459H   LINE      ---      ---       #1088
+      0100045DH   LINE      ---      ---       #1089
+      01000461H   LINE      ---      ---       #1090
+      01000467H   LINE      ---      ---       #1091
+      0100046DH   LINE      ---      ---       #1092
+      01000470H   LINE      ---      ---       #1093
+      01000481H   LINE      ---      ---       #1094
+      01000487H   LINE      ---      ---       #1095
+      01000498H   LINE      ---      ---       #1096
+      0100049EH   LINE      ---      ---       #1097
+      010004AFH   LINE      ---      ---       #1098
+      010004B5H   LINE      ---      ---       #1099
+      010004BAH   LINE      ---      ---       #1100
+      010004BBH   LINE      ---      ---       #1101
+      010004BBH   LINE      ---      ---       #1102
+      010004C2H   LINE      ---      ---       #1103
+      010004C2H   LINE      ---      ---       #1107
+      010004C5H   LINE      ---      ---       #1108
+      010004CBH   LINE      ---      ---       #1109
+      010004CCH   LINE      ---      ---       #1110
+      010004D3H   LINE      ---      ---       #1111
+      010004D3H   LINE      ---      ---       #1112
+      010004D6H   LINE      ---      ---       #1113
+      010004D6H   LINE      ---      ---       #1115
+      010004D6H   LINE      ---      ---       #1116
+      010004D9H   LINE      ---      ---       #1117
+      010004D9H   LINE      ---      ---       #1118
+      010004D9H   LINE      ---      ---       #1119
+      010004D9H   LINE      ---      ---       #1121
+      02001BBEH   SYMBOL    XDATA    VOID      curentMode
+      02001BBFH   SYMBOL    XDATA    VOID      buttonLeft
+      02001BC0H   SYMBOL    XDATA    VOID      buttonRight
+      02001BC1H   SYMBOL    XDATA    VOID      buttonMiddle
+      02001BC2H   SYMBOL    XDATA    VOID      combkey
+      02001BC3H   SYMBOL    XDATA    VOID      reconnLeAddr_buff
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010014DAH   BLOCK     CODE     ---       LVL=0
+      010014DAH   LINE      ---      ---       #1199
+      010014DAH   LINE      ---      ---       #1200
+      010014DAH   BLOCK     CODE     NEAR LAB  LVL=1
+      010014DAH   LINE      ---      ---       #1201
+      010014DFH   LINE      ---      ---       #1202
+      010014EDH   LINE      ---      ---       #1203
+      01001504H   LINE      ---      ---       #1204
+      01001504H   LINE      ---      ---       #1205
+      01001504H   LINE      ---      ---       #1206
+      0100150AH   LINE      ---      ---       #1207
+      01001516H   LINE      ---      ---       #1208
+      01001516H   LINE      ---      ---       #1209
+      01001518H   LINE      ---      ---       #1210
+      01001518H   LINE      ---      ---       #1211
+      01001519H   LINE      ---      ---       #1212
+      01001519H   LINE      ---      ---       #1213
+      0100151FH   LINE      ---      ---       #1214
+      0100152DH   LINE      ---      ---       #1215
+      0100152DH   LINE      ---      ---       #1216
+      01001532H   LINE      ---      ---       #1217
+      01001534H   LINE      ---      ---       #1218
+      01001534H   LINE      ---      ---       #1219
+      01001534H   LINE      ---      ---       #1220
+      01001534H   LINE      ---      ---       #1221
+      0100153AH   LINE      ---      ---       #1222
+      01001548H   LINE      ---      ---       #1223
+      01001548H   LINE      ---      ---       #1224
+      0100154DH   LINE      ---      ---       #1225
+      01001553H   LINE      ---      ---       #1226
+      01001553H   LINE      ---      ---       #1227
+      01001554H   LINE      ---      ---       #1238
+      01001554H   LINE      ---      ---       #1239
+      0100155AH   LINE      ---      ---       #1240
+      01001570H   LINE      ---      ---       #1241
+      01001570H   LINE      ---      ---       #1242
+      01001572H   LINE      ---      ---       #1243
+      01001572H   LINE      ---      ---       #1244
+      01001573H   LINE      ---      ---       #1245
+      01001573H   LINE      ---      ---       #1246
+      01001579H   LINE      ---      ---       #1247
+      0100157DH   LINE      ---      ---       #1249
+      0100158CH   LINE      ---      ---       #1250
+      0100158CH   LINE      ---      ---       #1251
+      0100158EH   LINE      ---      ---       #1252
+      0100158EH   LINE      ---      ---       #1253
+      0100158FH   LINE      ---      ---       #1254
+      01001590H   LINE      ---      ---       #1257
+      01001590H   LINE      ---      ---       #1259
+      01001592H   LINE      ---      ---       #1260
+      01001590H   SYMBOL    ---      ---       LONG_SLEEPr500ms
+      02001C1AH   SYMBOL    XDATA    VOID      sleepState
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010015ADH   BLOCK     CODE     ---       LVL=0
+      010015ADH   LINE      ---      ---       #1303
+      010015ADH   LINE      ---      ---       #1304
+      010015ADH   LINE      ---      ---       #1305
+      010015B3H   LINE      ---      ---       #1306
+      010015B5H   LINE      ---      ---       #1307
+      010015BBH   LINE      ---      ---       #1308
+      010015C1H   LINE      ---      ---       #1309
+      010015C3H   LINE      ---      ---       #1314
+      010015CAH   LINE      ---      ---       #1315
+      010015CEH   LINE      ---      ---       #1316
+      010015D2H   LINE      ---      ---       #1317
+      010015D4H   LINE      ---      ---       #1318
+      010015D4H   LINE      ---      ---       #1319
+      010015DAH   LINE      ---      ---       #1320
+      010015DAH   LINE      ---      ---       #1321
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010007EEH   BLOCK     CODE     ---       LVL=0
+      010007EEH   LINE      ---      ---       #1332
+      010007EEH   LINE      ---      ---       #1333
+      010007EEH   LINE      ---      ---       #1334
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010002DFH   BLOCK     CODE     ---       LVL=0
+      010002DFH   LINE      ---      ---       #1451
+      010002DFH   LINE      ---      ---       #1452
+      010002DFH   BLOCK     CODE     NEAR LAB  LVL=1
+      010002DFH   LINE      ---      ---       #1454
+      010002E1H   LINE      ---      ---       #1458
+      010002E1H   LINE      ---      ---       #1459
+      010002E1H   LINE      ---      ---       #1460
+      010002E4H   LINE      ---      ---       #1463
+      010002E7H   LINE      ---      ---       #1467
+      010002F2H   LINE      ---      ---       #1468
+      010002F2H   LINE      ---      ---       #1469
+      010002F2H   LINE      ---      ---       #1470
+      010002F7H   LINE      ---      ---       #1472
+      010002F8H   LINE      ---      ---       #1473
+      01000305H   LINE      ---      ---       #1474
+      0100030AH   LINE      ---      ---       #1483
+      0100030CH   LINE      ---      ---       #1484
+      0100030EH   LINE      ---      ---       #1485
+      0100030EH   LINE      ---      ---       #1486
+      0100030EH   LINE      ---      ---       #1487
+      0100031AH   LINE      ---      ---       #1488
+      0100031AH   LINE      ---      ---       #1489
+      0100031CH   LINE      ---      ---       #1490
+      0100031EH   LINE      ---      ---       #1491
+      0100031EH   LINE      ---      ---       #1492
+      01000330H   LINE      ---      ---       #1495
+      01000330H   LINE      ---      ---       #1498
+      01000332H   LINE      ---      ---       #1499
+      01000334H   LINE      ---      ---       #1500
+      01000334H   LINE      ---      ---       #1502
+      01000334H   LINE      ---      ---       #1503
+      01000336H   LINE      ---      ---       #1504
+      01000338H   LINE      ---      ---       #1505
+      01000338H   LINE      ---      ---       #1506
+      01000338H   LINE      ---      ---       #1507
+      00000007H   SYMBOL    DATA     VOID      i
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      ---         MODULE    ---      ---       UTILITIES
+      02001BDAH   PUBLIC    XDATA    BYTE      ?_compare_str?BYTE
+      01001710H   PUBLIC    CODE     ---       _compare_str
+      01000353H   PUBLIC    CODE     ---       _Delay1ms
+      010016E3H   PUBLIC    CODE     ---       _xmemclear_ff
+      0100164AH   PUBLIC    CODE     ---       _xmemclear_0
+      02001BD2H   PUBLIC    XDATA    BYTE      ?_dmemcpy?BYTE
+      0100169FH   PUBLIC    CODE     ---       _dmemcpy
+      02001BE1H   PUBLIC    XDATA    BYTE      ?_xmemcpy?BYTE
+      01000F7EH   PUBLIC    CODE     ---       _xmemcpy
+      01001698H   PUBLIC    CODE     ---       YC_Ice_break
+
+      01001698H   BLOCK     CODE     ---       LVL=0
+      01001698H   LINE      ---      ---       #4
+      01001698H   LINE      ---      ---       #5
+      01001698H   LINE      ---      ---       #6
+      0100169EH   LINE      ---      ---       #8
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000F7EH   BLOCK     CODE     ---       LVL=0
+      01000F7EH   LINE      ---      ---       #10
+      01000F8FH   LINE      ---      ---       #11
+      01000F8FH   LINE      ---      ---       #12
+      01000F99H   LINE      ---      ---       #13
+      01000FC0H   LINE      ---      ---       #15
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100169FH   BLOCK     CODE     ---       LVL=0
+      0100169FH   LINE      ---      ---       #17
+      010016AAH   LINE      ---      ---       #18
+      010016AAH   LINE      ---      ---       #19
+      010016B8H   LINE      ---      ---       #20
+      010016E2H   LINE      ---      ---       #22
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100164AH   BLOCK     CODE     ---       LVL=0
+      0100164AH   LINE      ---      ---       #24
+      01001655H   LINE      ---      ---       #25
+      01001655H   LINE      ---      ---       #26
+      0100165FH   LINE      ---      ---       #27
+      01001675H   LINE      ---      ---       #29
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010016E3H   BLOCK     CODE     ---       LVL=0
+      010016E3H   LINE      ---      ---       #31
+      010016EEH   LINE      ---      ---       #32
+      010016EEH   LINE      ---      ---       #33
+      010016F8H   LINE      ---      ---       #34
+      0100170FH   LINE      ---      ---       #36
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000353H   BLOCK     CODE     ---       LVL=0
+      01000353H   LINE      ---      ---       #46
+      01000353H   LINE      ---      ---       #47
+      01000353H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000353H   LINE      ---      ---       #49
+      0100035CH   LINE      ---      ---       #50
+      0100035CH   LINE      ---      ---       #51
+      0100036AH   LINE      ---      ---       #52
+      01000371H   LINE      ---      ---       #53
+      00000004H   SYMBOL    DATA     VOID      j
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01001710H   BLOCK     CODE     ---       LVL=0
+      01001710H   LINE      ---      ---       #55
+      0100171BH   LINE      ---      ---       #56
+      0100171BH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100171BH   LINE      ---      ---       #58
+      01001727H   LINE      ---      ---       #59
+      01001727H   LINE      ---      ---       #60
+      01001751H   LINE      ---      ---       #61
+      01001754H   LINE      ---      ---       #62
+      01001757H   LINE      ---      ---       #63
+      01001759H   LINE      ---      ---       #64
+      00000007H   SYMBOL    DATA     VOID      i
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      ---         MODULE    ---      ---       GPIO
+      020000A0H   PUBLIC    XDATA    ---       YC_GPIOWakeupL
+      020000A4H   PUBLIC    XDATA    ---       YC_GPIOWakeupH
+      01000B15H   PUBLIC    CODE     ---       _GPIO_FlipOutBit
+      01000FD2H   PUBLIC    CODE     ---       _GPIO_SetWakeupByCurrentState
+      0100175AH   PUBLIC    CODE     ---       _GPIO_ClearWakeup
+      00000021H.0 PUBLIC    BIT      BIT       ?_GPIO_SetWakeup?BIT
+      01000FE5H   PUBLIC    CODE     ---       _GPIO_SetWakeup
+      00000020H.7 PUBLIC    BIT      BIT       ?_GPIO_SetOutput?BIT
+      010008C6H   PUBLIC    CODE     ---       _GPIO_SetOutput
+      00000020H.6 PUBLIC    BIT      BIT       ?_GPIO_SetInput?BIT
+      010009A7H   PUBLIC    CODE     ---       _GPIO_SetInput
+      00000020H.5 PUBLIC    BIT      BIT       ?_GPIO_Setoe?BIT
+      010009BCH   PUBLIC    CODE     ---       _GPIO_Setoe
+      00000020H.4 PUBLIC    BIT      BIT       ?_GPIO_SetPd?BIT
+      01000A67H   PUBLIC    CODE     ---       _GPIO_SetPd
+      00000020H.3 PUBLIC    BIT      BIT       ?_GPIO_SetPu?BIT
+      010008D8H   PUBLIC    CODE     ---       _GPIO_SetPu
+      00000020H.2 PUBLIC    BIT      BIT       ?_GPIO_Setout?BIT
+      01000A5BH   PUBLIC    CODE     ---       _GPIO_Setout
+      0100081DH   PUBLIC    CODE     ---       _GPIO_GetInputStatus
+
+      010008E2H   BLOCK     CODE     ---       LVL=0
+      010008E2H   LINE      ---      ---       #8
+      010008EDH   LINE      ---      ---       #9
+      010008EDH   BLOCK     CODE     NEAR LAB  LVL=1
+      010008EDH   LINE      ---      ---       #10
+      010008EFH   LINE      ---      ---       #11
+      010008F0H   LINE      ---      ---       #13
+      010008F4H   LINE      ---      ---       #14
+      010008FBH   LINE      ---      ---       #16
+      010008FEH   LINE      ---      ---       #17
+      01000920H   LINE      ---      ---       #18
+      01000920H   LINE      ---      ---       #19
+      01000920H   LINE      ---      ---       #20
+      00000006H   SYMBOL    DATA     VOID      queue
+      00000005H   SYMBOL    DATA     VOID      group
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01000823H   BLOCK     CODE     ---       LVL=0
+      01000823H   LINE      ---      ---       #24
+      01000825H   LINE      ---      ---       #25
+      01000825H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000825H   LINE      ---      ---       #26
+      0100082AH   LINE      ---      ---       #27
+      0100082BH   LINE      ---      ---       #29
+      0100082FH   LINE      ---      ---       #30
+      01000836H   LINE      ---      ---       #31
+      01000861H   LINE      ---      ---       #33
+      02001C1BH   SYMBOL    XDATA    VOID      queue
+      00000006H   SYMBOL    DATA     VOID      group
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      0100081DH   BLOCK     CODE     ---       LVL=0
+      0100081DH   LINE      ---      ---       #35
+      0100081DH   LINE      ---      ---       #36
+      0100081DH   LINE      ---      ---       #37
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000A5BH   BLOCK     CODE     ---       LVL=0
+      01000A5BH   LINE      ---      ---       #40
+      01000A5BH   LINE      ---      ---       #41
+      01000A5BH   LINE      ---      ---       #42
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010008D8H   BLOCK     CODE     ---       LVL=0
+      010008D8H   LINE      ---      ---       #45
+      010008D8H   LINE      ---      ---       #46
+      010008D8H   LINE      ---      ---       #47
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000A67H   BLOCK     CODE     ---       LVL=0
+      01000A67H   LINE      ---      ---       #50
+      01000A67H   LINE      ---      ---       #51
+      01000A67H   LINE      ---      ---       #52
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010009BCH   BLOCK     CODE     ---       LVL=0
+      010009BCH   LINE      ---      ---       #55
+      010009BCH   LINE      ---      ---       #56
+      010009BCH   LINE      ---      ---       #57
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010009A7H   BLOCK     CODE     ---       LVL=0
+      010009A7H   LINE      ---      ---       #60
+      010009A9H   LINE      ---      ---       #61
+      010009A9H   LINE      ---      ---       #62
+      010009AFH   LINE      ---      ---       #63
+      010009B8H   LINE      ---      ---       #64
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010008C6H   BLOCK     CODE     ---       LVL=0
+      010008C6H   LINE      ---      ---       #67
+      010008C8H   LINE      ---      ---       #68
+      010008C8H   LINE      ---      ---       #69
+      010008CCH   LINE      ---      ---       #70
+      010008D4H   LINE      ---      ---       #71
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000FE5H   BLOCK     CODE     ---       LVL=0
+      01000FE5H   LINE      ---      ---       #74
+      01000FE5H   LINE      ---      ---       #75
+      01000FE5H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000FE5H   LINE      ---      ---       #77
+      01000FE9H   LINE      ---      ---       #78
+      01000FF0H   LINE      ---      ---       #79
+      01000FF3H   LINE      ---      ---       #80
+      01001014H   LINE      ---      ---       #81
+      01001035H   LINE      ---      ---       #82
+      01001036H   LINE      ---      ---       #83
+      01001036H   LINE      ---      ---       #84
+      01001058H   LINE      ---      ---       #85
+      0100106AH   LINE      ---      ---       #86
+      0100106AH   LINE      ---      ---       #87
+      00000006H   SYMBOL    DATA     VOID      queue
+      00000007H   SYMBOL    DATA     VOID      group
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      0100175AH   BLOCK     CODE     ---       LVL=0
+      0100175AH   LINE      ---      ---       #89
+      0100175AH   LINE      ---      ---       #90
+      0100175AH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100175AH   LINE      ---      ---       #92
+      0100175EH   LINE      ---      ---       #93
+      01001765H   LINE      ---      ---       #94
+      01001787H   LINE      ---      ---       #95
+      01001794H   LINE      ---      ---       #96
+      00000006H   SYMBOL    DATA     VOID      queue
+      00000007H   SYMBOL    DATA     VOID      group
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01000FD2H   BLOCK     CODE     ---       LVL=0
+      01000FD2H   LINE      ---      ---       #98
+      01000FD7H   LINE      ---      ---       #99
+      01000FD7H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000FD7H   LINE      ---      ---       #100
+      01000FDBH   LINE      ---      ---       #101
+      00000021H.1 SYMBOL    BIT      VOID      st
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01000B15H   BLOCK     CODE     ---       LVL=0
+      01000B15H   LINE      ---      ---       #104
+      01000B1AH   LINE      ---      ---       #105
+      01000B1AH   BLOCK     CODE     NEAR LAB  LVL=1
+      01000B1AH   LINE      ---      ---       #106
+      01000B24H   LINE      ---      ---       #107
+      00000021H.2 SYMBOL    BIT      VOID      st
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      ---         MODULE    ---      ---       SPI
+      02000218H   PUBLIC    XDATA    ---       spi_tx_buff
+      0200021DH   PUBLIC    XDATA    ---       spi_rx_buff
+      010004DAH   PUBLIC    CODE     ---       _SPI_WriteSensor
+      01000721H   PUBLIC    CODE     ---       _SPI_ReadSensor
+      010013EAH   PUBLIC    CODE     ---       SPI_Initialize
+
+      010013EAH   BLOCK     CODE     ---       LVL=0
+      010013EAH   LINE      ---      ---       #17
+      010013EAH   LINE      ---      ---       #18
+      010013EAH   LINE      ---      ---       #19
+      010013F0H   LINE      ---      ---       #20
+      010013F4H   LINE      ---      ---       #21
+      010013FEH   LINE      ---      ---       #22
+      01001406H   LINE      ---      ---       #23
+      0100140DH   LINE      ---      ---       #24
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000721H   BLOCK     CODE     ---       LVL=0
+      01000721H   LINE      ---      ---       #26
+      01000721H   LINE      ---      ---       #27
+      01000721H   LINE      ---      ---       #28
+      01000726H   LINE      ---      ---       #29
+      0100072FH   LINE      ---      ---       #30
+      01000737H   LINE      ---      ---       #31
+      0100073DH   LINE      ---      ---       #32
+      0100073DH   LINE      ---      ---       #34
+      0100073DH   LINE      ---      ---       #35
+      01000744H   LINE      ---      ---       #36
+      01000749H   LINE      ---      ---       #37
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010004DAH   BLOCK     CODE     ---       LVL=0
+      010004DAH   LINE      ---      ---       #39
+      010004DCH   LINE      ---      ---       #40
+      010004DCH   LINE      ---      ---       #41
+      010004E3H   LINE      ---      ---       #42
+      010004E6H   LINE      ---      ---       #44
+      010004EFH   LINE      ---      ---       #45
+      010004F5H   LINE      ---      ---       #47
+      010004FBH   LINE      ---      ---       #48
+      010004FBH   LINE      ---      ---       #50
+      010004FBH   LINE      ---      ---       #51
+      01000502H   LINE      ---      ---       #52
+      01000504H   LINE      ---      ---       #53
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      ---         MODULE    ---      ---       IIC
+      01000CCBH   PUBLIC    CODE     ---       _IIC_WriteBlock
+      01001795H   PUBLIC    CODE     ---       _IIC_write
+      01000ED1H   PUBLIC    CODE     ---       _IIC_Read
+
+      01000FC1H   BLOCK     CODE     ---       LVL=0
+      01000FC1H   LINE      ---      ---       #10
+      01000FC1H   LINE      ---      ---       #11
+      01000FC1H   LINE      ---      ---       #12
+      01000FC8H   LINE      ---      ---       #13
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000ED1H   BLOCK     CODE     ---       LVL=0
+      01000ED1H   LINE      ---      ---       #15
+      01000EE2H   LINE      ---      ---       #16
+      01000EE2H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000EE2H   LINE      ---      ---       #17
+      01000EE2H   LINE      ---      ---       #18
+      01000EEBH   LINE      ---      ---       #19
+      01000EF1H   LINE      ---      ---       #20
+      01000EF7H   LINE      ---      ---       #21
+      01000EFDH   LINE      ---      ---       #22
+      01000F16H   LINE      ---      ---       #23
+      01000F2BH   LINE      ---      ---       #24
+      01000F44H   LINE      ---      ---       #25
+      01000F4AH   LINE      ---      ---       #26
+      01000F52H   LINE      ---      ---       #27
+      01000F52H   LINE      ---      ---       #28
+      01000F59H   LINE      ---      ---       #29
+      01000F59H   LINE      ---      ---       #30
+      01000F60H   LINE      ---      ---       #31
+      01000F62H   LINE      ---      ---       #32
+      00000006H   SYMBOL    DATA     VOID      mem_src
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01001795H   BLOCK     CODE     ---       LVL=0
+      01001795H   LINE      ---      ---       #35
+      010017A3H   LINE      ---      ---       #36
+      010017A3H   BLOCK     CODE     NEAR LAB  LVL=1
+      010017A3H   LINE      ---      ---       #38
+      010017AEH   LINE      ---      ---       #39
+      010017B4H   LINE      ---      ---       #40
+      010017C3H   LINE      ---      ---       #41
+      010017E0H   LINE      ---      ---       #42
+      010017F0H   LINE      ---      ---       #43
+      010017F7H   LINE      ---      ---       #44
+      010017FCH   LINE      ---      ---       #46
+      01001803H   LINE      ---      ---       #47
+      02001B98H   SYMBOL    XDATA    VOID      ptemp_addr
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01000CCBH   BLOCK     CODE     ---       LVL=0
+      01000CCBH   LINE      ---      ---       #50
+      01000CE2H   LINE      ---      ---       #51
+      01000CE2H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000CE2H   LINE      ---      ---       #53
+      01000CEEH   LINE      ---      ---       #54
+      01000CEEH   LINE      ---      ---       #55
+      01000CFEH   LINE      ---      ---       #56
+      01000D0CH   LINE      ---      ---       #57
+      01000D32H   LINE      ---      ---       #58
+      01000D3FH   LINE      ---      ---       #59
+      01000D55H   LINE      ---      ---       #60
+      01000D5CH   LINE      ---      ---       #61
+      01000D6DH   LINE      ---      ---       #62
+      01000D79H   LINE      ---      ---       #63
+      01000D7BH   LINE      ---      ---       #65
+      00000004H   SYMBOL    DATA     VOID      cris
+      02001BD0H   SYMBOL    XDATA    VOID      curr_len
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      ---         MODULE    ---      ---       IPC
+      02004898H   PUBLIC    XDATA    WORD      bttimer
+      0200489CH   PUBLIC    XDATA    BYTE      btstimer
+      0200489AH   PUBLIC    XDATA    WORD      c51timer
+      02004719H   PUBLIC    XDATA    ---       ipcPin
+      0200489DH   PUBLIC    XDATA    BYTE      c51stimer
+      02001A96H   PUBLIC    XDATA    ---       ipcSendBuff
+      02000B2BH   PUBLIC    XDATA    BYTE      lpm_flag
+      02001A00H   PUBLIC    XDATA    ---       ipcReadBuff
+      02004718H   PUBLIC    XDATA    BYTE      ipcPinlen
+      02000B2AH   PUBLIC    XDATA    BYTE      current_task
+      01001861H   PUBLIC    CODE     ---       IPC_DealSingleStep
+      010013D2H   PUBLIC    CODE     ---       IPC_IsTxBuffEmpty
+      0100033BH   PUBLIC    CODE     ---       IPC_AbandonLpm
+      01000347H   PUBLIC    CODE     ---       IPC_WaitLpm
+      010007F4H   PUBLIC    CODE     ---       _IPC_Initialize
+      01001496H   PUBLIC    CODE     ---       _IPC_TxBleData
+      01001AC2H   PUBLIC    CODE     ---       _IPC_TxSppData
+      01001ABCH   PUBLIC    CODE     ---       IPC_GetBBDIsconnectReason
+      01001452H   PUBLIC    CODE     ---       _IPC_Tx24GData
+      01001A71H   PUBLIC    CODE     ---       _IPC_TxBREDRHidData
+      0100074AH   PUBLIC    CODE     ---       _IPC_TxControlCmd
+
+      01001806H   BLOCK     CODE     ---       LVL=0
+      01001806H   LINE      ---      ---       #44
+      01001814H   LINE      ---      ---       #45
+      01001814H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001814H   LINE      ---      ---       #46
+      0100181CH   LINE      ---      ---       #47
+      01001826H   LINE      ---      ---       #48
+      01001848H   LINE      ---      ---       #49
+      01001852H   LINE      ---      ---       #50
+      01001856H   LINE      ---      ---       #51
+      01001856H   LINE      ---      ---       #52
+      01001858H   LINE      ---      ---       #53
+      01001860H   LINE      ---      ---       #54
+      00000006H   SYMBOL    DATA     VOID      src
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01000771H   BLOCK     CODE     ---       LVL=0
+      01000771H   LINE      ---      ---       #56
+      0100077FH   LINE      ---      ---       #57
+      0100077FH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100077FH   LINE      ---      ---       #58
+      0100078EH   LINE      ---      ---       #59
+      01000798H   LINE      ---      ---       #60
+      010007BAH   LINE      ---      ---       #61
+      010007C8H   LINE      ---      ---       #62
+      010007D2H   LINE      ---      ---       #63
+      010007D2H   LINE      ---      ---       #64
+      010007D4H   LINE      ---      ---       #65
+      010007E3H   LINE      ---      ---       #66
+      02001BEBH   SYMBOL    XDATA    VOID      dest
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      0100074AH   BLOCK     CODE     ---       LVL=0
+      0100074AH   LINE      ---      ---       #68
+      0100074FH   LINE      ---      ---       #69
+      0100074FH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100074FH   LINE      ---      ---       #70
+      01000761H   LINE      ---      ---       #71
+      01000769H   LINE      ---      ---       #72
+      02001C04H   SYMBOL    XDATA    VOID      cmdBuff
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01001A71H   BLOCK     CODE     ---       LVL=0
+      01001A71H   LINE      ---      ---       #75
+      01001A76H   LINE      ---      ---       #76
+      01001A76H   LINE      ---      ---       #77
+      01001A7CH   LINE      ---      ---       #78
+      01001A82H   LINE      ---      ---       #80
+      01001A96H   LINE      ---      ---       #81
+      01001A9FH   LINE      ---      ---       #82
+      01001AABH   LINE      ---      ---       #83
+      01001ABBH   LINE      ---      ---       #84
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001452H   BLOCK     CODE     ---       LVL=0
+      01001452H   LINE      ---      ---       #88
+      01001457H   LINE      ---      ---       #89
+      01001457H   LINE      ---      ---       #90
+      0100145DH   LINE      ---      ---       #91
+      01001471H   LINE      ---      ---       #92
+      0100147AH   LINE      ---      ---       #93
+      01001486H   LINE      ---      ---       #94
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001ABCH   BLOCK     CODE     ---       LVL=0
+      01001ABCH   LINE      ---      ---       #98
+      01001ABCH   LINE      ---      ---       #99
+      01001ABCH   LINE      ---      ---       #100
+      01001AC1H   LINE      ---      ---       #101
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001AC2H   BLOCK     CODE     ---       LVL=0
+      01001AC2H   LINE      ---      ---       #103
+      01001AC7H   LINE      ---      ---       #104
+      01001AC7H   LINE      ---      ---       #105
+      01001ACDH   LINE      ---      ---       #106
+      01001AE1H   LINE      ---      ---       #107
+      01001AEAH   LINE      ---      ---       #108
+      01001AF6H   LINE      ---      ---       #109
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001496H   BLOCK     CODE     ---       LVL=0
+      01001496H   LINE      ---      ---       #112
+      0100149BH   LINE      ---      ---       #113
+      0100149BH   LINE      ---      ---       #114
+      010014A1H   LINE      ---      ---       #115
+      010014B5H   LINE      ---      ---       #116
+      010014BEH   LINE      ---      ---       #117
+      010014CAH   LINE      ---      ---       #118
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010007F4H   BLOCK     CODE     ---       LVL=0
+      010007F4H   LINE      ---      ---       #121
+      010007F4H   LINE      ---      ---       #122
+      010007F4H   LINE      ---      ---       #123
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000347H   BLOCK     CODE     ---       LVL=0
+      01000347H   LINE      ---      ---       #126
+      01000347H   LINE      ---      ---       #127
+      01000347H   LINE      ---      ---       #128
+      0100034CH   LINE      ---      ---       #129
+      01000350H   LINE      ---      ---       #130
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100033BH   BLOCK     CODE     ---       LVL=0
+      0100033BH   LINE      ---      ---       #133
+      0100033BH   LINE      ---      ---       #134
+      0100033BH   LINE      ---      ---       #135
+      01000341H   LINE      ---      ---       #136
+      01000346H   LINE      ---      ---       #137
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010013D2H   BLOCK     CODE     ---       LVL=0
+      010013D2H   LINE      ---      ---       #139
+      010013D2H   LINE      ---      ---       #140
+      010013D2H   LINE      ---      ---       #141
+      010013E6H   LINE      ---      ---       #142
+      010013E8H   LINE      ---      ---       #143
+      010013E9H   LINE      ---      ---       #144
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001861H   BLOCK     CODE     ---       LVL=0
+      01001861H   LINE      ---      ---       #147
+      01001861H   LINE      ---      ---       #148
+      01001861H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001861H   LINE      ---      ---       #149
+      01001873H   LINE      ---      ---       #150
+      01001889H   LINE      ---      ---       #151
+      01001889H   LINE      ---      ---       #152
+      01001893H   LINE      ---      ---       #153
+      010018A4H   LINE      ---      ---       #154
+      010018AEH   LINE      ---      ---       #155
+      010018CDH   LINE      ---      ---       #156
+      010018CFH   LINE      ---      ---       #157
+      010018E1H   LINE      ---      ---       #158
+      010018EAH   LINE      ---      ---       #159
+      01001902H   LINE      ---      ---       #160
+      0100193AH   LINE      ---      ---       #161
+      0100193CH   LINE      ---      ---       #162
+      0100194EH   LINE      ---      ---       #163
+      01001957H   LINE      ---      ---       #164
+      0100196FH   LINE      ---      ---       #165
+      010019A7H   LINE      ---      ---       #166
+      010019A9H   LINE      ---      ---       #167
+      010019BBH   LINE      ---      ---       #168
+      010019C4H   LINE      ---      ---       #169
+      010019DCH   LINE      ---      ---       #170
+      01001A14H   LINE      ---      ---       #171
+      01001A16H   LINE      ---      ---       #172
+      01001A16H   LINE      ---      ---       #173
+      01001A18H   LINE      ---      ---       #174
+      01001A18H   LINE      ---      ---       #175
+      01001A18H   LINE      ---      ---       #176
+      01001A2CH   LINE      ---      ---       #177
+      01001A3AH   LINE      ---      ---       #179
+      01001A3DH   LINE      ---      ---       #180
+      01001A4BH   LINE      ---      ---       #181
+      01001A4DH   LINE      ---      ---       #182
+      01001A57H   LINE      ---      ---       #183
+      01001A65H   LINE      ---      ---       #185
+      01001A68H   LINE      ---      ---       #186
+      01001A6EH   LINE      ---      ---       #187
+      01001A70H   LINE      ---      ---       #189
+      01001A18H   SYMBOL    ---      ---       IPC_TIMERingleStep
+      02001C13H   SYMBOL    XDATA    VOID      pbuff
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      ---         MODULE    ---      ---       ADC
+      01000FC9H   PUBLIC    CODE     ---       ADC_Get0vBase
+      01001B0FH   PUBLIC    CODE     ---       ADC_Get3vBase
+      01001B06H   PUBLIC    CODE     ---       ADC_GetCurrentValue
+
+      01001B06H   BLOCK     CODE     ---       LVL=0
+      01001B06H   LINE      ---      ---       #4
+      01001B06H   LINE      ---      ---       #5
+      01001B06H   LINE      ---      ---       #6
+      01001B0EH   LINE      ---      ---       #7
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001B0FH   BLOCK     CODE     ---       LVL=0
+      01001B0FH   LINE      ---      ---       #9
+      01001B0FH   LINE      ---      ---       #10
+      01001B0FH   LINE      ---      ---       #11
+      01001B17H   LINE      ---      ---       #12
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000FC9H   BLOCK     CODE     ---       LVL=0
+      01000FC9H   LINE      ---      ---       #14
+      01000FC9H   LINE      ---      ---       #15
+      01000FC9H   LINE      ---      ---       #16
+      01000FD1H   LINE      ---      ---       #17
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      ---         MODULE    ---      ---       GLOBAL_VARIABLE
+      02004954H   PUBLIC    XDATA    BYTE      m_new24gAbortPac
+      02004E81H   PUBLIC    XDATA    BYTE      m_bleDataWheel
+      02004E80H   PUBLIC    XDATA    BYTE      m_shortDataWheel
+      020049C1H   PUBLIC    XDATA    BYTE      m_btWakeupFromLongMult
+      020042D1H   PUBLIC    XDATA    WORD      m_adcCurrentValue
+      02000040H   PUBLIC    XDATA    ---       m_remoteAddr
+      020049C0H   PUBLIC    XDATA    BYTE      m_new24gOtaEnable
+      02004273H   PUBLIC    XDATA    ---       m_reconnAddr
+      0200470BH   PUBLIC    XDATA    WORD      m_uiStateMap
+      02004E78H   PUBLIC    XDATA    BYTE      m_enable24gShortLpm
+      0200494FH   PUBLIC    XDATA    BYTE      m_new24gIntMax
+      0200494EH   PUBLIC    XDATA    BYTE      m_new24gIntMin
+      020042B8H   PUBLIC    XDATA    BYTE      m_powerOnFlag
+      02004906H   PUBLIC    XDATA    ---       m_24gRxPayload
+      02004E84H   PUBLIC    XDATA    BYTE      m_51ReadSensor
+      02004E83H   PUBLIC    XDATA    BYTE      m_BtReadIpcCount
+      02004261H   PUBLIC    XDATA    ---       m_linkKey
+      02004E82H   PUBLIC    XDATA    BYTE      m_bleDataWheelLpmTimer
+      020049C2H   PUBLIC    XDATA    BYTE      m_btMotionEvent
+      02004E43H   PUBLIC    XDATA    WORD      m_adc3vValue
+      02004E7FH   PUBLIC    XDATA    BYTE      m_IpcIsReady
+      02004131H   PUBLIC    XDATA    BYTE      m_lpmMode
+      02004E41H   PUBLIC    XDATA    WORD      m_adc0vBase
+      02004950H   PUBLIC    XDATA    ---       m_24gAddr
+      02004EABH   PUBLIC    XDATA    ---       g_variable
+      020049B7H   PUBLIC    XDATA    BYTE      m_new24gKWEvent
+      02000372H   PUBLIC    XDATA    ---       m_remoteLeAddr
+      02004E21H   PUBLIC    XDATA    ---       m_hidBuff
+      02004595H   PUBLIC    XDATA    BYTE      m_bleSendDataFlag
+      0200453EH   PUBLIC    XDATA    ---       m_reconnLeAddr
+      02004E7DH   PUBLIC    XDATA    BYTE      m_sendData24gShortLpm
+
+      ---         MODULE    ---      ---       SENSOR
+      01001B18H   PUBLIC    CODE     ---       Drawing_optima_init
+      010012BDH   PUBLIC    CODE     ---       Drawing_optima
+      010013BFH   PUBLIC    CODE     ---       _abs
+      01000A73H   PUBLIC    CODE     ---       sensorPowerOn
+      01000AF2H   PUBLIC    CODE     ---       sensorPowerDown
+      01000A8AH   PUBLIC    CODE     ---       Sensor_spi_disable
+      01000505H   PUBLIC    CODE     ---       SPI_ResetSensor
+      01000A9EH   PUBLIC    CODE     ---       SPI_TwReset
+
+      01000A9EH   BLOCK     CODE     ---       LVL=0
+      01000A9EH   LINE      ---      ---       #67
+      01000A9EH   LINE      ---      ---       #68
+      01000A9EH   BLOCK     CODE     NEAR LAB  LVL=1
+      01000A9EH   LINE      ---      ---       #69
+      01000AA3H   LINE      ---      ---       #70
+      01000AA8H   LINE      ---      ---       #71
+      01000AADH   LINE      ---      ---       #72
+      01000AADH   LINE      ---      ---       #73
+      01000AADH   LINE      ---      ---       #74
+      01000AB3H   LINE      ---      ---       #75
+      01000AB9H   LINE      ---      ---       #76
+      01000AB9H   LINE      ---      ---       #77
+      01000ABCH   LINE      ---      ---       #78
+      01000ABCH   LINE      ---      ---       #79
+      01000AC6H   LINE      ---      ---       #80
+      01000ACFH   LINE      ---      ---       #81
+      01000ACFH   LINE      ---      ---       #82
+      01000AD4H   LINE      ---      ---       #83
+      01000ADBH   LINE      ---      ---       #84
+      01000AE2H   LINE      ---      ---       #85
+      01000AE9H   LINE      ---      ---       #86
+      01000AEFH   LINE      ---      ---       #87
+      01000AF1H   LINE      ---      ---       #88
+      02001C22H   SYMBOL    XDATA    VOID      sensorId
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01000505H   BLOCK     CODE     ---       LVL=0
+      01000505H   LINE      ---      ---       #90
+      01000505H   LINE      ---      ---       #91
+      01000505H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000505H   LINE      ---      ---       #92
+      0100050AH   LINE      ---      ---       #93
+      0100050CH   LINE      ---      ---       #94
+      0100050CH   LINE      ---      ---       #95
+      0100050CH   LINE      ---      ---       #96
+      01000513H   LINE      ---      ---       #97
+      01000513H   LINE      ---      ---       #98
+      0100051FH   LINE      ---      ---       #99
+      01000523H   LINE      ---      ---       #100
+      01000529H   LINE      ---      ---       #101
+      0100052BH   LINE      ---      ---       #102
+      0100052BH   LINE      ---      ---       #103
+      01000532H   LINE      ---      ---       #104
+      01000532H   LINE      ---      ---       #105
+      01000538H   LINE      ---      ---       #106
+      01000544H   LINE      ---      ---       #107
+      01000548H   LINE      ---      ---       #108
+      0100054AH   LINE      ---      ---       #109
+      0100054AH   LINE      ---      ---       #110
+      01000555H   LINE      ---      ---       #111
+      01000555H   LINE      ---      ---       #112
+      0100055CH   LINE      ---      ---       #113
+      0100055CH   LINE      ---      ---       #114
+      01000562H   LINE      ---      ---       #115
+      01000564H   LINE      ---      ---       #116
+      01000564H   LINE      ---      ---       #118
+      0100056FH   LINE      ---      ---       #119
+      0100056FH   LINE      ---      ---       #120
+      01000577H   LINE      ---      ---       #121
+      0100057FH   LINE      ---      ---       #123
+      01000585H   LINE      ---      ---       #124
+      01000591H   LINE      ---      ---       #125
+      01000595H   LINE      ---      ---       #126
+      01000597H   LINE      ---      ---       #127
+      01000597H   LINE      ---      ---       #131
+      010005A2H   LINE      ---      ---       #132
+      010005A2H   LINE      ---      ---       #133
+      010005A8H   LINE      ---      ---       #134
+      010005B4H   LINE      ---      ---       #135
+      010005B8H   LINE      ---      ---       #136
+      010005BAH   LINE      ---      ---       #137
+      010005BAH   LINE      ---      ---       #141
+      010005C1H   LINE      ---      ---       #142
+      010005C1H   LINE      ---      ---       #143
+      010005CDH   LINE      ---      ---       #144
+      010005D1H   LINE      ---      ---       #145
+      010005D7H   LINE      ---      ---       #146
+      010005E0H   LINE      ---      ---       #147
+      010005E0H   LINE      ---      ---       #148
+      010005E0H   LINE      ---      ---       #150
+      010005E0H   LINE      ---      ---       #151
+      010005E3H   LINE      ---      ---       #152
+      010005E5H   LINE      ---      ---       #155
+      010005EFH   LINE      ---      ---       #156
+      010005EFH   LINE      ---      ---       #157
+      010005F5H   LINE      ---      ---       #158
+      010005FBH   LINE      ---      ---       #159
+      01000601H   LINE      ---      ---       #160
+      01000607H   LINE      ---      ---       #161
+      0100060DH   LINE      ---      ---       #162
+      01000613H   LINE      ---      ---       #163
+      01000619H   LINE      ---      ---       #164
+      0100061FH   LINE      ---      ---       #165
+      01000625H   LINE      ---      ---       #166
+      0100062BH   LINE      ---      ---       #167
+      01000631H   LINE      ---      ---       #168
+      01000637H   LINE      ---      ---       #169
+      0100063DH   LINE      ---      ---       #170
+      01000643H   LINE      ---      ---       #171
+      01000649H   LINE      ---      ---       #172
+      0100064FH   LINE      ---      ---       #173
+      01000655H   LINE      ---      ---       #174
+      0100065BH   LINE      ---      ---       #175
+      01000661H   LINE      ---      ---       #176
+      01000667H   LINE      ---      ---       #177
+      0100066DH   LINE      ---      ---       #178
+      01000673H   LINE      ---      ---       #179
+      01000679H   LINE      ---      ---       #180
+      0100067FH   LINE      ---      ---       #181
+      01000685H   LINE      ---      ---       #182
+      0100068BH   LINE      ---      ---       #183
+      01000691H   LINE      ---      ---       #184
+      01000697H   LINE      ---      ---       #185
+      0100069DH   LINE      ---      ---       #186
+      010006A3H   LINE      ---      ---       #187
+      010006A9H   LINE      ---      ---       #188
+      010006AFH   LINE      ---      ---       #189
+      010006B5H   LINE      ---      ---       #190
+      010006B5H   LINE      ---      ---       #194
+      010006BCH   LINE      ---      ---       #195
+      010006BCH   LINE      ---      ---       #196
+      010006C2H   LINE      ---      ---       #197
+      010006C8H   LINE      ---      ---       #198
+      010006CEH   LINE      ---      ---       #199
+      010006D4H   LINE      ---      ---       #200
+      010006D4H   LINE      ---      ---       #204
+      010006DCH   LINE      ---      ---       #205
+      010006DCH   LINE      ---      ---       #206
+      010006E2H   LINE      ---      ---       #207
+      010006E8H   LINE      ---      ---       #208
+      010006F1H   LINE      ---      ---       #209
+      010006F9H   LINE      ---      ---       #210
+      01000702H   LINE      ---      ---       #211
+      0100070AH   LINE      ---      ---       #212
+      01000713H   LINE      ---      ---       #213
+      0100071BH   LINE      ---      ---       #214
+      0100071BH   LINE      ---      ---       #217
+      01000720H   LINE      ---      ---       #218
+      02001C16H   SYMBOL    XDATA    VOID      sensorConfig
+      02001C17H   SYMBOL    XDATA    VOID      Sensor_type
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01000A8AH   BLOCK     CODE     ---       LVL=0
+      01000A8AH   LINE      ---      ---       #220
+      01000A8AH   LINE      ---      ---       #221
+      01000A8AH   LINE      ---      ---       #222
+      01000A8FH   LINE      ---      ---       #223
+      01000A96H   LINE      ---      ---       #224
+      01000A9DH   LINE      ---      ---       #225
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000AF2H   BLOCK     CODE     ---       LVL=0
+      01000AF2H   LINE      ---      ---       #227
+      01000AF2H   LINE      ---      ---       #228
+      01000AF2H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000AF2H   LINE      ---      ---       #229
+      01000AF4H   LINE      ---      ---       #230
+      01000AF6H   LINE      ---      ---       #231
+      01000AFFH   LINE      ---      ---       #232
+      01000B04H   LINE      ---      ---       #233
+      01000B09H   LINE      ---      ---       #234
+      01000B0FH   LINE      ---      ---       #235
+      00000007H   SYMBOL    DATA     VOID      config
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01000A73H   BLOCK     CODE     ---       LVL=0
+      01000A73H   LINE      ---      ---       #238
+      01000A73H   LINE      ---      ---       #239
+      01000A73H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000A73H   LINE      ---      ---       #240
+      01000A75H   LINE      ---      ---       #241
+      01000A77H   LINE      ---      ---       #242
+      01000A80H   LINE      ---      ---       #243
+      01000A85H   LINE      ---      ---       #244
+      00000007H   SYMBOL    DATA     VOID      config
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010013BFH   BLOCK     CODE     ---       LVL=0
+      010013BFH   LINE      ---      ---       #259
+      010013BFH   LINE      ---      ---       #260
+      010013BFH   LINE      ---      ---       #261
+      010013CAH   LINE      ---      ---       #262
+      010013D1H   LINE      ---      ---       #263
+      010013D1H   LINE      ---      ---       #264
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010012BDH   BLOCK     CODE     ---       LVL=0
+      010012BDH   LINE      ---      ---       #267
+      010012BDH   LINE      ---      ---       #268
+      010012BDH   LINE      ---      ---       #269
+      010012F5H   LINE      ---      ---       #270
+      010012FBH   LINE      ---      ---       #271
+      0100131FH   LINE      ---      ---       #272
+      01001322H   LINE      ---      ---       #273
+      0100132CH   LINE      ---      ---       #274
+      01001354H   LINE      ---      ---       #275
+      01001363H   LINE      ---      ---       #276
+      0100136BH   LINE      ---      ---       #277
+      01001393H   LINE      ---      ---       #278
+      010013A2H   LINE      ---      ---       #279
+      010013AAH   LINE      ---      ---       #280
+      010013ABH   LINE      ---      ---       #281
+      010013B2H   LINE      ---      ---       #282
+      010013B6H   LINE      ---      ---       #283
+      010013BAH   LINE      ---      ---       #284
+      010013BEH   LINE      ---      ---       #285
+      010013BEH   LINE      ---      ---       #286
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001B18H   BLOCK     CODE     ---       LVL=0
+      01001B18H   LINE      ---      ---       #288
+      01001B18H   LINE      ---      ---       #289
+      01001B18H   LINE      ---      ---       #290
+      01001B1FH   LINE      ---      ---       #291
+      01001B23H   LINE      ---      ---       #292
+      01001B27H   LINE      ---      ---       #293
+      01001B2BH   LINE      ---      ---       #294
+      01001B2FH   LINE      ---      ---       #295
+      01001B35H   LINE      ---      ---       #296
+      01001B39H   LINE      ---      ---       #297
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      ---         MODULE    ---      ---       ?C_STARTUP
+      01000000H   PUBLIC    CODE     ---       ?C_STARTUP
+
+      ---         MODULE    ---      ---       ?C?COPY
+      010000D3H   PUBLIC    CODE     ---       ?C?COPY
+
+      ---         MODULE    ---      ---       ?C?CLDPTR
+      010000F9H   PUBLIC    CODE     ---       ?C?CLDPTR
+
+      ---         MODULE    ---      ---       ?C?CLDOPTR
+      01000112H   PUBLIC    CODE     ---       ?C?CLDOPTR
+
+      ---         MODULE    ---      ---       ?C?CSTPTR
+      0100013FH   PUBLIC    CODE     ---       ?C?CSTPTR
+
+      ---         MODULE    ---      ---       ?C?SIDIV
+      01000151H   PUBLIC    CODE     ---       ?C?SIDIV
+
+      ---         MODULE    ---      ---       ?C?IILDX
+      01000187H   PUBLIC    CODE     ---       ?C?IILDX
+
+      ---         MODULE    ---      ---       ?C?ILDIX
+      0100019DH   PUBLIC    CODE     ---       ?C?ILDIX
+
+      ---         MODULE    ---      ---       ?C?CCASE
+      010001B3H   PUBLIC    CODE     ---       ?C?CCASE
+
+      ---         MODULE    ---      ---       ?C?ICALL
+      010001D9H   PUBLIC    CODE     ---       ?C?ICALL
+      010001DDH   PUBLIC    CODE     ---       ?C?ICALL2
+
+      ---         MODULE    ---      ---       ?C_INIT
+      0100027BH   PUBLIC    CODE     ---       ?C_START
+
+      ---         MODULE    ---      ---       ?C?UIDIV
+      010001DFH   PUBLIC    CODE     ---       ?C?UIDIV
+
+Program Size: data=10.3 xdata=840 const=9 code=6961
+LX51 RUN COMPLETE.  0 WARNING(S),  0 ERROR(S)
Index: c51/output/FW.SBR
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/output/FW.SBR
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/FW.SBR	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/FW.SBR	(working copy)

Property changes on: c51/output/FW.SBR
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/output/eeprom.dat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/eeprom.dat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/eeprom.dat	(working copy)
@@ -0,0 +1,16384 @@
+00
+02
+aa
+55
+56
+1a
+c5
+12
+80
+0f
+c0
+00
+00
+25
+c0
+01
+80
+31
+c0
+43
+00
+37
+c0
+45
+00
+42
+c0
+45
+80
+65
+c0
+53
+80
+71
+c0
+54
+00
+78
+c0
+54
+80
+8c
+c0
+56
+00
+9f
+c0
+5a
+03
+3b
+c0
+5a
+80
+b8
+c0
+5b
+00
+bf
+c0
+5b
+80
+df
+20
+20
+3b
+34
+c0
+02
+81
+3a
+c0
+0b
+01
+3f
+c0
+0d
+81
+43
+c0
+11
+81
+46
+c0
+17
+81
+6a
+c0
+18
+81
+7f
+c0
+19
+01
+91
+c0
+19
+81
+a4
+c0
+1c
+81
+b5
+c0
+1e
+01
+c2
+c0
+1e
+81
+d5
+c0
+1f
+01
+db
+c0
+1f
+81
+ea
+c0
+21
+02
+08
+c0
+26
+82
+0d
+c0
+41
+02
+27
+c0
+4a
+82
+29
+c0
+79
+82
+30
+c0
+7b
+82
+3c
+c0
+7c
+02
+71
+c0
+7c
+82
+77
+20
+20
+3b
+34
+20
+80
+00
+00
+70
+40
+30
+00
+24
+35
+b0
+04
+68
+00
+c5
+95
+24
+3a
+00
+2f
+68
+00
+ce
+78
+20
+3a
+30
+04
+70
+4e
+7f
+00
+c5
+93
+30
+04
+24
+35
+b0
+04
+70
+82
+80
+03
+20
+20
+30
+04
+20
+40
+02
+81
+20
+40
+04
+18
+20
+40
+02
+b3
+68
+00
+ce
+78
+24
+3a
+03
+6d
+20
+20
+30
+1b
+20
+30
+b9
+a3
+70
+89
+55
+d4
+20
+00
+00
+04
+70
+89
+55
+d2
+20
+00
+00
+04
+70
+89
+55
+d1
+20
+00
+00
+04
+20
+20
+39
+ae
+68
+00
+c2
+80
+c0
+0a
+39
+ae
+20
+20
+39
+9c
+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
+20
+20
+00
+62
+68
+00
+c2
+80
+c0
+0a
+00
+62
+c2
+80
+80
+5c
+c2
+81
+00
+5c
+70
+89
+4c
+5b
+70
+89
+4d
+96
+70
+89
+4e
+2c
+70
+89
+4f
+46
+20
+20
+00
+60
+70
+89
+4c
+fb
+70
+89
+4d
+ef
+70
+89
+4e
+ec
+70
+89
+4f
+5e
+68
+00
+c2
+80
+20
+20
+39
+dc
+70
+89
+56
+c5
+70
+89
+55
+d0
+20
+60
+00
+00
+20
+40
+3c
+d2
+20
+40
+3a
+5f
+70
+80
+42
+06
+68
+10
+89
+68
+79
+20
+7e
+07
+60
+10
+89
+68
+79
+3f
+fe
+07
+60
+10
+89
+68
+79
+20
+7e
+07
+60
+10
+89
+68
+70
+80
+42
+05
+20
+20
+3a
+0c
+20
+40
+3c
+2b
+68
+00
+ce
+45
+20
+7a
+00
+00
+70
+4e
+45
+00
+1c
+42
+7e
+00
+60
+02
+48
+9e
+20
+60
+00
+00
+c6
+13
+00
+00
+20
+40
+3b
+e2
+68
+01
+c2
+0f
+20
+7a
+00
+00
+68
+01
+40
+42
+d8
+40
+ff
+ff
+98
+46
+7c
+00
+20
+62
+80
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+20
+40
+48
+16
+24
+7a
+00
+00
+20
+40
+3d
+0e
+24
+7a
+00
+00
+20
+40
+3a
+7b
+68
+00
+c6
+e2
+20
+3a
+3c
+5e
+68
+00
+c6
+39
+20
+7a
+00
+00
+20
+20
+3c
+5e
+68
+00
+c5
+95
+20
+3a
+00
+99
+68
+00
+80
+9f
+24
+3a
+00
+99
+68
+00
+ce
+83
+68
+08
+ce
+84
+98
+46
+7c
+00
+24
+62
+80
+00
+68
+00
+ce
+81
+24
+7a
+00
+00
+58
+00
+00
+00
+60
+04
+00
+a0
+20
+20
+3c
+6a
+20
+40
+00
+a4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+70
+49
+c1
+00
+20
+20
+3c
+6a
+20
+40
+00
+a4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+20
+20
+3c
+8c
+20
+40
+00
+af
+24
+74
+00
+00
+20
+40
+00
+ac
+24
+74
+00
+00
+70
+0b
+2b
+01
+70
+0b
+2a
+01
+20
+40
+00
+b4
+20
+20
+00
+af
+68
+01
+48
+2c
+68
+09
+48
+2e
+20
+20
+00
+b1
+68
+01
+47
+c4
+68
+09
+47
+c6
+98
+46
+7c
+00
+20
+22
+e4
+c0
+20
+20
+31
+d4
+68
+00
+8b
+2a
+20
+00
+00
+0a
+c0
+80
+00
+b4
+20
+60
+00
+00
+70
+00
+16
+27
+70
+01
+50
+00
+70
+01
+7e
+00
+70
+01
+7f
+00
+58
+00
+00
+00
+60
+02
+88
+d2
+20
+60
+00
+00
+da
+20
+46
+f0
+20
+40
+7f
+95
+20
+7a
+00
+00
+1f
+e2
+26
+00
+20
+40
+00
+c5
+20
+20
+3d
+9b
+c1
+0c
+00
+00
+c0
+0a
+00
+ca
+c0
+0a
+80
+d2
+c0
+14
+80
+dd
+20
+20
+3d
+73
+70
+4e
+83
+00
+70
+42
+12
+00
+70
+4e
+a6
+00
+70
+4e
+51
+78
+20
+40
+3e
+61
+20
+40
+3e
+59
+20
+40
+3e
+7f
+20
+20
+3d
+c2
+70
+4e
+a4
+00
+20
+40
+02
+fa
+70
+44
+b2
+00
+70
+42
+12
+00
+70
+4e
+a6
+00
+70
+4e
+51
+00
+70
+45
+6a
+00
+68
+09
+4e
+4e
+60
+09
+44
+f8
+20
+40
+52
+a0
+20
+20
+3d
+c6
+20
+40
+01
+28
+20
+20
+7e
+3b
+60
+08
+82
+4e
+68
+00
+c8
+9c
+1f
+e0
+fe
+01
+60
+00
+c8
+9c
+68
+00
+82
+4e
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+82
+4e
+20
+40
+01
+2b
+20
+40
+01
+0e
+20
+40
+01
+34
+20
+40
+01
+21
+20
+40
+00
+ee
+20
+40
+00
+fe
+20
+20
+00
+e3
+68
+00
+ce
+a7
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+a7
+24
+7a
+00
+00
+68
+00
+ce
+a8
+1f
+e0
+fe
+01
+1f
+e1
+7e
+01
+60
+00
+ce
+a8
+c0
+00
+00
+fa
+c0
+00
+80
+fc
+20
+60
+00
+00
+d8
+40
+00
+08
+20
+20
+64
+fd
+d8
+40
+00
+08
+20
+20
+64
+ff
+68
+00
+ce
+a9
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+a9
+24
+7a
+00
+00
+68
+00
+ce
+aa
+1f
+e0
+fe
+01
+1f
+e1
+7e
+01
+60
+00
+ce
+aa
+c0
+00
+01
+0a
+c0
+00
+81
+0c
+20
+60
+00
+00
+d8
+40
+00
+05
+20
+20
+64
+fd
+d8
+40
+00
+05
+20
+20
+64
+ff
+68
+00
+ce
+a6
+20
+7a
+00
+00
+68
+00
+c2
+12
+2f
+e1
+fe
+20
+24
+40
+81
+18
+68
+00
+c1
+31
+20
+5a
+01
+16
+20
+60
+00
+00
+70
+41
+31
+01
+20
+60
+00
+00
+70
+42
+12
+20
+20
+60
+00
+00
+68
+00
+c9
+ba
+20
+7a
+00
+00
+70
+4e
+80
+00
+1f
+e0
+ff
+ff
+60
+00
+c9
+ba
+24
+7a
+00
+00
+20
+60
+00
+00
+68
+00
+ce
+82
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+82
+24
+7a
+00
+00
+70
+4e
+81
+00
+20
+60
+00
+00
+20
+40
+3e
+7f
+70
+09
+bd
+12
+20
+20
+7d
+90
+68
+00
+ce
+51
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+51
+24
+7a
+00
+00
+70
+42
+12
+20
+70
+41
+31
+01
+70
+4e
+a6
+01
+20
+60
+00
+00
+68
+00
+ce
+52
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+52
+24
+7a
+00
+00
+20
+20
+3e
+6d
+20
+40
+49
+68
+20
+40
+4b
+51
+20
+40
+4b
+d8
+20
+40
+05
+ea
+20
+20
+49
+45
+20
+40
+3a
+50
+1f
+e2
+22
+00
+20
+40
+06
+28
+20
+20
+4a
+3d
+68
+02
+4e
+48
+60
+02
+45
+96
+20
+20
+4a
+8c
+70
+41
+31
+01
+68
+01
+03
+7c
+68
+09
+03
+82
+98
+46
+7e
+00
+60
+01
+09
+be
+68
+00
+83
+62
+79
+3f
+fe
+05
+79
+3f
+fe
+03
+60
+00
+83
+62
+68
+02
+03
+66
+68
+09
+03
+64
+60
+09
+09
+c6
+98
+46
+22
+00
+68
+00
+c4
+5b
+60
+00
+83
+8d
+e8
+c9
+00
+00
+e8
+c1
+00
+00
+1f
+eb
+fe
+00
+60
+01
+03
+64
+18
+4b
+84
+00
+98
+40
+fe
+00
+e8
+ca
+00
+00
+60
+0a
+03
+8e
+9a
+20
+fe
+00
+1f
+e2
+28
+00
+68
+01
+03
+64
+68
+09
+09
+c6
+98
+46
+7e
+00
+68
+09
+09
+be
+98
+4f
+fe
+00
+9a
+80
+fe
+00
+60
+02
+03
+66
+20
+40
+51
+99
+68
+01
+03
+90
+60
+01
+45
+61
+20
+60
+00
+00
+68
+00
+83
+79
+c2
+82
+81
+7b
+20
+40
+05
+dc
+70
+4e
+62
+00
+68
+00
+ce
+20
+24
+3a
+01
+75
+68
+00
+ce
+a5
+c0
+00
+81
+79
+68
+00
+83
+03
+20
+3a
+4b
+de
+20
+20
+4f
+87
+68
+00
+ce
+20
+1f
+e0
+ff
+ff
+60
+00
+ce
+20
+20
+20
+4f
+87
+70
+4e
+20
+03
+20
+20
+4b
+de
+68
+00
+ce
+62
+1f
+e0
+fe
+01
+60
+00
+ce
+62
+20
+20
+05
+e0
+68
+00
+c4
+67
+c0
+03
+01
+83
+c0
+01
+01
+8a
+20
+20
+4b
+fb
+68
+00
+ce
+53
+c0
+00
+81
+87
+20
+40
+3e
+6d
+20
+20
+4c
+86
+20
+40
+01
+28
+70
+4e
+52
+03
+20
+20
+4c
+90
+58
+00
+00
+13
+e0
+a0
+80
+00
+20
+40
+4c
+58
+58
+00
+00
+0a
+60
+01
+03
+90
+60
+01
+45
+61
+20
+60
+00
+00
+68
+00
+c4
+6b
+c0
+01
+01
+98
+c0
+03
+01
+9f
+c0
+03
+81
+96
+20
+20
+4c
+18
+70
+4e
+a5
+00
+20
+20
+4d
+17
+59
+00
+03
+02
+60
+01
+c4
+dc
+58
+00
+00
+01
+e0
+a0
+80
+00
+58
+01
+00
+10
+e0
+a1
+80
+00
+20
+20
+4c
+cd
+70
+09
+bd
+29
+20
+40
+7d
+86
+70
+09
+bd
+47
+20
+40
+4b
+d6
+20
+20
+4d
+01
+68
+00
+c4
+6b
+c0
+0d
+81
+a8
+c0
+0e
+81
+a8
+20
+20
+4c
+2b
+68
+09
+4e
+4e
+60
+09
+44
+6c
+68
+00
+ce
+86
+1f
+e0
+84
+01
+18
+41
+04
+03
+60
+08
+ce
+86
+1f
+ef
+fe
+07
+d8
+c0
+4e
+87
+98
+c0
+8c
+00
+e8
+c3
+80
+00
+60
+03
+c4
+6e
+d8
+40
+00
+0e
+20
+20
+4f
+89
+60
+08
+c4
+66
+28
+20
+06
+02
+24
+20
+81
+ba
+18
+40
+ff
+fc
+60
+01
+44
+67
+68
+08
+83
+79
+20
+40
+01
+bd
+20
+20
+4f
+92
+68
+00
+ce
+a5
+c0
+00
+81
+c0
+20
+20
+4b
+d0
+58
+00
+00
+00
+20
+60
+00
+00
+1a
+62
+7e
+00
+c0
+00
+01
+c8
+c0
+01
+01
+cb
+c0
+01
+81
+cf
+c0
+05
+01
+d3
+20
+20
+4f
+b9
+70
+41
+31
+00
+70
+4e
+51
+3c
+20
+20
+50
+1f
+20
+40
+50
+33
+58
+00
+00
+00
+60
+04
+45
+44
+20
+60
+00
+00
+20
+40
+50
+39
+68
+00
+c5
+6a
+c1
+01
+00
+00
+20
+20
+64
+18
+70
+09
+bd
+2b
+20
+20
+4b
+d6
+e8
+c0
+80
+00
+c0
+00
+81
+d8
+20
+20
+4f
+fe
+70
+4e
+a5
+01
+70
+4e
+20
+03
+20
+20
+50
+69
+e8
+c1
+80
+00
+60
+01
+83
+9a
+c0
+09
+01
+df
+20
+20
+50
+11
+70
+41
+31
+01
+20
+40
+01
+e5
+20
+40
+51
+25
+24
+62
+80
+00
+70
+09
+bd
+13
+20
+20
+4b
+d6
+68
+00
+83
+03
+1f
+e0
+ff
+f9
+1f
+e2
+72
+00
+1f
+22
+24
+00
+20
+20
+51
+35
+68
+00
+c3
+ff
+20
+7a
+00
+00
+d8
+e0
+00
+01
+20
+40
+7e
+e2
+24
+7a
+00
+00
+78
+54
+fc
+00
+78
+28
+7c
+00
+20
+40
+4b
+1e
+20
+40
+49
+d4
+20
+40
+4a
+8a
+24
+36
+81
+fc
+68
+00
+80
+03
+1f
+e0
+fe
+01
+60
+00
+80
+03
+68
+00
+83
+02
+1f
+e1
+7e
+0f
+c0
+01
+82
+06
+c0
+02
+d1
+af
+68
+00
+80
+16
+c0
+93
+d1
+7d
+18
+0a
+7e
+00
+d8
+40
+01
+ff
+98
+41
+7e
+00
+1f
+e0
+fe
+fa
+1f
+e0
+ff
+ff
+20
+00
+00
+26
+24
+3a
+02
+02
+20
+20
+51
+96
+20
+40
+4a
+c5
+20
+20
+01
+fc
+68
+02
+45
+96
+d8
+40
+ea
+60
+98
+40
+fe
+00
+60
+02
+45
+96
+20
+20
+51
+a9
+78
+55
+fc
+00
+20
+37
+02
+10
+24
+36
+82
+1f
+20
+40
+3c
+b7
+68
+01
+41
+61
+60
+01
+03
+70
+68
+00
+83
+02
+2f
+e0
+06
+01
+24
+20
+bc
+cb
+68
+00
+c4
+65
+2f
+e0
+06
+01
+24
+20
+bc
+cb
+20
+40
+4b
+d0
+24
+3a
+3c
+cb
+68
+00
+ce
+62
+1f
+e6
+7c
+01
+24
+21
+3c
+cb
+20
+20
+52
+97
+68
+09
+41
+61
+68
+01
+4e
+60
+98
+40
+84
+00
+18
+43
+04
+00
+68
+01
+03
+70
+98
+40
+fe
+00
+60
+01
+03
+70
+20
+20
+3c
+c3
+c5
+15
+62
+3d
+20
+20
+62
+50
+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
+1a
+22
+7e
+00
+20
+7a
+00
+00
+18
+40
+85
+60
+18
+40
+85
+60
+79
+3f
+84
+1c
+60
+0a
+47
+03
+1f
+e2
+04
+00
+da
+20
+46
+f0
+20
+40
+7f
+a6
+24
+7a
+00
+00
+18
+42
+7e
+00
+20
+20
+7d
+7d
+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
+11
+82
+49
+c0
+12
+02
+4d
+c0
+12
+82
+51
+c0
+06
+82
+53
+c0
+13
+82
+60
+20
+20
+7d
+b3
+68
+00
+c9
+c3
+60
+00
+c2
+80
+70
+49
+38
+ff
+20
+20
+06
+70
+68
+00
+c9
+c3
+60
+00
+c2
+80
+79
+3f
+80
+26
+20
+20
+49
+7d
+70
+42
+80
+14
+20
+20
+06
+41
+79
+3f
+80
+26
+70
+41
+31
+00
+18
+0a
+7e
+00
+60
+00
+c5
+3e
+70
+4e
+53
+00
+68
+09
+4e
+4e
+60
+09
+44
+f8
+20
+40
+52
+a0
+da
+40
+00
+05
+20
+40
+02
+6a
+1a
+42
+7e
+00
+e0
+c0
+80
+00
+20
+20
+7e
+07
+79
+3f
+80
+26
+70
+41
+31
+00
+70
+4e
+53
+01
+68
+09
+4e
+4e
+20
+40
+4f
+6a
+1a
+22
+0a
+00
+58
+00
+00
+01
+e0
+a0
+80
+00
+da
+40
+00
+04
+20
+20
+02
+5c
+da
+20
+44
+01
+ea
+20
+80
+00
+20
+7a
+00
+00
+98
+c0
+a2
+00
+e8
+c0
+80
+00
+c1
+00
+80
+00
+20
+20
+02
+6b
+20
+40
+58
+c5
+24
+3a
+7d
+e5
+68
+00
+89
+bd
+c5
+84
+fd
+e0
+c0
+0f
+82
+96
+20
+20
+7d
+d0
+70
+0b
+2a
+03
+20
+40
+00
+b4
+70
+4e
+45
+5a
+20
+40
+3c
+fc
+68
+12
+01
+38
+79
+3f
+fe
+0f
+60
+12
+00
+4c
+20
+40
+3c
+f4
+d8
+5f
+ff
+ff
+20
+20
+3c
+11
+68
+0a
+48
+9e
+1c
+42
+7e
+00
+98
+46
+7e
+00
+d8
+40
+06
+40
+98
+46
+fc
+00
+20
+40
+7f
+53
+18
+07
+fe
+00
+20
+7a
+00
+00
+1c
+42
+04
+00
+60
+0a
+48
+9e
+68
+09
+48
+98
+18
+50
+84
+00
+98
+40
+fe
+00
+1f
+f0
+fe
+00
+60
+01
+48
+98
+1f
+f0
+fe
+00
+1f
+e1
+7e
+03
+c1
+80
+00
+00
+20
+40
+02
+a9
+24
+76
+00
+00
+68
+00
+c2
+cf
+20
+60
+00
+00
+68
+10
+80
+53
+79
+20
+7e
+07
+60
+10
+80
+53
+68
+10
+89
+73
+1f
+e1
+fe
+30
+60
+10
+89
+73
+70
+89
+06
+7c
+70
+89
+72
+aa
+20
+00
+13
+88
+68
+19
+01
+50
+68
+10
+80
+53
+79
+3f
+fe
+07
+60
+10
+80
+53
+18
+50
+84
+00
+60
+09
+42
+d1
+20
+60
+00
+00
+78
+36
+7c
+00
+20
+60
+00
+00
+78
+56
+7c
+00
+20
+40
+4b
+d0
+20
+5a
+02
+a7
+68
+00
+c9
+54
+24
+5a
+02
+a7
+20
+60
+00
+00
+70
+4e
+a3
+01
+20
+40
+02
+b3
+70
+4e
+a3
+00
+20
+60
+00
+00
+20
+40
+00
+af
+20
+74
+00
+00
+1f
+f0
+fe
+00
+1f
+e2
+0c
+00
+20
+40
+02
+d9
+60
+00
+c8
+97
+c0
+00
+82
+c4
+c0
+03
+02
+f5
+1f
+e2
+04
+00
+18
+c2
+22
+00
+68
+00
+c0
+40
+c3
+00
+02
+ce
+1a
+22
+0c
+00
+c6
+84
+80
+00
+18
+42
+7e
+00
+c0
+02
+83
+0c
+20
+20
+3b
+31
+20
+40
+02
+d9
+20
+40
+02
+d9
+60
+00
+89
+bd
+20
+40
+02
+c9
+20
+20
+7d
+90
+20
+40
+02
+dc
+18
+c2
+04
+00
+18
+50
+84
+00
+60
+09
+47
+c4
+20
+60
+00
+00
+1a
+22
+0c
+00
+d8
+a0
+00
+f5
+20
+20
+02
+d1
+20
+40
+02
+d9
+1f
+e2
+72
+00
+20
+40
+02
+d5
+20
+20
+02
+c9
+20
+40
+02
+d9
+e0
+a0
+80
+00
+c2
+00
+02
+d5
+20
+60
+00
+00
+20
+40
+02
+dc
+e8
+c0
+80
+00
+20
+60
+00
+00
+58
+00
+47
+c4
+98
+c6
+7c
+00
+24
+62
+80
+00
+d8
+c0
+47
+2e
+20
+60
+00
+00
+df
+20
+00
+03
+d8
+c0
+48
+94
+18
+c2
+22
+00
+68
+01
+48
+2e
+1f
+f0
+fe
+00
+1f
+e2
+0a
+00
+1a
+22
+0c
+00
+e8
+c0
+80
+00
+e0
+a0
+80
+00
+20
+40
+02
+f0
+c2
+00
+02
+e8
+18
+a2
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+48
+2e
+20
+60
+00
+00
+58
+00
+48
+2c
+98
+a6
+7c
+00
+24
+62
+80
+00
+d8
+a0
+47
+c8
+20
+60
+00
+00
+c6
+93
+80
+00
+20
+40
+02
+d9
+1f
+e2
+72
+00
+60
+00
+c9
+70
+20
+20
+02
+d3
+58
+00
+00
+00
+60
+01
+ce
+85
+20
+60
+00
+00
+c6
+13
+00
+00
+68
+00
+c5
+95
+20
+7a
+00
+00
+20
+40
+00
+af
+20
+74
+00
+00
+1f
+f0
+fe
+00
+1f
+e2
+0c
+00
+20
+40
+02
+d9
+60
+00
+c8
+97
+18
+c2
+22
+00
+c0
+82
+82
+ce
+18
+c2
+24
+00
+20
+40
+4b
+d4
+24
+7a
+00
+00
+20
+20
+03
+11
+18
+c2
+24
+00
+68
+00
+ce
+a3
+20
+7a
+00
+00
+20
+40
+4b
+d0
+24
+7a
+00
+00
+68
+09
+4e
+4e
+20
+40
+4f
+6a
+c4
+00
+00
+00
+68
+00
+c5
+95
+c1
+00
+00
+00
+68
+00
+ce
+83
+1f
+e0
+fe
+01
+60
+00
+ce
+83
+68
+00
+ce
+85
+1f
+e0
+84
+01
+18
+41
+04
+03
+60
+08
+ce
+85
+1f
+ef
+fe
+07
+d8
+a0
+4e
+87
+98
+a0
+8a
+00
+1a
+42
+0c
+00
+20
+40
+02
+d9
+1f
+e2
+72
+00
+20
+40
+02
+d3
+20
+40
+03
+28
+20
+76
+00
+00
+70
+09
+bd
+1b
+20
+20
+4b
+d6
+78
+56
+7c
+00
+68
+00
+ce
+a4
+c1
+02
+80
+00
+78
+36
+7c
+00
+1f
+e0
+fe
+01
+60
+00
+ce
+a4
+1f
+e6
+7c
+01
+24
+61
+00
+00
+70
+48
+96
+40
+20
+20
+02
+e1
+58
+00
+47
+2e
+1f
+f0
+fe
+00
+60
+01
+47
+c4
+60
+01
+47
+c6
+58
+00
+47
+c8
+1f
+f0
+fe
+00
+60
+01
+48
+2c
+60
+01
+48
+2e
+20
+60
+00
+00
+d8
+40
+00
+08
+20
+40
+64
+e8
+d8
+40
+00
+05
+20
+40
+64
+e8
+20
+40
+52
+4a
+70
+0b
+2a
+00
+70
+01
+6c
+06
+20
+40
+3e
+7f
+58
+00
+03
+a3
+60
+01
+42
+96
+58
+00
+02
+af
+60
+01
+42
+90
+58
+00
+03
+9c
+60
+01
+42
+8c
+24
+55
+83
+32
+20
+55
+83
+73
+20
+40
+3d
+3e
+68
+00
+ce
+45
+c0
+2d
+03
+87
+20
+35
+83
+85
+68
+00
+c2
+80
+60
+00
+c9
+c3
+20
+40
+05
+d9
+68
+01
+4e
+41
+1f
+f0
+fe
+00
+60
+01
+4e
+41
+68
+01
+4e
+43
+1f
+f0
+fe
+00
+60
+01
+4e
+43
+20
+40
+03
+92
+20
+40
+03
+bd
+68
+04
+09
+c6
+24
+3a
+03
+60
+68
+01
+4a
+d4
+1f
+f0
+fe
+00
+20
+3a
+03
+60
+60
+01
+4e
+43
+70
+48
+96
+2f
+68
+00
+ce
+78
+24
+3a
+03
+68
+20
+40
+02
+95
+20
+40
+02
+e1
+20
+40
+02
+fd
+70
+82
+80
+03
+20
+60
+00
+00
+20
+55
+bc
+29
+d9
+60
+0d
+00
+34
+73
+02
+00
+1c
+42
+7e
+00
+60
+01
+ce
+7a
+68
+01
+47
+0b
+c3
+85
+80
+00
+c3
+83
+00
+00
+20
+40
+3d
+60
+20
+40
+04
+c8
+20
+20
+03
+6d
+1c
+e2
+7e
+00
+c5
+93
+03
+7d
+20
+3a
+03
+78
+70
+49
+b9
+bb
+20
+60
+00
+00
+70
+49
+b9
+00
+68
+00
+c9
+b7
+20
+7a
+00
+00
+70
+49
+b7
+00
+20
+20
+03
+76
+20
+3a
+03
+80
+70
+49
+c1
+02
+20
+60
+00
+00
+68
+00
+c9
+c2
+20
+7a
+00
+00
+70
+49
+c2
+00
+70
+49
+c1
+01
+20
+60
+00
+00
+70
+48
+96
+3c
+20
+20
+03
+61
+1c
+e2
+7e
+00
+20
+3a
+02
+79
+20
+40
+53
+0d
+20
+40
+42
+eb
+58
+00
+00
+00
+60
+04
+40
+40
+60
+01
+47
+0b
+60
+01
+48
+98
+60
+01
+48
+9a
+70
+48
+96
+3d
+20
+20
+03
+61
+20
+40
+62
+c4
+58
+00
+07
+e2
+da
+20
+09
+c6
+d8
+40
+00
+0c
+20
+40
+63
+0d
+20
+40
+62
+c7
+68
+04
+09
+c6
+20
+7a
+00
+00
+68
+00
+c2
+cf
+20
+60
+00
+00
+78
+34
+7c
+00
+68
+12
+01
+38
+79
+34
+7e
+1a
+60
+12
+00
+4c
+20
+40
+3c
+f4
+70
+00
+9f
+01
+20
+60
+00
+00
+1a
+62
+7e
+00
+1f
+e1
+7e
+f0
+c1
+28
+00
+00
+1a
+62
+7e
+00
+60
+00
+c8
+96
+20
+20
+02
+e1
+70
+49
+27
+00
+70
+49
+32
+4e
+68
+02
+49
+34
+60
+02
+49
+50
+20
+20
+04
+66
+68
+08
+c9
+33
+20
+40
+03
+b4
+18
+40
+84
+01
+18
+41
+04
+03
+60
+08
+c9
+33
+20
+60
+00
+00
+68
+00
+c9
+50
+1f
+e1
+7e
+03
+1f
+ef
+a2
+04
+58
+00
+49
+39
+9a
+20
+fe
+00
+98
+40
+8c
+00
+e8
+c0
+80
+00
+60
+00
+c9
+32
+20
+60
+00
+00
+68
+02
+09
+c6
+60
+02
+49
+60
+24
+7a
+00
+00
+68
+02
+41
+40
+60
+02
+49
+60
+20
+60
+00
+00
+70
+49
+b0
+01
+70
+49
+b2
+00
+68
+00
+c9
+29
+1f
+e1
+7e
+07
+60
+00
+c9
+29
+20
+60
+00
+00
+68
+00
+c9
+29
+79
+20
+7e
+04
+60
+00
+c9
+29
+60
+00
+c8
+e4
+20
+60
+00
+00
+68
+00
+c9
+29
+79
+3f
+fe
+04
+60
+00
+c9
+29
+20
+60
+00
+00
+20
+40
+05
+e0
+68
+00
+c9
+b4
+c0
+00
+83
+d7
+c0
+01
+03
+db
+20
+60
+00
+00
+70
+49
+b2
+02
+70
+49
+b3
+00
+70
+49
+b0
+00
+20
+20
+03
+c5
+70
+49
+b1
+00
+20
+20
+03
+d8
+68
+01
+49
+2e
+1f
+e0
+fe
+01
+60
+01
+49
+2e
+c2
+83
+05
+45
+68
+00
+c9
+b1
+c0
+00
+83
+e6
+70
+49
+b1
+01
+68
+00
+c9
+b1
+c0
+80
+83
+c5
+68
+00
+c9
+b5
+1f
+e0
+fe
+01
+60
+00
+c9
+b5
+c0
+02
+03
+ed
+20
+40
+03
+ae
+70
+49
+6e
+02
+20
+20
+05
+04
+20
+40
+05
+e0
+70
+49
+b5
+00
+20
+20
+03
+c5
+70
+49
+b2
+02
+70
+49
+b0
+01
+70
+49
+b1
+00
+20
+20
+03
+c5
+68
+00
+c9
+b4
+c0
+01
+83
+f1
+68
+00
+c9
+29
+2f
+ec
+00
+04
+20
+20
+83
+c3
+68
+00
+c9
+b4
+c0
+00
+83
+f0
+c0
+01
+03
+f1
+20
+60
+00
+00
+68
+00
+c9
+38
+c1
+ff
+80
+00
+20
+40
+04
+02
+24
+56
+04
+0a
+20
+60
+00
+00
+78
+56
+7c
+00
+68
+00
+c9
+b0
+c1
+80
+80
+00
+68
+00
+c9
+b2
+c1
+80
+00
+00
+70
+49
+b4
+01
+70
+49
+6e
+04
+20
+20
+02
+a7
+68
+00
+c9
+b2
+20
+3a
+04
+12
+1f
+e0
+ff
+ff
+60
+00
+c9
+b2
+70
+49
+b4
+02
+20
+40
+03
+ae
+70
+49
+6e
+04
+20
+60
+00
+00
+70
+49
+b4
+03
+68
+00
+c9
+b1
+24
+3a
+03
+e4
+20
+40
+03
+ae
+70
+49
+6e
+02
+20
+60
+00
+00
+c6
+93
+00
+00
+79
+20
+00
+27
+68
+0a
+49
+49
+1c
+42
+7e
+00
+98
+46
+7c
+00
+24
+41
+04
+31
+1f
+e2
+24
+00
+68
+02
+49
+49
+68
+08
+c9
+4d
+98
+40
+84
+00
+1a
+42
+7e
+00
+98
+46
+7c
+00
+24
+21
+04
+2f
+79
+3f
+fe
+1c
+60
+02
+49
+49
+20
+40
+04
+34
+20
+40
+04
+41
+20
+34
+04
+96
+20
+40
+03
+fd
+20
+40
+05
+04
+68
+00
+c9
+38
+1f
+e6
+7c
+ff
+20
+42
+85
+ea
+79
+3f
+80
+27
+20
+60
+00
+00
+20
+62
+80
+00
+79
+20
+7e
+1c
+20
+60
+00
+00
+68
+00
+c9
+64
+1f
+e0
+fe
+01
+60
+00
+c9
+64
+c0
+02
+04
+3a
+c0
+02
+84
+3d
+20
+60
+00
+00
+68
+00
+c9
+4f
+60
+00
+c9
+4d
+20
+60
+00
+00
+70
+49
+64
+00
+68
+00
+c9
+4e
+60
+00
+c9
+4d
+20
+60
+00
+00
+68
+00
+c9
+38
+c0
+ff
+86
+45
+20
+40
+02
+b3
+20
+34
+04
+4f
+68
+00
+c8
+97
+c0
+83
+64
+c0
+20
+40
+04
+52
+20
+40
+04
+73
+70
+49
+2d
+01
+20
+60
+00
+00
+70
+4e
+79
+00
+70
+4e
+78
+00
+70
+49
+ba
+0a
+20
+60
+00
+00
+68
+00
+c9
+2d
+c0
+00
+b1
+d4
+20
+60
+00
+00
+68
+00
+c9
+b9
+60
+00
+c9
+b8
+68
+00
+c9
+70
+1f
+e2
+22
+00
+da
+40
+49
+71
+70
+49
+54
+00
+20
+40
+03
+c5
+60
+00
+c9
+90
+1a
+20
+84
+01
+d8
+a0
+49
+91
+1a
+22
+72
+00
+1a
+42
+0c
+00
+20
+40
+7e
+cd
+da
+20
+49
+90
+c6
+93
+80
+00
+60
+08
+c9
+28
+18
+42
+72
+00
+d8
+a0
+48
+c4
+1a
+22
+0c
+00
+20
+20
+7e
+cd
+da
+20
+00
+00
+df
+20
+00
+04
+d8
+c0
+49
+50
+e8
+c0
+80
+00
+9a
+20
+a2
+00
+c2
+00
+04
+69
+1a
+22
+7e
+00
+60
+01
+49
+bb
+68
+00
+c9
+bb
+68
+08
+c9
+bc
+98
+40
+fe
+00
+60
+00
+c9
+bd
+20
+60
+00
+00
+68
+00
+c9
+28
+1f
+e0
+fe
+02
+60
+00
+c9
+2a
+68
+00
+c9
+29
+60
+00
+c8
+e4
+68
+00
+c9
+28
+1f
+e9
+fe
+00
+68
+08
+c9
+27
+18
+41
+04
+03
+18
+43
+84
+00
+98
+41
+fe
+00
+68
+08
+c9
+65
+98
+40
+fe
+00
+e0
+a0
+80
+00
+68
+00
+c9
+28
+98
+00
+72
+00
+d8
+c0
+48
+c4
+20
+20
+7e
+cd
+70
+49
+54
+01
+70
+49
+b1
+00
+20
+40
+03
+c5
+60
+00
+c9
+90
+58
+00
+00
+00
+60
+03
+c9
+91
+68
+02
+49
+60
+60
+02
+49
+98
+d8
+40
+00
+0c
+da
+20
+49
+90
+20
+40
+04
+60
+68
+00
+c9
+29
+79
+20
+7e
+03
+60
+00
+c9
+29
+20
+40
+04
+73
+20
+40
+04
+49
+20
+20
+04
+2b
+20
+60
+00
+00
+68
+00
+c9
+54
+20
+3a
+04
+85
+68
+08
+c9
+b8
+18
+40
+84
+01
+60
+08
+c9
+b8
+68
+00
+c9
+b9
+98
+46
+7c
+00
+20
+61
+00
+00
+70
+49
+b8
+00
+20
+40
+00
+a4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+68
+00
+c9
+ba
+24
+7a
+00
+00
+70
+4e
+80
+00
+20
+40
+3b
+e2
+68
+01
+c2
+0f
+20
+7a
+00
+00
+68
+04
+49
+58
+20
+40
+7f
+16
+60
+0a
+41
+fb
+20
+20
+3c
+11
+68
+00
+c2
+b8
+2f
+ec
+00
+02
+20
+20
+84
+b8
+68
+00
+ce
+79
+c1
+02
+80
+00
+1f
+e0
+fe
+01
+60
+00
+ce
+79
+c1
+82
+80
+00
+70
+4e
+78
+01
+20
+60
+00
+00
+68
+00
+ce
+79
+c1
+0a
+00
+00
+1f
+e0
+fe
+01
+60
+00
+ce
+79
+c1
+8a
+00
+00
+68
+00
+c2
+b8
+79
+20
+7e
+02
+60
+00
+c2
+b8
+20
+20
+04
+b6
+68
+00
+ce
+79
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+79
+24
+7a
+00
+00
+70
+4e
+78
+00
+20
+60
+00
+00
+79
+20
+00
+27
+20
+40
+02
+b3
+20
+34
+04
+cd
+68
+00
+c8
+97
+c0
+03
+04
+dc
+68
+00
+ce
+7d
+c0
+00
+84
+d4
+c0
+01
+04
+96
+c0
+01
+84
+d2
+20
+60
+00
+00
+70
+4e
+79
+00
+70
+4e
+78
+00
+20
+40
+04
+ae
+70
+4e
+7d
+00
+df
+20
+00
+07
+1f
+22
+7e
+00
+60
+00
+c9
+70
+d8
+c0
+4e
+21
+20
+40
+7e
+cd
+78
+54
+7c
+00
+20
+40
+04
+47
+20
+40
+03
+fd
+20
+40
+05
+04
+20
+40
+05
+ea
+20
+40
+3b
+e2
+68
+01
+c2
+0f
+20
+7a
+00
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+68
+00
+ce
+80
+c0
+00
+84
+e9
+58
+00
+00
+00
+60
+04
+00
+a0
+20
+40
+04
+f9
+d9
+60
+0d
+00
+34
+73
+02
+00
+68
+09
+ce
+7a
+1c
+42
+7e
+00
+98
+46
+7e
+00
+1f
+e1
+7e
+ff
+d8
+40
+0e
+a6
+98
+4f
+84
+00
+68
+02
+4e
+74
+98
+46
+7e
+00
+20
+21
+3c
+7f
+68
+00
+c2
+18
+1f
+e0
+fe
+01
+60
+02
+41
+fb
+20
+20
+3c
+86
+58
+01
+3c
+68
+60
+02
+4e
+74
+68
+00
+ce
+7e
+1f
+e0
+fe
+01
+c0
+82
+84
+ff
+58
+00
+00
+00
+60
+00
+ce
+7e
+c4
+00
+00
+00
+58
+01
+30
+b0
+60
+02
+4e
+74
+20
+60
+00
+00
+70
+4e
+a7
+01
+70
+49
+31
+00
+d9
+60
+0d
+00
+34
+73
+02
+00
+20
+40
+05
+1e
+68
+00
+c9
+65
+c1
+00
+80
+00
+24
+2c
+05
+2d
+24
+37
+85
+2d
+70
+4e
+a9
+01
+20
+40
+05
+4c
+20
+40
+05
+dc
+68
+00
+c9
+27
+1f
+e0
+fe
+01
+60
+00
+c9
+27
+68
+00
+c9
+38
+c0
+ff
+85
+1c
+20
+40
+03
+f4
+58
+00
+00
+00
+60
+01
+49
+2e
+60
+00
+c9
+30
+60
+00
+c9
+b3
+70
+49
+2d
+00
+20
+60
+00
+00
+20
+40
+05
+d9
+20
+20
+06
+60
+78
+57
+fc
+00
+20
+40
+05
+6c
+68
+00
+c9
+65
+c0
+00
+85
+2b
+18
+00
+2a
+00
+68
+02
+49
+50
+98
+00
+12
+00
+68
+08
+80
+17
+20
+40
+39
+b9
+20
+40
+39
+bf
+20
+40
+05
+96
+20
+57
+85
+d5
+20
+60
+00
+00
+20
+40
+05
+d5
+20
+20
+05
+10
+68
+00
+c9
+30
+1f
+e0
+fe
+01
+60
+00
+c9
+30
+68
+00
+c9
+38
+c0
+ff
+85
+41
+68
+08
+c9
+31
+18
+40
+84
+01
+60
+08
+c9
+31
+68
+00
+c9
+6e
+98
+46
+7e
+00
+24
+3a
+05
+06
+68
+00
+c9
+b4
+c0
+01
+83
+dd
+68
+00
+c9
+b3
+1f
+e0
+fe
+01
+60
+00
+c9
+b3
+c0
+01
+03
+d2
+20
+40
+03
+c9
+70
+49
+6e
+01
+20
+20
+05
+04
+68
+00
+c9
+30
+c1
+ff
+80
+00
+70
+49
+30
+00
+20
+20
+05
+4a
+58
+00
+00
+00
+60
+01
+49
+2e
+70
+41
+31
+00
+70
+4e
+79
+00
+70
+4e
+78
+00
+70
+48
+96
+3b
+20
+20
+02
+e1
+20
+40
+05
+53
+68
+00
+c9
+26
+20
+7a
+00
+00
+98
+00
+72
+00
+d8
+c0
+48
+a4
+d8
+a0
+49
+06
+20
+20
+7e
+cd
+68
+00
+c8
+a3
+1f
+e9
+7e
+00
+60
+00
+c9
+26
+1f
+e0
+fe
+01
+d8
+c0
+48
+a3
+98
+c0
+8c
+00
+e8
+c1
+80
+00
+60
+01
+c9
+66
+68
+00
+c8
+a3
+1f
+e3
+7e
+00
+1f
+e1
+7e
+03
+60
+00
+c9
+6c
+20
+60
+00
+00
+78
+44
+fc
+00
+78
+43
+fc
+00
+58
+55
+55
+55
+98
+00
+1e
+00
+68
+00
+c9
+32
+1f
+ed
+84
+00
+79
+20
+04
+01
+18
+43
+1c
+00
+20
+60
+00
+00
+20
+40
+39
+b1
+68
+08
+c9
+32
+20
+20
+39
+c9
+20
+40
+49
+76
+68
+02
+49
+50
+98
+00
+12
+00
+20
+40
+05
+60
+20
+40
+05
+69
+79
+20
+2a
+00
+78
+2e
+fc
+00
+78
+30
+7c
+00
+78
+50
+fc
+00
+19
+31
+7e
+00
+1f
+ec
+fe
+00
+1f
+f1
+fe
+00
+08
+00
+86
+28
+78
+4e
+fc
+00
+78
+2d
+fc
+00
+78
+23
+fc
+00
+78
+24
+fc
+00
+68
+00
+c9
+bd
+08
+00
+86
+08
+68
+00
+c9
+2a
+98
+00
+72
+00
+d8
+c0
+48
+e4
+e8
+c0
+80
+00
+08
+00
+86
+08
+c2
+00
+05
+82
+78
+24
+7c
+00
+08
+00
+86
+18
+78
+44
+7c
+00
+37
+d3
+82
+00
+20
+00
+00
+64
+78
+4e
+fc
+00
+78
+4d
+fc
+00
+20
+60
+00
+00
+20
+40
+49
+76
+68
+02
+49
+50
+98
+00
+12
+00
+20
+40
+39
+b1
+68
+08
+c9
+32
+20
+40
+39
+b9
+58
+00
+05
+00
+20
+40
+3b
+35
+20
+40
+39
+bf
+20
+40
+05
+60
+78
+57
+fc
+00
+78
+26
+fc
+00
+78
+30
+fc
+00
+78
+50
+7c
+00
+78
+28
+7c
+00
+68
+01
+49
+2b
+98
+00
+36
+00
+37
+c1
+84
+00
+24
+2c
+05
+d8
+78
+46
+fc
+00
+78
+25
+fc
+00
+78
+23
+fc
+00
+78
+24
+fc
+00
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+c9
+be
+20
+40
+04
+66
+68
+08
+c9
+be
+98
+46
+7c
+00
+24
+22
+85
+d5
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+c8
+a2
+68
+00
+c9
+6f
+1f
+e6
+7c
+02
+20
+22
+85
+b5
+68
+00
+c8
+a2
+68
+08
+c9
+29
+a8
+40
+0e
+00
+24
+20
+85
+d5
+09
+80
+00
+08
+19
+89
+7e
+00
+e0
+a0
+80
+00
+1f
+e9
+7e
+00
+1f
+e1
+72
+1f
+20
+22
+85
+bf
+09
+80
+00
+08
+19
+89
+7e
+00
+e0
+a0
+80
+00
+c2
+00
+05
+bb
+18
+a2
+22
+00
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+c9
+cf
+1a
+22
+0a
+00
+09
+80
+00
+18
+78
+28
+7c
+00
+db
+60
+06
+64
+1f
+ef
+7e
+00
+1f
+f1
+7e
+00
+e0
+a1
+80
+00
+78
+45
+fc
+00
+20
+23
+05
+d5
+78
+37
+fc
+00
+68
+00
+80
+17
+1f
+e0
+a2
+00
+20
+40
+3a
+13
+78
+46
+fc
+00
+20
+40
+39
+b1
+68
+00
+c9
+cf
+1f
+e2
+22
+00
+20
+20
+06
+28
+78
+4d
+fc
+00
+78
+45
+fc
+00
+20
+20
+36
+c6
+20
+20
+05
+d5
+70
+49
+c4
+01
+70
+49
+c5
+00
+20
+60
+00
+00
+68
+00
+c9
+c5
+1f
+e0
+fe
+01
+60
+00
+c9
+c5
+20
+60
+00
+00
+68
+00
+c9
+c5
+1f
+e6
+7c
+01
+24
+41
+05
+e8
+68
+00
+c9
+c5
+c1
+00
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+c9
+c5
+20
+60
+00
+00
+70
+49
+c5
+02
+20
+60
+00
+00
+da
+20
+49
+c6
+20
+40
+06
+31
+60
+08
+c9
+d0
+28
+0f
+fe
+26
+20
+40
+85
+f8
+24
+40
+85
+fc
+98
+46
+7c
+00
+24
+21
+06
+15
+68
+00
+c9
+c5
+1f
+e6
+7c
+01
+24
+21
+06
+00
+68
+00
+c9
+c5
+c0
+00
+06
+15
+20
+60
+00
+00
+58
+00
+00
+82
+20
+60
+00
+00
+58
+00
+00
+77
+20
+60
+00
+00
+58
+00
+00
+80
+20
+60
+00
+00
+58
+00
+00
+75
+20
+60
+00
+00
+68
+00
+c9
+c5
+c1
+a3
+00
+00
+70
+49
+c5
+00
+68
+08
+c9
+d0
+28
+0f
+fe
+26
+20
+40
+85
+fa
+24
+40
+85
+fe
+98
+46
+7c
+00
+24
+61
+00
+00
+68
+00
+c9
+c4
+c0
+00
+06
+21
+1f
+e0
+ff
+ff
+60
+00
+c9
+c4
+c0
+00
+06
+21
+70
+89
+55
+d0
+70
+89
+56
+e0
+70
+89
+57
+4c
+70
+89
+58
+6c
+70
+89
+59
+50
+70
+42
+80
+01
+20
+60
+00
+00
+68
+00
+c9
+c4
+c0
+01
+06
+1a
+1f
+e0
+fe
+01
+60
+00
+c9
+c4
+c0
+00
+86
+0e
+70
+89
+55
+d0
+70
+89
+56
+e0
+70
+89
+57
+4c
+70
+89
+58
+3c
+70
+89
+59
+10
+70
+42
+80
+04
+20
+60
+00
+00
+70
+89
+55
+d0
+70
+89
+56
+c0
+70
+89
+57
+4c
+70
+89
+58
+6c
+70
+89
+59
+50
+70
+42
+80
+10
+20
+60
+00
+00
+68
+08
+c9
+ce
+58
+00
+49
+c6
+98
+40
+8a
+00
+1a
+22
+7e
+00
+e0
+a0
+80
+00
+18
+40
+84
+01
+18
+41
+04
+07
+60
+08
+c9
+ce
+20
+60
+00
+00
+d8
+40
+00
+00
+df
+20
+00
+08
+1a
+22
+0c
+00
+e8
+c0
+80
+00
+98
+40
+84
+00
+c2
+00
+06
+34
+18
+49
+7e
+00
+1f
+e2
+04
+00
+c6
+93
+00
+00
+1f
+e6
+fc
+0a
+20
+40
+7f
+53
+18
+07
+fe
+00
+1f
+f2
+7e
+00
+18
+07
+04
+00
+98
+41
+84
+00
+20
+60
+00
+00
+79
+20
+00
+26
+20
+40
+03
+a9
+70
+49
+38
+01
+20
+60
+00
+00
+68
+00
+c9
+2d
+c0
+00
+b1
+d4
+68
+00
+c9
+38
+c0
+00
+86
+4c
+c0
+01
+06
+4f
+c0
+01
+86
+52
+20
+20
+3b
+31
+70
+49
+38
+11
+70
+49
+90
+aa
+20
+20
+06
+54
+70
+49
+38
+12
+70
+49
+90
+55
+20
+20
+06
+54
+70
+49
+38
+13
+70
+49
+90
+22
+68
+00
+c9
+29
+1f
+e1
+7e
+07
+60
+00
+c9
+91
+68
+02
+49
+60
+60
+02
+49
+92
+70
+49
+96
+00
+da
+20
+49
+90
+d8
+40
+00
+07
+20
+40
+04
+60
+20
+40
+04
+73
+20
+40
+04
+49
+20
+20
+31
+d4
+68
+00
+c9
+38
+c1
+7f
+80
+00
+c0
+08
+86
+66
+c0
+09
+06
+68
+c0
+09
+86
+6a
+20
+60
+00
+00
+70
+49
+38
+02
+20
+20
+05
+16
+70
+49
+38
+03
+20
+20
+05
+16
+70
+49
+38
+ff
+70
+48
+96
+39
+20
+40
+02
+e1
+68
+02
+49
+08
+20
+40
+03
+ac
+20
+20
+05
+16
+79
+3f
+80
+26
+20
+40
+03
+ae
+68
+02
+49
+50
+20
+40
+04
+66
+68
+00
+c9
+38
+c1
+ff
+80
+00
+20
+40
+06
+86
+58
+00
+00
+00
+60
+01
+49
+56
+20
+00
+07
+d0
+68
+00
+c9
+56
+c0
+7f
+85
+4a
+20
+40
+05
+1e
+24
+2c
+06
+90
+24
+37
+86
+90
+70
+41
+31
+01
+79
+20
+00
+26
+58
+00
+00
+00
+60
+01
+49
+56
+70
+09
+bd
+3a
+20
+40
+7d
+86
+20
+20
+7e
+0d
+79
+20
+00
+27
+70
+49
+90
+ff
+68
+00
+c9
+29
+60
+00
+c9
+91
+68
+02
+49
+60
+60
+02
+49
+92
+d8
+40
+00
+06
+da
+20
+49
+90
+20
+40
+04
+60
+20
+20
+04
+73
+68
+01
+49
+56
+1f
+e0
+fe
+01
+60
+01
+49
+56
+20
+40
+03
+ae
+20
+20
+06
+79
+15
+16
+aa
+55
+3c
+1b
+02
+02
+34
+e7
+09
+f6
+08
+df
+fa
+80
+46
+e7
+09
+f2
+08
+df
+fa
+80
+3e
+88
+82
+8c
+83
+e7
+09
+f0
+a3
+df
+fa
+80
+32
+e3
+09
+f6
+08
+df
+fa
+80
+78
+e3
+09
+f2
+08
+df
+fa
+80
+70
+88
+82
+8c
+83
+e3
+09
+f0
+a3
+df
+fa
+80
+64
+89
+82
+8a
+83
+e0
+a3
+f6
+08
+df
+fa
+80
+58
+89
+82
+8a
+83
+e0
+a3
+f2
+08
+df
+fa
+80
+4c
+80
+d2
+80
+fa
+80
+c6
+80
+d4
+80
+69
+80
+f2
+80
+33
+80
+10
+80
+a6
+80
+ea
+80
+9a
+80
+a8
+80
+da
+80
+e2
+80
+ca
+80
+33
+89
+82
+8a
+83
+ec
+fa
+e4
+93
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+f0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+df
+e9
+de
+e7
+80
+0d
+89
+82
+8a
+83
+e4
+93
+a3
+f6
+08
+df
+f9
+ec
+fa
+a9
+f0
+ed
+fb
+22
+89
+82
+8a
+83
+ec
+fa
+e0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+f0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+df
+ea
+de
+e8
+80
+db
+89
+82
+8a
+83
+e4
+93
+a3
+f2
+08
+df
+f9
+80
+cc
+88
+f0
+ef
+60
+01
+0e
+4e
+60
+c3
+88
+f0
+ed
+24
+02
+b4
+04
+00
+50
+b9
+f5
+82
+eb
+24
+02
+b4
+04
+00
+50
+af
+23
+23
+45
+82
+23
+90
+00
+53
+73
+bb
+01
+06
+89
+82
+8a
+83
+e0
+22
+50
+02
+e7
+22
+bb
+fe
+02
+e3
+22
+89
+82
+8a
+83
+e4
+93
+22
+bb
+01
+0c
+e5
+82
+29
+f5
+82
+e5
+83
+3a
+f5
+83
+e0
+22
+50
+06
+e9
+25
+82
+f8
+e6
+22
+bb
+fe
+06
+e9
+25
+82
+f8
+e2
+22
+e5
+82
+29
+f5
+82
+e5
+83
+3a
+f5
+83
+e4
+93
+22
+bb
+01
+06
+89
+82
+8a
+83
+f0
+22
+50
+02
+f7
+22
+bb
+fe
+01
+f3
+22
+c2
+d5
+ec
+30
+e7
+09
+b2
+d5
+e4
+c3
+9d
+fd
+e4
+9c
+fc
+ee
+30
+e7
+15
+b2
+d5
+e4
+c3
+9f
+ff
+e4
+9e
+fe
+12
+01
+df
+c3
+e4
+9d
+fd
+e4
+9c
+fc
+80
+03
+12
+01
+df
+30
+d5
+07
+c3
+e4
+9f
+ff
+e4
+9e
+fe
+22
+c5
+f0
+f8
+a3
+e0
+28
+f0
+c5
+f0
+f8
+e5
+82
+15
+82
+70
+02
+15
+83
+e0
+38
+f0
+22
+a3
+f8
+e0
+c5
+f0
+25
+f0
+f0
+e5
+82
+15
+82
+70
+02
+15
+83
+e0
+c8
+38
+f0
+e8
+22
+d0
+83
+d0
+82
+f8
+e4
+93
+70
+12
+74
+01
+93
+70
+0d
+a3
+a3
+93
+f8
+74
+01
+93
+f5
+82
+88
+83
+e4
+73
+74
+02
+93
+68
+60
+ef
+a3
+a3
+a3
+80
+df
+8a
+83
+89
+82
+e4
+73
+bc
+00
+0b
+be
+00
+29
+ef
+8d
+f0
+84
+ff
+ad
+f0
+22
+e4
+cc
+f8
+75
+f0
+08
+ef
+2f
+ff
+ee
+33
+fe
+ec
+33
+fc
+ee
+9d
+ec
+98
+40
+05
+fc
+ee
+9d
+fe
+0f
+d5
+f0
+e9
+e4
+ce
+fd
+22
+ed
+f8
+f5
+f0
+ee
+84
+20
+d2
+1c
+fe
+ad
+f0
+75
+f0
+08
+ef
+2f
+ff
+ed
+33
+fd
+40
+07
+98
+50
+06
+d5
+f0
+f2
+22
+c3
+98
+fd
+0f
+d5
+f0
+ea
+22
+78
+7f
+e4
+f6
+d8
+fd
+75
+81
+cf
+02
+02
+7b
+02
+02
+df
+e4
+93
+a3
+f8
+e4
+93
+a3
+40
+03
+f6
+80
+01
+f2
+08
+df
+f4
+80
+29
+e4
+93
+a3
+f8
+54
+07
+24
+0c
+c8
+c3
+33
+c4
+54
+0f
+44
+20
+c8
+83
+40
+04
+f4
+56
+80
+01
+46
+f6
+df
+e4
+80
+0b
+01
+02
+04
+08
+10
+20
+40
+80
+90
+02
+c0
+e4
+7e
+01
+93
+60
+bc
+a3
+ff
+54
+3f
+30
+e5
+09
+54
+1f
+fe
+e4
+93
+a3
+60
+01
+0e
+cf
+54
+c0
+25
+e0
+60
+a8
+40
+b8
+e4
+93
+a3
+fa
+e4
+93
+a3
+f8
+e4
+93
+a3
+c8
+c5
+82
+c8
+ca
+c5
+83
+ca
+f0
+a3
+c8
+c5
+82
+c8
+ca
+c5
+83
+ca
+df
+e9
+de
+e7
+80
+be
+52
+1b
+ab
+ff
+03
+72
+00
+00
+00
+ff
+14
+da
+ff
+15
+ad
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+01
+00
+f1
+ee
+12
+18
+61
+12
+10
+ba
+90
+0b
+2a
+e0
+14
+60
+20
+24
+fe
+70
+ef
+e4
+90
+4e
+f0
+f0
+ff
+ef
+24
+70
+fd
+e4
+34
+80
+8d
+82
+f5
+83
+e4
+f0
+0f
+ef
+b4
+10
+ee
+71
+47
+80
+fe
+90
+4e
+b7
+e0
+70
+06
+90
+4e
+b1
+e0
+60
+04
+71
+3b
+80
+c3
+90
+4e
+ad
+e0
+ff
+64
+01
+60
+09
+ef
+64
+02
+60
+04
+ef
+b4
+07
+04
+71
+47
+80
+ad
+71
+3b
+80
+a9
+80
+a7
+22
+90
+0b
+2b
+74
+01
+f0
+e4
+90
+0b
+2a
+f0
+22
+e4
+90
+0b
+2b
+f0
+90
+0b
+2a
+f0
+7f
+01
+fe
+d3
+ef
+94
+00
+ee
+94
+00
+40
+15
+e4
+fd
+fc
+0d
+bd
+00
+01
+0c
+bc
+04
+f8
+bd
+a6
+f5
+ef
+1f
+70
+01
+1e
+80
+e2
+22
+90
+1b
+bd
+ef
+f0
+e4
+90
+1b
+bf
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+78
+c3
+7c
+1b
+7d
+01
+7b
+ff
+7a
+02
+79
+d6
+fe
+7f
+06
+11
+d3
+90
+1b
+bd
+e0
+31
+b3
+04
+54
+14
+04
+bb
+15
+03
+bb
+2f
+03
+e4
+39
+04
+22
+3a
+03
+fd
+3b
+03
+c5
+3c
+03
+b8
+3d
+04
+34
+40
+00
+00
+04
+d9
+12
+16
+27
+12
+0d
+7c
+12
+1b
+18
+7f
+25
+e1
+4a
+90
+4e
+ad
+e0
+b4
+07
+15
+90
+49
+c1
+e0
+ff
+64
+01
+70
+02
+81
+d9
+ef
+b4
+02
+06
+90
+49
+c1
+74
+01
+f0
+02
+1b
+18
+90
+4e
+ad
+74
+01
+f0
+fb
+7a
+4e
+79
+ad
+fd
+7c
+00
+7f
+a9
+7e
+3f
+12
+0c
+cb
+7f
+23
+e1
+4a
+f1
+e4
+e4
+90
+4e
+d3
+f0
+90
+4e
+e2
+e0
+60
+11
+04
+f0
+e0
+54
+07
+f0
+30
+e0
+04
+7f
+23
+e1
+4a
+7f
+25
+e1
+4a
+90
+80
+10
+74
+01
+f0
+22
+90
+4e
+d3
+74
+01
+f0
+e4
+90
+4e
+e1
+f0
+a3
+f0
+90
+4e
+ae
+f0
+22
+12
+13
+ea
+12
+0a
+9e
+7d
+06
+7f
+80
+91
+da
+7b
+01
+7a
+4e
+79
+cb
+7d
+01
+7c
+00
+7f
+a8
+7e
+3f
+12
+0e
+d1
+02
+0d
+c8
+e4
+90
+4e
+84
+f0
+7f
+0e
+f1
+4a
+7f
+02
+f1
+4a
+90
+4e
+ad
+74
+07
+f0
+90
+1b
+be
+74
+09
+f0
+12
+08
+01
+7b
+01
+7a
+03
+79
+72
+7d
+06
+7c
+00
+7f
+96
+7e
+3f
+12
+0c
+cb
+7f
+0a
+7e
+00
+71
+53
+7b
+01
+7a
+45
+79
+3e
+7d
+06
+7c
+00
+7f
+9c
+7e
+3f
+12
+0c
+cb
+7f
+0a
+7e
+00
+71
+53
+7b
+01
+7a
+1b
+79
+be
+7d
+01
+7c
+00
+7f
+a9
+7e
+3f
+12
+0c
+cb
+90
+4e
+ae
+74
+06
+f0
+e4
+90
+4e
+b2
+f0
+22
+90
+4e
+ae
+e0
+b4
+08
+0a
+12
+0e
+90
+90
+4e
+ad
+74
+03
+f0
+22
+90
+4e
+ae
+e0
+b4
+06
+03
+02
+15
+93
+12
+16
+76
+22
+ac
+07
+ed
+44
+80
+90
+02
+18
+f0
+a3
+ef
+f0
+90
+80
+88
+74
+02
+f0
+a3
+e4
+f0
+90
+80
+8e
+f0
+a3
+f0
+90
+80
+06
+74
+02
+f0
+90
+81
+2c
+e0
+30
+e3
+f9
+7f
+00
+22
+e4
+90
+1c
+16
+f0
+a3
+f0
+e4
+ff
+f1
+21
+bf
+31
+18
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+90
+1c
+17
+74
+31
+f0
+a1
+e5
+7f
+01
+f1
+21
+bf
+5a
+18
+90
+1c
+17
+74
+5a
+f0
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+a1
+e5
+e4
+ff
+f1
+21
+ef
+64
+30
+60
+02
+a1
+e0
+7f
+01
+f1
+21
+bf
+54
+08
+90
+1c
+17
+74
+31
+f0
+a1
+e5
+7f
+01
+f1
+21
+ef
+54
+f0
+64
+d0
+70
+28
+7f
+1e
+f1
+21
+ef
+30
+e0
+08
+90
+1c
+17
+74
+d1
+f0
+80
+06
+90
+1c
+17
+74
+d0
+f0
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+80
+4e
+7f
+01
+f1
+21
+ef
+54
+f0
+ff
+bf
+50
+18
+90
+1c
+17
+74
+50
+f0
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+80
+2b
+7f
+01
+f1
+21
+bf
+02
+1f
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+90
+1c
+17
+74
+02
+f0
+7f
+01
+f1
+21
+ef
+64
+02
+60
+05
+12
+0a
+9e
+a1
+0c
+90
+1c
+17
+e0
+64
+d0
+60
+02
+c1
+b5
+7d
+09
+7f
+5a
+91
+da
+7d
+0d
+7f
+0a
+91
+da
+7d
+1b
+7f
+35
+91
+da
+7d
+1d
+7f
+db
+91
+da
+7d
+28
+7f
+b4
+91
+da
+7d
+29
+7f
+46
+91
+da
+7d
+2a
+7f
+96
+91
+da
+7d
+2b
+7f
+8c
+91
+da
+7d
+2c
+7f
+6e
+91
+da
+7d
+2d
+7f
+64
+91
+da
+7d
+38
+7f
+5f
+91
+da
+7d
+39
+7f
+0f
+91
+da
+7d
+3a
+7f
+32
+91
+da
+7d
+3b
+7f
+47
+91
+da
+7d
+42
+7f
+10
+91
+da
+7d
+43
+7f
+09
+91
+da
+7d
+54
+7f
+2e
+91
+da
+7d
+55
+7f
+f2
+91
+da
+7d
+61
+7f
+f4
+91
+da
+7d
+63
+7f
+70
+91
+da
+7d
+75
+7f
+52
+91
+da
+7d
+76
+7f
+41
+91
+da
+7d
+77
+7f
+ed
+91
+da
+7d
+78
+7f
+23
+91
+da
+7d
+79
+7f
+46
+91
+da
+7d
+7a
+7f
+e5
+91
+da
+7d
+7c
+7f
+48
+91
+da
+7d
+7d
+7f
+80
+91
+da
+7d
+7e
+7f
+77
+91
+da
+7d
+7f
+7f
+01
+91
+da
+7d
+0b
+e4
+ff
+91
+da
+7d
+7f
+e4
+ff
+91
+da
+7d
+09
+e4
+ff
+91
+da
+90
+1c
+17
+e0
+b4
+02
+18
+7d
+09
+7f
+5a
+91
+da
+7d
+26
+7f
+34
+91
+da
+7d
+19
+7f
+14
+91
+da
+7d
+09
+e4
+ff
+91
+da
+90
+1c
+17
+e0
+64
+50
+70
+3f
+7d
+09
+7f
+5a
+91
+da
+7d
+5b
+7f
+9a
+91
+da
+7f
+0d
+f1
+21
+ef
+64
+12
+60
+08
+7d
+0d
+7f
+12
+91
+da
+80
+ef
+7f
+0e
+f1
+21
+ef
+64
+c5
+60
+08
+7d
+0e
+7f
+c5
+91
+da
+80
+ef
+7f
+53
+f1
+21
+ef
+64
+48
+60
+08
+7d
+53
+7f
+48
+91
+da
+80
+ef
+90
+1c
+17
+e0
+ff
+22
+90
+02
+18
+ef
+f0
+90
+80
+88
+74
+01
+f0
+a3
+e4
+f0
+90
+80
+8e
+04
+f0
+a3
+e4
+f0
+90
+80
+06
+74
+02
+f0
+90
+81
+2c
+e0
+30
+e3
+f9
+90
+02
+1d
+e0
+ff
+22
+90
+1c
+03
+ef
+f0
+78
+04
+7c
+1c
+7d
+01
+7b
+ff
+7a
+02
+79
+dc
+7e
+00
+7f
+03
+11
+d3
+90
+1c
+03
+e0
+90
+1c
+06
+f0
+7b
+01
+7a
+1c
+79
+04
+7d
+03
+90
+1b
+e7
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+47
+c6
+e0
+ff
+a3
+e0
+90
+1b
+eb
+cf
+f0
+a3
+ef
+f0
+90
+1b
+ea
+e0
+ff
+14
+f0
+ef
+60
+3c
+90
+1b
+e7
+e0
+fb
+a3
+e4
+75
+f0
+01
+31
+9d
+a9
+f0
+fa
+11
+f9
+ff
+90
+1b
+eb
+e4
+75
+f0
+01
+31
+9d
+85
+f0
+82
+f5
+83
+ef
+f0
+90
+1b
+eb
+e0
+fe
+a3
+e0
+ff
+be
+47
+c9
+bf
+c4
+c6
+90
+1b
+eb
+74
+47
+f0
+a3
+74
+2e
+f0
+80
+ba
+90
+1b
+eb
+e0
+ff
+a3
+e0
+90
+47
+c6
+cf
+f0
+a3
+ef
+f0
+22
+7f
+24
+f1
+4a
+e4
+90
+4e
+ad
+f0
+22
+7b
+01
+7a
+1b
+79
+ab
+78
+30
+7c
+48
+7d
+01
+7e
+00
+7f
+12
+02
+00
+d3
+51
+73
+51
+9e
+7f
+18
+11
+1d
+40
+11
+7f
+02
+12
+07
+21
+7f
+03
+12
+07
+21
+7f
+04
+12
+07
+21
+80
+e9
+22
+7b
+01
+7a
+81
+79
+1c
+ad
+07
+e4
+90
+1c
+1b
+f0
+fe
+ef
+54
+07
+f0
+ef
+13
+13
+13
+54
+03
+fe
+f5
+82
+75
+83
+00
+12
+01
+12
+fd
+33
+95
+e0
+fc
+90
+1c
+1b
+e0
+ff
+74
+01
+7e
+00
+a8
+07
+08
+80
+05
+c3
+33
+ce
+33
+ce
+d8
+f9
+ff
+ee
+5c
+fe
+ef
+5d
+4e
+24
+ff
+22
+7f
+17
+11
+1d
+40
+03
+7f
+00
+22
+c2
+07
+7f
+07
+11
+c6
+90
+4e
+c2
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+17
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+c2
+f0
+d2
+07
+7f
+07
+11
+c6
+c2
+06
+7f
+07
+31
+a7
+90
+4e
+c2
+e0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+c2
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+c3
+f0
+90
+4e
+c3
+e0
+ff
+22
+ac
+07
+d2
+05
+31
+bc
+af
+04
+a2
+07
+92
+02
+51
+5b
+af
+04
+c2
+03
+7b
+01
+7a
+80
+79
+78
+a2
+03
+92
+01
+90
+1c
+10
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+fe
+fd
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+fd
+30
+01
+22
+90
+1c
+10
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+12
+00
+f9
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+4f
+02
+01
+3f
+90
+1c
+10
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+12
+00
+f9
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5f
+02
+01
+3f
+7f
+04
+11
+1d
+40
+03
+7f
+00
+22
+c2
+07
+7f
+07
+11
+c6
+90
+4e
+c0
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+04
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+c0
+f0
+d2
+07
+7f
+07
+11
+c6
+c2
+06
+7f
+07
+31
+a7
+90
+4e
+c0
+e0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+c0
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+c1
+f0
+90
+4e
+c1
+e0
+ff
+22
+ac
+07
+a2
+06
+92
+04
+51
+67
+af
+04
+a2
+06
+b3
+92
+03
+11
+d8
+af
+04
+c2
+05
+7b
+01
+7a
+80
+79
+70
+a2
+05
+92
+01
+01
+e2
+e4
+90
+1c
+07
+f0
+a3
+f0
+7f
+02
+11
+1d
+e4
+33
+90
+1c
+09
+f0
+7f
+03
+11
+1d
+e4
+33
+ff
+90
+1c
+09
+e0
+fe
+25
+e0
+4f
+ff
+90
+4e
+c5
+e0
+6f
+60
+5b
+90
+4e
+c6
+e0
+a3
+f0
+90
+4e
+c5
+e0
+a3
+f0
+90
+4e
+c5
+ef
+f0
+fd
+a3
+e0
+75
+f0
+04
+a4
+fb
+aa
+f0
+ed
+75
+f0
+10
+a4
+ff
+e5
+f0
+4a
+fe
+ef
+4b
+ff
+a3
+e0
+fd
+ee
+ef
+4d
+ff
+90
+1c
+07
+ee
+f0
+a3
+ef
+f0
+ee
+70
+21
+ef
+24
+f5
+60
+14
+24
+d7
+60
+10
+24
+fc
+60
+04
+24
+31
+70
+10
+90
+4e
+c8
+e0
+14
+f0
+80
+09
+90
+4e
+c8
+e0
+04
+f0
+51
+4c
+22
+90
+4e
+ad
+e0
+64
+01
+60
+06
+90
+4e
+b7
+74
+03
+f0
+22
+7b
+01
+7a
+80
+79
+74
+a2
+02
+92
+01
+01
+e2
+7b
+01
+7a
+80
+79
+7c
+a2
+04
+92
+01
+01
+e2
+e4
+ff
+51
+9e
+7f
+06
+12
+07
+21
+ef
+54
+f7
+ff
+7d
+06
+12
+04
+da
+7f
+02
+12
+07
+21
+90
+80
+81
+e4
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+77
+e0
+44
+02
+f0
+22
+e4
+90
+1c
+22
+f0
+90
+80
+81
+04
+f0
+e4
+90
+4e
+f0
+f0
+90
+4e
+f0
+e0
+04
+f0
+e0
+c3
+94
+06
+40
+03
+12
+13
+ea
+e4
+ff
+12
+07
+21
+90
+1c
+22
+ef
+f0
+64
+30
+60
+27
+e0
+64
+31
+60
+22
+90
+80
+81
+e4
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+77
+e0
+54
+fd
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+81
+74
+01
+f0
+80
+bc
+22
+e4
+ff
+51
+9e
+7f
+06
+12
+07
+21
+ef
+44
+08
+ff
+7d
+06
+12
+04
+da
+90
+80
+81
+e4
+f0
+c2
+06
+7f
+19
+31
+a7
+c2
+06
+7f
+1a
+21
+a7
+90
+1c
+1d
+ef
+f0
+7b
+01
+7a
+80
+79
+74
+11
+23
+92
+0a
+90
+1c
+1d
+e0
+ff
+a2
+0a
+b3
+92
+02
+41
+5b
+d2
+07
+7f
+07
+11
+c6
+90
+4e
+ba
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+04
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+ba
+f0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+ba
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+bb
+f0
+90
+4e
+bb
+e0
+ff
+22
+e4
+90
+1b
+ed
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+71
+30
+90
+1b
+ed
+ef
+f0
+71
+dc
+90
+1b
+ef
+ef
+f0
+91
+27
+90
+1b
+ee
+ef
+f0
+11
+62
+90
+1b
+f0
+ef
+f0
+31
+43
+90
+1b
+f1
+ef
+f0
+91
+72
+90
+1b
+ee
+e0
+ff
+25
+e0
+ff
+90
+1b
+ed
+e0
+4f
+ff
+90
+1b
+ef
+e0
+fe
+25
+e0
+25
+e0
+4f
+ff
+a3
+e0
+fe
+33
+33
+33
+54
+f8
+4f
+ff
+a3
+e0
+fe
+c4
+54
+f0
+4f
+90
+4e
+dd
+f0
+22
+d2
+07
+7f
+07
+11
+c6
+90
+4e
+bc
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+17
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+bc
+f0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+bc
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+bd
+f0
+90
+4e
+bd
+e0
+ff
+22
+d2
+07
+7f
+07
+11
+c6
+90
+4e
+be
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+1b
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+be
+f0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+be
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+bf
+f0
+90
+4e
+bf
+e0
+ff
+22
+90
+4e
+cc
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+06
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+cc
+f0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+cc
+e0
+64
+07
+70
+28
+90
+4e
+cb
+e0
+04
+f0
+e0
+54
+03
+f0
+70
+02
+04
+f0
+90
+4e
+cb
+e0
+90
+4e
+cd
+f0
+b1
+c8
+7b
+01
+7a
+4e
+79
+cb
+7d
+01
+7c
+00
+7f
+a8
+7e
+3f
+91
+cb
+22
+90
+1b
+c9
+ee
+f0
+a3
+ef
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+1b
+cb
+e0
+70
+02
+a3
+e0
+70
+02
+a1
+7b
+90
+1b
+c9
+e0
+fe
+a3
+e0
+ff
+44
+0f
+24
+01
+fd
+e4
+3e
+fc
+c3
+ed
+9f
+ff
+ec
+9e
+fe
+90
+1b
+d0
+f0
+a3
+ef
+f0
+90
+1b
+cb
+e0
+fc
+a3
+e0
+fd
+d3
+9f
+ec
+9e
+40
+0a
+90
+1b
+d0
+e0
+fe
+a3
+e0
+ff
+80
+04
+ae
+04
+af
+05
+90
+1b
+d0
+ee
+f0
+fc
+a3
+ef
+f0
+fd
+c3
+90
+1b
+cc
+e0
+9d
+f0
+90
+1b
+cb
+e0
+9c
+f0
+90
+1b
+c9
+e0
+fe
+a3
+e0
+ff
+90
+1b
+cd
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+17
+95
+7f
+0a
+7e
+00
+12
+03
+53
+90
+1b
+d0
+e0
+fe
+a3
+e0
+ff
+90
+1b
+ce
+ee
+8f
+f0
+12
+01
+87
+90
+1b
+ca
+e0
+2f
+f0
+90
+1b
+c9
+e0
+3e
+f0
+81
+e2
+22
+e4
+90
+1c
+19
+f0
+7b
+01
+7a
+1c
+79
+19
+7d
+01
+fc
+7f
+ac
+7e
+3f
+d1
+d1
+90
+1c
+19
+e0
+b4
+ff
+30
+f1
+c9
+90
+4f
+01
+ee
+f0
+a3
+ef
+f0
+7b
+01
+7a
+4f
+79
+01
+7d
+02
+7c
+00
+7f
+aa
+7e
+3f
+91
+cb
+90
+1c
+19
+74
+5a
+f0
+7b
+01
+7a
+1c
+79
+19
+7d
+01
+7c
+00
+7f
+ac
+7e
+3f
+91
+cb
+22
+51
+9e
+90
+4e
+c9
+e0
+ff
+64
+d0
+60
+04
+ef
+b4
+d1
+0b
+90
+4e
+cb
+e0
+04
+ff
+7d
+06
+12
+04
+da
+90
+4e
+c9
+e0
+b4
+31
+1a
+90
+4e
+cb
+e0
+b4
+01
+09
+7d
+06
+e4
+ff
+12
+04
+da
+80
+0a
+90
+4e
+cb
+e0
+ff
+7d
+06
+12
+04
+da
+90
+4e
+c9
+e0
+b4
+50
+0c
+90
+4e
+cb
+e0
+24
+03
+ff
+7d
+06
+12
+04
+da
+90
+4e
+c9
+e0
+b4
+5a
+0c
+90
+4e
+cb
+e0
+24
+03
+ff
+7d
+06
+12
+04
+da
+90
+4e
+c9
+e0
+64
+02
+70
+5d
+7d
+09
+7f
+5a
+12
+04
+da
+90
+4e
+cb
+e0
+14
+60
+1a
+14
+60
+27
+14
+60
+34
+24
+03
+70
+3e
+7d
+0d
+7f
+15
+12
+04
+da
+7d
+0e
+7f
+15
+12
+04
+da
+80
+2e
+7d
+0d
+7f
+20
+12
+04
+da
+7d
+0e
+7f
+20
+12
+04
+da
+80
+1e
+7d
+0d
+7f
+2a
+12
+04
+da
+7d
+0e
+7f
+2a
+12
+04
+da
+80
+0e
+7d
+0d
+7f
+3f
+12
+04
+da
+7d
+0e
+7f
+3f
+12
+04
+da
+7d
+09
+e4
+ff
+12
+04
+da
+41
+8a
+7b
+01
+7a
+4f
+79
+01
+7d
+02
+7c
+00
+7f
+aa
+7e
+3f
+d1
+d1
+90
+4f
+02
+e0
+04
+f0
+70
+06
+90
+4f
+01
+e0
+04
+f0
+7b
+01
+7a
+4f
+79
+01
+7d
+02
+7c
+00
+7f
+aa
+7e
+3f
+91
+cb
+90
+4f
+01
+e0
+fc
+a3
+e0
+90
+45
+3f
+f0
+ec
+a3
+f0
+7f
+0d
+02
+07
+4a
+90
+1b
+f2
+ec
+f0
+a3
+ed
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+80
+98
+74
+04
+f0
+a3
+e4
+f0
+90
+1b
+2c
+74
+a0
+f0
+a3
+ee
+f0
+a3
+ef
+f0
+90
+1b
+2f
+74
+a1
+f0
+7a
+1b
+79
+2c
+7e
+1b
+7f
+2c
+74
+2c
+fc
+74
+1b
+ff
+ec
+fe
+ef
+90
+80
+9a
+ee
+f0
+a3
+ef
+f0
+90
+1b
+f2
+e0
+fc
+a3
+e0
+fa
+ec
+ff
+ea
+fe
+ef
+90
+80
+9e
+ee
+f0
+a3
+ef
+f0
+7a
+1b
+79
+30
+7e
+1b
+7f
+30
+74
+30
+fc
+74
+1b
+ff
+ec
+fe
+ef
+90
+80
+9c
+ee
+f0
+a3
+ef
+f0
+90
+80
+90
+74
+02
+f0
+90
+80
+9c
+a3
+e0
+20
+e7
+07
+90
+80
+90
+e0
+44
+01
+f0
+90
+80
+06
+e0
+44
+04
+f0
+f1
+c1
+90
+1b
+f4
+e0
+a3
+e0
+fa
+a3
+e0
+ae
+02
+ff
+7b
+01
+7a
+1b
+79
+30
+90
+1b
+f2
+e0
+a3
+e0
+90
+1b
+e6
+f0
+90
+1b
+e1
+ee
+f0
+a3
+ef
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+1b
+e6
+e0
+ff
+14
+f0
+ef
+60
+27
+90
+1b
+e3
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+12
+00
+f9
+ff
+90
+1b
+e1
+e4
+75
+f0
+01
+12
+01
+9d
+85
+f0
+82
+f5
+83
+ef
+f0
+80
+cf
+22
+90
+81
+2c
+e0
+30
+e5
+f9
+22
+90
+4e
+41
+e0
+fe
+a3
+e0
+ff
+22
+90
+1c
+1c
+ef
+f0
+11
+1d
+92
+09
+90
+1c
+1c
+e0
+ff
+a2
+09
+b3
+92
+08
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+ff
+30
+08
+43
+24
+a0
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5d
+d0
+82
+d0
+83
+f0
+74
+a4
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+4f
+d0
+82
+d0
+83
+f0
+22
+74
+a0
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+fc
+4d
+d0
+82
+d0
+83
+f0
+74
+a4
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+e0
+ff
+ec
+f4
+fe
+ef
+5e
+f0
+22
+90
+1b
+f7
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+4e
+ad
+e0
+ff
+64
+01
+60
+0a
+ef
+64
+02
+60
+05
+ef
+64
+07
+70
+2d
+ef
+b4
+01
+10
+90
+1b
+f7
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+a3
+e0
+fd
+81
+52
+90
+4e
+ad
+e0
+b4
+07
+10
+90
+1b
+f7
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+a3
+e0
+fd
+81
+96
+80
+fe
+22
+e4
+90
+1b
+fb
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+c2
+00
+90
+4e
+ad
+e0
+ff
+64
+01
+60
+07
+ef
+64
+07
+60
+02
+21
+c4
+90
+4e
+d3
+e0
+70
+0a
+90
+4e
+ad
+e0
+64
+01
+70
+02
+21
+c4
+71
+d2
+40
+02
+21
+c4
+90
+4e
+dd
+e0
+ff
+90
+4e
+c4
+e0
+b5
+07
+19
+90
+4e
+b7
+e0
+fe
+d3
+94
+00
+40
+05
+ee
+94
+03
+40
+0a
+90
+4e
+ad
+e0
+b4
+01
+0b
+ef
+60
+08
+d2
+00
+90
+49
+b7
+74
+01
+f0
+90
+4e
+dd
+e0
+90
+4e
+c4
+f0
+e4
+90
+4e
+eb
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+4e
+ad
+e0
+b4
+01
+06
+31
+c5
+72
+00
+92
+00
+90
+4e
+ad
+e0
+b4
+07
+1e
+90
+45
+95
+e0
+b4
+01
+17
+71
+ea
+31
+c5
+72
+00
+92
+00
+90
+4e
+83
+e0
+ff
+90
+4e
+84
+e0
+6f
+60
+03
+e0
+04
+f0
+90
+4e
+c8
+e0
+60
+1f
+d2
+00
+90
+49
+b7
+74
+01
+f0
+90
+4e
+80
+f0
+90
+4e
+ad
+e0
+b4
+07
+0c
+90
+4e
+81
+74
+01
+f0
+90
+4e
+82
+74
+0a
+f0
+90
+4e
+b6
+e0
+c3
+94
+17
+40
+07
+e4
+90
+4e
+c4
+f0
+d2
+00
+30
+00
+2d
+90
+4e
+b6
+e0
+c3
+94
+18
+50
+24
+90
+49
+c2
+74
+01
+f0
+90
+4e
+ad
+e0
+ff
+64
+01
+60
+09
+ef
+64
+02
+60
+04
+ef
+b4
+07
+0c
+91
+0e
+7b
+01
+7a
+4e
+79
+21
+7d
+07
+11
+6b
+22
+e4
+90
+1c
+18
+f0
+f9
+ff
+fd
+90
+4f
+03
+e0
+04
+f0
+90
+4e
+b7
+74
+02
+f0
+90
+4f
+03
+e0
+fe
+c3
+94
+00
+40
+0f
+ee
+d3
+94
+32
+50
+09
+90
+1c
+18
+74
+05
+f0
+e4
+80
+4f
+ee
+c3
+94
+33
+40
+11
+ee
+d3
+94
+64
+50
+0b
+e4
+90
+1c
+18
+f0
+ff
+79
+05
+fd
+80
+38
+ee
+c3
+94
+65
+40
+13
+ee
+d3
+94
+96
+50
+0d
+90
+1c
+18
+74
+fb
+f0
+7f
+ff
+e4
+f9
+fd
+80
+1f
+ee
+c3
+94
+97
+40
+19
+ee
+d3
+94
+c8
+50
+13
+e4
+90
+1c
+18
+f0
+ff
+79
+fb
+7d
+ff
+ee
+b4
+c8
+05
+e4
+90
+4f
+03
+f0
+90
+4e
+e0
+e0
+70
+28
+ef
+fe
+90
+1c
+18
+e0
+fb
+ee
+eb
+ff
+c3
+e4
+9f
+ff
+e4
+9e
+90
+4e
+ed
+f0
+a3
+ef
+f0
+ed
+fe
+e9
+fd
+ee
+ed
+ff
+90
+4e
+eb
+ee
+f0
+a3
+ef
+f0
+80
+1b
+ef
+fe
+90
+1c
+18
+e0
+fb
+ee
+eb
+ff
+90
+4e
+eb
+ee
+f0
+a3
+ef
+f0
+ed
+ff
+e9
+a3
+cf
+f0
+a3
+ef
+f0
+90
+4e
+eb
+e0
+fe
+a3
+e0
+ff
+c3
+e4
+9f
+ff
+e4
+9e
+90
+4e
+eb
+f0
+a3
+ef
+f0
+a3
+e0
+fe
+a3
+e0
+ff
+c3
+e4
+9f
+ff
+e4
+9e
+90
+4e
+ed
+f0
+a3
+ef
+f0
+90
+4e
+ad
+e0
+b4
+01
+02
+51
+bd
+d3
+22
+90
+4e
+eb
+e0
+fe
+a3
+e0
+ff
+d3
+94
+06
+ee
+64
+80
+94
+80
+50
+26
+c3
+ef
+94
+fa
+ee
+64
+80
+94
+7f
+40
+1b
+a3
+e0
+fe
+a3
+e0
+ff
+d3
+94
+06
+ee
+64
+80
+94
+80
+50
+0b
+c3
+ef
+94
+fa
+ee
+64
+80
+94
+7f
+50
+06
+90
+4e
+ef
+74
+01
+f0
+90
+4e
+eb
+e0
+fe
+a3
+e0
+ff
+71
+bf
+c3
+ef
+94
+03
+ee
+94
+00
+50
+14
+a3
+e0
+fe
+a3
+e0
+ff
+71
+bf
+c3
+ef
+94
+03
+ee
+94
+00
+50
+03
+e4
+a3
+f0
+90
+4e
+ef
+e0
+64
+01
+60
+02
+61
+ab
+90
+4e
+e7
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4e
+e4
+e0
+9f
+ff
+90
+4e
+e3
+e0
+9e
+fe
+90
+4e
+ec
+e0
+2f
+ff
+90
+4e
+eb
+e0
+3e
+fe
+90
+4e
+e3
+f0
+a3
+ef
+f0
+7c
+00
+7d
+02
+12
+01
+51
+90
+4e
+e7
+ee
+f0
+a3
+ef
+f0
+90
+4e
+eb
+ee
+f0
+a3
+ef
+f0
+90
+4e
+e9
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4e
+e6
+e0
+9f
+ff
+90
+4e
+e5
+e0
+9e
+fe
+90
+4e
+ee
+e0
+2f
+ff
+90
+4e
+ed
+e0
+3e
+fe
+90
+4e
+e5
+f0
+a3
+ef
+f0
+7c
+00
+7d
+02
+12
+01
+51
+90
+4e
+e9
+ee
+f0
+a3
+ef
+f0
+90
+4e
+ed
+ee
+f0
+a3
+ef
+f0
+22
+e4
+90
+4e
+e3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+22
+d3
+ef
+94
+00
+ee
+64
+80
+94
+80
+50
+07
+c3
+e4
+9f
+ff
+e4
+9e
+fe
+22
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+07
+a3
+e0
+b5
+07
+02
+d3
+22
+c3
+22
+90
+80
+86
+74
+75
+f0
+a3
+74
+0a
+f0
+90
+80
+8a
+74
+18
+f0
+a3
+74
+02
+f0
+a3
+74
+1d
+f0
+a3
+74
+02
+f0
+90
+80
+77
+e0
+44
+02
+f0
+22
+90
+4e
+c4
+e0
+90
+4e
+21
+f0
+90
+4e
+eb
+e0
+fc
+a3
+e0
+90
+4e
+22
+f0
+ec
+ff
+33
+95
+e0
+a3
+ef
+f0
+90
+4e
+ed
+e0
+fc
+a3
+e0
+90
+4e
+24
+f0
+ec
+ff
+33
+95
+e0
+a3
+ef
+f0
+90
+4e
+c8
+e0
+90
+4e
+26
+f0
+e4
+a3
+f0
+90
+4e
+c8
+f0
+90
+4e
+b4
+f0
+a3
+f0
+22
+90
+1c
+1f
+ed
+f0
+90
+1a
+96
+74
+06
+f0
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+1f
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+0f
+7e
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+1f
+e0
+24
+02
+fd
+02
+07
+71
+90
+1c
+21
+ed
+f0
+90
+1a
+96
+74
+05
+f0
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+21
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+0f
+7e
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+21
+e0
+24
+02
+fd
+02
+07
+71
+e4
+90
+1c
+1a
+f0
+90
+4e
+b5
+e0
+04
+f0
+70
+06
+90
+4e
+b4
+e0
+04
+f0
+90
+4e
+ad
+e0
+14
+60
+60
+24
+fe
+60
+21
+24
+fd
+60
+77
+14
+60
+35
+14
+60
+02
+a1
+92
+90
+1c
+1a
+74
+09
+f0
+90
+4e
+b4
+e0
+70
+04
+a3
+e0
+64
+10
+70
+7c
+80
+78
+22
+90
+1c
+1a
+74
+02
+f0
+90
+4e
+b4
+e0
+64
+01
+70
+04
+a3
+e0
+64
+68
+70
+65
+90
+41
+31
+04
+f0
+80
+5c
+90
+1c
+1a
+74
+09
+f0
+90
+4e
+b4
+e0
+64
+04
+70
+04
+a3
+e0
+64
+b0
+70
+4a
+7f
+11
+12
+07
+4a
+90
+4e
+ae
+74
+06
+f0
+22
+90
+1c
+1a
+74
+01
+f0
+d3
+90
+4e
+b5
+e0
+94
+b0
+90
+4e
+b4
+e0
+94
+04
+40
+29
+90
+4e
+d3
+e0
+b4
+01
+22
+80
+1e
+22
+90
+1c
+1a
+74
+02
+f0
+71
+d2
+50
+15
+c3
+90
+4e
+b5
+e0
+94
+03
+90
+4e
+b4
+e0
+94
+00
+40
+06
+80
+02
+22
+22
+b1
+93
+22
+e4
+90
+4e
+b4
+f0
+a3
+f0
+90
+4e
+b7
+f0
+90
+4e
+b1
+04
+f0
+e4
+90
+4e
+ad
+f0
+7f
+19
+02
+07
+4a
+90
+4e
+b7
+e0
+60
+02
+14
+f0
+90
+4e
+b9
+e0
+04
+f0
+90
+4e
+dc
+e0
+60
+02
+04
+f0
+90
+4e
+f1
+e0
+b4
+01
+10
+a3
+e0
+70
+06
+90
+4e
+f1
+f0
+b1
+93
+90
+4e
+f2
+e0
+14
+f0
+22
+7b
+01
+7a
+49
+79
+50
+7d
+04
+7c
+00
+7f
+a4
+7e
+3f
+12
+0e
+d1
+90
+49
+50
+e0
+f4
+70
+28
+a3
+e0
+f4
+70
+23
+a3
+e0
+b4
+ff
+1e
+a3
+e0
+b4
+ff
+19
+90
+49
+50
+74
+0f
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+7f
+23
+12
+07
+4a
+90
+4e
+e2
+74
+01
+f0
+80
+05
+7f
+23
+12
+07
+4a
+90
+4e
+ad
+74
+01
+f0
+22
+7b
+01
+7a
+4e
+79
+21
+7d
+20
+7c
+00
+d1
+4a
+7b
+01
+7a
+4e
+79
+ab
+7d
+5b
+7c
+00
+d1
+4a
+90
+4f
+04
+74
+ff
+f0
+a3
+74
+5b
+f0
+22
+90
+1c
+0a
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+16
+90
+1c
+0a
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+e4
+12
+01
+3f
+80
+e0
+22
+e4
+90
+4e
+b4
+f0
+a3
+f0
+7b
+01
+7a
+45
+79
+3e
+7d
+06
+fc
+7f
+9c
+7e
+3f
+12
+0e
+d1
+90
+4e
+ad
+74
+08
+f0
+7f
+27
+02
+07
+4a
+90
+82
+80
+74
+01
+f0
+22
+90
+1b
+d2
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+1b
+d8
+74
+ff
+f5
+f0
+12
+01
+9d
+45
+f0
+60
+2a
+90
+1b
+d5
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+12
+00
+f9
+ff
+90
+1b
+d2
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+ef
+12
+01
+3f
+80
+c8
+22
+90
+1c
+0d
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+17
+90
+1c
+0d
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+74
+ff
+12
+01
+3f
+80
+df
+22
+90
+1b
+da
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+ff
+90
+1b
+e0
+e0
+fe
+ef
+c3
+9e
+50
+30
+90
+1b
+dd
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+01
+12
+fe
+90
+1b
+da
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+01
+12
+6e
+60
+03
+7f
+00
+22
+0f
+80
+c6
+7f
+01
+22
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+ff
+24
+a0
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+fc
+5d
+d0
+82
+d0
+83
+f0
+74
+a4
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+e0
+5c
+f0
+22
+90
+1b
+94
+ee
+f0
+a3
+ef
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+7e
+1b
+7f
+9b
+90
+1b
+e6
+f0
+12
+0f
+7e
+90
+1b
+98
+74
+a0
+f0
+90
+1b
+94
+e0
+ff
+a3
+e0
+90
+1b
+99
+cf
+f0
+a3
+ef
+f0
+90
+1b
+97
+e0
+24
+03
+fd
+90
+1b
+96
+e0
+34
+00
+fc
+ed
+fa
+ec
+ff
+ea
+fe
+ef
+90
+80
+98
+ee
+f0
+a3
+ef
+f0
+7d
+98
+ed
+fa
+74
+1b
+ff
+ea
+fe
+ef
+a3
+ee
+f0
+a3
+ef
+f0
+90
+80
+9e
+e4
+f0
+a3
+f0
+90
+80
+90
+04
+f0
+90
+80
+06
+e0
+44
+04
+f0
+02
+0f
+c1
+90
+1b
+ff
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+48
+2c
+e0
+fe
+a3
+e0
+ff
+90
+1c
+02
+e0
+fd
+14
+f0
+ed
+60
+32
+0f
+ef
+ac
+06
+70
+01
+0e
+14
+f5
+82
+8c
+83
+e0
+fd
+90
+1b
+ff
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+ed
+12
+01
+3f
+ad
+07
+ac
+06
+bc
+48
+cd
+bd
+2c
+ca
+7e
+47
+7f
+c8
+80
+c4
+90
+48
+2c
+ee
+f0
+a3
+ef
+f0
+22
+7a
+1a
+79
+00
+90
+1c
+13
+74
+01
+f0
+a3
+74
+1a
+f0
+a3
+74
+00
+f0
+90
+48
+2e
+e0
+fe
+a3
+e0
+ff
+90
+48
+2c
+e0
+6e
+70
+03
+a3
+e0
+6f
+70
+02
+41
+18
+7b
+01
+7a
+1a
+79
+00
+7d
+03
+11
+06
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+b4
+02
+2b
+90
+1c
+14
+e4
+75
+f0
+02
+12
+01
+87
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+ff
+90
+48
+30
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+12
+01
+dd
+41
+18
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+64
+04
+70
+5b
+90
+1c
+14
+75
+f0
+01
+12
+01
+87
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+14
+fd
+7b
+01
+7a
+1a
+79
+03
+11
+06
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+1c
+13
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+fd
+7c
+00
+90
+48
+33
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+01
+dd
+41
+18
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+64
+05
+70
+5b
+90
+1c
+14
+75
+f0
+01
+12
+01
+87
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+14
+fd
+7b
+01
+7a
+1a
+79
+03
+11
+06
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+1c
+13
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+fd
+7c
+00
+90
+48
+3c
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+01
+dd
+80
+6f
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+64
+03
+70
+5b
+90
+1c
+14
+75
+f0
+01
+12
+01
+87
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+14
+fd
+7b
+01
+7a
+1a
+79
+03
+11
+06
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+1c
+13
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+fd
+7c
+00
+90
+48
+3f
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+01
+dd
+80
+02
+80
+fe
+90
+48
+98
+e0
+fe
+a3
+e0
+ff
+90
+48
+9a
+e0
+6e
+70
+03
+a3
+e0
+6f
+60
+21
+90
+48
+36
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+36
+12
+01
+d9
+90
+48
+9b
+e0
+04
+f0
+70
+06
+90
+48
+9a
+e0
+04
+f0
+80
+cb
+90
+48
+9c
+e0
+ff
+a3
+e0
+6f
+60
+19
+90
+48
+39
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+0b
+12
+01
+d9
+90
+48
+9d
+e0
+04
+f0
+80
+dd
+22
+90
+1c
+1e
+ed
+f0
+90
+1a
+96
+74
+03
+f0
+90
+1c
+1e
+e0
+60
+39
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+1e
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+0f
+7e
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+1e
+e0
+24
+02
+fd
+12
+07
+71
+22
+90
+03
+f0
+e0
+ff
+22
+90
+1c
+20
+ed
+f0
+90
+1a
+96
+74
+04
+f0
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+20
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+0f
+7e
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+20
+e0
+24
+02
+fd
+02
+07
+71
+90
+42
+d1
+e0
+fe
+a3
+e0
+ff
+22
+90
+4e
+43
+e0
+fe
+a3
+e0
+ff
+22
+e4
+90
+4e
+e3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+4e
+ef
+f0
+90
+4e
+eb
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+22
+37
+1b
+aa
+55
+01
+00
+30
+40
+04
+aa
+55
+01
+00
+00
+40
+09
+aa
+55
+02
+00
+10
+40
+40
+0c
+aa
+55
+03
+00
+14
+40
+80
+13
+f0
+aa
+55
+01
+00
+20
+40
+20
+aa
+55
+08
+00
+22
+40
+40
+08
+08
+80
+0e
+f2
+04
+20
+aa
+55
+01
+00
+32
+40
+20
+aa
+55
+02
+00
+3e
+40
+88
+03
+aa
+55
+01
+00
+e2
+46
+00
+aa
+55
+01
+00
+0d
+47
+01
+aa
+55
+01
+00
+25
+46
+00
+aa
+55
+01
+00
+32
+41
+42
+aa
+55
+01
+00
+d4
+08
+00
+aa
+55
+01
+00
+9f
+00
+00
+aa
+55
+01
+00
+d5
+08
+00
+aa
+55
+01
+00
+16
+00
+27
+aa
+55
+01
+00
+15
+47
+ff
+aa
+55
+01
+00
+0e
+47
+ff
+aa
+55
+01
+00
+31
+41
+01
+aa
+55
+02
+00
+12
+42
+20
+03
+aa
+55
+01
+00
+f6
+41
+08
+aa
+55
+02
+00
+f4
+41
+00
+00
+aa
+55
+01
+00
+33
+41
+00
+aa
+55
+02
+00
+94
+48
+02
+01
+aa
+55
+02
+00
+cf
+42
+04
+30
+aa
+55
+04
+00
+41
+4e
+9f
+3e
+cd
+4d
+aa
+55
+01
+00
+21
+45
+00
+aa
+55
+02
+00
+29
+45
+07
+00
+aa
+55
+01
+00
+96
+45
+50
+aa
+55
+01
+00
+f8
+44
+1a
+aa
+55
+06
+00
+3e
+45
+ab
+b9
+12
+0e
+10
+26
+aa
+55
+0a
+00
+40
+44
+09
+42
+4c
+45
+20
+4d
+6f
+75
+73
+65
+aa
+55
+01
+00
+4c
+45
+17
+aa
+55
+01
+00
+20
+45
+00
+aa
+55
+07
+00
+22
+45
+01
+00
+00
+00
+00
+00
+00
+aa
+55
+18
+00
+ff
+43
+00
+1f
+03
+19
+c2
+03
+03
+03
+12
+18
+02
+01
+05
+0a
+09
+42
+4c
+45
+20
+4d
+6f
+75
+73
+65
+aa
+55
+0c
+00
+20
+44
+1f
+0a
+09
+42
+4c
+45
+20
+4d
+6f
+75
+73
+65
+aa
+55
+b5
+01
+40
+4c
+01
+00
+02
+00
+28
+02
+00
+18
+02
+00
+02
+03
+28
+01
+0a
+03
+00
+02
+00
+2a
+09
+42
+4c
+45
+20
+4d
+6f
+75
+73
+65
+04
+00
+02
+03
+28
+01
+02
+05
+00
+02
+01
+2a
+02
+c2
+03
+06
+00
+02
+03
+28
+01
+02
+07
+00
+02
+04
+2a
+08
+06
+00
+06
+00
+64
+00
+2c
+01
+08
+00
+02
+00
+28
+02
+01
+18
+09
+00
+02
+03
+28
+01
+20
+0a
+00
+02
+05
+2a
+00
+0b
+00
+02
+02
+29
+02
+00
+00
+0c
+00
+02
+00
+28
+02
+0a
+18
+0d
+00
+02
+03
+28
+01
+02
+0e
+00
+02
+29
+2a
+06
+59
+69
+43
+68
+69
+70
+0f
+00
+02
+03
+28
+01
+02
+10
+00
+02
+50
+2a
+07
+02
+35
+12
+22
+aa
+01
+00
+11
+00
+02
+00
+28
+02
+0f
+18
+12
+00
+02
+03
+28
+01
+02
+13
+00
+02
+19
+2a
+01
+33
+14
+00
+02
+02
+29
+02
+00
+00
+15
+00
+02
+00
+28
+02
+12
+18
+16
+00
+02
+03
+28
+01
+06
+17
+00
+02
+4e
+2a
+01
+01
+18
+00
+02
+03
+28
+01
+1a
+19
+00
+02
+4d
+2a
+07
+00
+00
+00
+00
+00
+00
+00
+1a
+00
+02
+02
+29
+02
+00
+00
+1b
+00
+02
+08
+29
+02
+01
+01
+1c
+00
+02
+03
+28
+01
+0a
+1d
+00
+02
+4b
+2a
+45
+05
+01
+09
+02
+a1
+01
+85
+01
+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
+95
+01
+81
+06
+c0
+c0
+1e
+00
+02
+03
+28
+01
+1a
+1f
+00
+02
+33
+2a
+08
+00
+00
+00
+00
+00
+00
+00
+00
+20
+00
+02
+02
+29
+02
+01
+00
+21
+00
+02
+03
+28
+01
+02
+22
+00
+02
+4a
+2a
+04
+01
+01
+00
+03
+23
+00
+02
+03
+28
+01
+04
+24
+00
+02
+4c
+2a
+00
+25
+00
+02
+03
+28
+01
+12
+26
+00
+02
+4d
+2a
+07
+00
+00
+00
+00
+00
+00
+00
+27
+00
+02
+02
+29
+02
+00
+00
+28
+00
+02
+08
+29
+02
+11
+01
+29
+00
+02
+03
+28
+01
+0e
+2a
+00
+02
+4d
+2a
+07
+00
+00
+00
+00
+00
+00
+00
+2b
+00
+02
+08
+29
+02
+11
+02
+00
+00
+aa
+55
+02
+00
+37
+46
+40
+4c
+aa
+55
+01
+00
+48
+4e
+50
+aa
+55
+08
+00
+8d
+45
+07
+00
+07
+00
+05
+00
+2c
+01
+aa
+55
+01
+00
+20
+4e
+00
+aa
+55
+02
+00
+4e
+4e
+19
+00
+aa
+55
+02
+00
+8b
+45
+22
+00
+aa
+55
+01
+00
+6c
+45
+01
+aa
+55
+01
+00
+a8
+45
+01
+aa
+55
+01
+00
+80
+42
+02
+aa
+55
+01
+00
+6f
+49
+01
+aa
+55
+01
+00
+29
+49
+01
+aa
+55
+01
+00
+6e
+49
+04
+aa
+55
+01
+00
+65
+49
+00
+aa
+55
+02
+00
+2b
+49
+c0
+12
+aa
+55
+03
+00
+4d
+49
+19
+19
+1c
+aa
+55
+10
+00
+39
+49
+00
+13
+2c
+42
+06
+15
+36
+48
+0f
+1a
+3a
+4c
+11
+23
+31
+4d
+aa
+55
+01
+00
+38
+49
+ff
+aa
+55
+04
+00
+34
+49
+20
+15
+10
+05
+aa
+55
+0a
+00
+90
+49
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+aa
+55
+08
+00
+58
+49
+00
+48
+60
+00
+00
+00
+00
+00
+aa
+55
+03
+00
+15
+42
+8f
+1b
+ce
+aa
+55
+04
+00
+19
+42
+0a
+0b
+ef
+0f
+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
+02
+12
+00
+00
+02
+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
+02
+00
+60
+4e
+00
+40
+aa
+55
+05
+00
+a9
+45
+09
+59
+00
+b0
+00
+aa
+55
+02
+00
+a8
+42
+30
+6f
+aa
+55
+01
+00
+b6
+42
+20
+aa
+55
+01
+00
+81
+42
+01
+aa
+55
+0b
+00
+69
+4e
+55
+d0
+56
+c0
+57
+4c
+58
+3c
+59
+50
+ff
+aa
+55
+02
+00
+63
+41
+69
+4e
+e5
+77
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ef
+b6
Index: c51/output/fw.hex
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/fw.hex	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/fw.hex	(working copy)
@@ -0,0 +1,437 @@
+:10000000020234E709F608DFFA8046E709F208DF62
+:10001000FA803E88828C83E709F0A3DFFA8032E31E
+:1000200009F608DFFA8078E309F208DFFA807088C1
+:10003000828C83E309F0A3DFFA806489828A83E0FB
+:10004000A3F608DFFA805889828A83E0A3F208DFEA
+:10005000FA804C80D280FA80C680D4806980F28099
+:1000600033801080A680EA809A80A880DA80E280BF
+:10007000CA803389828A83ECFAE493A3C8C582C814
+:10008000CCC583CCF0A3C8C582C8CCC583CCDFE97E
+:10009000DEE7800D89828A83E493A3F608DFF9EC1A
+:1000A000FAA9F0EDFB2289828A83ECFAE0A3C8C5A5
+:1000B00082C8CCC583CCF0A3C8C582C8CCC583CCCC
+:1000C000DFEADEE880DB89828A83E493A3F208DF3B
+:1000D000F980CC88F0EF60010E4E60C388F0ED240B
+:1000E00002B4040050B9F582EB2402B4040050AF0E
+:1000F000232345822390005373BB010689828A83A0
+:10010000E0225002E722BBFE02E32289828A83E4D6
+:100110009322BB010CE58229F582E5833AF583E061
+:10012000225006E92582F8E622BBFE06E92582F880
+:10013000E222E58229F582E5833AF583E49322BB46
+:10014000010689828A83F0225002F722BBFE01F366
+:1001500022C2D5EC30E709B2D5E4C39DFDE49CFC96
+:10016000EE30E715B2D5E4C39FFFE49EFE1201DF37
+:10017000C3E49DFDE49CFC80031201DF30D507C37E
+:10018000E49FFFE49EFE22C5F0F8A3E028F0C5F04E
+:10019000F8E582158270021583E038F022A3F8E0BA
+:1001A000C5F025F0F0E582158270021583E0C838AD
+:1001B000F0E822D083D082F8E49370127401937037
+:1001C0000DA3A393F8740193F5828883E4737402FA
+:1001D000936860EFA3A3A380DF8A838982E473BC62
+:1001E000000BBE0029EF8DF084FFADF022E4CCF8C7
+:1001F00075F008EF2FFFEE33FEEC33FCEE9DEC982C
+:100200004005FCEE9DFE0FD5F0E9E4CEFD22EDF8B1
+:10021000F5F0EE8420D21CFEADF075F008EF2FFF54
+:10022000ED33FD4007985006D5F0F222C398FD0F3C
+:10023000D5F0EA22787FE4F6D8FD7581CF02027B03
+:100240000202DFE493A3F8E493A34003F68001F2F3
+:1002500008DFF48029E493A3F85407240CC8C333BF
+:10026000C4540F4420C8834004F456800146F6DF8E
+:10027000E4800B01020408102040809002C0E47E5C
+:10028000019360BCA3FF543F30E509541FFEE49383
+:10029000A360010ECF54C025E060A840B8E493A34A
+:1002A000FAE493A3F8E493A3C8C582C8CAC583CA75
+:1002B000F0A3C8C582C8CAC583CADFE9DEE780BE2D
+:1002C000521BABFF0372000000FF14DAFF15AD00F4
+:1002D000000000000000000000000000010100F12B
+:1002E000EE1218611210BA900B2AE014602024FE5E
+:1002F00070EFE4904EF0F0FFEF2470FDE434808D59
+:1003000082F583E4F00FEFB410EE714780FE904E5B
+:10031000B7E07006904EB1E06004713B80C3904E30
+:10032000ADE0FF64016009EF64026004EFB407040C
+:10033000714780AD713B80A980A722900B2B74017F
+:10034000F0E4900B2AF022E4900B2BF0900B2AF0B3
+:100350007F01FED3EF9400EE94004015E4FDFC0D08
+:10036000BD00010CBC04F8BDA6F5EF1F70011E8096
+:10037000E222901BBDEFF0E4901BBFF0A3F0A3F0CE
+:10038000A3F078C37C1B7D017BFF7A0279D6FE7FC8
+:100390000611D3901BBDE031B304541404BB150304
+:1003A000BB2F03E43904223A03FD3B03C53C03B8E9
+:1003B0003D043440000004D9121627120D7C121B94
+:1003C000187F25E14A904EADE0B407159049C1E091
+:1003D000FF6401700281D9EFB402069049C1740133
+:1003E000F0021B18904EAD7401F0FB7A4E79ADFD12
+:1003F0007C007FA97E3F120CCB7F23E14AF1E4E42D
+:10040000904ED3F0904EE2E0601104F0E05407F01B
+:1004100030E0047F23E14A7F25E14A908010740197
+:10042000F022904ED37401F0E4904EE1F0A3F090EE
+:100430004EAEF0221213EA120A9E7D067F8091DAF8
+:100440007B017A4E79CB7D017C007FA87E3F120E26
+:10045000D1020DC8E4904E84F07F0EF14A7F02F184
+:100460004A904EAD7407F0901BBE7409F01208015B
+:100470007B017A0379727D067C007F967E3F120CA9
+:10048000CB7F0A7E0071537B017A45793E7D067CE5
+:10049000007F9C7E3F120CCB7F0A7E0071537B0154
+:1004A0007A1B79BE7D017C007FA97E3F120CCB9028
+:1004B0004EAE7406F0E4904EB2F022904EAEE0B430
+:1004C000080A120E90904EAD7403F022904EAEE0EA
+:1004D000B4060302159312167622AC07ED44809001
+:1004E0000218F0A3EFF09080887402F0A3E4F0907B
+:1004F000808EF0A3F09080067402F090812CE030A2
+:10050000E3F97F0022E4901C16F0A3F0E4FFF12150
+:10051000BF31187F06F121EF4480FF901C16F07D5B
+:100520000691DA901C177431F0A1E57F01F121BF2B
+:100530005A18901C17745AF07F06F121EF4480FF7F
+:10054000901C16F07D0691DAA1E5E4FFF121EF643D
+:10055000306002A1E07F01F121BF5408901C1774A4
+:1005600031F0A1E57F01F121EF54F064D070287FD4
+:100570001EF121EF30E008901C1774D1F080069036
+:100580001C1774D0F07F06F121EF4480FF901C16F9
+:10059000F07D0691DA804E7F01F121EF54F0FFBF2C
+:1005A0005018901C177450F07F06F121EF4480FF23
+:1005B000901C16F07D0691DA802B7F01F121BF029D
+:1005C0001F7F06F121EF4480FF901C16F07D0691FD
+:1005D000DA901C177402F07F01F121EF64026005CC
+:1005E000120A9EA10C901C17E064D06002C1B57D78
+:1005F000097F5A91DA7D0D7F0A91DA7D1B7F359153
+:10060000DA7D1D7FDB91DA7D287FB491DA7D297F49
+:100610004691DA7D2A7F9691DA7D2B7F8C91DA7D67
+:100620002C7F6E91DA7D2D7F6491DA7D387F5F912A
+:10063000DA7D397F0F91DA7D3A7F3291DA7D3B7F27
+:100640004791DA7D427F1091DA7D437F0991DA7D0F
+:10065000547F2E91DA7D557FF291DA7D617FF4919E
+:10066000DA7D637F7091DA7D757F5291DA7D767FD6
+:100670004191DA7D777FED91DA7D787F2391DA7D84
+:10068000797F4691DA7D7A7FE591DA7D7C7F4891AA
+:10069000DA7D7D7F8091DA7D7E7F7791DA7D7F7F45
+:1006A0000191DA7D0BE4FF91DA7D7FE4FF91DA7D41
+:1006B00009E4FF91DA901C17E0B402187D097F5A13
+:1006C00091DA7D267F3491DA7D197F1491DA7D09E4
+:1006D000E4FF91DA901C17E06450703F7D097F5A67
+:1006E00091DA7D5B7F9A91DA7F0DF121EF641260E0
+:1006F000087D0D7F1291DA80EF7F0EF121EF64C546
+:1007000060087D0E7FC591DA80EF7F53F121EF64A1
+:100710004860087D537F4891DA80EF901C17E0FF16
+:1007200022900218EFF09080887401F0A3E4F0901A
+:10073000808E04F0A3E4F09080067402F090812C87
+:10074000E030E3F990021DE0FF22901C03EFF07807
+:10075000047C1C7D017BFF7A0279DC7E007F031123
+:10076000D3901C03E0901C06F07B017A1C79047D79
+:1007700003901BE7EBF0A3EAF0A3E9F0A3EDF09000
+:1007800047C6E0FFA3E0901BEBCFF0A3EFF0901B78
+:10079000EAE0FF14F0EF603C901BE7E0FBA3E47598
+:1007A000F001319DA9F0FA11F9FF901BEBE475F00F
+:1007B00001319D85F082F583EFF0901BEBE0FEA305
+:1007C000E0FFBE47C9BFC4C6901BEB7447F0A374DB
+:1007D0002EF080BA901BEBE0FFA3E09047C6CFF06D
+:1007E000A3EFF0227F24F14AE4904EADF0227B018A
+:1007F0007A1B79AB78307C487D017E007F12020045
+:10080000D35173519E7F18111D40117F0212072191
+:100810007F031207217F0412072180E9227B017ADE
+:1008200081791CAD07E4901C1BF0FEEF5407F0EF3C
+:100830001313135403FEF582758300120112FD3366
+:1008400095E0FC901C1BE0FF74017E00A807088067
+:1008500005C333CE33CED8F9FFEE5CFEEF5D4E24F8
+:10086000FF227F17111D40037F0022C2077F07115F
+:10087000C6904EC2E0FF25E0F0E0FFC0077F1711F1
+:100880001D40047E0180027E00D0E04E904EC2F0FA
+:10089000D2077F0711C6C2067F0731A7904EC2E07C
+:1008A00030E006904EB77402F0904EC2E05407FF5D
+:1008B000BF0706A37401F08007EF7004904EC3F0E9
+:1008C000904EC3E0FF22AC07D20531BCAF04A207B3
+:1008D0009202515BAF04C2037B017A807978A20354
+:1008E0009201901C10EBF0A3EAF0A3E9F0E4FEFD06
+:1008F000EF5407FEEF1313135403FD300122901C35
+:1009000010E0FBA3E0FAA3E02DF9E43AFA1200F9B3
+:10091000FF7401A806088002C333D8FC4F02013FD0
+:10092000901C10E0FBA3E0FAA3E02DF9E43AFA12E0
+:1009300000F9FF7401A806088002C333D8FCF45FF5
+:1009400002013F7F04111D40037F0022C2077F0781
+:1009500011C6904EC0E0FF25E0F0E0FFC0077F0425
+:10096000111D40047E0180027E00D0E04E904EC0FA
+:10097000F0D2077F0711C6C2067F0731A7904EC08D
+:10098000E030E006904EB77402F0904EC0E054079D
+:10099000FFBF0706A37401F08007EF7004904EC1FB
+:1009A000F0904EC1E0FF22AC07A20692045167AF5F
+:1009B00004A206B3920311D8AF04C2057B017A806A
+:1009C0007970A205920101E2E4901C07F0A3F07F88
+:1009D00002111DE433901C09F07F03111DE433FF65
+:1009E000901C09E0FE25E04FFF904EC5E06F605B74
+:1009F000904EC6E0A3F0904EC5E0A3F0904EC5EF38
+:100A0000F0FDA3E075F004A4FBAAF0ED75F010A4CE
+:100A1000FFE5F04AFEEF4BFFA3E0FDEEEF4DFF9048
+:100A20001C07EEF0A3EFF0EE7021EF24F560142424
+:100A3000D7601024FC600424317010904EC8E0147C
+:100A4000F08009904EC8E004F0514C22904EADE089
+:100A500064016006904EB77403F0227B017A8079BE
+:100A600074A202920101E27B017A80797CA2049255
+:100A70000101E2E4FF519E7F06120721EF54F7FFC8
+:100A80007D061204DA7F02120721908081E4F09043
+:100A90008073E04402F0908077E04402F022E4901A
+:100AA0001C22F090808104F0E4904EF0F0904EF023
+:100AB000E004F0E0C3940640031213EAE4FF1207D7
+:100AC00021901C22EFF064306027E06431602290B6
+:100AD0008081E4F0908073E04402F0908077E054ED
+:100AE000FDF0908073E04402F09080817401F0800A
+:100AF000BC22E4FF519E7F06120721EF4408FF7DD0
+:100B0000061204DA908081E4F0C2067F1931A7C290
+:100B1000067F1A21A7901C1DEFF07B017A80797463
+:100B20001123920A901C1DE0FFA20AB39202415BBE
+:100B3000D2077F0711C6904EBAE0FF25E0F0E0FF34
+:100B4000C0077F04111D40047E0180027E00D0E0BA
+:100B50004E904EBAF030E006904EB77402F0904ED0
+:100B6000BAE05407FFBF0706A37401F08007EF70D7
+:100B700004904EBBF0904EBBE0FF22E4901BEDF0E2
+:100B8000A3F0A3F0A3F0A3F07130901BEDEFF07190
+:100B9000DC901BEFEFF09127901BEEEFF0116290CD
+:100BA0001BF0EFF03143901BF1EFF09172901BEED0
+:100BB000E0FF25E0FF901BEDE04FFF901BEFE0FE14
+:100BC00025E025E04FFFA3E0FE33333354F84FFF19
+:100BD000A3E0FEC454F04F904EDDF022D2077F0711
+:100BE00011C6904EBCE0FF25E0F0E0FFC0077F1784
+:100BF000111D40047E0180027E00D0E04E904EBC6C
+:100C0000F030E006904EB77402F0904EBCE054070E
+:100C1000FFBF0706A37401F08007EF7004904EBD7C
+:100C2000F0904EBDE0FF22D2077F0711C6904EBE66
+:100C3000E0FF25E0F0E0FFC0077F1B111D40047EB0
+:100C40000180027E00D0E04E904EBEF030E0069073
+:100C50004EB77402F0904EBEE05407FFBF0706A3E4
+:100C60007401F08007EF7004904EBFF0904EBFE02B
+:100C7000FF22904ECCE0FF25E0F0E0FFC0077F06AA
+:100C8000111D40047E0180027E00D0E04E904ECCCB
+:100C9000F030E006904EB77402F0904ECCE064075E
+:100CA0007028904ECBE004F0E05403F0700204F0A2
+:100CB000904ECBE0904ECDF0B1C87B017A4E79CB0F
+:100CC0007D017C007FA87E3F91CB22901BC9EEF076
+:100CD000A3EFF0A3ECF0A3EDF0A3EBF0A3EAF0A3F5
+:100CE000E9F0901BCBE07002A3E07002A17B901BA7
+:100CF000C9E0FEA3E0FF440F2401FDE43EFCC3ED88
+:100D00009FFFEC9EFE901BD0F0A3EFF0901BCBE07A
+:100D1000FCA3E0FDD39FEC9E400A901BD0E0FEA315
+:100D2000E0FF8004AE04AF05901BD0EEF0FCA3EF13
+:100D3000F0FDC3901BCCE09DF0901BCBE09CF090AD
+:100D40001BC9E0FEA3E0FF901BCDE0FBA3E0FAA3EC
+:100D5000E0F91217957F0A7E00120353901BD0E032
+:100D6000FEA3E0FF901BCEEE8FF0120187901BCA0E
+:100D7000E02FF0901BC9E03EF081E222E4901C19C4
+:100D8000F07B017A1C79197D01FC7FAC7E3FD1D1CB
+:100D9000901C19E0B4FF30F1C9904F01EEF0A3EFC1
+:100DA000F07B017A4F79017D027C007FAA7E3F9122
+:100DB000CB901C19745AF07B017A1C79197D017C47
+:100DC000007FAC7E3F91CB22519E904EC9E0FF64E4
+:100DD000D06004EFB4D10B904ECBE004FF7D06123F
+:100DE00004DA904EC9E0B4311A904ECBE0B4010958
+:100DF0007D06E4FF1204DA800A904ECBE0FF7D0608
+:100E00001204DA904EC9E0B4500C904ECBE02403AB
+:100E1000FF7D061204DA904EC9E0B45A0C904ECB16
+:100E2000E02403FF7D061204DA904EC9E0640270EC
+:100E30005D7D097F5A1204DA904ECBE014601A14DB
+:100E400060271460342403703E7D0D7F151204DA90
+:100E50007D0E7F151204DA802E7D0D7F201204DABC
+:100E60007D0E7F201204DA801E7D0D7F2A1204DAA7
+:100E70007D0E7F2A1204DA800E7D0D7F3F1204DA88
+:100E80007D0E7F3F1204DA7D09E4FF1204DA418A05
+:100E90007B017A4F79017D027C007FAA7E3FD1D110
+:100EA000904F02E004F07006904F01E004F07B01E7
+:100EB0007A4F79017D027C007FAA7E3F91CB904FD3
+:100EC00001E0FCA3E090453FF0ECA3F07F0D0207AA
+:100ED0004A901BF2ECF0A3EDF0A3EBF0A3EAF0A331
+:100EE000E9F09080987404F0A3E4F0901B2C74A0B7
+:100EF000F0A3EEF0A3EFF0901B2F74A1F07A1B7912
+:100F00002C7E1B7F2C742CFC741BFFECFEEF90805E
+:100F10009AEEF0A3EFF0901BF2E0FCA3E0FAECFFF6
+:100F2000EAFEEF90809EEEF0A3EFF07A1B79307E20
+:100F30001B7F307430FC741BFFECFEEF90809CEE46
+:100F4000F0A3EFF09080907402F090809CA3E020DA
+:100F5000E707908090E04401F0908006E04404F0C0
+:100F6000F1C1901BF4E0A3E0FAA3E0AE02FF7B0125
+:100F70007A1B7930901BF2E0A3E0901BE6F0901B07
+:100F8000E1EEF0A3EFF0A3EBF0A3EAF0A3E9F09019
+:100F90001BE6E0FF14F0EF6027901BE3E0FBA3E407
+:100FA00075F00112019DA9F0FA1200F9FF901BE102
+:100FB000E475F00112019D85F082F583EFF080CF9A
+:100FC0002290812CE030E5F922904E41E0FEA3E032
+:100FD000FF22901C1CEFF0111D9209901C1CE0FFD9
+:100FE000A209B39208EF5407FEEF1313135403FF43
+:100FF00030084324A0F582E43400F583C083C08226
+:10100000E0FD7401A806088002C333D8FCF45DD06B
+:1010100082D083F074A42FF582E43400F583C0837A
+:10102000C082E0FF7401A806088002C333D8FC4FD9
+:10103000D082D083F02274A02FF582E43400F583AF
+:10104000C083C082E0FD7401A806088002C333D8C3
+:10105000FCFC4DD082D083F074A42FF582E43400E0
+:10106000F583E0FFECF4FEEF5EF022901BF7EBF06F
+:10107000A3EAF0A3E9F0A3EDF0904EADE0FF640128
+:10108000600AEF64026005EF6407702DEFB4011091
+:10109000901BF7E0FBA3E0FAA3E0F9A3E0FD815287
+:1010A000904EADE0B40710901BF7E0FBA3E0FAA36D
+:1010B000E0F9A3E0FD819680FE22E4901BFBF0A303
+:1010C000F0A3F0A3F0C200904EADE0FF6401600712
+:1010D000EF6407600221C4904ED3E0700A904EADD9
+:1010E000E06401700221C471D2400221C4904EDD3F
+:1010F000E0FF904EC4E0B50719904EB7E0FED394E0
+:10110000004005EE9403400A904EADE0B4010BEFB1
+:101110006008D2009049B77401F0904EDDE0904E27
+:10112000C4F0E4904EEBF0A3F0A3F0A3F0904EAD2A
+:10113000E0B4010631C572009200904EADE0B407F4
+:101140001E904595E0B4011771EA31C57200920016
+:10115000904E83E0FF904E84E06F6003E004F090D7
+:101160004EC8E0601FD2009049B77401F0904E80E5
+:10117000F0904EADE0B4070C904E817401F0904EAB
+:1011800082740AF0904EB6E0C394174007E4904E84
+:10119000C4F0D20030002D904EB6E0C39418502415
+:1011A0009049C27401F0904EADE0FF64016009EF18
+:1011B00064026004EFB4070C910E7B017A4E792132
+:1011C0007D07116B22E4901C18F0F9FFFD904F038E
+:1011D000E004F0904EB77402F0904F03E0FEC39429
+:1011E00000400FEED394325009901C187405F0E4BF
+:1011F000804FEEC394334011EED39464500BE490CF
+:101200001C18F0FF7905FD8038EEC394654013EE9D
+:10121000D39496500D901C1874FBF07FFFE4F9FDF9
+:10122000801FEEC394974019EED394C85013E490F6
+:101230001C18F0FF79FB7DFFEEB4C805E4904F0366
+:10124000F0904EE0E07028EFFE901C18E0FBEEEB13
+:10125000FFC3E49FFFE49E904EEDF0A3EFF0EDFEA0
+:10126000E9FDEEEDFF904EEBEEF0A3EFF0801BEF0B
+:10127000FE901C18E0FBEEEBFF904EEBEEF0A3EFC0
+:10128000F0EDFFE9A3CFF0A3EFF0904EEBE0FEA36B
+:10129000E0FFC3E49FFFE49E904EEBF0A3EFF0A3CA
+:1012A000E0FEA3E0FFC3E49FFFE49E904EEDF0A3B9
+:1012B000EFF0904EADE0B4010251BDD322904EEB61
+:1012C000E0FEA3E0FFD39406EE648094805026C332
+:1012D000EF94FAEE6480947F401BA3E0FEA3E0FF4E
+:1012E000D39406EE64809480500BC3EF94FAEE64BE
+:1012F00080947F5006904EEF7401F0904EEBE0FE2C
+:10130000A3E0FF71BFC3EF9403EE94005014A3E079
+:10131000FEA3E0FF71BFC3EF9403EE94005003E41B
+:10132000A3F0904EEFE06401600261AB904EE7E005
+:10133000FEA3E0FFC3904EE4E09FFF904EE3E09EEB
+:10134000FE904EECE02FFF904EEBE03EFE904EE321
+:10135000F0A3EFF07C007D02120151904EE7EEF019
+:10136000A3EFF0904EEBEEF0A3EFF0904EE9E0FE2D
+:10137000A3E0FFC3904EE6E09FFF904EE5E09EFEA7
+:10138000904EEEE02FFF904EEDE03EFE904EE5F0E9
+:10139000A3EFF07C007D02120151904EE9EEF0A324
+:1013A000EFF0904EEDEEF0A3EFF022E4904EE3F07C
+:1013B000A3F0A3F0A3F0A3F0A3F0A3F0A3F022D333
+:1013C000EF9400EE648094805007C3E49FFFE49E96
+:1013D000FE229047C6E0FEA3E0FF9047C4E0B506BA
+:1013E00007A3E0B50702D322C3229080867475F06C
+:1013F000A3740AF090808A7418F0A37402F0A374A6
+:101400001DF0A37402F0908077E04402F022904E29
+:10141000C4E0904E21F0904EEBE0FCA3E0904E2211
+:10142000F0ECFF3395E0A3EFF0904EEDE0FCA3E08D
+:10143000904E24F0ECFF3395E0A3EFF0904EC8E01F
+:10144000904E26F0E4A3F0904EC8F0904EB4F0A376
+:10145000F022901C1FEDF0901A967406F09047C68B
+:10146000E0FEA3E0FF9047C4E0B506F1A3E0B507B6
+:10147000EC901C1FE0FD901A97F07E1A7F98901B4D
+:10148000E6EDF0120F7E7B017A1A7996901C1FE030
+:101490002402FD020771901C21EDF0901A9674054C
+:1014A000F09047C6E0FEA3E0FF9047C4E0B506F128
+:1014B000A3E0B507EC901C21E0FD901A97F07E1A8E
+:1014C0007F98901BE6EDF0120F7E7B017A1A7996D9
+:1014D000901C21E02402FD020771E4901C1AF09098
+:1014E0004EB5E004F07006904EB4E004F0904EADBE
+:1014F000E014606024FE602124FD607714603514E0
+:101500006002A192901C1A7409F0904EB4E070042D
+:10151000A3E06410707C807822901C1A7402F09012
+:101520004EB4E064017004A3E064687065904131DA
+:1015300004F0805C901C1A7409F0904EB4E06404CE
+:101540007004A3E064B0704A7F1112074A904EAE57
+:101550007406F022901C1A7401F0D3904EB5E094FA
+:10156000B0904EB4E094044029904ED3E0B40122F0
+:10157000801E22901C1A7402F071D25015C3904E36
+:10158000B5E09403904EB4E094004006800222221D
+:10159000B19322E4904EB4F0A3F0904EB7F0904E89
+:1015A000B104F0E4904EADF07F1902074A904EB7B7
+:1015B000E0600214F0904EB9E004F0904EDCE06080
+:1015C0000204F0904EF1E0B40110A3E07006904EDA
+:1015D000F1F0B193904EF2E014F0227B017A497958
+:1015E000507D047C007FA47E3F120ED1904950E0D4
+:1015F000F47028A3E0F47023A3E0B4FF1EA3E0B4CA
+:10160000FF19904950740FF0A3F0A3F0A3F07F23CB
+:1016100012074A904EE27401F080057F2312074AB8
+:10162000904EAD7401F0227B017A4E79217D207CB1
+:1016300000D14A7B017A4E79AB7D5B7C00D14A9028
+:101640004F0474FFF0A3745BF022901C0AEBF0A32C
+:10165000EAF0A3E9F0ED1DAE0470011C4E60169097
+:101660001C0AE0FBA3E475F00112019DA9F0FAE465
+:1016700012013F80E022E4904EB4F0A3F07B017AA7
+:1016800045793E7D06FC7F9C7E3F120ED1904EAD8B
+:101690007408F07F2702074A9082807401F022903C
+:1016A0001BD2EBF0A3EAF0A3E9F0901BD874FFF58E
+:1016B000F012019D45F0602A901BD5E0FBA3E47574
+:1016C000F00112019DA9F0FA1200F9FF901BD2E07F
+:1016D000FBA3E475F00112019DA9F0FAEF12013F9E
+:1016E00080C822901C0DEBF0A3EAF0A3E9F0ED1DF9
+:1016F000AE0470011C4E6017901C0DE0FBA3E47556
+:10170000F00112019DA9F0FA74FF12013F80DF225F
+:10171000901BDAEBF0A3EAF0A3E9F0E4FF901BE002
+:10172000E0FEEFC39E5030901BDDE0FBA3E0FAA388
+:10173000E0F98F82758300120112FE901BDAE0FB44
+:10174000A3E0FAA3E0F98F827583001201126E60A4
+:10175000037F00220F80C67F0122EF5407FEEF13A4
+:1017600013135403FF24A0F582E43400F583C083EF
+:10177000C082E0FD7401A806088002C333D8FCF4DF
+:10178000FC5DD082D083F074A42FF582E43400F5A0
+:1017900083E05CF022901B94EEF0A3EFF0A3ECF05A
+:1017A000A3EDF07E1B7F9B901BE6F0120F7E901B3B
+:1017B0009874A0F0901B94E0FFA3E0901B99CFF0E9
+:1017C000A3EFF0901B97E02403FD901B96E03400FC
+:1017D000FCEDFAECFFEAFEEF908098EEF0A3EFF05C
+:1017E0007D98EDFA741BFFEAFEEFA3EEF0A3EFF095
+:1017F00090809EE4F0A3F090809004F0908006E04A
+:101800004404F0020FC1901BFFEBF0A3EAF0A3E940
+:10181000F0A3EDF090482CE0FEA3E0FF901C02E066
+:10182000FD14F0ED60320FEFAC0670010E14F5827E
+:101830008C83E0FD901BFFE0FBA3E475F001120137
+:101840009DA9F0FAED12013FAD07AC06BC48CDBD35
+:101850002CCA7E477FC880C490482CEEF0A3EFF0DE
+:10186000227A1A7900901C137401F0A3741AF0A361
+:101870007400F090482EE0FEA3E0FF90482CE06E4C
+:101880007003A3E06F700241187B017A1A79007D22
+:10189000031106901C13E0FBA3E0FAA3E0F9120089
+:1018A000F9B4022B901C14E475F002120187901C0D
+:1018B00013E0FBA3E0FAA3E0F91200F9FF9048302F
+:1018C000E0A3E0FAA3E0F5828A831201DD411890DB
+:1018D0001C13E0FBA3E0FAA3E0F91200F964047022
+:1018E0005B901C1475F001120187901C13E0FBA3A0
+:1018F000E0FAA3E0F91200F914FD7B017A1A7903EA
+:101900001106901C13E0FBA3E0FAA3E02401F9E424
+:101910003AFAC002C001901C13E0A3E0FAA3E0F978
+:101920001200F9FD7C00904833E0A3E0FAA3E0F553
+:10193000828A83D001D0021201DD4118901C13E08D
+:10194000FBA3E0FAA3E0F91200F96405705B901CB8
+:101950001475F001120187901C13E0FBA3E0FAA3B9
+:10196000E0F91200F914FD7B017A1A79031106904F
+:101970001C13E0FBA3E0FAA3E02401F9E43AFAC067
+:1019800002C001901C13E0A3E0FAA3E0F91200F9F1
+:10199000FD7C0090483CE0A3E0FAA3E0F5828A8356
+:1019A000D001D0021201DD806F901C13E0FBA3E098
+:1019B000FAA3E0F91200F96403705B901C1475F04F
+:1019C00001120187901C13E0FBA3E0FAA3E0F912D7
+:1019D00000F914FD7B017A1A79031106901C13E0BB
+:1019E000FBA3E0FAA3E02401F9E43AFAC002C00143
+:1019F000901C13E0A3E0FAA3E0F91200F9FD7C00CB
+:101A000090483FE0A3E0FAA3E0F5828A83D001D0BA
+:101A1000021201DD800280FE904898E0FEA3E0FF04
+:101A200090489AE06E7003A3E06F6021904836E022
+:101A3000FBA3E0FAA3E0F94A60361201D990489B73
+:101A4000E004F0700690489AE004F080CB90489C47
+:101A5000E0FFA3E06F6019904839E0FBA3E0FAA330
+:101A6000E0F94A600B1201D990489DE004F080DD56
+:101A700022901C1EEDF0901A967403F0901C1EE04C
+:101A800060399047C6E0FEA3E0FF9047C4E0B5068A
+:101A9000F1A3E0B507EC901C1EE0FD901A97F07ED4
+:101AA0001A7F98901BE6EDF0120F7E7B017A1A796F
+:101AB00096901C1EE02402FD120771229003F0E0B4
+:101AC000FF22901C20EDF0901A967404F09047C607
+:101AD000E0FEA3E0FF9047C4E0B506F1A3E0B50740
+:101AE000EC901C20E0FD901A97F07E1A7F98901BD6
+:101AF000E6EDF0120F7E7B017A1A7996901C20E0B9
+:101B00002402FD0207719042D1E0FEA3E0FF229083
+:101B10004E43E0FEA3E0FF22E4904EE3F0A3F0A3E7
+:101B2000F0A3F0A3F0A3F0A3F0A3F0904EEFF09099
+:0A1B30004EEBF0A3F0A3F0A3F022A7
+:00000001FF
Index: c51/output/fwram.rom
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/fwram.rom	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/fwram.rom	(working copy)
@@ -0,0 +1,6970 @@
+02
+02
+34
+e7
+09
+f6
+08
+df
+fa
+80
+46
+e7
+09
+f2
+08
+df
+fa
+80
+3e
+88
+82
+8c
+83
+e7
+09
+f0
+a3
+df
+fa
+80
+32
+e3
+09
+f6
+08
+df
+fa
+80
+78
+e3
+09
+f2
+08
+df
+fa
+80
+70
+88
+82
+8c
+83
+e3
+09
+f0
+a3
+df
+fa
+80
+64
+89
+82
+8a
+83
+e0
+a3
+f6
+08
+df
+fa
+80
+58
+89
+82
+8a
+83
+e0
+a3
+f2
+08
+df
+fa
+80
+4c
+80
+d2
+80
+fa
+80
+c6
+80
+d4
+80
+69
+80
+f2
+80
+33
+80
+10
+80
+a6
+80
+ea
+80
+9a
+80
+a8
+80
+da
+80
+e2
+80
+ca
+80
+33
+89
+82
+8a
+83
+ec
+fa
+e4
+93
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+f0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+df
+e9
+de
+e7
+80
+0d
+89
+82
+8a
+83
+e4
+93
+a3
+f6
+08
+df
+f9
+ec
+fa
+a9
+f0
+ed
+fb
+22
+89
+82
+8a
+83
+ec
+fa
+e0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+f0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+df
+ea
+de
+e8
+80
+db
+89
+82
+8a
+83
+e4
+93
+a3
+f2
+08
+df
+f9
+80
+cc
+88
+f0
+ef
+60
+01
+0e
+4e
+60
+c3
+88
+f0
+ed
+24
+02
+b4
+04
+00
+50
+b9
+f5
+82
+eb
+24
+02
+b4
+04
+00
+50
+af
+23
+23
+45
+82
+23
+90
+00
+53
+73
+bb
+01
+06
+89
+82
+8a
+83
+e0
+22
+50
+02
+e7
+22
+bb
+fe
+02
+e3
+22
+89
+82
+8a
+83
+e4
+93
+22
+bb
+01
+0c
+e5
+82
+29
+f5
+82
+e5
+83
+3a
+f5
+83
+e0
+22
+50
+06
+e9
+25
+82
+f8
+e6
+22
+bb
+fe
+06
+e9
+25
+82
+f8
+e2
+22
+e5
+82
+29
+f5
+82
+e5
+83
+3a
+f5
+83
+e4
+93
+22
+bb
+01
+06
+89
+82
+8a
+83
+f0
+22
+50
+02
+f7
+22
+bb
+fe
+01
+f3
+22
+c2
+d5
+ec
+30
+e7
+09
+b2
+d5
+e4
+c3
+9d
+fd
+e4
+9c
+fc
+ee
+30
+e7
+15
+b2
+d5
+e4
+c3
+9f
+ff
+e4
+9e
+fe
+12
+01
+df
+c3
+e4
+9d
+fd
+e4
+9c
+fc
+80
+03
+12
+01
+df
+30
+d5
+07
+c3
+e4
+9f
+ff
+e4
+9e
+fe
+22
+c5
+f0
+f8
+a3
+e0
+28
+f0
+c5
+f0
+f8
+e5
+82
+15
+82
+70
+02
+15
+83
+e0
+38
+f0
+22
+a3
+f8
+e0
+c5
+f0
+25
+f0
+f0
+e5
+82
+15
+82
+70
+02
+15
+83
+e0
+c8
+38
+f0
+e8
+22
+d0
+83
+d0
+82
+f8
+e4
+93
+70
+12
+74
+01
+93
+70
+0d
+a3
+a3
+93
+f8
+74
+01
+93
+f5
+82
+88
+83
+e4
+73
+74
+02
+93
+68
+60
+ef
+a3
+a3
+a3
+80
+df
+8a
+83
+89
+82
+e4
+73
+bc
+00
+0b
+be
+00
+29
+ef
+8d
+f0
+84
+ff
+ad
+f0
+22
+e4
+cc
+f8
+75
+f0
+08
+ef
+2f
+ff
+ee
+33
+fe
+ec
+33
+fc
+ee
+9d
+ec
+98
+40
+05
+fc
+ee
+9d
+fe
+0f
+d5
+f0
+e9
+e4
+ce
+fd
+22
+ed
+f8
+f5
+f0
+ee
+84
+20
+d2
+1c
+fe
+ad
+f0
+75
+f0
+08
+ef
+2f
+ff
+ed
+33
+fd
+40
+07
+98
+50
+06
+d5
+f0
+f2
+22
+c3
+98
+fd
+0f
+d5
+f0
+ea
+22
+78
+7f
+e4
+f6
+d8
+fd
+75
+81
+cf
+02
+02
+7b
+02
+02
+df
+e4
+93
+a3
+f8
+e4
+93
+a3
+40
+03
+f6
+80
+01
+f2
+08
+df
+f4
+80
+29
+e4
+93
+a3
+f8
+54
+07
+24
+0c
+c8
+c3
+33
+c4
+54
+0f
+44
+20
+c8
+83
+40
+04
+f4
+56
+80
+01
+46
+f6
+df
+e4
+80
+0b
+01
+02
+04
+08
+10
+20
+40
+80
+90
+02
+c0
+e4
+7e
+01
+93
+60
+bc
+a3
+ff
+54
+3f
+30
+e5
+09
+54
+1f
+fe
+e4
+93
+a3
+60
+01
+0e
+cf
+54
+c0
+25
+e0
+60
+a8
+40
+b8
+e4
+93
+a3
+fa
+e4
+93
+a3
+f8
+e4
+93
+a3
+c8
+c5
+82
+c8
+ca
+c5
+83
+ca
+f0
+a3
+c8
+c5
+82
+c8
+ca
+c5
+83
+ca
+df
+e9
+de
+e7
+80
+be
+52
+1b
+ab
+ff
+03
+72
+00
+00
+00
+ff
+14
+da
+ff
+15
+ad
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+01
+00
+f1
+ee
+12
+18
+61
+12
+10
+ba
+90
+0b
+2a
+e0
+14
+60
+20
+24
+fe
+70
+ef
+e4
+90
+4e
+f0
+f0
+ff
+ef
+24
+70
+fd
+e4
+34
+80
+8d
+82
+f5
+83
+e4
+f0
+0f
+ef
+b4
+10
+ee
+71
+47
+80
+fe
+90
+4e
+b7
+e0
+70
+06
+90
+4e
+b1
+e0
+60
+04
+71
+3b
+80
+c3
+90
+4e
+ad
+e0
+ff
+64
+01
+60
+09
+ef
+64
+02
+60
+04
+ef
+b4
+07
+04
+71
+47
+80
+ad
+71
+3b
+80
+a9
+80
+a7
+22
+90
+0b
+2b
+74
+01
+f0
+e4
+90
+0b
+2a
+f0
+22
+e4
+90
+0b
+2b
+f0
+90
+0b
+2a
+f0
+7f
+01
+fe
+d3
+ef
+94
+00
+ee
+94
+00
+40
+15
+e4
+fd
+fc
+0d
+bd
+00
+01
+0c
+bc
+04
+f8
+bd
+a6
+f5
+ef
+1f
+70
+01
+1e
+80
+e2
+22
+90
+1b
+bd
+ef
+f0
+e4
+90
+1b
+bf
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+78
+c3
+7c
+1b
+7d
+01
+7b
+ff
+7a
+02
+79
+d6
+fe
+7f
+06
+11
+d3
+90
+1b
+bd
+e0
+31
+b3
+04
+54
+14
+04
+bb
+15
+03
+bb
+2f
+03
+e4
+39
+04
+22
+3a
+03
+fd
+3b
+03
+c5
+3c
+03
+b8
+3d
+04
+34
+40
+00
+00
+04
+d9
+12
+16
+27
+12
+0d
+7c
+12
+1b
+18
+7f
+25
+e1
+4a
+90
+4e
+ad
+e0
+b4
+07
+15
+90
+49
+c1
+e0
+ff
+64
+01
+70
+02
+81
+d9
+ef
+b4
+02
+06
+90
+49
+c1
+74
+01
+f0
+02
+1b
+18
+90
+4e
+ad
+74
+01
+f0
+fb
+7a
+4e
+79
+ad
+fd
+7c
+00
+7f
+a9
+7e
+3f
+12
+0c
+cb
+7f
+23
+e1
+4a
+f1
+e4
+e4
+90
+4e
+d3
+f0
+90
+4e
+e2
+e0
+60
+11
+04
+f0
+e0
+54
+07
+f0
+30
+e0
+04
+7f
+23
+e1
+4a
+7f
+25
+e1
+4a
+90
+80
+10
+74
+01
+f0
+22
+90
+4e
+d3
+74
+01
+f0
+e4
+90
+4e
+e1
+f0
+a3
+f0
+90
+4e
+ae
+f0
+22
+12
+13
+ea
+12
+0a
+9e
+7d
+06
+7f
+80
+91
+da
+7b
+01
+7a
+4e
+79
+cb
+7d
+01
+7c
+00
+7f
+a8
+7e
+3f
+12
+0e
+d1
+02
+0d
+c8
+e4
+90
+4e
+84
+f0
+7f
+0e
+f1
+4a
+7f
+02
+f1
+4a
+90
+4e
+ad
+74
+07
+f0
+90
+1b
+be
+74
+09
+f0
+12
+08
+01
+7b
+01
+7a
+03
+79
+72
+7d
+06
+7c
+00
+7f
+96
+7e
+3f
+12
+0c
+cb
+7f
+0a
+7e
+00
+71
+53
+7b
+01
+7a
+45
+79
+3e
+7d
+06
+7c
+00
+7f
+9c
+7e
+3f
+12
+0c
+cb
+7f
+0a
+7e
+00
+71
+53
+7b
+01
+7a
+1b
+79
+be
+7d
+01
+7c
+00
+7f
+a9
+7e
+3f
+12
+0c
+cb
+90
+4e
+ae
+74
+06
+f0
+e4
+90
+4e
+b2
+f0
+22
+90
+4e
+ae
+e0
+b4
+08
+0a
+12
+0e
+90
+90
+4e
+ad
+74
+03
+f0
+22
+90
+4e
+ae
+e0
+b4
+06
+03
+02
+15
+93
+12
+16
+76
+22
+ac
+07
+ed
+44
+80
+90
+02
+18
+f0
+a3
+ef
+f0
+90
+80
+88
+74
+02
+f0
+a3
+e4
+f0
+90
+80
+8e
+f0
+a3
+f0
+90
+80
+06
+74
+02
+f0
+90
+81
+2c
+e0
+30
+e3
+f9
+7f
+00
+22
+e4
+90
+1c
+16
+f0
+a3
+f0
+e4
+ff
+f1
+21
+bf
+31
+18
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+90
+1c
+17
+74
+31
+f0
+a1
+e5
+7f
+01
+f1
+21
+bf
+5a
+18
+90
+1c
+17
+74
+5a
+f0
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+a1
+e5
+e4
+ff
+f1
+21
+ef
+64
+30
+60
+02
+a1
+e0
+7f
+01
+f1
+21
+bf
+54
+08
+90
+1c
+17
+74
+31
+f0
+a1
+e5
+7f
+01
+f1
+21
+ef
+54
+f0
+64
+d0
+70
+28
+7f
+1e
+f1
+21
+ef
+30
+e0
+08
+90
+1c
+17
+74
+d1
+f0
+80
+06
+90
+1c
+17
+74
+d0
+f0
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+80
+4e
+7f
+01
+f1
+21
+ef
+54
+f0
+ff
+bf
+50
+18
+90
+1c
+17
+74
+50
+f0
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+80
+2b
+7f
+01
+f1
+21
+bf
+02
+1f
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+90
+1c
+17
+74
+02
+f0
+7f
+01
+f1
+21
+ef
+64
+02
+60
+05
+12
+0a
+9e
+a1
+0c
+90
+1c
+17
+e0
+64
+d0
+60
+02
+c1
+b5
+7d
+09
+7f
+5a
+91
+da
+7d
+0d
+7f
+0a
+91
+da
+7d
+1b
+7f
+35
+91
+da
+7d
+1d
+7f
+db
+91
+da
+7d
+28
+7f
+b4
+91
+da
+7d
+29
+7f
+46
+91
+da
+7d
+2a
+7f
+96
+91
+da
+7d
+2b
+7f
+8c
+91
+da
+7d
+2c
+7f
+6e
+91
+da
+7d
+2d
+7f
+64
+91
+da
+7d
+38
+7f
+5f
+91
+da
+7d
+39
+7f
+0f
+91
+da
+7d
+3a
+7f
+32
+91
+da
+7d
+3b
+7f
+47
+91
+da
+7d
+42
+7f
+10
+91
+da
+7d
+43
+7f
+09
+91
+da
+7d
+54
+7f
+2e
+91
+da
+7d
+55
+7f
+f2
+91
+da
+7d
+61
+7f
+f4
+91
+da
+7d
+63
+7f
+70
+91
+da
+7d
+75
+7f
+52
+91
+da
+7d
+76
+7f
+41
+91
+da
+7d
+77
+7f
+ed
+91
+da
+7d
+78
+7f
+23
+91
+da
+7d
+79
+7f
+46
+91
+da
+7d
+7a
+7f
+e5
+91
+da
+7d
+7c
+7f
+48
+91
+da
+7d
+7d
+7f
+80
+91
+da
+7d
+7e
+7f
+77
+91
+da
+7d
+7f
+7f
+01
+91
+da
+7d
+0b
+e4
+ff
+91
+da
+7d
+7f
+e4
+ff
+91
+da
+7d
+09
+e4
+ff
+91
+da
+90
+1c
+17
+e0
+b4
+02
+18
+7d
+09
+7f
+5a
+91
+da
+7d
+26
+7f
+34
+91
+da
+7d
+19
+7f
+14
+91
+da
+7d
+09
+e4
+ff
+91
+da
+90
+1c
+17
+e0
+64
+50
+70
+3f
+7d
+09
+7f
+5a
+91
+da
+7d
+5b
+7f
+9a
+91
+da
+7f
+0d
+f1
+21
+ef
+64
+12
+60
+08
+7d
+0d
+7f
+12
+91
+da
+80
+ef
+7f
+0e
+f1
+21
+ef
+64
+c5
+60
+08
+7d
+0e
+7f
+c5
+91
+da
+80
+ef
+7f
+53
+f1
+21
+ef
+64
+48
+60
+08
+7d
+53
+7f
+48
+91
+da
+80
+ef
+90
+1c
+17
+e0
+ff
+22
+90
+02
+18
+ef
+f0
+90
+80
+88
+74
+01
+f0
+a3
+e4
+f0
+90
+80
+8e
+04
+f0
+a3
+e4
+f0
+90
+80
+06
+74
+02
+f0
+90
+81
+2c
+e0
+30
+e3
+f9
+90
+02
+1d
+e0
+ff
+22
+90
+1c
+03
+ef
+f0
+78
+04
+7c
+1c
+7d
+01
+7b
+ff
+7a
+02
+79
+dc
+7e
+00
+7f
+03
+11
+d3
+90
+1c
+03
+e0
+90
+1c
+06
+f0
+7b
+01
+7a
+1c
+79
+04
+7d
+03
+90
+1b
+e7
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+47
+c6
+e0
+ff
+a3
+e0
+90
+1b
+eb
+cf
+f0
+a3
+ef
+f0
+90
+1b
+ea
+e0
+ff
+14
+f0
+ef
+60
+3c
+90
+1b
+e7
+e0
+fb
+a3
+e4
+75
+f0
+01
+31
+9d
+a9
+f0
+fa
+11
+f9
+ff
+90
+1b
+eb
+e4
+75
+f0
+01
+31
+9d
+85
+f0
+82
+f5
+83
+ef
+f0
+90
+1b
+eb
+e0
+fe
+a3
+e0
+ff
+be
+47
+c9
+bf
+c4
+c6
+90
+1b
+eb
+74
+47
+f0
+a3
+74
+2e
+f0
+80
+ba
+90
+1b
+eb
+e0
+ff
+a3
+e0
+90
+47
+c6
+cf
+f0
+a3
+ef
+f0
+22
+7f
+24
+f1
+4a
+e4
+90
+4e
+ad
+f0
+22
+7b
+01
+7a
+1b
+79
+ab
+78
+30
+7c
+48
+7d
+01
+7e
+00
+7f
+12
+02
+00
+d3
+51
+73
+51
+9e
+7f
+18
+11
+1d
+40
+11
+7f
+02
+12
+07
+21
+7f
+03
+12
+07
+21
+7f
+04
+12
+07
+21
+80
+e9
+22
+7b
+01
+7a
+81
+79
+1c
+ad
+07
+e4
+90
+1c
+1b
+f0
+fe
+ef
+54
+07
+f0
+ef
+13
+13
+13
+54
+03
+fe
+f5
+82
+75
+83
+00
+12
+01
+12
+fd
+33
+95
+e0
+fc
+90
+1c
+1b
+e0
+ff
+74
+01
+7e
+00
+a8
+07
+08
+80
+05
+c3
+33
+ce
+33
+ce
+d8
+f9
+ff
+ee
+5c
+fe
+ef
+5d
+4e
+24
+ff
+22
+7f
+17
+11
+1d
+40
+03
+7f
+00
+22
+c2
+07
+7f
+07
+11
+c6
+90
+4e
+c2
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+17
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+c2
+f0
+d2
+07
+7f
+07
+11
+c6
+c2
+06
+7f
+07
+31
+a7
+90
+4e
+c2
+e0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+c2
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+c3
+f0
+90
+4e
+c3
+e0
+ff
+22
+ac
+07
+d2
+05
+31
+bc
+af
+04
+a2
+07
+92
+02
+51
+5b
+af
+04
+c2
+03
+7b
+01
+7a
+80
+79
+78
+a2
+03
+92
+01
+90
+1c
+10
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+fe
+fd
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+fd
+30
+01
+22
+90
+1c
+10
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+12
+00
+f9
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+4f
+02
+01
+3f
+90
+1c
+10
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+12
+00
+f9
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5f
+02
+01
+3f
+7f
+04
+11
+1d
+40
+03
+7f
+00
+22
+c2
+07
+7f
+07
+11
+c6
+90
+4e
+c0
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+04
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+c0
+f0
+d2
+07
+7f
+07
+11
+c6
+c2
+06
+7f
+07
+31
+a7
+90
+4e
+c0
+e0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+c0
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+c1
+f0
+90
+4e
+c1
+e0
+ff
+22
+ac
+07
+a2
+06
+92
+04
+51
+67
+af
+04
+a2
+06
+b3
+92
+03
+11
+d8
+af
+04
+c2
+05
+7b
+01
+7a
+80
+79
+70
+a2
+05
+92
+01
+01
+e2
+e4
+90
+1c
+07
+f0
+a3
+f0
+7f
+02
+11
+1d
+e4
+33
+90
+1c
+09
+f0
+7f
+03
+11
+1d
+e4
+33
+ff
+90
+1c
+09
+e0
+fe
+25
+e0
+4f
+ff
+90
+4e
+c5
+e0
+6f
+60
+5b
+90
+4e
+c6
+e0
+a3
+f0
+90
+4e
+c5
+e0
+a3
+f0
+90
+4e
+c5
+ef
+f0
+fd
+a3
+e0
+75
+f0
+04
+a4
+fb
+aa
+f0
+ed
+75
+f0
+10
+a4
+ff
+e5
+f0
+4a
+fe
+ef
+4b
+ff
+a3
+e0
+fd
+ee
+ef
+4d
+ff
+90
+1c
+07
+ee
+f0
+a3
+ef
+f0
+ee
+70
+21
+ef
+24
+f5
+60
+14
+24
+d7
+60
+10
+24
+fc
+60
+04
+24
+31
+70
+10
+90
+4e
+c8
+e0
+14
+f0
+80
+09
+90
+4e
+c8
+e0
+04
+f0
+51
+4c
+22
+90
+4e
+ad
+e0
+64
+01
+60
+06
+90
+4e
+b7
+74
+03
+f0
+22
+7b
+01
+7a
+80
+79
+74
+a2
+02
+92
+01
+01
+e2
+7b
+01
+7a
+80
+79
+7c
+a2
+04
+92
+01
+01
+e2
+e4
+ff
+51
+9e
+7f
+06
+12
+07
+21
+ef
+54
+f7
+ff
+7d
+06
+12
+04
+da
+7f
+02
+12
+07
+21
+90
+80
+81
+e4
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+77
+e0
+44
+02
+f0
+22
+e4
+90
+1c
+22
+f0
+90
+80
+81
+04
+f0
+e4
+90
+4e
+f0
+f0
+90
+4e
+f0
+e0
+04
+f0
+e0
+c3
+94
+06
+40
+03
+12
+13
+ea
+e4
+ff
+12
+07
+21
+90
+1c
+22
+ef
+f0
+64
+30
+60
+27
+e0
+64
+31
+60
+22
+90
+80
+81
+e4
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+77
+e0
+54
+fd
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+81
+74
+01
+f0
+80
+bc
+22
+e4
+ff
+51
+9e
+7f
+06
+12
+07
+21
+ef
+44
+08
+ff
+7d
+06
+12
+04
+da
+90
+80
+81
+e4
+f0
+c2
+06
+7f
+19
+31
+a7
+c2
+06
+7f
+1a
+21
+a7
+90
+1c
+1d
+ef
+f0
+7b
+01
+7a
+80
+79
+74
+11
+23
+92
+0a
+90
+1c
+1d
+e0
+ff
+a2
+0a
+b3
+92
+02
+41
+5b
+d2
+07
+7f
+07
+11
+c6
+90
+4e
+ba
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+04
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+ba
+f0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+ba
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+bb
+f0
+90
+4e
+bb
+e0
+ff
+22
+e4
+90
+1b
+ed
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+71
+30
+90
+1b
+ed
+ef
+f0
+71
+dc
+90
+1b
+ef
+ef
+f0
+91
+27
+90
+1b
+ee
+ef
+f0
+11
+62
+90
+1b
+f0
+ef
+f0
+31
+43
+90
+1b
+f1
+ef
+f0
+91
+72
+90
+1b
+ee
+e0
+ff
+25
+e0
+ff
+90
+1b
+ed
+e0
+4f
+ff
+90
+1b
+ef
+e0
+fe
+25
+e0
+25
+e0
+4f
+ff
+a3
+e0
+fe
+33
+33
+33
+54
+f8
+4f
+ff
+a3
+e0
+fe
+c4
+54
+f0
+4f
+90
+4e
+dd
+f0
+22
+d2
+07
+7f
+07
+11
+c6
+90
+4e
+bc
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+17
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+bc
+f0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+bc
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+bd
+f0
+90
+4e
+bd
+e0
+ff
+22
+d2
+07
+7f
+07
+11
+c6
+90
+4e
+be
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+1b
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+be
+f0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+be
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+bf
+f0
+90
+4e
+bf
+e0
+ff
+22
+90
+4e
+cc
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+06
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+cc
+f0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+cc
+e0
+64
+07
+70
+28
+90
+4e
+cb
+e0
+04
+f0
+e0
+54
+03
+f0
+70
+02
+04
+f0
+90
+4e
+cb
+e0
+90
+4e
+cd
+f0
+b1
+c8
+7b
+01
+7a
+4e
+79
+cb
+7d
+01
+7c
+00
+7f
+a8
+7e
+3f
+91
+cb
+22
+90
+1b
+c9
+ee
+f0
+a3
+ef
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+1b
+cb
+e0
+70
+02
+a3
+e0
+70
+02
+a1
+7b
+90
+1b
+c9
+e0
+fe
+a3
+e0
+ff
+44
+0f
+24
+01
+fd
+e4
+3e
+fc
+c3
+ed
+9f
+ff
+ec
+9e
+fe
+90
+1b
+d0
+f0
+a3
+ef
+f0
+90
+1b
+cb
+e0
+fc
+a3
+e0
+fd
+d3
+9f
+ec
+9e
+40
+0a
+90
+1b
+d0
+e0
+fe
+a3
+e0
+ff
+80
+04
+ae
+04
+af
+05
+90
+1b
+d0
+ee
+f0
+fc
+a3
+ef
+f0
+fd
+c3
+90
+1b
+cc
+e0
+9d
+f0
+90
+1b
+cb
+e0
+9c
+f0
+90
+1b
+c9
+e0
+fe
+a3
+e0
+ff
+90
+1b
+cd
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+17
+95
+7f
+0a
+7e
+00
+12
+03
+53
+90
+1b
+d0
+e0
+fe
+a3
+e0
+ff
+90
+1b
+ce
+ee
+8f
+f0
+12
+01
+87
+90
+1b
+ca
+e0
+2f
+f0
+90
+1b
+c9
+e0
+3e
+f0
+81
+e2
+22
+e4
+90
+1c
+19
+f0
+7b
+01
+7a
+1c
+79
+19
+7d
+01
+fc
+7f
+ac
+7e
+3f
+d1
+d1
+90
+1c
+19
+e0
+b4
+ff
+30
+f1
+c9
+90
+4f
+01
+ee
+f0
+a3
+ef
+f0
+7b
+01
+7a
+4f
+79
+01
+7d
+02
+7c
+00
+7f
+aa
+7e
+3f
+91
+cb
+90
+1c
+19
+74
+5a
+f0
+7b
+01
+7a
+1c
+79
+19
+7d
+01
+7c
+00
+7f
+ac
+7e
+3f
+91
+cb
+22
+51
+9e
+90
+4e
+c9
+e0
+ff
+64
+d0
+60
+04
+ef
+b4
+d1
+0b
+90
+4e
+cb
+e0
+04
+ff
+7d
+06
+12
+04
+da
+90
+4e
+c9
+e0
+b4
+31
+1a
+90
+4e
+cb
+e0
+b4
+01
+09
+7d
+06
+e4
+ff
+12
+04
+da
+80
+0a
+90
+4e
+cb
+e0
+ff
+7d
+06
+12
+04
+da
+90
+4e
+c9
+e0
+b4
+50
+0c
+90
+4e
+cb
+e0
+24
+03
+ff
+7d
+06
+12
+04
+da
+90
+4e
+c9
+e0
+b4
+5a
+0c
+90
+4e
+cb
+e0
+24
+03
+ff
+7d
+06
+12
+04
+da
+90
+4e
+c9
+e0
+64
+02
+70
+5d
+7d
+09
+7f
+5a
+12
+04
+da
+90
+4e
+cb
+e0
+14
+60
+1a
+14
+60
+27
+14
+60
+34
+24
+03
+70
+3e
+7d
+0d
+7f
+15
+12
+04
+da
+7d
+0e
+7f
+15
+12
+04
+da
+80
+2e
+7d
+0d
+7f
+20
+12
+04
+da
+7d
+0e
+7f
+20
+12
+04
+da
+80
+1e
+7d
+0d
+7f
+2a
+12
+04
+da
+7d
+0e
+7f
+2a
+12
+04
+da
+80
+0e
+7d
+0d
+7f
+3f
+12
+04
+da
+7d
+0e
+7f
+3f
+12
+04
+da
+7d
+09
+e4
+ff
+12
+04
+da
+41
+8a
+7b
+01
+7a
+4f
+79
+01
+7d
+02
+7c
+00
+7f
+aa
+7e
+3f
+d1
+d1
+90
+4f
+02
+e0
+04
+f0
+70
+06
+90
+4f
+01
+e0
+04
+f0
+7b
+01
+7a
+4f
+79
+01
+7d
+02
+7c
+00
+7f
+aa
+7e
+3f
+91
+cb
+90
+4f
+01
+e0
+fc
+a3
+e0
+90
+45
+3f
+f0
+ec
+a3
+f0
+7f
+0d
+02
+07
+4a
+90
+1b
+f2
+ec
+f0
+a3
+ed
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+80
+98
+74
+04
+f0
+a3
+e4
+f0
+90
+1b
+2c
+74
+a0
+f0
+a3
+ee
+f0
+a3
+ef
+f0
+90
+1b
+2f
+74
+a1
+f0
+7a
+1b
+79
+2c
+7e
+1b
+7f
+2c
+74
+2c
+fc
+74
+1b
+ff
+ec
+fe
+ef
+90
+80
+9a
+ee
+f0
+a3
+ef
+f0
+90
+1b
+f2
+e0
+fc
+a3
+e0
+fa
+ec
+ff
+ea
+fe
+ef
+90
+80
+9e
+ee
+f0
+a3
+ef
+f0
+7a
+1b
+79
+30
+7e
+1b
+7f
+30
+74
+30
+fc
+74
+1b
+ff
+ec
+fe
+ef
+90
+80
+9c
+ee
+f0
+a3
+ef
+f0
+90
+80
+90
+74
+02
+f0
+90
+80
+9c
+a3
+e0
+20
+e7
+07
+90
+80
+90
+e0
+44
+01
+f0
+90
+80
+06
+e0
+44
+04
+f0
+f1
+c1
+90
+1b
+f4
+e0
+a3
+e0
+fa
+a3
+e0
+ae
+02
+ff
+7b
+01
+7a
+1b
+79
+30
+90
+1b
+f2
+e0
+a3
+e0
+90
+1b
+e6
+f0
+90
+1b
+e1
+ee
+f0
+a3
+ef
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+1b
+e6
+e0
+ff
+14
+f0
+ef
+60
+27
+90
+1b
+e3
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+12
+00
+f9
+ff
+90
+1b
+e1
+e4
+75
+f0
+01
+12
+01
+9d
+85
+f0
+82
+f5
+83
+ef
+f0
+80
+cf
+22
+90
+81
+2c
+e0
+30
+e5
+f9
+22
+90
+4e
+41
+e0
+fe
+a3
+e0
+ff
+22
+90
+1c
+1c
+ef
+f0
+11
+1d
+92
+09
+90
+1c
+1c
+e0
+ff
+a2
+09
+b3
+92
+08
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+ff
+30
+08
+43
+24
+a0
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5d
+d0
+82
+d0
+83
+f0
+74
+a4
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+4f
+d0
+82
+d0
+83
+f0
+22
+74
+a0
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+fc
+4d
+d0
+82
+d0
+83
+f0
+74
+a4
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+e0
+ff
+ec
+f4
+fe
+ef
+5e
+f0
+22
+90
+1b
+f7
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+4e
+ad
+e0
+ff
+64
+01
+60
+0a
+ef
+64
+02
+60
+05
+ef
+64
+07
+70
+2d
+ef
+b4
+01
+10
+90
+1b
+f7
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+a3
+e0
+fd
+81
+52
+90
+4e
+ad
+e0
+b4
+07
+10
+90
+1b
+f7
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+a3
+e0
+fd
+81
+96
+80
+fe
+22
+e4
+90
+1b
+fb
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+c2
+00
+90
+4e
+ad
+e0
+ff
+64
+01
+60
+07
+ef
+64
+07
+60
+02
+21
+c4
+90
+4e
+d3
+e0
+70
+0a
+90
+4e
+ad
+e0
+64
+01
+70
+02
+21
+c4
+71
+d2
+40
+02
+21
+c4
+90
+4e
+dd
+e0
+ff
+90
+4e
+c4
+e0
+b5
+07
+19
+90
+4e
+b7
+e0
+fe
+d3
+94
+00
+40
+05
+ee
+94
+03
+40
+0a
+90
+4e
+ad
+e0
+b4
+01
+0b
+ef
+60
+08
+d2
+00
+90
+49
+b7
+74
+01
+f0
+90
+4e
+dd
+e0
+90
+4e
+c4
+f0
+e4
+90
+4e
+eb
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+4e
+ad
+e0
+b4
+01
+06
+31
+c5
+72
+00
+92
+00
+90
+4e
+ad
+e0
+b4
+07
+1e
+90
+45
+95
+e0
+b4
+01
+17
+71
+ea
+31
+c5
+72
+00
+92
+00
+90
+4e
+83
+e0
+ff
+90
+4e
+84
+e0
+6f
+60
+03
+e0
+04
+f0
+90
+4e
+c8
+e0
+60
+1f
+d2
+00
+90
+49
+b7
+74
+01
+f0
+90
+4e
+80
+f0
+90
+4e
+ad
+e0
+b4
+07
+0c
+90
+4e
+81
+74
+01
+f0
+90
+4e
+82
+74
+0a
+f0
+90
+4e
+b6
+e0
+c3
+94
+17
+40
+07
+e4
+90
+4e
+c4
+f0
+d2
+00
+30
+00
+2d
+90
+4e
+b6
+e0
+c3
+94
+18
+50
+24
+90
+49
+c2
+74
+01
+f0
+90
+4e
+ad
+e0
+ff
+64
+01
+60
+09
+ef
+64
+02
+60
+04
+ef
+b4
+07
+0c
+91
+0e
+7b
+01
+7a
+4e
+79
+21
+7d
+07
+11
+6b
+22
+e4
+90
+1c
+18
+f0
+f9
+ff
+fd
+90
+4f
+03
+e0
+04
+f0
+90
+4e
+b7
+74
+02
+f0
+90
+4f
+03
+e0
+fe
+c3
+94
+00
+40
+0f
+ee
+d3
+94
+32
+50
+09
+90
+1c
+18
+74
+05
+f0
+e4
+80
+4f
+ee
+c3
+94
+33
+40
+11
+ee
+d3
+94
+64
+50
+0b
+e4
+90
+1c
+18
+f0
+ff
+79
+05
+fd
+80
+38
+ee
+c3
+94
+65
+40
+13
+ee
+d3
+94
+96
+50
+0d
+90
+1c
+18
+74
+fb
+f0
+7f
+ff
+e4
+f9
+fd
+80
+1f
+ee
+c3
+94
+97
+40
+19
+ee
+d3
+94
+c8
+50
+13
+e4
+90
+1c
+18
+f0
+ff
+79
+fb
+7d
+ff
+ee
+b4
+c8
+05
+e4
+90
+4f
+03
+f0
+90
+4e
+e0
+e0
+70
+28
+ef
+fe
+90
+1c
+18
+e0
+fb
+ee
+eb
+ff
+c3
+e4
+9f
+ff
+e4
+9e
+90
+4e
+ed
+f0
+a3
+ef
+f0
+ed
+fe
+e9
+fd
+ee
+ed
+ff
+90
+4e
+eb
+ee
+f0
+a3
+ef
+f0
+80
+1b
+ef
+fe
+90
+1c
+18
+e0
+fb
+ee
+eb
+ff
+90
+4e
+eb
+ee
+f0
+a3
+ef
+f0
+ed
+ff
+e9
+a3
+cf
+f0
+a3
+ef
+f0
+90
+4e
+eb
+e0
+fe
+a3
+e0
+ff
+c3
+e4
+9f
+ff
+e4
+9e
+90
+4e
+eb
+f0
+a3
+ef
+f0
+a3
+e0
+fe
+a3
+e0
+ff
+c3
+e4
+9f
+ff
+e4
+9e
+90
+4e
+ed
+f0
+a3
+ef
+f0
+90
+4e
+ad
+e0
+b4
+01
+02
+51
+bd
+d3
+22
+90
+4e
+eb
+e0
+fe
+a3
+e0
+ff
+d3
+94
+06
+ee
+64
+80
+94
+80
+50
+26
+c3
+ef
+94
+fa
+ee
+64
+80
+94
+7f
+40
+1b
+a3
+e0
+fe
+a3
+e0
+ff
+d3
+94
+06
+ee
+64
+80
+94
+80
+50
+0b
+c3
+ef
+94
+fa
+ee
+64
+80
+94
+7f
+50
+06
+90
+4e
+ef
+74
+01
+f0
+90
+4e
+eb
+e0
+fe
+a3
+e0
+ff
+71
+bf
+c3
+ef
+94
+03
+ee
+94
+00
+50
+14
+a3
+e0
+fe
+a3
+e0
+ff
+71
+bf
+c3
+ef
+94
+03
+ee
+94
+00
+50
+03
+e4
+a3
+f0
+90
+4e
+ef
+e0
+64
+01
+60
+02
+61
+ab
+90
+4e
+e7
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4e
+e4
+e0
+9f
+ff
+90
+4e
+e3
+e0
+9e
+fe
+90
+4e
+ec
+e0
+2f
+ff
+90
+4e
+eb
+e0
+3e
+fe
+90
+4e
+e3
+f0
+a3
+ef
+f0
+7c
+00
+7d
+02
+12
+01
+51
+90
+4e
+e7
+ee
+f0
+a3
+ef
+f0
+90
+4e
+eb
+ee
+f0
+a3
+ef
+f0
+90
+4e
+e9
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4e
+e6
+e0
+9f
+ff
+90
+4e
+e5
+e0
+9e
+fe
+90
+4e
+ee
+e0
+2f
+ff
+90
+4e
+ed
+e0
+3e
+fe
+90
+4e
+e5
+f0
+a3
+ef
+f0
+7c
+00
+7d
+02
+12
+01
+51
+90
+4e
+e9
+ee
+f0
+a3
+ef
+f0
+90
+4e
+ed
+ee
+f0
+a3
+ef
+f0
+22
+e4
+90
+4e
+e3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+22
+d3
+ef
+94
+00
+ee
+64
+80
+94
+80
+50
+07
+c3
+e4
+9f
+ff
+e4
+9e
+fe
+22
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+07
+a3
+e0
+b5
+07
+02
+d3
+22
+c3
+22
+90
+80
+86
+74
+75
+f0
+a3
+74
+0a
+f0
+90
+80
+8a
+74
+18
+f0
+a3
+74
+02
+f0
+a3
+74
+1d
+f0
+a3
+74
+02
+f0
+90
+80
+77
+e0
+44
+02
+f0
+22
+90
+4e
+c4
+e0
+90
+4e
+21
+f0
+90
+4e
+eb
+e0
+fc
+a3
+e0
+90
+4e
+22
+f0
+ec
+ff
+33
+95
+e0
+a3
+ef
+f0
+90
+4e
+ed
+e0
+fc
+a3
+e0
+90
+4e
+24
+f0
+ec
+ff
+33
+95
+e0
+a3
+ef
+f0
+90
+4e
+c8
+e0
+90
+4e
+26
+f0
+e4
+a3
+f0
+90
+4e
+c8
+f0
+90
+4e
+b4
+f0
+a3
+f0
+22
+90
+1c
+1f
+ed
+f0
+90
+1a
+96
+74
+06
+f0
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+1f
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+0f
+7e
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+1f
+e0
+24
+02
+fd
+02
+07
+71
+90
+1c
+21
+ed
+f0
+90
+1a
+96
+74
+05
+f0
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+21
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+0f
+7e
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+21
+e0
+24
+02
+fd
+02
+07
+71
+e4
+90
+1c
+1a
+f0
+90
+4e
+b5
+e0
+04
+f0
+70
+06
+90
+4e
+b4
+e0
+04
+f0
+90
+4e
+ad
+e0
+14
+60
+60
+24
+fe
+60
+21
+24
+fd
+60
+77
+14
+60
+35
+14
+60
+02
+a1
+92
+90
+1c
+1a
+74
+09
+f0
+90
+4e
+b4
+e0
+70
+04
+a3
+e0
+64
+10
+70
+7c
+80
+78
+22
+90
+1c
+1a
+74
+02
+f0
+90
+4e
+b4
+e0
+64
+01
+70
+04
+a3
+e0
+64
+68
+70
+65
+90
+41
+31
+04
+f0
+80
+5c
+90
+1c
+1a
+74
+09
+f0
+90
+4e
+b4
+e0
+64
+04
+70
+04
+a3
+e0
+64
+b0
+70
+4a
+7f
+11
+12
+07
+4a
+90
+4e
+ae
+74
+06
+f0
+22
+90
+1c
+1a
+74
+01
+f0
+d3
+90
+4e
+b5
+e0
+94
+b0
+90
+4e
+b4
+e0
+94
+04
+40
+29
+90
+4e
+d3
+e0
+b4
+01
+22
+80
+1e
+22
+90
+1c
+1a
+74
+02
+f0
+71
+d2
+50
+15
+c3
+90
+4e
+b5
+e0
+94
+03
+90
+4e
+b4
+e0
+94
+00
+40
+06
+80
+02
+22
+22
+b1
+93
+22
+e4
+90
+4e
+b4
+f0
+a3
+f0
+90
+4e
+b7
+f0
+90
+4e
+b1
+04
+f0
+e4
+90
+4e
+ad
+f0
+7f
+19
+02
+07
+4a
+90
+4e
+b7
+e0
+60
+02
+14
+f0
+90
+4e
+b9
+e0
+04
+f0
+90
+4e
+dc
+e0
+60
+02
+04
+f0
+90
+4e
+f1
+e0
+b4
+01
+10
+a3
+e0
+70
+06
+90
+4e
+f1
+f0
+b1
+93
+90
+4e
+f2
+e0
+14
+f0
+22
+7b
+01
+7a
+49
+79
+50
+7d
+04
+7c
+00
+7f
+a4
+7e
+3f
+12
+0e
+d1
+90
+49
+50
+e0
+f4
+70
+28
+a3
+e0
+f4
+70
+23
+a3
+e0
+b4
+ff
+1e
+a3
+e0
+b4
+ff
+19
+90
+49
+50
+74
+0f
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+7f
+23
+12
+07
+4a
+90
+4e
+e2
+74
+01
+f0
+80
+05
+7f
+23
+12
+07
+4a
+90
+4e
+ad
+74
+01
+f0
+22
+7b
+01
+7a
+4e
+79
+21
+7d
+20
+7c
+00
+d1
+4a
+7b
+01
+7a
+4e
+79
+ab
+7d
+5b
+7c
+00
+d1
+4a
+90
+4f
+04
+74
+ff
+f0
+a3
+74
+5b
+f0
+22
+90
+1c
+0a
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+16
+90
+1c
+0a
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+e4
+12
+01
+3f
+80
+e0
+22
+e4
+90
+4e
+b4
+f0
+a3
+f0
+7b
+01
+7a
+45
+79
+3e
+7d
+06
+fc
+7f
+9c
+7e
+3f
+12
+0e
+d1
+90
+4e
+ad
+74
+08
+f0
+7f
+27
+02
+07
+4a
+90
+82
+80
+74
+01
+f0
+22
+90
+1b
+d2
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+1b
+d8
+74
+ff
+f5
+f0
+12
+01
+9d
+45
+f0
+60
+2a
+90
+1b
+d5
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+12
+00
+f9
+ff
+90
+1b
+d2
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+ef
+12
+01
+3f
+80
+c8
+22
+90
+1c
+0d
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+17
+90
+1c
+0d
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+74
+ff
+12
+01
+3f
+80
+df
+22
+90
+1b
+da
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+ff
+90
+1b
+e0
+e0
+fe
+ef
+c3
+9e
+50
+30
+90
+1b
+dd
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+01
+12
+fe
+90
+1b
+da
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+01
+12
+6e
+60
+03
+7f
+00
+22
+0f
+80
+c6
+7f
+01
+22
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+ff
+24
+a0
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+fc
+5d
+d0
+82
+d0
+83
+f0
+74
+a4
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+e0
+5c
+f0
+22
+90
+1b
+94
+ee
+f0
+a3
+ef
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+7e
+1b
+7f
+9b
+90
+1b
+e6
+f0
+12
+0f
+7e
+90
+1b
+98
+74
+a0
+f0
+90
+1b
+94
+e0
+ff
+a3
+e0
+90
+1b
+99
+cf
+f0
+a3
+ef
+f0
+90
+1b
+97
+e0
+24
+03
+fd
+90
+1b
+96
+e0
+34
+00
+fc
+ed
+fa
+ec
+ff
+ea
+fe
+ef
+90
+80
+98
+ee
+f0
+a3
+ef
+f0
+7d
+98
+ed
+fa
+74
+1b
+ff
+ea
+fe
+ef
+a3
+ee
+f0
+a3
+ef
+f0
+90
+80
+9e
+e4
+f0
+a3
+f0
+90
+80
+90
+04
+f0
+90
+80
+06
+e0
+44
+04
+f0
+02
+0f
+c1
+90
+1b
+ff
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+48
+2c
+e0
+fe
+a3
+e0
+ff
+90
+1c
+02
+e0
+fd
+14
+f0
+ed
+60
+32
+0f
+ef
+ac
+06
+70
+01
+0e
+14
+f5
+82
+8c
+83
+e0
+fd
+90
+1b
+ff
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+ed
+12
+01
+3f
+ad
+07
+ac
+06
+bc
+48
+cd
+bd
+2c
+ca
+7e
+47
+7f
+c8
+80
+c4
+90
+48
+2c
+ee
+f0
+a3
+ef
+f0
+22
+7a
+1a
+79
+00
+90
+1c
+13
+74
+01
+f0
+a3
+74
+1a
+f0
+a3
+74
+00
+f0
+90
+48
+2e
+e0
+fe
+a3
+e0
+ff
+90
+48
+2c
+e0
+6e
+70
+03
+a3
+e0
+6f
+70
+02
+41
+18
+7b
+01
+7a
+1a
+79
+00
+7d
+03
+11
+06
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+b4
+02
+2b
+90
+1c
+14
+e4
+75
+f0
+02
+12
+01
+87
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+ff
+90
+48
+30
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+12
+01
+dd
+41
+18
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+64
+04
+70
+5b
+90
+1c
+14
+75
+f0
+01
+12
+01
+87
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+14
+fd
+7b
+01
+7a
+1a
+79
+03
+11
+06
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+1c
+13
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+fd
+7c
+00
+90
+48
+33
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+01
+dd
+41
+18
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+64
+05
+70
+5b
+90
+1c
+14
+75
+f0
+01
+12
+01
+87
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+14
+fd
+7b
+01
+7a
+1a
+79
+03
+11
+06
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+1c
+13
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+fd
+7c
+00
+90
+48
+3c
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+01
+dd
+80
+6f
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+64
+03
+70
+5b
+90
+1c
+14
+75
+f0
+01
+12
+01
+87
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+14
+fd
+7b
+01
+7a
+1a
+79
+03
+11
+06
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+1c
+13
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+fd
+7c
+00
+90
+48
+3f
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+01
+dd
+80
+02
+80
+fe
+90
+48
+98
+e0
+fe
+a3
+e0
+ff
+90
+48
+9a
+e0
+6e
+70
+03
+a3
+e0
+6f
+60
+21
+90
+48
+36
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+36
+12
+01
+d9
+90
+48
+9b
+e0
+04
+f0
+70
+06
+90
+48
+9a
+e0
+04
+f0
+80
+cb
+90
+48
+9c
+e0
+ff
+a3
+e0
+6f
+60
+19
+90
+48
+39
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+0b
+12
+01
+d9
+90
+48
+9d
+e0
+04
+f0
+80
+dd
+22
+90
+1c
+1e
+ed
+f0
+90
+1a
+96
+74
+03
+f0
+90
+1c
+1e
+e0
+60
+39
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+1e
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+0f
+7e
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+1e
+e0
+24
+02
+fd
+12
+07
+71
+22
+90
+03
+f0
+e0
+ff
+22
+90
+1c
+20
+ed
+f0
+90
+1a
+96
+74
+04
+f0
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+20
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+0f
+7e
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+20
+e0
+24
+02
+fd
+02
+07
+71
+90
+42
+d1
+e0
+fe
+a3
+e0
+ff
+22
+90
+4e
+43
+e0
+fe
+a3
+e0
+ff
+22
+e4
+90
+4e
+e3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+4e
+ef
+f0
+90
+4e
+eb
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+22
Index: c51/output/geneep.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/output/geneep.exe
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/geneep.exe	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/geneep.exe	(working copy)

Property changes on: c51/output/geneep.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/output/otp.dat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/otp.dat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/otp.dat	(working copy)
@@ -0,0 +1,12 @@
+00
+02
+aa
+55
+00
+00
+aa
+55
+00
+00
+82
+78
Index: c51/output/ramcode.rom
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/ramcode.rom	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/ramcode.rom	(working copy)
@@ -0,0 +1,1685 @@
+c512800f
+c0000025
+c0018031
+c0430037
+c0450042
+c0458065
+c0538071
+c0540078
+c054808c
+c056009f
+c05a033b
+c05a80b8
+c05b00bf
+c05b80df
+20203b34
+c002813a
+c00b013f
+c00d8143
+c0118146
+c017816a
+c018817f
+c0190191
+c01981a4
+c01c81b5
+c01e01c2
+c01e81d5
+c01f01db
+c01f81ea
+c0210208
+c026820d
+c0410227
+c04a8229
+c0798230
+c07b823c
+c07c0271
+c07c8277
+20203b34
+20800000
+70403000
+2435b004
+6800c595
+243a002f
+6800ce78
+203a3004
+704e7f00
+c5933004
+2435b004
+70828003
+20203004
+20400281
+20400418
+204002b3
+6800ce78
+243a036d
+2020301b
+2030b9a3
+708955d4
+20000004
+708955d2
+20000004
+708955d1
+20000004
+202039ae
+6800c280
+c00a39ae
+2020399c
+60088017
+1840a200
+20403a13
+58000500
+20403b35
+70890601
+7089003c
+708901e0
+70896d12
+2000000a
+70890201
+7089023d
+2000000a
+708903b7
+2000000a
+7089027f
+20200062
+6800c280
+c00a0062
+c280805c
+c281005c
+70894c5b
+70894d96
+70894e2c
+70894f46
+20200060
+70894cfb
+70894def
+70894eec
+70894f5e
+6800c280
+202039dc
+708956c5
+708955d0
+20600000
+20403cd2
+20403a5f
+70804206
+68108968
+79207e07
+60108968
+793ffe07
+60108968
+79207e07
+60108968
+70804205
+20203a0c
+20403c2b
+6800ce45
+207a0000
+704e4500
+1c427e00
+6002489e
+20600000
+c6130000
+20403be2
+6801c20f
+207a0000
+68014042
+d840ffff
+98467c00
+20628000
+6800c131
+207a0000
+20404816
+247a0000
+20403d0e
+247a0000
+20403a7b
+6800c6e2
+203a3c5e
+6800c639
+207a0000
+20203c5e
+6800c595
+203a0099
+6800809f
+243a0099
+6800ce83
+6808ce84
+98467c00
+24628000
+6800ce81
+247a0000
+58000000
+600400a0
+20203c6a
+204000a4
+24740000
+68008b2b
+247a0000
+7049c100
+20203c6a
+204000a4
+24740000
+68008b2b
+247a0000
+20203c8c
+204000af
+24740000
+204000ac
+24740000
+700b2b01
+700b2a01
+204000b4
+202000af
+6801482c
+6809482e
+202000b1
+680147c4
+680947c6
+98467c00
+2022e4c0
+202031d4
+68008b2a
+2000000a
+c08000b4
+20600000
+70001627
+70015000
+70017e00
+70017f00
+58000000
+600288d2
+20600000
+da2046f0
+20407f95
+207a0000
+1fe22600
+204000c5
+20203d9b
+c10c0000
+c00a00ca
+c00a80d2
+c01480dd
+20203d73
+704e8300
+70421200
+704ea600
+704e5178
+20403e61
+20403e59
+20403e7f
+20203dc2
+704ea400
+204002fa
+7044b200
+70421200
+704ea600
+704e5100
+70456a00
+68094e4e
+600944f8
+204052a0
+20203dc6
+20400128
+20207e3b
+6008824e
+6800c89c
+1fe0fe01
+6000c89c
+6800824e
+207a0000
+1fe0ffff
+6000824e
+2040012b
+2040010e
+20400134
+20400121
+204000ee
+204000fe
+202000e3
+6800cea7
+207a0000
+1fe0ffff
+6000cea7
+247a0000
+6800cea8
+1fe0fe01
+1fe17e01
+6000cea8
+c00000fa
+c00080fc
+20600000
+d8400008
+202064fd
+d8400008
+202064ff
+6800cea9
+207a0000
+1fe0ffff
+6000cea9
+247a0000
+6800ceaa
+1fe0fe01
+1fe17e01
+6000ceaa
+c000010a
+c000810c
+20600000
+d8400005
+202064fd
+d8400005
+202064ff
+6800cea6
+207a0000
+6800c212
+2fe1fe20
+24408118
+6800c131
+205a0116
+20600000
+70413101
+20600000
+70421220
+20600000
+6800c9ba
+207a0000
+704e8000
+1fe0ffff
+6000c9ba
+247a0000
+20600000
+6800ce82
+207a0000
+1fe0ffff
+6000ce82
+247a0000
+704e8100
+20600000
+20403e7f
+7009bd12
+20207d90
+6800ce51
+207a0000
+1fe0ffff
+6000ce51
+247a0000
+70421220
+70413101
+704ea601
+20600000
+6800ce52
+207a0000
+1fe0ffff
+6000ce52
+247a0000
+20203e6d
+20404968
+20404b51
+20404bd8
+204005ea
+20204945
+20403a50
+1fe22200
+20400628
+20204a3d
+68024e48
+60024596
+20204a8c
+70413101
+6801037c
+68090382
+98467e00
+600109be
+68008362
+793ffe05
+793ffe03
+60008362
+68020366
+68090364
+600909c6
+98462200
+6800c45b
+6000838d
+e8c90000
+e8c10000
+1febfe00
+60010364
+184b8400
+9840fe00
+e8ca0000
+600a038e
+9a20fe00
+1fe22800
+68010364
+680909c6
+98467e00
+680909be
+984ffe00
+9a80fe00
+60020366
+20405199
+68010390
+60014561
+20600000
+68008379
+c282817b
+204005dc
+704e6200
+6800ce20
+243a0175
+6800cea5
+c0008179
+68008303
+203a4bde
+20204f87
+6800ce20
+1fe0ffff
+6000ce20
+20204f87
+704e2003
+20204bde
+6800ce62
+1fe0fe01
+6000ce62
+202005e0
+6800c467
+c0030183
+c001018a
+20204bfb
+6800ce53
+c0008187
+20403e6d
+20204c86
+20400128
+704e5203
+20204c90
+58000013
+e0a08000
+20404c58
+5800000a
+60010390
+60014561
+20600000
+6800c46b
+c0010198
+c003019f
+c0038196
+20204c18
+704ea500
+20204d17
+59000302
+6001c4dc
+58000001
+e0a08000
+58010010
+e0a18000
+20204ccd
+7009bd29
+20407d86
+7009bd47
+20404bd6
+20204d01
+6800c46b
+c00d81a8
+c00e81a8
+20204c2b
+68094e4e
+6009446c
+6800ce86
+1fe08401
+18410403
+6008ce86
+1feffe07
+d8c04e87
+98c08c00
+e8c38000
+6003c46e
+d840000e
+20204f89
+6008c466
+28200602
+242081ba
+1840fffc
+60014467
+68088379
+204001bd
+20204f92
+6800cea5
+c00081c0
+20204bd0
+58000000
+20600000
+1a627e00
+c00001c8
+c00101cb
+c00181cf
+c00501d3
+20204fb9
+70413100
+704e513c
+2020501f
+20405033
+58000000
+60044544
+20600000
+20405039
+6800c56a
+c1010000
+20206418
+7009bd2b
+20204bd6
+e8c08000
+c00081d8
+20204ffe
+704ea501
+704e2003
+20205069
+e8c18000
+6001839a
+c00901df
+20205011
+70413101
+204001e5
+20405125
+24628000
+7009bd13
+20204bd6
+68008303
+1fe0fff9
+1fe27200
+1f222400
+20205135
+6800c3ff
+207a0000
+d8e00001
+20407ee2
+247a0000
+7854fc00
+78287c00
+20404b1e
+204049d4
+20404a8a
+243681fc
+68008003
+1fe0fe01
+60008003
+68008302
+1fe17e0f
+c0018206
+c002d1af
+68008016
+c093d17d
+180a7e00
+d84001ff
+98417e00
+1fe0fefa
+1fe0ffff
+20000026
+243a0202
+20205196
+20404ac5
+202001fc
+68024596
+d840ea60
+9840fe00
+60024596
+202051a9
+7855fc00
+20370210
+2436821f
+20403cb7
+68014161
+60010370
+68008302
+2fe00601
+2420bccb
+6800c465
+2fe00601
+2420bccb
+20404bd0
+243a3ccb
+6800ce62
+1fe67c01
+24213ccb
+20205297
+68094161
+68014e60
+98408400
+18430400
+68010370
+9840fe00
+60010370
+20203cc3
+c515623d
+20206250
+68120078
+681a007c
+9841fe00
+1fe47e00
+9a217e00
+60120070
+20600000
+1a227e00
+207a0000
+18408560
+18408560
+793f841c
+600a4703
+1fe20400
+da2046f0
+20407fa6
+247a0000
+18427e00
+20207d7d
+20407d80
+da2046f8
+20407f95
+1fe20400
+20407d84
+18427e00
+207a0000
+c0118249
+c012024d
+c0128251
+c0068253
+c0138260
+20207db3
+6800c9c3
+6000c280
+704938ff
+20200670
+6800c9c3
+6000c280
+793f8026
+2020497d
+70428014
+20200641
+793f8026
+70413100
+180a7e00
+6000c53e
+704e5300
+68094e4e
+600944f8
+204052a0
+da400005
+2040026a
+1a427e00
+e0c08000
+20207e07
+793f8026
+70413100
+704e5301
+68094e4e
+20404f6a
+1a220a00
+58000001
+e0a08000
+da400004
+2020025c
+da204401
+ea208000
+207a0000
+98c0a200
+e8c08000
+c1008000
+2020026b
+204058c5
+243a7de5
+680089bd
+c584fde0
+c00f8296
+20207dd0
+700b2a03
+204000b4
+704e455a
+20403cfc
+68120138
+793ffe0f
+6012004c
+20403cf4
+d85fffff
+20203c11
+680a489e
+1c427e00
+98467e00
+d8400640
+9846fc00
+20407f53
+1807fe00
+207a0000
+1c420400
+600a489e
+68094898
+18508400
+9840fe00
+1ff0fe00
+60014898
+1ff0fe00
+1fe17e03
+c1800000
+204002a9
+24760000
+6800c2cf
+20600000
+68108053
+79207e07
+60108053
+68108973
+1fe1fe30
+60108973
+7089067c
+708972aa
+20001388
+68190150
+68108053
+793ffe07
+60108053
+18508400
+600942d1
+20600000
+78367c00
+20600000
+78567c00
+20404bd0
+205a02a7
+6800c954
+245a02a7
+20600000
+704ea301
+204002b3
+704ea300
+20600000
+204000af
+20740000
+1ff0fe00
+1fe20c00
+204002d9
+6000c897
+c00082c4
+c00302f5
+1fe20400
+18c22200
+6800c040
+c30002ce
+1a220c00
+c6848000
+18427e00
+c002830c
+20203b31
+204002d9
+204002d9
+600089bd
+204002c9
+20207d90
+204002dc
+18c20400
+18508400
+600947c4
+20600000
+1a220c00
+d8a000f5
+202002d1
+204002d9
+1fe27200
+204002d5
+202002c9
+204002d9
+e0a08000
+c20002d5
+20600000
+204002dc
+e8c08000
+20600000
+580047c4
+98c67c00
+24628000
+d8c0472e
+20600000
+df200003
+d8c04894
+18c22200
+6801482e
+1ff0fe00
+1fe20a00
+1a220c00
+e8c08000
+e0a08000
+204002f0
+c20002e8
+18a27e00
+1ff0fe00
+6001482e
+20600000
+5800482c
+98a67c00
+24628000
+d8a047c8
+20600000
+c6938000
+204002d9
+1fe27200
+6000c970
+202002d3
+58000000
+6001ce85
+20600000
+c6130000
+6800c595
+207a0000
+204000af
+20740000
+1ff0fe00
+1fe20c00
+204002d9
+6000c897
+18c22200
+c08282ce
+18c22400
+20404bd4
+247a0000
+20200311
+18c22400
+6800cea3
+207a0000
+20404bd0
+247a0000
+68094e4e
+20404f6a
+c4000000
+6800c595
+c1000000
+6800ce83
+1fe0fe01
+6000ce83
+6800ce85
+1fe08401
+18410403
+6008ce85
+1feffe07
+d8a04e87
+98a08a00
+1a420c00
+204002d9
+1fe27200
+204002d3
+20400328
+20760000
+7009bd1b
+20204bd6
+78567c00
+6800cea4
+c1028000
+78367c00
+1fe0fe01
+6000cea4
+1fe67c01
+24610000
+70489640
+202002e1
+5800472e
+1ff0fe00
+600147c4
+600147c6
+580047c8
+1ff0fe00
+6001482c
+6001482e
+20600000
+d8400008
+204064e8
+d8400005
+204064e8
+2040524a
+700b2a00
+70016c06
+20403e7f
+580003a3
+60014296
+580002af
+60014290
+5800039c
+6001428c
+24558332
+20558373
+20403d3e
+6800ce45
+c02d0387
+20358385
+6800c280
+6000c9c3
+204005d9
+68014e41
+1ff0fe00
+60014e41
+68014e43
+1ff0fe00
+60014e43
+20400392
+204003bd
+680409c6
+243a0360
+68014ad4
+1ff0fe00
+203a0360
+60014e43
+7048962f
+6800ce78
+243a0368
+20400295
+204002e1
+204002fd
+70828003
+20600000
+2055bc29
+d9600d00
+34730200
+1c427e00
+6001ce7a
+6801470b
+c3858000
+c3830000
+20403d60
+204004c8
+2020036d
+1ce27e00
+c593037d
+203a0378
+7049b9bb
+20600000
+7049b900
+6800c9b7
+207a0000
+7049b700
+20200376
+203a0380
+7049c102
+20600000
+6800c9c2
+207a0000
+7049c200
+7049c101
+20600000
+7048963c
+20200361
+1ce27e00
+203a0279
+2040530d
+204042eb
+58000000
+60044040
+6001470b
+60014898
+6001489a
+7048963d
+20200361
+204062c4
+580007e2
+da2009c6
+d840000c
+2040630d
+204062c7
+680409c6
+207a0000
+6800c2cf
+20600000
+78347c00
+68120138
+79347e1a
+6012004c
+20403cf4
+70009f01
+20600000
+1a627e00
+1fe17ef0
+c1280000
+1a627e00
+6000c896
+202002e1
+70492700
+7049324e
+68024934
+60024950
+20200466
+6808c933
+204003b4
+18408401
+18410403
+6008c933
+20600000
+6800c950
+1fe17e03
+1fefa204
+58004939
+9a20fe00
+98408c00
+e8c08000
+6000c932
+20600000
+680209c6
+60024960
+247a0000
+68024140
+60024960
+20600000
+7049b001
+7049b200
+6800c929
+1fe17e07
+6000c929
+20600000
+6800c929
+79207e04
+6000c929
+6000c8e4
+20600000
+6800c929
+793ffe04
+6000c929
+20600000
+204005e0
+6800c9b4
+c00083d7
+c00103db
+20600000
+7049b202
+7049b300
+7049b000
+202003c5
+7049b100
+202003d8
+6801492e
+1fe0fe01
+6001492e
+c2830545
+6800c9b1
+c00083e6
+7049b101
+6800c9b1
+c08083c5
+6800c9b5
+1fe0fe01
+6000c9b5
+c00203ed
+204003ae
+70496e02
+20200504
+204005e0
+7049b500
+202003c5
+7049b202
+7049b001
+7049b100
+202003c5
+6800c9b4
+c00183f1
+6800c929
+2fec0004
+202083c3
+6800c9b4
+c00083f0
+c00103f1
+20600000
+6800c938
+c1ff8000
+20400402
+2456040a
+20600000
+78567c00
+6800c9b0
+c1808000
+6800c9b2
+c1800000
+7049b401
+70496e04
+202002a7
+6800c9b2
+203a0412
+1fe0ffff
+6000c9b2
+7049b402
+204003ae
+70496e04
+20600000
+7049b403
+6800c9b1
+243a03e4
+204003ae
+70496e02
+20600000
+c6930000
+79200027
+680a4949
+1c427e00
+98467c00
+24410431
+1fe22400
+68024949
+6808c94d
+98408400
+1a427e00
+98467c00
+2421042f
+793ffe1c
+60024949
+20400434
+20400441
+20340496
+204003fd
+20400504
+6800c938
+1fe67cff
+204285ea
+793f8027
+20600000
+20628000
+79207e1c
+20600000
+6800c964
+1fe0fe01
+6000c964
+c002043a
+c002843d
+20600000
+6800c94f
+6000c94d
+20600000
+70496400
+6800c94e
+6000c94d
+20600000
+6800c938
+c0ff8645
+204002b3
+2034044f
+6800c897
+c08364c0
+20400452
+20400473
+70492d01
+20600000
+704e7900
+704e7800
+7049ba0a
+20600000
+6800c92d
+c000b1d4
+20600000
+6800c9b9
+6000c9b8
+6800c970
+1fe22200
+da404971
+70495400
+204003c5
+6000c990
+1a208401
+d8a04991
+1a227200
+1a420c00
+20407ecd
+da204990
+c6938000
+6008c928
+18427200
+d8a048c4
+1a220c00
+20207ecd
+da200000
+df200004
+d8c04950
+e8c08000
+9a20a200
+c2000469
+1a227e00
+600149bb
+6800c9bb
+6808c9bc
+9840fe00
+6000c9bd
+20600000
+6800c928
+1fe0fe02
+6000c92a
+6800c929
+6000c8e4
+6800c928
+1fe9fe00
+6808c927
+18410403
+18438400
+9841fe00
+6808c965
+9840fe00
+e0a08000
+6800c928
+98007200
+d8c048c4
+20207ecd
+70495401
+7049b100
+204003c5
+6000c990
+58000000
+6003c991
+68024960
+60024998
+d840000c
+da204990
+20400460
+6800c929
+79207e03
+6000c929
+20400473
+20400449
+2020042b
+20600000
+6800c954
+203a0485
+6808c9b8
+18408401
+6008c9b8
+6800c9b9
+98467c00
+20610000
+7049b800
+204000a4
+24740000
+68008b2b
+247a0000
+6800c9ba
+247a0000
+704e8000
+20403be2
+6801c20f
+207a0000
+68044958
+20407f16
+600a41fb
+20203c11
+6800c2b8
+2fec0002
+202084b8
+6800ce79
+c1028000
+1fe0fe01
+6000ce79
+c1828000
+704e7801
+20600000
+6800ce79
+c10a0000
+1fe0fe01
+6000ce79
+c18a0000
+6800c2b8
+79207e02
+6000c2b8
+202004b6
+6800ce79
+207a0000
+1fe0ffff
+6000ce79
+247a0000
+704e7800
+20600000
+79200027
+204002b3
+203404cd
+6800c897
+c00304dc
+6800ce7d
+c00084d4
+c0010496
+c00184d2
+20600000
+704e7900
+704e7800
+204004ae
+704e7d00
+df200007
+1f227e00
+6000c970
+d8c04e21
+20407ecd
+78547c00
+20400447
+204003fd
+20400504
+204005ea
+20403be2
+6801c20f
+207a0000
+6800c131
+207a0000
+6800ce80
+c00084e9
+58000000
+600400a0
+204004f9
+d9600d00
+34730200
+6809ce7a
+1c427e00
+98467e00
+1fe17eff
+d8400ea6
+984f8400
+68024e74
+98467e00
+20213c7f
+6800c218
+1fe0fe01
+600241fb
+20203c86
+58013c68
+60024e74
+6800ce7e
+1fe0fe01
+c08284ff
+58000000
+6000ce7e
+c4000000
+580130b0
+60024e74
+20600000
+704ea701
+70493100
+d9600d00
+34730200
+2040051e
+6800c965
+c1008000
+242c052d
+2437852d
+704ea901
+2040054c
+204005dc
+6800c927
+1fe0fe01
+6000c927
+6800c938
+c0ff851c
+204003f4
+58000000
+6001492e
+6000c930
+6000c9b3
+70492d00
+20600000
+204005d9
+20200660
+7857fc00
+2040056c
+6800c965
+c000852b
+18002a00
+68024950
+98001200
+68088017
+204039b9
+204039bf
+20400596
+205785d5
+20600000
+204005d5
+20200510
+6800c930
+1fe0fe01
+6000c930
+6800c938
+c0ff8541
+6808c931
+18408401
+6008c931
+6800c96e
+98467e00
+243a0506
+6800c9b4
+c00183dd
+6800c9b3
+1fe0fe01
+6000c9b3
+c00103d2
+204003c9
+70496e01
+20200504
+6800c930
+c1ff8000
+70493000
+2020054a
+58000000
+6001492e
+70413100
+704e7900
+704e7800
+7048963b
+202002e1
+20400553
+6800c926
+207a0000
+98007200
+d8c048a4
+d8a04906
+20207ecd
+6800c8a3
+1fe97e00
+6000c926
+1fe0fe01
+d8c048a3
+98c08c00
+e8c18000
+6001c966
+6800c8a3
+1fe37e00
+1fe17e03
+6000c96c
+20600000
+7844fc00
+7843fc00
+58555555
+98001e00
+6800c932
+1fed8400
+79200401
+18431c00
+20600000
+204039b1
+6808c932
+202039c9
+20404976
+68024950
+98001200
+20400560
+20400569
+79202a00
+782efc00
+78307c00
+7850fc00
+19317e00
+1fecfe00
+1ff1fe00
+08008628
+784efc00
+782dfc00
+7823fc00
+7824fc00
+6800c9bd
+08008608
+6800c92a
+98007200
+d8c048e4
+e8c08000
+08008608
+c2000582
+78247c00
+08008618
+78447c00
+37d38200
+20000064
+784efc00
+784dfc00
+20600000
+20404976
+68024950
+98001200
+204039b1
+6808c932
+204039b9
+58000500
+20403b35
+204039bf
+20400560
+7857fc00
+7826fc00
+7830fc00
+78507c00
+78287c00
+6801492b
+98003600
+37c18400
+242c05d8
+7846fc00
+7825fc00
+7823fc00
+7824fc00
+09800008
+19897e00
+6000c9be
+20400466
+6808c9be
+98467c00
+242285d5
+09800008
+19897e00
+6000c8a2
+6800c96f
+1fe67c02
+202285b5
+6800c8a2
+6808c929
+a8400e00
+242085d5
+09800008
+19897e00
+e0a08000
+1fe97e00
+1fe1721f
+202285bf
+09800008
+19897e00
+e0a08000
+c20005bb
+18a22200
+09800008
+19897e00
+6000c9cf
+1a220a00
+09800018
+78287c00
+db600664
+1fef7e00
+1ff17e00
+e0a18000
+7845fc00
+202305d5
+7837fc00
+68008017
+1fe0a200
+20403a13
+7846fc00
+204039b1
+6800c9cf
+1fe22200
+20200628
+784dfc00
+7845fc00
+202036c6
+202005d5
+7049c401
+7049c500
+20600000
+6800c9c5
+1fe0fe01
+6000c9c5
+20600000
+6800c9c5
+1fe67c01
+244105e8
+6800c9c5
+c1000000
+1fe0ffff
+6000c9c5
+20600000
+7049c502
+20600000
+da2049c6
+20400631
+6008c9d0
+280ffe26
+204085f8
+244085fc
+98467c00
+24210615
+6800c9c5
+1fe67c01
+24210600
+6800c9c5
+c0000615
+20600000
+58000082
+20600000
+58000077
+20600000
+58000080
+20600000
+58000075
+20600000
+6800c9c5
+c1a30000
+7049c500
+6808c9d0
+280ffe26
+204085fa
+244085fe
+98467c00
+24610000
+6800c9c4
+c0000621
+1fe0ffff
+6000c9c4
+c0000621
+708955d0
+708956e0
+7089574c
+7089586c
+70895950
+70428001
+20600000
+6800c9c4
+c001061a
+1fe0fe01
+6000c9c4
+c000860e
+708955d0
+708956e0
+7089574c
+7089583c
+70895910
+70428004
+20600000
+708955d0
+708956c0
+7089574c
+7089586c
+70895950
+70428010
+20600000
+6808c9ce
+580049c6
+98408a00
+1a227e00
+e0a08000
+18408401
+18410407
+6008c9ce
+20600000
+d8400000
+df200008
+1a220c00
+e8c08000
+98408400
+c2000634
+18497e00
+1fe20400
+c6930000
+1fe6fc0a
+20407f53
+1807fe00
+1ff27e00
+18070400
+98418400
+20600000
+79200026
+204003a9
+70493801
+20600000
+6800c92d
+c000b1d4
+6800c938
+c000864c
+c001064f
+c0018652
+20203b31
+70493811
+704990aa
+20200654
+70493812
+70499055
+20200654
+70493813
+70499022
+6800c929
+1fe17e07
+6000c991
+68024960
+60024992
+70499600
+da204990
+d8400007
+20400460
+20400473
+20400449
+202031d4
+6800c938
+c17f8000
+c0088666
+c0090668
+c009866a
+20600000
+70493802
+20200516
+70493803
+20200516
+704938ff
+70489639
+204002e1
+68024908
+204003ac
+20200516
+793f8026
+204003ae
+68024950
+20400466
+6800c938
+c1ff8000
+20400686
+58000000
+60014956
+200007d0
+6800c956
+c07f854a
+2040051e
+242c0690
+24378690
+70413101
+79200026
+58000000
+60014956
+7009bd3a
+20407d86
+20207e0d
+79200027
+704990ff
+6800c929
+6000c991
+68024960
+60024992
+d8400006
+da204990
+20400460
+20200473
+68014956
+1fe0fe01
+60014956
+204003ae
+20200679
Index: c51/output/sched.rom
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/sched.rom	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/output/sched.rom	(working copy)
@@ -0,0 +1,937 @@
+4030:04 #must be the fisrt row
+4000:09
+4010:40
+4011:0c
+4014:80
+4015:13
+4016:f0
+4020:20
+4022:40
+4023:08
+4024:08
+4025:80
+4026:0e
+4027:f2
+4028:04
+4029:20
+4032:20
+403e:88
+403f:03
+
+##49   #mem_patch00	#49 enable HID
+##02   #mem_patch01	#02 enable HID
+##00   #mem_patch02
+##00   #mem_patch03
+##60   #mem_patch04	#60 enable HID
+##02   #mem_patch05	#02 enable HID
+##00   #mem_patch06
+##80   #mem_patch07	#80 enable HID
+##00   #mem_patch08
+##10   #mem_patch09	#10 enable HID
+##01   #mem_patch0A	#01 enable HID
+##00   #mem_patch0B
+##00   #mem_patch0C
+##00   #mem_patch0D
+##00   #mem_patch0E
+##00   #mem_patch0F
+##40   #mem_patch10
+##0c   #mem_patch11
+##00   #mem_patch12
+##00   #mem_patch13
+##80   #mem_patch14
+##13   #mem_patch15
+##f0   #mem_patch16
+##00   #mem_patch17
+##00   #mem_patch18
+##01   #mem_patch19	#01 enable HID
+##00   #mem_patch1A
+##00   #mem_patch1B
+##00   #mem_patch1C
+##00   #mem_patch1D
+##00   #mem_patch1E
+##00   #mem_patch1F
+##20   #mem_patch20
+##00   #mem_patch21
+##40   #mem_patch22
+##08   #mem_patch23
+##08   #mem_patch24
+##80   #mem_patch25
+##0e   #mem_patch26
+##d0   #mem_patch27
+##04   #mem_patch28
+##20   #mem_patch29
+##60   #mem_patch2A	#60 enable HID
+##41   #mem_patch2B	#41 enable HID
+##00   #mem_patch2C
+##00   #mem_patch2D
+##00   #mem_patch2E
+##00   #mem_patch2F
+##00   #mem_patch30
+##00   #mem_patch31
+##20   #mem_patch32
+##00   #mem_patch33
+##00   #mem_patch34
+##40   #mem_patch35	#40 enable HID
+##00   #mem_patch36
+##00   #mem_patch37
+##00   #mem_patch38
+##01   #mem_patch39	#01 enable HID
+##00   #mem_patch3A
+##00   #mem_patch3B
+##00   #mem_patch3C
+##00   #mem_patch3D
+##88   #mem_patch3E
+##03   #mem_patch3F
+
+
+#mem_class: 80 25 00
+#mem_lap:ab ab 66 63 5d 6c
+#mem_local_name_length:
+#'bt mouse
+#mem_sniff_param_interval:0c 00
+#mem_sniff_param_attempt:01
+#mem_sniff_param_timeout:01
+#mem_unsniff2sniff_timer:0a
+46e2:00
+#mem_sp_iocap_local:03 00 04
+470d:01
+
+#mem_eir_enable:01
+
+#mem_all_uuid_16bits:
+#06
+#03#Type: Complete list of 16-bit UUIDs
+#1100 0001 0210 2411  0012  0100
+
+4625:00
+
+#mouse uuid
+#mem_device_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_device_uuid_list
+#Auto reconnection after power on
+4132:42
+#mem_ptt:0
+#mem_features:
+#ff
+#ff
+#8f
+#f8	#fe--EDR  F8--BR
+#9b	#AFHclose 83
+#9d
+#51
+#82
+
+#bluetootch param init
+08d4:00
+009f:00
+08d5:00
+0016:27
+4715:ff
+470e:ff
+
+#2=mouse 4=dongle 6=ukey 7=ir
+4131:01
+4212:20
+4213:03
+41f6:08
+41f4:00 00
+4133:00
+4894:02 01
+
+42cf:04
+42d0:30
+4e41:9f 3e
+4e43:cd 4d
+
+
+4521:00
+4529:07 
+452a:00
+4596:50
+44f8:1a
+453e:ab b9 12 0e 10 26			#bluetooth MAC address
+4440:			#bluetooth name
+'BLE Mouse
+
+454c:17
+4520:00
+4522:01
+4523:00 00 00 00 00 00
+43ff:00
+
+4400:1f
+4401:
+#appearance
+03 19 c2 03
+
+#uuid
+03 03 12 18
+
+#flag 
+02 01 05
+
+#name
+'\09BLE Mouse
+
+
+4420:1f
+4421:
+#name
+'\09BLE Mouse
+
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+4c40:
+
+#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
+'BLE Mouse
+
+#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 01 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
+
+25 00 02 03 28 01 12 
+26 00 02 4d 2a 07 00 00 00 00 00 00 00 
+27 00 02 02 29 02 00 00
+28 00 02 08 29 02 11 01
+29 00 02 03 28 01 0e 
+2a 00 02 4d 2a 07 00 00 00 00 00 00 00
+2b 00 02 08 29 02 11 02
+
+#End of Attribute list
+00 00
+
+4637:40 4c
+
+4e48:50
+
+458d:
+07 00 #min interval
+07 00 #max interval
+05 00 #latency
+2c 01 #timeout
+
+4e20:00
+#mem_le_att_report1:13 00
+4e4e:19 00
+458b:22 00
+456c:01
+45a8:01
+
+4280:02#3dbm
+
+#24g init
+496f:01#tx
+4929:01	#mouse 1,kb 2
+496e:04#max tx retry
+4965:00#with ack
+492b:c0 12	#400us
+494d:19
+494e:19
+494f:1c
+4939:00 13 2c 42
+493d:06 15 36 48
+4941:0f 1a 3a 4c
+4945:11 23 31 4d
+4938:ff
+4934:20 15 10 05
+4990:00 00 00 00 00 00 00 00 00 00
+4958:00 48 60 00 00 00 00 00#10 min
+
+
+4215:8f 1b ce
+4219:0a 0b ef 0f
+41f7:00
+00a0:00 00 00 00 00 00 00 00
+
+415d:02
+415e:24
+414d:12 00
+414f:00 02
+4151:12 00
+4153:00 02
+
+415b:20 00
+4157:20 00
+4159:00 20
+415f:80 04
+4161:00 08
+4e60:00 40
+
+45a9: 09 59 00 B0 00    #04 0a 00 e9 12
+
+42a8:30 6f
+42b6:20
+
+4281:01
+
+4e69:
+# tx power
+55 d0
+56 c0
+57 4c
+58 3c
+59 50
+ff
+4163:69 4e
Index: c51/patch/geneep.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/patch/geneep.exe
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/geneep.exe	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/geneep.exe	(working copy)

Property changes on: c51/patch/geneep.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/ipc.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/patch/ipc.obj
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/ipc.obj	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/ipc.obj	(working copy)

Property changes on: c51/patch/ipc.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/memmap.format
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/memmap.format	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/memmap.format	(working copy)
@@ -0,0 +1,1489 @@
+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
+0x0b2a mem_c51_flag
+0x0b2b mem_c51_lmp_lock
+0x0b2c mem_lmp_bb_disconnect_reason
+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
+0x4a5c mem_mouse_uuid_list_end
+0x4a5c mem_mouse_le_att_list
+0x4cb4 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
+0x4729 mem_current_event
+0x472a mem_ipc_lock_rx_data_bt
+0x472b mem_ipc_lock_rx_data_c51
+0x472c mem_ipc_lock_tx_data_bt
+0x472d mem_ipc_lock_tx_data_c51
+0x472e mem_ipc_2bt_fifo_head
+0x47c4 mem_ipc_2bt_fifo_end
+0x47c4 mem_ipc_2bt_read_index
+0x47c6 mem_ipc_2bt_write_index
+0x47c8 mem_ipc_2C51_fifo_head
+0x482c mem_ipc_2C51_fifo_end
+0x482c mem_ipc_2C51_read_index
+0x482e mem_ipc_2C51_write_index
+0x4830 mem_c51_private_area
+0x4894 mem_ipc_tx_evt_buff
+0x4896 mem_ipc_tx_evt
+0x4897 mem_ipc_rx_type
+0x4898 mem_ipc_bt_timer
+0x489a mem_ipc_c51_timer
+0x489c mem_ipc_bt_100ms_timer
+0x489d mem_ipc_c51_100ms_timer
+0x489e mem_ipc_last_check_timer
+0x48a2 mem_new_24g_rxbuf
+0x48c4 mem_new_24g_txbuf
+0x48e4 mem_new_24g_txpayload
+0x4906 mem_new_24g_rxpayload
+0x4926 mem_new_24g_rxdata_length
+0x4927 mem_new_24g_pid
+0x4928 mem_new_24g_datalen
+0x4929 mem_new_24g_data_type
+0x492a mem_new_24g_txlen
+0x492b mem_new_24g_rx_window
+0x492d mem_new_24g_ensure
+0x492e mem_new_24g_txfail_cnt
+0x4930 mem_new_24g_get_ack_fail
+0x4931 mem_new_24g_retry
+0x4932 mem_new_24g_ch
+0x4933 mem_new_24g_current_ch_number
+0x4934 mem_new_24g_paring_addr
+0x4938 mem_new_24g_pairing_sm
+0x4939 mem_new_24g_ch_map1
+0x493d mem_new_24g_ch_map2
+0x4941 mem_new_24g_ch_map3
+0x4945 mem_new_24g_ch_map4
+0x4949 mem_new_24g_tx_btclk
+0x494d mem_new_24g_interval
+0x494e mem_new_24g_interval_min
+0x494f mem_new_24g_interval_max
+0x4950 mem_new_24g_addr
+0x4954 mem_new_24g_abort_pac
+0x4955 mem_new_24g_sync_pac
+0x4956 mem_new_24g_check_dongle_times
+0x4958 mem_new_24g_enter_hibernate
+0x4960 mem_new_24g_device_addr
+0x4964 mem_new_24g_pac_index
+0x4965 mem_new_24g_no_ack
+0x4966 mem_new_24g_sta_crc
+0x4969 mem_new_24g_last_crc
+0x496c mem_new_24g_sta_pid
+0x496d mem_new_24g_last_pid
+0x496e mem_new_24g_max_retry
+0x496f mem_new_24g_mode
+0x4970 mem_new_uart_packet
+0x4990 mem_new_24g_common_temp
+0x49b0 mem_new_24g_rf_last_sta
+0x49b1 mem_new_24g_rf_hop_ch
+0x49b2 mem_new_24g_sync_cnt
+0x49b3 mem_new_24g_hop_pac_retry
+0x49b4 mem_new_24g_rf_work_stage
+0x49b5 mem_new_24g_hop_fastly_cnt
+0x49b6 mem_new_24g_auto_paring_switch
+0x49b7 mem_new_24g_key_wheel_event
+0x49b8 mem_new_24g_delay_long_sleep_cnt
+0x49b9 mem_new_24g_delay_long_sleep_maxcnt
+0x49ba mem_new_24g_enter_lpm_timer
+0x49bb mem_new_24g_syncword
+0x49bd mem_new_24g_syncword_crc8
+0x49be mem_new_24g_get_syncword_crc8
+0x49bf mem_new_24g_paccnt
+0x49c0 mem_new_24g_ota_enable
+0x49c1 mem_bt_wakeup_from_long_mult
+0x49c2 mem_bt_motion_event
+0x49c3 mem_tx_power_temp
+0x49c4 mem_power_ctrl_level
+0x49c5 mem_power_ctrl_pac_succ_cnt
+0x49c6 mem_rssi_signal_buf
+0x49ce mem_rssi_signal_index
+0x49cf mem_rssi_hex_received
+0x49d0 mem_rssi_avg_received
+0x49d1 mem_last_txlch
+0x49d2 mem_last_txlen
+0x49d4 mem_last_txdata
+0x49e8 mem_device_uuid_list
+0x4c40 mem_device_uuid_list_end
+0x4c40 mem_device_le_att_list
+0x4e20 mem_device_le_att_list_end
+0x4e20 mem_empty_count_user
+0x4e21 mem_hid_buff
+0x4e41 mem_adc_0v
+0x4e43 mem_adc_3v
+0x4e45 mem_hibernate_flag
+0x4e46 mem_new_supervision_to
+0x4e48 mem_le_rx_winsows
+0x4e4c mem_le_att_report1
+0x4e4e mem_le_att_report2
+0x4e50 mem_le_slave_update_param_timer
+0x4e51 mem_le_slave_update_mult_timer
+0x4e52 mem_le_reconn_enable_notify_timer
+0x4e53 mem_le_reconn_flag
+0x4e54 mem_le_buff_temp
+0x4e60 mem_le_rx_window_inc
+0x4e62 mem_le_prepare_tx_retransmited_number
+0x4e63 mem_last_check_clk
+0x4e67 mem_hid_send_handshake
+0x4e68 mem_feature_ext_page_number
+0x4e69 mem_rf_init_data_new
+0x4e74 mem_short_lpm_interval_param
+0x4e78 mem_short_lpm_enable
+0x4e79 mem_short_lpm_tx_cnt
+0x4e7a mem_ckln_24g_short_lpm
+0x4e7d mem_send_data_24g_short_lpm
+0x4e7e mem_short_lpm_interval_cnt
+0x4e7f mem_ipc_is_ready
+0x4e80 mem_short_data_wheel
+0x4e81 mem_ble_data_wheel
+0x4e82 mem_ble_data_wheel_lpm_timer
+0x4e83 mem_bt_read_ipc_count
+0x4e84 mem_51_read_sensor_count
+0x4e85 mem_queue_write_prt
+0x4e86 mem_queue_read_ptr
+0x4e87 mem_queue_buffer0
+0x4e8e mem_queue_buffer1
+0x4e95 mem_queue_buffer2
+0x4e9c mem_queue_buffer3
+0x4ea3 mem_ble_read_ipc_fifo_once
+0x4ea4 mem_ble_send_flag
+0x4ea5 mem_mouse_le_pairing_flag
+0x4ea6 mem_mult_time_arrive_flag
+0x4ea7 mem_led_gpio8_blink_timer
+0x4ea8 mem_led_gpio8_blink_cnt
+0x4ea9 mem_led_gpio5_blink_timer
+0x4eaa mem_led_gpio5_blink_cnt
+0x4eab mem_32asm_data_end
Index: c51/patch/patch.dat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/patch.dat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/patch.dat	(working copy)
@@ -0,0 +1,85 @@
+mem_patch30:04 #must be the fisrt row
+mem_patch00:09
+mem_patch10:40
+mem_patch11:0c
+mem_patch14:80
+mem_patch15:13
+mem_patch16:f0
+mem_patch20:20
+mem_patch22:40
+mem_patch23:08
+mem_patch24:08
+mem_patch25:80
+mem_patch26:0e
+mem_patch27:f2
+mem_patch28:04
+mem_patch29:20
+mem_patch32:20
+mem_patch3e:88
+mem_patch3f:03
+
+##49   #mem_patch00	#49 enable HID
+##02   #mem_patch01	#02 enable HID
+##00   #mem_patch02
+##00   #mem_patch03
+##60   #mem_patch04	#60 enable HID
+##02   #mem_patch05	#02 enable HID
+##00   #mem_patch06
+##80   #mem_patch07	#80 enable HID
+##00   #mem_patch08
+##10   #mem_patch09	#10 enable HID
+##01   #mem_patch0A	#01 enable HID
+##00   #mem_patch0B
+##00   #mem_patch0C
+##00   #mem_patch0D
+##00   #mem_patch0E
+##00   #mem_patch0F
+##40   #mem_patch10
+##0c   #mem_patch11
+##00   #mem_patch12
+##00   #mem_patch13
+##80   #mem_patch14
+##13   #mem_patch15
+##f0   #mem_patch16
+##00   #mem_patch17
+##00   #mem_patch18
+##01   #mem_patch19	#01 enable HID
+##00   #mem_patch1A
+##00   #mem_patch1B
+##00   #mem_patch1C
+##00   #mem_patch1D
+##00   #mem_patch1E
+##00   #mem_patch1F
+##20   #mem_patch20
+##00   #mem_patch21
+##40   #mem_patch22
+##08   #mem_patch23
+##08   #mem_patch24
+##80   #mem_patch25
+##0e   #mem_patch26
+##d0   #mem_patch27
+##04   #mem_patch28
+##20   #mem_patch29
+##60   #mem_patch2A	#60 enable HID
+##41   #mem_patch2B	#41 enable HID
+##00   #mem_patch2C
+##00   #mem_patch2D
+##00   #mem_patch2E
+##00   #mem_patch2F
+##00   #mem_patch30
+##00   #mem_patch31
+##20   #mem_patch32
+##00   #mem_patch33
+##00   #mem_patch34
+##40   #mem_patch35	#40 enable HID
+##00   #mem_patch36
+##00   #mem_patch37
+##00   #mem_patch38
+##01   #mem_patch39	#01 enable HID
+##00   #mem_patch3A
+##00   #mem_patch3B
+##00   #mem_patch3C
+##00   #mem_patch3D
+##88   #mem_patch3E
+##03   #mem_patch3F
+
Index: c51/patch/ramcode.rom
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/ramcode.rom	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/ramcode.rom	(working copy)
@@ -0,0 +1,1685 @@
+c512800f
+c0000025
+c0018031
+c0430037
+c0450042
+c0458065
+c0538071
+c0540078
+c054808c
+c056009f
+c05a033b
+c05a80b8
+c05b00bf
+c05b80df
+20203b34
+c002813a
+c00b013f
+c00d8143
+c0118146
+c017816a
+c018817f
+c0190191
+c01981a4
+c01c81b5
+c01e01c2
+c01e81d5
+c01f01db
+c01f81ea
+c0210208
+c026820d
+c0410227
+c04a8229
+c0798230
+c07b823c
+c07c0271
+c07c8277
+20203b34
+20800000
+70403000
+2435b004
+6800c595
+243a002f
+6800ce78
+203a3004
+704e7f00
+c5933004
+2435b004
+70828003
+20203004
+20400281
+20400418
+204002b3
+6800ce78
+243a036d
+2020301b
+2030b9a3
+708955d4
+20000004
+708955d2
+20000004
+708955d1
+20000004
+202039ae
+6800c280
+c00a39ae
+2020399c
+60088017
+1840a200
+20403a13
+58000500
+20403b35
+70890601
+7089003c
+708901e0
+70896d12
+2000000a
+70890201
+7089023d
+2000000a
+708903b7
+2000000a
+7089027f
+20200062
+6800c280
+c00a0062
+c280805c
+c281005c
+70894c5b
+70894d96
+70894e2c
+70894f46
+20200060
+70894cfb
+70894def
+70894eec
+70894f5e
+6800c280
+202039dc
+708956c5
+708955d0
+20600000
+20403cd2
+20403a5f
+70804206
+68108968
+79207e07
+60108968
+793ffe07
+60108968
+79207e07
+60108968
+70804205
+20203a0c
+20403c2b
+6800ce45
+207a0000
+704e4500
+1c427e00
+6002489e
+20600000
+c6130000
+20403be2
+6801c20f
+207a0000
+68014042
+d840ffff
+98467c00
+20628000
+6800c131
+207a0000
+20404816
+247a0000
+20403d0e
+247a0000
+20403a7b
+6800c6e2
+203a3c5e
+6800c639
+207a0000
+20203c5e
+6800c595
+203a0099
+6800809f
+243a0099
+6800ce83
+6808ce84
+98467c00
+24628000
+6800ce81
+247a0000
+58000000
+600400a0
+20203c6a
+204000a4
+24740000
+68008b2b
+247a0000
+7049c100
+20203c6a
+204000a4
+24740000
+68008b2b
+247a0000
+20203c8c
+204000af
+24740000
+204000ac
+24740000
+700b2b01
+700b2a01
+204000b4
+202000af
+6801482c
+6809482e
+202000b1
+680147c4
+680947c6
+98467c00
+2022e4c0
+202031d4
+68008b2a
+2000000a
+c08000b4
+20600000
+70001627
+70015000
+70017e00
+70017f00
+58000000
+600288d2
+20600000
+da2046f0
+20407f95
+207a0000
+1fe22600
+204000c5
+20203d9b
+c10c0000
+c00a00ca
+c00a80d2
+c01480dd
+20203d73
+704e8300
+70421200
+704ea600
+704e5178
+20403e61
+20403e59
+20403e7f
+20203dc2
+704ea400
+204002fa
+7044b200
+70421200
+704ea600
+704e5100
+70456a00
+68094e4e
+600944f8
+204052a0
+20203dc6
+20400128
+20207e3b
+6008824e
+6800c89c
+1fe0fe01
+6000c89c
+6800824e
+207a0000
+1fe0ffff
+6000824e
+2040012b
+2040010e
+20400134
+20400121
+204000ee
+204000fe
+202000e3
+6800cea7
+207a0000
+1fe0ffff
+6000cea7
+247a0000
+6800cea8
+1fe0fe01
+1fe17e01
+6000cea8
+c00000fa
+c00080fc
+20600000
+d8400008
+202064fd
+d8400008
+202064ff
+6800cea9
+207a0000
+1fe0ffff
+6000cea9
+247a0000
+6800ceaa
+1fe0fe01
+1fe17e01
+6000ceaa
+c000010a
+c000810c
+20600000
+d8400005
+202064fd
+d8400005
+202064ff
+6800cea6
+207a0000
+6800c212
+2fe1fe20
+24408118
+6800c131
+205a0116
+20600000
+70413101
+20600000
+70421220
+20600000
+6800c9ba
+207a0000
+704e8000
+1fe0ffff
+6000c9ba
+247a0000
+20600000
+6800ce82
+207a0000
+1fe0ffff
+6000ce82
+247a0000
+704e8100
+20600000
+20403e7f
+7009bd12
+20207d90
+6800ce51
+207a0000
+1fe0ffff
+6000ce51
+247a0000
+70421220
+70413101
+704ea601
+20600000
+6800ce52
+207a0000
+1fe0ffff
+6000ce52
+247a0000
+20203e6d
+20404968
+20404b51
+20404bd8
+204005ea
+20204945
+20403a50
+1fe22200
+20400628
+20204a3d
+68024e48
+60024596
+20204a8c
+70413101
+6801037c
+68090382
+98467e00
+600109be
+68008362
+793ffe05
+793ffe03
+60008362
+68020366
+68090364
+600909c6
+98462200
+6800c45b
+6000838d
+e8c90000
+e8c10000
+1febfe00
+60010364
+184b8400
+9840fe00
+e8ca0000
+600a038e
+9a20fe00
+1fe22800
+68010364
+680909c6
+98467e00
+680909be
+984ffe00
+9a80fe00
+60020366
+20405199
+68010390
+60014561
+20600000
+68008379
+c282817b
+204005dc
+704e6200
+6800ce20
+243a0175
+6800cea5
+c0008179
+68008303
+203a4bde
+20204f87
+6800ce20
+1fe0ffff
+6000ce20
+20204f87
+704e2003
+20204bde
+6800ce62
+1fe0fe01
+6000ce62
+202005e0
+6800c467
+c0030183
+c001018a
+20204bfb
+6800ce53
+c0008187
+20403e6d
+20204c86
+20400128
+704e5203
+20204c90
+58000013
+e0a08000
+20404c58
+5800000a
+60010390
+60014561
+20600000
+6800c46b
+c0010198
+c003019f
+c0038196
+20204c18
+704ea500
+20204d17
+59000302
+6001c4dc
+58000001
+e0a08000
+58010010
+e0a18000
+20204ccd
+7009bd29
+20407d86
+7009bd47
+20404bd6
+20204d01
+6800c46b
+c00d81a8
+c00e81a8
+20204c2b
+68094e4e
+6009446c
+6800ce86
+1fe08401
+18410403
+6008ce86
+1feffe07
+d8c04e87
+98c08c00
+e8c38000
+6003c46e
+d840000e
+20204f89
+6008c466
+28200602
+242081ba
+1840fffc
+60014467
+68088379
+204001bd
+20204f92
+6800cea5
+c00081c0
+20204bd0
+58000000
+20600000
+1a627e00
+c00001c8
+c00101cb
+c00181cf
+c00501d3
+20204fb9
+70413100
+704e513c
+2020501f
+20405033
+58000000
+60044544
+20600000
+20405039
+6800c56a
+c1010000
+20206418
+7009bd2b
+20204bd6
+e8c08000
+c00081d8
+20204ffe
+704ea501
+704e2003
+20205069
+e8c18000
+6001839a
+c00901df
+20205011
+70413101
+204001e5
+20405125
+24628000
+7009bd13
+20204bd6
+68008303
+1fe0fff9
+1fe27200
+1f222400
+20205135
+6800c3ff
+207a0000
+d8e00001
+20407ee2
+247a0000
+7854fc00
+78287c00
+20404b1e
+204049d4
+20404a8a
+243681fc
+68008003
+1fe0fe01
+60008003
+68008302
+1fe17e0f
+c0018206
+c002d1af
+68008016
+c093d17d
+180a7e00
+d84001ff
+98417e00
+1fe0fefa
+1fe0ffff
+20000026
+243a0202
+20205196
+20404ac5
+202001fc
+68024596
+d840ea60
+9840fe00
+60024596
+202051a9
+7855fc00
+20370210
+2436821f
+20403cb7
+68014161
+60010370
+68008302
+2fe00601
+2420bccb
+6800c465
+2fe00601
+2420bccb
+20404bd0
+243a3ccb
+6800ce62
+1fe67c01
+24213ccb
+20205297
+68094161
+68014e60
+98408400
+18430400
+68010370
+9840fe00
+60010370
+20203cc3
+c515623d
+20206250
+68120078
+681a007c
+9841fe00
+1fe47e00
+9a217e00
+60120070
+20600000
+1a227e00
+207a0000
+18408560
+18408560
+793f841c
+600a4703
+1fe20400
+da2046f0
+20407fa6
+247a0000
+18427e00
+20207d7d
+20407d80
+da2046f8
+20407f95
+1fe20400
+20407d84
+18427e00
+207a0000
+c0118249
+c012024d
+c0128251
+c0068253
+c0138260
+20207db3
+6800c9c3
+6000c280
+704938ff
+20200670
+6800c9c3
+6000c280
+793f8026
+2020497d
+70428014
+20200641
+793f8026
+70413100
+180a7e00
+6000c53e
+704e5300
+68094e4e
+600944f8
+204052a0
+da400005
+2040026a
+1a427e00
+e0c08000
+20207e07
+793f8026
+70413100
+704e5301
+68094e4e
+20404f6a
+1a220a00
+58000001
+e0a08000
+da400004
+2020025c
+da204401
+ea208000
+207a0000
+98c0a200
+e8c08000
+c1008000
+2020026b
+204058c5
+243a7de5
+680089bd
+c584fde0
+c00f8296
+20207dd0
+700b2a03
+204000b4
+704e455a
+20403cfc
+68120138
+793ffe0f
+6012004c
+20403cf4
+d85fffff
+20203c11
+680a489e
+1c427e00
+98467e00
+d8400640
+9846fc00
+20407f53
+1807fe00
+207a0000
+1c420400
+600a489e
+68094898
+18508400
+9840fe00
+1ff0fe00
+60014898
+1ff0fe00
+1fe17e03
+c1800000
+204002a9
+24760000
+6800c2cf
+20600000
+68108053
+79207e07
+60108053
+68108973
+1fe1fe30
+60108973
+7089067c
+708972aa
+20001388
+68190150
+68108053
+793ffe07
+60108053
+18508400
+600942d1
+20600000
+78367c00
+20600000
+78567c00
+20404bd0
+205a02a7
+6800c954
+245a02a7
+20600000
+704ea301
+204002b3
+704ea300
+20600000
+204000af
+20740000
+1ff0fe00
+1fe20c00
+204002d9
+6000c897
+c00082c4
+c00302f5
+1fe20400
+18c22200
+6800c040
+c30002ce
+1a220c00
+c6848000
+18427e00
+c002830c
+20203b31
+204002d9
+204002d9
+600089bd
+204002c9
+20207d90
+204002dc
+18c20400
+18508400
+600947c4
+20600000
+1a220c00
+d8a000f5
+202002d1
+204002d9
+1fe27200
+204002d5
+202002c9
+204002d9
+e0a08000
+c20002d5
+20600000
+204002dc
+e8c08000
+20600000
+580047c4
+98c67c00
+24628000
+d8c0472e
+20600000
+df200003
+d8c04894
+18c22200
+6801482e
+1ff0fe00
+1fe20a00
+1a220c00
+e8c08000
+e0a08000
+204002f0
+c20002e8
+18a27e00
+1ff0fe00
+6001482e
+20600000
+5800482c
+98a67c00
+24628000
+d8a047c8
+20600000
+c6938000
+204002d9
+1fe27200
+6000c970
+202002d3
+58000000
+6001ce85
+20600000
+c6130000
+6800c595
+207a0000
+204000af
+20740000
+1ff0fe00
+1fe20c00
+204002d9
+6000c897
+18c22200
+c08282ce
+18c22400
+20404bd4
+247a0000
+20200311
+18c22400
+6800cea3
+207a0000
+20404bd0
+247a0000
+68094e4e
+20404f6a
+c4000000
+6800c595
+c1000000
+6800ce83
+1fe0fe01
+6000ce83
+6800ce85
+1fe08401
+18410403
+6008ce85
+1feffe07
+d8a04e87
+98a08a00
+1a420c00
+204002d9
+1fe27200
+204002d3
+20400328
+20760000
+7009bd1b
+20204bd6
+78567c00
+6800cea4
+c1028000
+78367c00
+1fe0fe01
+6000cea4
+1fe67c01
+24610000
+70489640
+202002e1
+5800472e
+1ff0fe00
+600147c4
+600147c6
+580047c8
+1ff0fe00
+6001482c
+6001482e
+20600000
+d8400008
+204064e8
+d8400005
+204064e8
+2040524a
+700b2a00
+70016c06
+20403e7f
+580003a3
+60014296
+580002af
+60014290
+5800039c
+6001428c
+24558332
+20558373
+20403d3e
+6800ce45
+c02d0387
+20358385
+6800c280
+6000c9c3
+204005d9
+68014e41
+1ff0fe00
+60014e41
+68014e43
+1ff0fe00
+60014e43
+20400392
+204003bd
+680409c6
+243a0360
+68014ad4
+1ff0fe00
+203a0360
+60014e43
+7048962f
+6800ce78
+243a0368
+20400295
+204002e1
+204002fd
+70828003
+20600000
+2055bc29
+d9600d00
+34730200
+1c427e00
+6001ce7a
+6801470b
+c3858000
+c3830000
+20403d60
+204004c8
+2020036d
+1ce27e00
+c593037d
+203a0378
+7049b9bb
+20600000
+7049b900
+6800c9b7
+207a0000
+7049b700
+20200376
+203a0380
+7049c102
+20600000
+6800c9c2
+207a0000
+7049c200
+7049c101
+20600000
+7048963c
+20200361
+1ce27e00
+203a0279
+2040530d
+204042eb
+58000000
+60044040
+6001470b
+60014898
+6001489a
+7048963d
+20200361
+204062c4
+580007e2
+da2009c6
+d840000c
+2040630d
+204062c7
+680409c6
+207a0000
+6800c2cf
+20600000
+78347c00
+68120138
+79347e1a
+6012004c
+20403cf4
+70009f01
+20600000
+1a627e00
+1fe17ef0
+c1280000
+1a627e00
+6000c896
+202002e1
+70492700
+7049324e
+68024934
+60024950
+20200466
+6808c933
+204003b4
+18408401
+18410403
+6008c933
+20600000
+6800c950
+1fe17e03
+1fefa204
+58004939
+9a20fe00
+98408c00
+e8c08000
+6000c932
+20600000
+680209c6
+60024960
+247a0000
+68024140
+60024960
+20600000
+7049b001
+7049b200
+6800c929
+1fe17e07
+6000c929
+20600000
+6800c929
+79207e04
+6000c929
+6000c8e4
+20600000
+6800c929
+793ffe04
+6000c929
+20600000
+204005e0
+6800c9b4
+c00083d7
+c00103db
+20600000
+7049b202
+7049b300
+7049b000
+202003c5
+7049b100
+202003d8
+6801492e
+1fe0fe01
+6001492e
+c2830545
+6800c9b1
+c00083e6
+7049b101
+6800c9b1
+c08083c5
+6800c9b5
+1fe0fe01
+6000c9b5
+c00203ed
+204003ae
+70496e02
+20200504
+204005e0
+7049b500
+202003c5
+7049b202
+7049b001
+7049b100
+202003c5
+6800c9b4
+c00183f1
+6800c929
+2fec0004
+202083c3
+6800c9b4
+c00083f0
+c00103f1
+20600000
+6800c938
+c1ff8000
+20400402
+2456040a
+20600000
+78567c00
+6800c9b0
+c1808000
+6800c9b2
+c1800000
+7049b401
+70496e04
+202002a7
+6800c9b2
+203a0412
+1fe0ffff
+6000c9b2
+7049b402
+204003ae
+70496e04
+20600000
+7049b403
+6800c9b1
+243a03e4
+204003ae
+70496e02
+20600000
+c6930000
+79200027
+680a4949
+1c427e00
+98467c00
+24410431
+1fe22400
+68024949
+6808c94d
+98408400
+1a427e00
+98467c00
+2421042f
+793ffe1c
+60024949
+20400434
+20400441
+20340496
+204003fd
+20400504
+6800c938
+1fe67cff
+204285ea
+793f8027
+20600000
+20628000
+79207e1c
+20600000
+6800c964
+1fe0fe01
+6000c964
+c002043a
+c002843d
+20600000
+6800c94f
+6000c94d
+20600000
+70496400
+6800c94e
+6000c94d
+20600000
+6800c938
+c0ff8645
+204002b3
+2034044f
+6800c897
+c08364c0
+20400452
+20400473
+70492d01
+20600000
+704e7900
+704e7800
+7049ba0a
+20600000
+6800c92d
+c000b1d4
+20600000
+6800c9b9
+6000c9b8
+6800c970
+1fe22200
+da404971
+70495400
+204003c5
+6000c990
+1a208401
+d8a04991
+1a227200
+1a420c00
+20407ecd
+da204990
+c6938000
+6008c928
+18427200
+d8a048c4
+1a220c00
+20207ecd
+da200000
+df200004
+d8c04950
+e8c08000
+9a20a200
+c2000469
+1a227e00
+600149bb
+6800c9bb
+6808c9bc
+9840fe00
+6000c9bd
+20600000
+6800c928
+1fe0fe02
+6000c92a
+6800c929
+6000c8e4
+6800c928
+1fe9fe00
+6808c927
+18410403
+18438400
+9841fe00
+6808c965
+9840fe00
+e0a08000
+6800c928
+98007200
+d8c048c4
+20207ecd
+70495401
+7049b100
+204003c5
+6000c990
+58000000
+6003c991
+68024960
+60024998
+d840000c
+da204990
+20400460
+6800c929
+79207e03
+6000c929
+20400473
+20400449
+2020042b
+20600000
+6800c954
+203a0485
+6808c9b8
+18408401
+6008c9b8
+6800c9b9
+98467c00
+20610000
+7049b800
+204000a4
+24740000
+68008b2b
+247a0000
+6800c9ba
+247a0000
+704e8000
+20403be2
+6801c20f
+207a0000
+68044958
+20407f16
+600a41fb
+20203c11
+6800c2b8
+2fec0002
+202084b8
+6800ce79
+c1028000
+1fe0fe01
+6000ce79
+c1828000
+704e7801
+20600000
+6800ce79
+c10a0000
+1fe0fe01
+6000ce79
+c18a0000
+6800c2b8
+79207e02
+6000c2b8
+202004b6
+6800ce79
+207a0000
+1fe0ffff
+6000ce79
+247a0000
+704e7800
+20600000
+79200027
+204002b3
+203404cd
+6800c897
+c00304dc
+6800ce7d
+c00084d4
+c0010496
+c00184d2
+20600000
+704e7900
+704e7800
+204004ae
+704e7d00
+df200007
+1f227e00
+6000c970
+d8c04e21
+20407ecd
+78547c00
+20400447
+204003fd
+20400504
+204005ea
+20403be2
+6801c20f
+207a0000
+6800c131
+207a0000
+6800ce80
+c00084e9
+58000000
+600400a0
+204004f9
+d9600d00
+34730200
+6809ce7a
+1c427e00
+98467e00
+1fe17eff
+d8400ea6
+984f8400
+68024e74
+98467e00
+20213c7f
+6800c218
+1fe0fe01
+600241fb
+20203c86
+58013c68
+60024e74
+6800ce7e
+1fe0fe01
+c08284ff
+58000000
+6000ce7e
+c4000000
+580130b0
+60024e74
+20600000
+704ea701
+70493100
+d9600d00
+34730200
+2040051e
+6800c965
+c1008000
+242c052d
+2437852d
+704ea901
+2040054c
+204005dc
+6800c927
+1fe0fe01
+6000c927
+6800c938
+c0ff851c
+204003f4
+58000000
+6001492e
+6000c930
+6000c9b3
+70492d00
+20600000
+204005d9
+20200660
+7857fc00
+2040056c
+6800c965
+c000852b
+18002a00
+68024950
+98001200
+68088017
+204039b9
+204039bf
+20400596
+205785d5
+20600000
+204005d5
+20200510
+6800c930
+1fe0fe01
+6000c930
+6800c938
+c0ff8541
+6808c931
+18408401
+6008c931
+6800c96e
+98467e00
+243a0506
+6800c9b4
+c00183dd
+6800c9b3
+1fe0fe01
+6000c9b3
+c00103d2
+204003c9
+70496e01
+20200504
+6800c930
+c1ff8000
+70493000
+2020054a
+58000000
+6001492e
+70413100
+704e7900
+704e7800
+7048963b
+202002e1
+20400553
+6800c926
+207a0000
+98007200
+d8c048a4
+d8a04906
+20207ecd
+6800c8a3
+1fe97e00
+6000c926
+1fe0fe01
+d8c048a3
+98c08c00
+e8c18000
+6001c966
+6800c8a3
+1fe37e00
+1fe17e03
+6000c96c
+20600000
+7844fc00
+7843fc00
+58555555
+98001e00
+6800c932
+1fed8400
+79200401
+18431c00
+20600000
+204039b1
+6808c932
+202039c9
+20404976
+68024950
+98001200
+20400560
+20400569
+79202a00
+782efc00
+78307c00
+7850fc00
+19317e00
+1fecfe00
+1ff1fe00
+08008628
+784efc00
+782dfc00
+7823fc00
+7824fc00
+6800c9bd
+08008608
+6800c92a
+98007200
+d8c048e4
+e8c08000
+08008608
+c2000582
+78247c00
+08008618
+78447c00
+37d38200
+20000064
+784efc00
+784dfc00
+20600000
+20404976
+68024950
+98001200
+204039b1
+6808c932
+204039b9
+58000500
+20403b35
+204039bf
+20400560
+7857fc00
+7826fc00
+7830fc00
+78507c00
+78287c00
+6801492b
+98003600
+37c18400
+242c05d8
+7846fc00
+7825fc00
+7823fc00
+7824fc00
+09800008
+19897e00
+6000c9be
+20400466
+6808c9be
+98467c00
+242285d5
+09800008
+19897e00
+6000c8a2
+6800c96f
+1fe67c02
+202285b5
+6800c8a2
+6808c929
+a8400e00
+242085d5
+09800008
+19897e00
+e0a08000
+1fe97e00
+1fe1721f
+202285bf
+09800008
+19897e00
+e0a08000
+c20005bb
+18a22200
+09800008
+19897e00
+6000c9cf
+1a220a00
+09800018
+78287c00
+db600664
+1fef7e00
+1ff17e00
+e0a18000
+7845fc00
+202305d5
+7837fc00
+68008017
+1fe0a200
+20403a13
+7846fc00
+204039b1
+6800c9cf
+1fe22200
+20200628
+784dfc00
+7845fc00
+202036c6
+202005d5
+7049c401
+7049c500
+20600000
+6800c9c5
+1fe0fe01
+6000c9c5
+20600000
+6800c9c5
+1fe67c01
+244105e8
+6800c9c5
+c1000000
+1fe0ffff
+6000c9c5
+20600000
+7049c502
+20600000
+da2049c6
+20400631
+6008c9d0
+280ffe26
+204085f8
+244085fc
+98467c00
+24210615
+6800c9c5
+1fe67c01
+24210600
+6800c9c5
+c0000615
+20600000
+58000082
+20600000
+58000077
+20600000
+58000080
+20600000
+58000075
+20600000
+6800c9c5
+c1a30000
+7049c500
+6808c9d0
+280ffe26
+204085fa
+244085fe
+98467c00
+24610000
+6800c9c4
+c0000621
+1fe0ffff
+6000c9c4
+c0000621
+708955d0
+708956e0
+7089574c
+7089586c
+70895950
+70428001
+20600000
+6800c9c4
+c001061a
+1fe0fe01
+6000c9c4
+c000860e
+708955d0
+708956e0
+7089574c
+7089583c
+70895910
+70428004
+20600000
+708955d0
+708956c0
+7089574c
+7089586c
+70895950
+70428010
+20600000
+6808c9ce
+580049c6
+98408a00
+1a227e00
+e0a08000
+18408401
+18410407
+6008c9ce
+20600000
+d8400000
+df200008
+1a220c00
+e8c08000
+98408400
+c2000634
+18497e00
+1fe20400
+c6930000
+1fe6fc0a
+20407f53
+1807fe00
+1ff27e00
+18070400
+98418400
+20600000
+79200026
+204003a9
+70493801
+20600000
+6800c92d
+c000b1d4
+6800c938
+c000864c
+c001064f
+c0018652
+20203b31
+70493811
+704990aa
+20200654
+70493812
+70499055
+20200654
+70493813
+70499022
+6800c929
+1fe17e07
+6000c991
+68024960
+60024992
+70499600
+da204990
+d8400007
+20400460
+20400473
+20400449
+202031d4
+6800c938
+c17f8000
+c0088666
+c0090668
+c009866a
+20600000
+70493802
+20200516
+70493803
+20200516
+704938ff
+70489639
+204002e1
+68024908
+204003ac
+20200516
+793f8026
+204003ae
+68024950
+20400466
+6800c938
+c1ff8000
+20400686
+58000000
+60014956
+200007d0
+6800c956
+c07f854a
+2040051e
+242c0690
+24378690
+70413101
+79200026
+58000000
+60014956
+7009bd3a
+20407d86
+20207e0d
+79200027
+704990ff
+6800c929
+6000c991
+68024960
+60024992
+d8400006
+da204990
+20400460
+20200473
+68014956
+1fe0fe01
+60014956
+204003ae
+20200679
Index: c51/patch/rf.dat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/rf.dat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/rf.dat	(working copy)
@@ -0,0 +1,35 @@
+mem_lpm_config:8f 1b ce
+mem_lpm_buckcnt:0a 0b ef 0f
+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 02
+mem_pscan_window:12 00
+mem_pscan_interval:00 02
+
+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_le_rx_window_inc:00 40
+
+mem_lmp_version: 09 59 00 B0 00    #04 0a 00 e9 12
+
+mem_eeprom_base:30 6f
+mem_eeprom_block_size:20
+
+mem_context_number:01
+
+mem_rf_init_data_new:
+# tx power
+55 d0
+56 c0
+57 4c
+58 3c
+59 50
+ff
+mem_rf_init_ptr:mem_rf_init_data_new
Index: c51/patch/sch.rom
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/sch.rom	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/sch.rom	(working copy)
@@ -0,0 +1,937 @@
+mem_patch30:04 #must be the fisrt row
+mem_patch00:09
+mem_patch10:40
+mem_patch11:0c
+mem_patch14:80
+mem_patch15:13
+mem_patch16:f0
+mem_patch20:20
+mem_patch22:40
+mem_patch23:08
+mem_patch24:08
+mem_patch25:80
+mem_patch26:0e
+mem_patch27:f2
+mem_patch28:04
+mem_patch29:20
+mem_patch32:20
+mem_patch3e:88
+mem_patch3f:03
+
+##49   #mem_patch00	#49 enable HID
+##02   #mem_patch01	#02 enable HID
+##00   #mem_patch02
+##00   #mem_patch03
+##60   #mem_patch04	#60 enable HID
+##02   #mem_patch05	#02 enable HID
+##00   #mem_patch06
+##80   #mem_patch07	#80 enable HID
+##00   #mem_patch08
+##10   #mem_patch09	#10 enable HID
+##01   #mem_patch0A	#01 enable HID
+##00   #mem_patch0B
+##00   #mem_patch0C
+##00   #mem_patch0D
+##00   #mem_patch0E
+##00   #mem_patch0F
+##40   #mem_patch10
+##0c   #mem_patch11
+##00   #mem_patch12
+##00   #mem_patch13
+##80   #mem_patch14
+##13   #mem_patch15
+##f0   #mem_patch16
+##00   #mem_patch17
+##00   #mem_patch18
+##01   #mem_patch19	#01 enable HID
+##00   #mem_patch1A
+##00   #mem_patch1B
+##00   #mem_patch1C
+##00   #mem_patch1D
+##00   #mem_patch1E
+##00   #mem_patch1F
+##20   #mem_patch20
+##00   #mem_patch21
+##40   #mem_patch22
+##08   #mem_patch23
+##08   #mem_patch24
+##80   #mem_patch25
+##0e   #mem_patch26
+##d0   #mem_patch27
+##04   #mem_patch28
+##20   #mem_patch29
+##60   #mem_patch2A	#60 enable HID
+##41   #mem_patch2B	#41 enable HID
+##00   #mem_patch2C
+##00   #mem_patch2D
+##00   #mem_patch2E
+##00   #mem_patch2F
+##00   #mem_patch30
+##00   #mem_patch31
+##20   #mem_patch32
+##00   #mem_patch33
+##00   #mem_patch34
+##40   #mem_patch35	#40 enable HID
+##00   #mem_patch36
+##00   #mem_patch37
+##00   #mem_patch38
+##01   #mem_patch39	#01 enable HID
+##00   #mem_patch3A
+##00   #mem_patch3B
+##00   #mem_patch3C
+##00   #mem_patch3D
+##88   #mem_patch3E
+##03   #mem_patch3F
+
+
+#mem_class: 80 25 00
+#mem_lap:ab ab 66 63 5d 6c
+#mem_local_name_length:
+#'bt mouse
+#mem_sniff_param_interval:0c 00
+#mem_sniff_param_attempt:01
+#mem_sniff_param_timeout:01
+#mem_unsniff2sniff_timer:0a
+mem_ssp_enable:00
+#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
+#1100 0001 0210 2411  0012  0100
+
+mem_all_uuid_128bits:00
+
+#mouse uuid
+#mem_device_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_device_uuid_list
+#Auto reconnection after power on
+mem_device_option:42
+#mem_ptt:0
+#mem_features:
+#ff
+#ff
+#8f
+#f8	#fe--EDR  F8--BR
+#9b	#AFHclose 83
+#9d
+#51
+#82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+#2=mouse 4=dongle 6=ukey 7=ir
+mem_lpm_mode:01
+mem_lpm_mult:20
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:08
+mem_lpm_interval:00 00
+mem_scan_mode:00
+mem_ipc_tx_evt_buff:02 01
+
+mem_adc_config_flag:04
+mem_adc_channel:30
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+
+
+mem_le_adv_own_addr_type:00
+mem_le_adv_channel_map:07 
+mem_le_adv_filter_policy:00
+mem_le_transmit_window:50
+mem_le_notify_handle:1a
+mem_le_lap:ab b9 12 0e 10 26			#bluetooth MAC address
+mem_le_name_len:			#bluetooth name
+'BLE Mouse
+
+mem_le_local_mtu:17
+mem_le_adv_type:00
+mem_le_adv_direct_addr_type:01
+mem_le_adv_direct_addr:00 00 00 00 00 00
+mem_le_adv_enable:00
+
+mem_le_adv_data_len:1f
+mem_le_adv_data:
+#appearance
+03 19 c2 03
+
+#uuid
+03 03 12 18
+
+#flag 
+02 01 05
+
+#name
+'\09BLE Mouse
+
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+#name
+'\09BLE Mouse
+
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_device_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
+'BLE Mouse
+
+#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 01 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
+
+25 00 02 03 28 01 12 
+26 00 02 4d 2a 07 00 00 00 00 00 00 00 
+27 00 02 02 29 02 00 00
+28 00 02 08 29 02 11 01
+29 00 02 03 28 01 0e 
+2a 00 02 4d 2a 07 00 00 00 00 00 00 00
+2b 00 02 08 29 02 11 02
+
+#End of Attribute list
+00 00
+
+mem_ui_le_uuid_table:mem_device_le_att_list
+
+mem_le_rx_winsows:50
+
+mem_le_interal_min:
+07 00 #min interval
+07 00 #max interval
+05 00 #latency
+2c 01 #timeout
+
+mem_empty_count_user:00
+#mem_le_att_report1:13 00
+mem_le_att_report2:19 00
+mem_le_pairing_handle:22 00
+mem_le_pairing_mode:01
+mem_le_flag:01
+
+mem_tx_power:02#3dbm
+
+#24g init
+mem_new_24g_mode:01#tx
+mem_new_24g_data_type:01	#mouse 1,kb 2
+mem_new_24g_max_retry:04#max tx retry
+mem_new_24g_no_ack:00#with ack
+mem_new_24g_rx_window:c0 12	#400us
+mem_new_24g_interval:19
+mem_new_24g_interval_min:19
+mem_new_24g_interval_max:1c
+mem_new_24g_ch_map1:00 13 2c 42
+mem_new_24g_ch_map2:06 15 36 48
+mem_new_24g_ch_map3:0f 1a 3a 4c
+mem_new_24g_ch_map4:11 23 31 4d
+mem_new_24g_pairing_sm:ff
+mem_new_24g_paring_addr:20 15 10 05
+mem_new_24g_common_temp:00 00 00 00 00 00 00 00 00 00
+mem_new_24g_enter_hibernate:00 48 60 00 00 00 00 00#10 min
+
+
+mem_lpm_config:8f 1b ce
+mem_lpm_buckcnt:0a 0b ef 0f
+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 02
+mem_pscan_window:12 00
+mem_pscan_interval:00 02
+
+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_le_rx_window_inc:00 40
+
+mem_lmp_version: 09 59 00 B0 00    #04 0a 00 e9 12
+
+mem_eeprom_base:30 6f
+mem_eeprom_block_size:20
+
+mem_context_number:01
+
+mem_rf_init_data_new:
+# tx power
+55 d0
+56 c0
+57 4c
+58 3c
+59 50
+ff
+mem_rf_init_ptr:mem_rf_init_data_new
Index: c51/patch/sched.rom
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/sched.rom	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/sched.rom	(working copy)
@@ -0,0 +1,937 @@
+mem_patch30:04 #must be the fisrt row
+mem_patch00:09
+mem_patch10:40
+mem_patch11:0c
+mem_patch14:80
+mem_patch15:13
+mem_patch16:f0
+mem_patch20:20
+mem_patch22:40
+mem_patch23:08
+mem_patch24:08
+mem_patch25:80
+mem_patch26:0e
+mem_patch27:f2
+mem_patch28:04
+mem_patch29:20
+mem_patch32:20
+mem_patch3e:88
+mem_patch3f:03
+
+##49   #mem_patch00	#49 enable HID
+##02   #mem_patch01	#02 enable HID
+##00   #mem_patch02
+##00   #mem_patch03
+##60   #mem_patch04	#60 enable HID
+##02   #mem_patch05	#02 enable HID
+##00   #mem_patch06
+##80   #mem_patch07	#80 enable HID
+##00   #mem_patch08
+##10   #mem_patch09	#10 enable HID
+##01   #mem_patch0A	#01 enable HID
+##00   #mem_patch0B
+##00   #mem_patch0C
+##00   #mem_patch0D
+##00   #mem_patch0E
+##00   #mem_patch0F
+##40   #mem_patch10
+##0c   #mem_patch11
+##00   #mem_patch12
+##00   #mem_patch13
+##80   #mem_patch14
+##13   #mem_patch15
+##f0   #mem_patch16
+##00   #mem_patch17
+##00   #mem_patch18
+##01   #mem_patch19	#01 enable HID
+##00   #mem_patch1A
+##00   #mem_patch1B
+##00   #mem_patch1C
+##00   #mem_patch1D
+##00   #mem_patch1E
+##00   #mem_patch1F
+##20   #mem_patch20
+##00   #mem_patch21
+##40   #mem_patch22
+##08   #mem_patch23
+##08   #mem_patch24
+##80   #mem_patch25
+##0e   #mem_patch26
+##d0   #mem_patch27
+##04   #mem_patch28
+##20   #mem_patch29
+##60   #mem_patch2A	#60 enable HID
+##41   #mem_patch2B	#41 enable HID
+##00   #mem_patch2C
+##00   #mem_patch2D
+##00   #mem_patch2E
+##00   #mem_patch2F
+##00   #mem_patch30
+##00   #mem_patch31
+##20   #mem_patch32
+##00   #mem_patch33
+##00   #mem_patch34
+##40   #mem_patch35	#40 enable HID
+##00   #mem_patch36
+##00   #mem_patch37
+##00   #mem_patch38
+##01   #mem_patch39	#01 enable HID
+##00   #mem_patch3A
+##00   #mem_patch3B
+##00   #mem_patch3C
+##00   #mem_patch3D
+##88   #mem_patch3E
+##03   #mem_patch3F
+
+mem_lpm_config:8f 1b ce
+mem_lpm_buckcnt:0a 0b ef 0f
+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 02
+mem_pscan_window:12 00
+mem_pscan_interval:00 02
+
+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_le_rx_window_inc:00 40
+
+mem_lmp_version: 09 59 00 B0 00    #04 0a 00 e9 12
+
+mem_eeprom_base:30 6f
+mem_eeprom_block_size:20
+
+mem_context_number:01
+
+mem_rf_init_data_new:
+# tx power
+55 d0
+56 c0
+57 4c
+58 3c
+59 50
+ff
+mem_rf_init_ptr:mem_rf_init_data_new
+
+#mem_class: 80 25 00
+#mem_lap:ab ab 66 63 5d 6c
+#mem_local_name_length:
+#'bt mouse
+#mem_sniff_param_interval:0c 00
+#mem_sniff_param_attempt:01
+#mem_sniff_param_timeout:01
+#mem_unsniff2sniff_timer:0a
+mem_ssp_enable:00
+#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
+#1100 0001 0210 2411  0012  0100
+
+mem_all_uuid_128bits:00
+
+#mouse uuid
+#mem_device_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_device_uuid_list
+#Auto reconnection after power on
+mem_device_option:42
+#mem_ptt:0
+#mem_features:
+#ff
+#ff
+#8f
+#f8	#fe--EDR  F8--BR
+#9b	#AFHclose 83
+#9d
+#51
+#82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+#2=mouse 4=dongle 6=ukey 7=ir
+mem_lpm_mode:01
+mem_lpm_mult:20
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:08
+mem_lpm_interval:00 00
+mem_scan_mode:00
+mem_ipc_tx_evt_buff:02 01
+
+mem_adc_config_flag:04
+mem_adc_channel:30
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+
+
+mem_le_adv_own_addr_type:00
+mem_le_adv_channel_map:07 
+mem_le_adv_filter_policy:00
+mem_le_transmit_window:50
+mem_le_notify_handle:1a
+mem_le_lap:ab b9 12 0e 10 26			#bluetooth MAC address
+mem_le_name_len:			#bluetooth name
+'BLE Mouse
+
+mem_le_local_mtu:17
+mem_le_adv_type:00
+mem_le_adv_direct_addr_type:01
+mem_le_adv_direct_addr:00 00 00 00 00 00
+mem_le_adv_enable:00
+
+mem_le_adv_data_len:1f
+mem_le_adv_data:
+#appearance
+03 19 c2 03
+
+#uuid
+03 03 12 18
+
+#flag 
+02 01 05
+
+#name
+'\09BLE Mouse
+
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+#name
+'\09BLE Mouse
+
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_device_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
+'BLE Mouse
+
+#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 01 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
+
+25 00 02 03 28 01 12 
+26 00 02 4d 2a 07 00 00 00 00 00 00 00 
+27 00 02 02 29 02 00 00
+28 00 02 08 29 02 11 01
+29 00 02 03 28 01 0e 
+2a 00 02 4d 2a 07 00 00 00 00 00 00 00
+2b 00 02 08 29 02 11 02
+
+#End of Attribute list
+00 00
+
+mem_ui_le_uuid_table:mem_device_le_att_list
+
+mem_le_rx_winsows:50
+
+mem_le_interal_min:
+07 00 #min interval
+07 00 #max interval
+05 00 #latency
+2c 01 #timeout
+
+mem_empty_count_user:00
+#mem_le_att_report1:13 00
+mem_le_att_report2:19 00
+mem_le_pairing_handle:22 00
+mem_le_pairing_mode:01
+mem_le_flag:01
+
+mem_tx_power:02#3dbm
+
+#24g init
+mem_new_24g_mode:01#tx
+mem_new_24g_data_type:01	#mouse 1,kb 2
+mem_new_24g_max_retry:04#max tx retry
+mem_new_24g_no_ack:00#with ack
+mem_new_24g_rx_window:c0 12	#400us
+mem_new_24g_interval:19
+mem_new_24g_interval_min:19
+mem_new_24g_interval_max:1c
+mem_new_24g_ch_map1:00 13 2c 42
+mem_new_24g_ch_map2:06 15 36 48
+mem_new_24g_ch_map3:0f 1a 3a 4c
+mem_new_24g_ch_map4:11 23 31 4d
+mem_new_24g_pairing_sm:ff
+mem_new_24g_paring_addr:20 15 10 05
+mem_new_24g_common_temp:00 00 00 00 00 00 00 00 00 00
+mem_new_24g_enter_hibernate:00 48 60 00 00 00 00 00#10 min
+
+
Index: c51/patch/sensor.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/patch/sensor.obj
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/sensor.obj	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/sensor.obj	(working copy)

Property changes on: c51/patch/sensor.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/user.dat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/user.dat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/patch/user.dat	(working copy)
@@ -0,0 +1,817 @@
+
+#mem_class: 80 25 00
+#mem_lap:ab ab 66 63 5d 6c
+#mem_local_name_length:
+#'bt mouse
+#mem_sniff_param_interval:0c 00
+#mem_sniff_param_attempt:01
+#mem_sniff_param_timeout:01
+#mem_unsniff2sniff_timer:0a
+mem_ssp_enable:00
+#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
+#1100 0001 0210 2411  0012  0100
+
+mem_all_uuid_128bits:00
+
+#mouse uuid
+#mem_device_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_device_uuid_list
+#Auto reconnection after power on
+mem_device_option:42
+#mem_ptt:0
+#mem_features:
+#ff
+#ff
+#8f
+#f8	#fe--EDR  F8--BR
+#9b	#AFHclose 83
+#9d
+#51
+#82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+#2=mouse 4=dongle 6=ukey 7=ir
+mem_lpm_mode:01
+mem_lpm_mult:20
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:08
+mem_lpm_interval:00 00
+mem_scan_mode:00
+mem_ipc_tx_evt_buff:02 01
+
+mem_adc_config_flag:04
+mem_adc_channel:30
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+
+
+mem_le_adv_own_addr_type:00
+mem_le_adv_channel_map:07 
+mem_le_adv_filter_policy:00
+mem_le_transmit_window:50
+mem_le_notify_handle:1a
+mem_le_lap:ab b9 12 0e 10 26			#bluetooth MAC address
+mem_le_name_len:			#bluetooth name
+'BLE Mouse
+
+mem_le_local_mtu:17
+mem_le_adv_type:00
+mem_le_adv_direct_addr_type:01
+mem_le_adv_direct_addr:00 00 00 00 00 00
+mem_le_adv_enable:00
+
+mem_le_adv_data_len:1f
+mem_le_adv_data:
+#appearance
+03 19 c2 03
+
+#uuid
+03 03 12 18
+
+#flag 
+02 01 05
+
+#name
+'\09BLE Mouse
+
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+#name
+'\09BLE Mouse
+
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_device_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
+'BLE Mouse
+
+#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 01 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
+
+25 00 02 03 28 01 12 
+26 00 02 4d 2a 07 00 00 00 00 00 00 00 
+27 00 02 02 29 02 00 00
+28 00 02 08 29 02 11 01
+29 00 02 03 28 01 0e 
+2a 00 02 4d 2a 07 00 00 00 00 00 00 00
+2b 00 02 08 29 02 11 02
+
+#End of Attribute list
+00 00
+
+mem_ui_le_uuid_table:mem_device_le_att_list
+
+mem_le_rx_winsows:50
+
+mem_le_interal_min:
+07 00 #min interval
+07 00 #max interval
+05 00 #latency
+2c 01 #timeout
+
+mem_empty_count_user:00
+#mem_le_att_report1:13 00
+mem_le_att_report2:19 00
+mem_le_pairing_handle:22 00
+mem_le_pairing_mode:01
+mem_le_flag:01
+
+mem_tx_power:02#3dbm
+
+#24g init
+mem_new_24g_mode:01#tx
+mem_new_24g_data_type:01	#mouse 1,kb 2
+mem_new_24g_max_retry:04#max tx retry
+mem_new_24g_no_ack:00#with ack
+mem_new_24g_rx_window:c0 12	#400us
+mem_new_24g_interval:19
+mem_new_24g_interval_min:19
+mem_new_24g_interval_max:1c
+mem_new_24g_ch_map1:00 13 2c 42
+mem_new_24g_ch_map2:06 15 36 48
+mem_new_24g_ch_map3:0f 1a 3a 4c
+mem_new_24g_ch_map4:11 23 31 4d
+mem_new_24g_pairing_sm:ff
+mem_new_24g_paring_addr:20 15 10 05
+mem_new_24g_common_temp:00 00 00 00 00 00 00 00 00 00
+mem_new_24g_enter_hibernate:00 48 60 00 00 00 00 00#10 min
+
+
Index: c51/ram.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/ram.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/ram.c	(working copy)
@@ -0,0 +1,10 @@
+
+extern void YC_SysMain(void);
+
+
+void main()
+{
+	YC_SysMain();
+	//while(1){
+	//}
+}
Index: c51/sensor.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/sensor.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/sensor.h	(working copy)
@@ -0,0 +1,44 @@
+#ifndef _YC_SENSOR_H_
+#define _YC_SENSOR_H_
+
+#define FCT3065_ID						0x31
+#define PIXART_ID						0x30		// PAW3205,PAW3212
+#define PAW3205_ID						0xD0
+#define PAW3212_ID						0x02
+#define PAW3204UL_ID					0xD1
+#define PAW3204DB_ID					0x50
+#define X816_ID							0x54
+#define SENSOR_POWER					0x06
+#define MA8650_ID						0x5a
+
+#define SENSOR_POWER					0x06
+#define PAW3212_DPI0					21
+#define PAW3212_DPI1					32
+#define PAW3212_DPI2					42
+#define PAW3212_DPI3					63
+
+#define SENSOR_X_ADDR					0x03
+#define SENSOR_Y_ADDR					0x04
+#define SENSOR_XY_H						0x12
+#define SENSOR_POWER					0x06
+#define SENSOR_MOTION					0x02
+
+#define MOUSE_3205_ENABLE            	1//0 disable bt
+#define MOUSE_3204_ENABLE            	1//0 disable bt
+#define MOUSE_3212_ENABLE            	1//0 disable bt
+#define MOUSE_8650_ENABLE            	1//0 disable bt
+//extern s16_t X_data,Y_data;
+
+void Sensor_spi_disable(void);
+void SPI_TwReset (void);
+u8_t SPI_ResetSensor (void);
+void sensorPowerDown (void);
+void sensorPowerOn (void);
+//void Sensor_LED_DC_ON (void);
+//void Sensor_LED_DC_OFF (void);
+void Drawing_optima(void);
+void Drawing_optima_init(void);
+//void mouseTimer4ms_start(void);
+
+#endif
+
Index: c51/sensor.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/sensor.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/sensor.c	(working copy)
@@ -0,0 +1,299 @@
+#include "common.h"
+#include "Spi.h"
+#include"Gpio.h"
+#include "global_variable.h"
+
+#define FCT3065_ID						0x31
+#define PIXART_ID						0x30		// PAW3205,PAW3212
+#define PAW3205_ID						0xD0
+#define PAW3212_ID						0x02
+#define PAW3204UL_ID					0xD1
+#define PAW3204DB_ID					0x50
+#define X816_ID							0x54
+#define SENSOR_POWER					0x06
+#define MA8650_ID						0x5a
+
+#define SENSOR_POWER					0x06
+#define PAW3212_DPI0					21
+#define PAW3212_DPI1					32
+#define PAW3212_DPI2					42
+#define PAW3212_DPI3					63
+
+#define OSC_FREQ        24
+#define TIMER_MODE0     0x00
+#define TIMER_MODE1     0x01
+#define TIMER_MODE2     0x02
+#define TIMER_MODE3     0x03
+#define GPIO_ACTIVE 0
+#define GPIO_NEGATIVE 1
+
+#define MOUSE_3205_ENABLE            	1//0 disable bt
+#define MOUSE_3204_ENABLE            	1//0 disable bt
+#define MOUSE_3212_ENABLE            	1//0 disable bt
+#define MOUSE_8650_ENABLE            	1//0 disable b
+
+//static s16_t X_sum, Y_sum, X_pre, Y_pre;
+//static bool asm_flag;
+//s16_t X_data,Y_data;
+/*
+void mouseTimer4ms_start(void)
+{    
+	TMOD &= 0xF0;	
+	TMOD |= TIMER_MODE1;        //    TH0=(65536-1085)/256; //    TL0=(65536-1085)%256;    
+	TH0=0x47;
+	TL0=0x00; 
+	IE = 0;
+	EA=1;        
+	ET0=1;       
+	TR0=1;  
+	X_sum = 0;
+	Y_sum = 0;
+ 	X_pre = 0;
+ 	Y_pre = 0;
+	asm_flag = 0;
+	X_data = 0;
+	Y_data = 0;
+	mouseTimer4ms();
+}
+
+void T0_time() interrupt 1
+{    
+	TH0=0x47;
+	TL0=0x00; 
+	mouseTimer4ms();
+}
+*/
+
+void SPI_TwReset()
+{
+	u8_t sensorId = 0;
+	REG_GPIO_SEL(1) = 1;
+	g_variable.read_sensor_count = 0;
+	while (1) 
+	{
+		g_variable.read_sensor_count++;
+		if(g_variable.read_sensor_count >= 6)
+		{
+			SPI_Initialize();
+		}
+		sensorId = SPI_ReadSensor(0) ;
+		if (( sensorId == PIXART_ID) ||(sensorId == FCT3065_ID))
+			break;
+		REG_GPIO_SEL(1) = 0;
+		REG_GPIO_OE(3) |= 0x02;
+		REG_GPIO_OUT(3) &= 0xfd;
+		REG_GPIO_OE(3) |= 0x02;
+		REG_GPIO_SEL(1) = 1;
+	} 
+}
+
+u8_t SPI_ResetSensor()
+{
+	u8_t sensorConfig=0;
+	u8_t Sensor_type = 0;
+	while (1) 
+	{
+		if (SPI_ReadSensor(0) == FCT3065_ID)// FCT3065_ID PAW3205DB_ID
+		{
+			sensorConfig = SPI_ReadSensor(SENSOR_POWER)|0x80;
+			SPI_WriteSensor(sensorConfig, SENSOR_POWER);//dpi 1300
+			Sensor_type= FCT3065_ID;
+			break;
+		}
+		else if((SPI_ReadSensor(1) == MA8650_ID))
+		{
+			Sensor_type= MA8650_ID;
+			sensorConfig = SPI_ReadSensor(SENSOR_POWER)|0x80;
+			SPI_WriteSensor(sensorConfig, SENSOR_POWER);//dpi 1300
+			break;
+		}
+		else if (SPI_ReadSensor(0) == PIXART_ID)// FCT3065_ID PAW3205DB_ID
+		{
+			if(SPI_ReadSensor(1) == X816_ID)
+			{
+				Sensor_type= FCT3065_ID;
+				break;
+			}
+#if MOUSE_3205_ENABLE
+			if ((SPI_ReadSensor(1) & 0xf0) == PAW3205_ID)// FCT3065_ID PAW3205DB_ID
+			{
+				if (SPI_ReadSensor(0x1e) & 0x01)
+					Sensor_type= PAW3204UL_ID;
+				else 
+					Sensor_type= PAW3205_ID;
+				sensorConfig = SPI_ReadSensor(SENSOR_POWER)|0x80;
+				SPI_WriteSensor(sensorConfig, SENSOR_POWER);//dpi 1300
+				break;
+			}
+#endif
+
+#if MOUSE_3204_ENABLE
+			if(((SPI_ReadSensor(1) & 0xf0) == PAW3204DB_ID))
+			{
+				Sensor_type= PAW3204DB_ID;
+				sensorConfig = SPI_ReadSensor(SENSOR_POWER)|0x80;
+				SPI_WriteSensor(sensorConfig, SENSOR_POWER);//dpi 1300
+				break;
+			}
+#endif
+			
+#if MOUSE_3212_ENABLE
+			if (SPI_ReadSensor(1) == PAW3212_ID)// FCT3065_ID PAW3205DB_ID
+			{
+				sensorConfig = SPI_ReadSensor(SENSOR_POWER)|0x80;
+				SPI_WriteSensor(sensorConfig, SENSOR_POWER);//dpi 1300
+				Sensor_type= PAW3212_ID;
+				if (SPI_ReadSensor(1) == PAW3212_ID)
+					break;
+			}
+#endif
+		}
+		SPI_TwReset();
+	}
+
+#if MOUSE_3205_ENABLE
+	if (Sensor_type== PAW3205_ID)
+	{
+		SPI_WriteSensor(0x5A,0x09);
+		SPI_WriteSensor(0x0A,0x0D);
+		SPI_WriteSensor(0x35,0x1B);
+		SPI_WriteSensor(0xDB,0x1D);
+		SPI_WriteSensor(0xB4,0x28);
+		SPI_WriteSensor(0x46,0x29);
+		SPI_WriteSensor(0x96,0x2A);
+		SPI_WriteSensor(0x8C,0x2B);
+		SPI_WriteSensor(0x6E,0x2C);
+		SPI_WriteSensor(0x64,0x2D);
+		SPI_WriteSensor(0x5F,0x38);
+		SPI_WriteSensor(0x0F,0x39);
+		SPI_WriteSensor(0x32,0x3A);
+		SPI_WriteSensor(0x47,0x3B);
+		SPI_WriteSensor(0x10,0x42);
+		SPI_WriteSensor(0x09,0x43);
+		SPI_WriteSensor(0x2E,0x54);
+		SPI_WriteSensor(0xF2,0x55);
+		SPI_WriteSensor(0xF4,0x61);
+		SPI_WriteSensor(0x70,0x63);
+		SPI_WriteSensor(0x52,0x75);
+		SPI_WriteSensor(0x41,0x76);
+		SPI_WriteSensor(0xED,0x77);
+		SPI_WriteSensor(0x23,0x78);
+		SPI_WriteSensor(0x46,0x79);
+		SPI_WriteSensor(0xE5,0x7A);
+		SPI_WriteSensor(0x48,0x7C);
+		SPI_WriteSensor(0x80,0x7D);
+		SPI_WriteSensor(0x77,0x7E);
+		SPI_WriteSensor(0x01,0x7F);
+		SPI_WriteSensor(0x00,0x0B);
+		SPI_WriteSensor(0x00,0x7F);
+		SPI_WriteSensor(0x00,0x09);
+	}
+#endif
+
+#if MOUSE_3212_ENABLE
+	if(Sensor_type== PAW3212_ID) 
+	{
+		SPI_WriteSensor(0x5a, 0x09);
+		SPI_WriteSensor(0x34, 0x26);
+		SPI_WriteSensor(0x14, 0x19);	
+		SPI_WriteSensor(0x00, 0x09);
+	}
+#endif
+
+#if MOUSE_3204_ENABLE
+	if(Sensor_type== PAW3204DB_ID)
+	{
+		SPI_WriteSensor(0x5a, 0x09);
+		SPI_WriteSensor(0x9a, 0x5b);
+		while (SPI_ReadSensor(0x0d) != 0x12)
+			SPI_WriteSensor(0x12, 0x0d);
+		while (SPI_ReadSensor(0x0e) != 0xc5)
+			SPI_WriteSensor(0xc5, 0x0e);
+		while (SPI_ReadSensor(0x53) != 0x48)
+			SPI_WriteSensor(0x48, 0x53);
+	}
+#endif
+
+	return Sensor_type;
+}
+
+void Sensor_spi_disable(void)
+{
+	REG_GPIO_SEL(1) = 0;
+	REG_GPIO_OE(3) |= 0x02;
+	REG_GPIO_OUT(3) |= 0x02;
+}
+
+void sensorPowerDown()
+{
+	u8_t config = 0;
+	SPI_TwReset();
+	config = SPI_ReadSensor(0x06) |0x08;
+	SPI_WriteSensor(config, 0x06);		//sensor Power down
+	REG_GPIO_SEL(1) = 0;
+	GPIO_SetInput(25, 0);
+	GPIO_SetInput(26, 0);
+}
+
+void sensorPowerOn()
+{
+	u8_t config = 0;
+	SPI_TwReset();
+	config = SPI_ReadSensor(0x06)&0xf7;
+	SPI_WriteSensor(config, 0x06);		//sensor Power on
+	SPI_ReadSensor(2);
+	Sensor_spi_disable();
+}
+
+/*
+void Sensor_LED_DC_ON()
+{
+	SPI_WriteSensor(0xa1, 0x05);
+}
+
+void Sensor_LED_DC_OFF()
+{
+	SPI_WriteSensor(0xb8, 0x05);
+}
+*/
+u16_t abs(s16_t data_in)
+{
+	if( data_in<=0)
+		data_in = 0 - data_in;
+	return ((u16_t) data_in);
+}
+
+
+void Drawing_optima()
+{
+	if ((g_variable.X_data > 6) ||(g_variable.X_data < -6)||(g_variable.Y_data > 6) ||(g_variable.Y_data < -6))
+		g_variable.asm_flag = 1;
+	if ((abs(g_variable.X_data) <3) &&(abs(g_variable.Y_data) <3))
+		g_variable.asm_flag = 0;
+	if(g_variable.asm_flag == 1) {
+		g_variable.X_sum = g_variable.X_sum - g_variable.X_pre + g_variable.X_data;
+		g_variable.X_pre = g_variable.X_sum/2;
+		g_variable.X_data = g_variable.X_pre;
+		g_variable.Y_sum = g_variable.Y_sum - g_variable.Y_pre + g_variable.Y_data;
+		g_variable.Y_pre = g_variable.Y_sum/2;
+		g_variable.Y_data = g_variable.Y_pre;
+	}else{
+		g_variable.X_sum = 0;
+		g_variable.Y_sum = 0;
+	 	g_variable.X_pre = 0;
+	 	g_variable.Y_pre = 0;
+ 	}
+}
+
+void Drawing_optima_init()
+{
+	g_variable.X_sum = 0;
+	g_variable.Y_sum = 0;
+ 	g_variable.X_pre = 0;
+ 	g_variable.Y_pre = 0;
+	g_variable.asm_flag = 0;
+	g_variable.X_data = 0;
+	g_variable.Y_data = 0;
+}
+
+
Index: c51/spi.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/spi.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/spi.h	(working copy)
@@ -0,0 +1,51 @@
+/*
+ * Copyright 2016, yichip Semiconductor(shenzhen office)
+ * All Rights Reserved.
+ *
+ * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Yichip Semiconductor;
+ * the contents of this file may not be disclosed to third parties, copied
+ * or duplicated in any form, in whole or in part, without the prior
+ * written permission of Yichip Semiconductor.
+ */
+
+  /** @file
+ *
+ * spi support for application
+ */
+#ifndef _SPI_H
+#define _SPI_H
+#include "common.h"
+
+#define	SPI_TBUFF		mem_spid_tbuf
+#define	SPI_RBUFF		mem_spid_rbuf
+
+/**
+ * This function SPI Initialize.
+ * 
+ * @param cb the IPC control block.
+ * 
+ * @return none.
+*/
+void SPI_Initialize(void);
+
+/**
+ * This function SPI read sensor.
+ * 
+ * @param cb the IPC control block.
+ * 
+ * @return none.
+*/
+u8_t SPI_ReadSensor(u8_t reg_num);
+
+
+/**
+ * This function SPI write sensor.
+ * 
+ * @param cb the IPC control block.
+ * 
+ * @return none.
+*/
+u8_t SPI_WriteSensor(u8_t value, u8_t reg_num);
+
+#endif/*YC_SPI_H*/
+
Index: c51/spi.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/spi.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/spi.c	(working copy)
@@ -0,0 +1,54 @@
+#include "spi.h"
+#include "Hwreg.h"
+
+#define	READ_SENSOR_TXLEN			0x01
+#define	READ_SENSOR_RXLEN			0X01
+
+#define	WRITE_SENSOR_TXLEN			0x02
+#define	WRITE_SENSOR_RXLEN			0X00
+
+#define	DMA_SPI_START				0X02
+
+#define SPI_RX_LEN (4)
+u8_t spi_rx_buff[SPI_RX_LEN] _at_ SPI_RBUFF;
+u8_t spi_tx_buff[SPI_RX_LEN] _at_ SPI_TBUFF;
+
+
+void SPI_Initialize()
+{
+	REG_SPID_CTRL = 0x75;
+	REG_SPID_DELAY = 10;
+	REG_SPID_TXADDR = ESWAP(SPI_TBUFF);
+	REG_SPID_RXADDR = ESWAP(SPI_RBUFF);
+	REG_GPIO_OUT(3) |= 0x02;
+}
+
+u8_t SPI_ReadSensor(u8_t reg_num)
+{
+	spi_tx_buff[0] = reg_num;
+	REG_SPID_TXLEN = ESWAP(READ_SENSOR_TXLEN);
+	REG_SPID_RXLEN = ESWAP(READ_SENSOR_TXLEN);
+	REG_MISC_CTRL = DMA_SPI_START;
+	do {
+	
+	}
+	while(!(REG_DMA_STATUS & 0x08));
+	return  *spi_rx_buff;
+}
+
+u8_t SPI_WriteSensor(u8_t value, u8_t reg_num)
+{
+	spi_tx_buff[0] = reg_num|0x80;
+	spi_tx_buff[1] = value;
+
+	REG_SPID_TXLEN = ESWAP(WRITE_SENSOR_TXLEN);
+	REG_SPID_RXLEN = ESWAP(WRITE_SENSOR_RXLEN);
+
+	REG_MISC_CTRL = DMA_SPI_START;
+	do {
+		
+	}
+	while(!(REG_DMA_STATUS & 0x08));
+	return 0;
+}
+
Index: c51/sys.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/sys.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/sys.h	(working copy)
@@ -0,0 +1,84 @@
+#ifndef _YC_SYSTEM_H_
+#define _YC_SYSTEM_H_
+#include "common.h"
+
+#define TASK_NULL 							(0)
+#define TASK_OBTAIN_MOUSE_KEY				(TASK_NULL + 1)
+#define TASK_OBTAIN_MOUSE_SENSOR			(TASK_NULL + 2)
+#define TASK_OBTAIN_ADC_DATA				(TASK_NULL + 3)
+#define TASK_OBTAIN_MOUSE_TWHEEL			(TASK_NULL + 4)
+#define TASK_OBTAIN_MOUSE_VDD_COMPARE	(TASK_NULL + 5)
+#define TASK_OBTAIN_TIMER_100MS			(TASK_NULL + 6)
+#define TASK_OBTAIN_0V_ADC_BASE			(TASK_NULL + 7)
+#define TASK_OBTAIN_3V_ADC_BASE			(TASK_NULL + 8)
+#define TASK_OBTAIN_IPC_EVENT			(TASK_NULL + 9)
+
+typedef enum c51_ble_state_enum
+{
+	CHANGE_TO_BLE_DISCONNECT =0,
+	CHANGE_TO_BLE_INDIR_ADV = 1,
+	CHANGE_TO_BLE_DIRECT_ADV,
+	CHANGE_TO_BLE_CONNECTING,
+	CHANGE_TO_BLE_CONNECTED,
+}C51_BLE_STATE;
+
+typedef enum c51_br_state_enum{
+	CHANGE_TO_BR_DISCONNECT =0,
+	CHANGE_TO_BR_DISCOVERY = 1,
+	CHANGE_TO_BR_RECONNECT,
+	CHANGE_TO_BR_CONNECTING,
+	CHANGE_TO_BR_CONNECTED,
+}C51_BR_STATE;
+
+typedef enum c51_24g_state_enum{
+	CHANGE_TO_24G_DISCONNECTED =0,
+	CHANGE_TO_24G_PAIRING= 1,
+	CHANGE_TO_24G_CONNECTING,
+	CHANGE_TO_24G_CONNECTED,
+}C51_24G_STATE;
+
+typedef enum c51_ble_connecting_substate_enum
+{
+	CHANGE_TO_BLE_SUB_NONE=0,
+	CHANGE_TO_BLE_SUB_INIT,
+	CHANGE_TO_BLE_SUB_PINCODE,
+	CHANGE_TO_BLE_SUB_PINCODE_OK,
+}C51_BLE_CONNECTING_SUBSTATE;
+
+typedef enum c51_br_connecting_substate_enum
+{
+	CHANGE_TO_BR_SUB_NONE =0,
+	CHANGE_TO_BR_SUB_INIT,
+	CHANGE_TO_BR_SUB_PINCODE,
+	CHANGE_TO_BR_SUB_PINCODE_OK,
+}C51_BR_CONNECTING_SUBSTATE;
+
+typedef enum c51_24g_connecting_substate_enum
+{
+	CHANGE_TO_24G_SUB_NONE=0,
+	CHANGE_TO_24G_SUB_INIT ,
+}C51_24G_CONNECTING_SUBSTATE;
+
+typedef enum c51_user_key_action
+{
+	KEY_NONE= 0,
+	KEY_RECON_0=1,
+	KEY_RECON_1=2,
+	KEY_RECON_2=3,
+	KEY_ENTER_ADV,
+	KEY_DISCOVERY,
+	KEY_DISCONNECT_ALL,
+	KEY_CLEAR_RECORD,
+	KEY_START_24G,
+	KEY_OPEN_24G,
+	KEY_PAIRING_24G,
+	KEY_STOP_24G,
+	KEY_USB,
+	KEY_STOP_DISCOVERY,
+}C51_KEY_ACTION;
+void YC_key_action_handle(C51_KEY_ACTION key_num);
+void check_switch_button_init();
+void check_switch_button();
+void mouseMotion();
+
+#endif
Index: c51/sys.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/sys.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/sys.c	(working copy)
@@ -0,0 +1,1512 @@
+#include "sys.h"
+#include "Peripheral.h"
+#include "gpio.h"
+#include "spi.h"
+#include "ipc.h"
+#include "iic.h"
+#include "global_variable.h"
+#include "adc.h"
+#include "sensor.h"
+
+#define MOUSE_BT_MODE_ENABLE            0//0 disable
+#define ADC_VINLPM_ENABLE            	0//0 disable
+#define ADC_GPIO_ENABLE            		0//0 disable
+#define OTA_ENABLE						0//0 disable
+
+#define DEVICE_MODE_NONE 				0
+#define DEVICE_MODE_24G 				1
+#define DEVICE_MODE_BT 					2
+#define DEVICE_MODE_DISC 				3
+#define DEVICE_MODE_PAGE 				4
+#define DEVICE_MODE_BB					5
+#define DEVICE_MODE_PREPARE_SLEEP		6
+#define DEVICE_MODE_BLE_BB_CONNECT 		7
+#define DEVICE_MODE_BLE_ADV 			8
+#define DEVICE_MODE_BLE 				9
+#define MOUSE_ENTER_PB_TIME				25
+#define MOUSE_MODE_SW_TIME				15
+
+#if OTA_ENABLE
+#define EEPROM_SIZE						0x8000		//TOTAL LEN
+#define EEPROM_RECON_INFO_BASE			0x7f80		//6BYTE
+#else
+#define EEPROM_RECON_INFO_BASE			0x3f80		//6BYTE
+#endif
+#define EEPROM_HEAD_ADDR				0									//2BYTE
+#define EEPROM_DATA_LENGTH				42			//TOTAL LEN
+#define EEPROM_LINK_KEY					(EEPROM_RECON_INFO_BASE+6)			//16BYTE
+#define EEPROM_REMOTE_LE_ADDR			(EEPROM_LINK_KEY+16)				//6BYTE
+#define EEPROM_RECONN_LE_ADDR			(EEPROM_REMOTE_LE_ADDR+6)			//6BYTE
+#define EEPROM_24G_ADDR					(EEPROM_RECONN_LE_ADDR+6)			//6BYTE
+#define EEPROM_DPI_ADDR					(EEPROM_24G_ADDR+6) 				//1BYTE
+#define EEPROM_CONN_MODE				(EEPROM_DPI_ADDR+1)					//1BYTE
+#define EEPROM_BLE_ADDR_RANDOM_CNT		(EEPROM_CONN_MODE+1)				//2BYTE
+#define EEPROM_BLE_ADDR_RANDOM_CNT_WP	(EEPROM_BLE_ADDR_RANDOM_CNT+2)			//1BYTE
+
+#define PWR_ON_F 						((m_powerOnFlag&0x04) == 0)
+
+#define LOW_BATTERY_INTERVAL 		10
+#define SHORT_LPM_STATE_POLLING 	0
+#define SHORT_LPM_STATE_DATA 		1
+#define SHORT_LPM_STATE_NODATA 	 	2
+#define SHORT_LPM_STATE_BUTTON_WHEEL		3
+
+#define PC_REPORT_ID 		0xba
+#define CMD_USER_DEFINE		0xb0
+#define CMD_OTA				0xcf
+#define CMD_OTA_START		0xc0
+#define CMD_OTA_DATA		0xc1
+#define CMD_OTA_EXIT		0xc2
+
+
+#if OTA_ENABLE
+void wirelessCmdOtaStart()
+{
+	u8_t eeprom_addr[2] = 0;
+	m_new24gIntMax = 5;
+	m_new24gIntMin = 5;
+	m_new24gOtaEnable = 1;
+	g_variable.otaReqPacEnable = 1;
+	g_variable.otaLastAckPid = 0;
+	g_variable.otaExitCmdCount = 0;
+	g_variable.otaExitFlag = 0;
+
+	//get boot eeprom addr
+	IIC_Read(EEPROM_HEAD_ADDR,2,eeprom_addr);
+	if(eeprom_addr[0] == 0x00 && eeprom_addr[1] == 0x02)
+		g_variable.otaHeadAddr = EEPROM_SIZE;	//
+	else
+		g_variable.otaHeadAddr = 0x0000;	//
+}
+
+void wirelessCmdOtaData()
+{
+	u16_t currentAckPID;
+	g_variable.otaReqPacEnable = 1;
+	//check ack pid;
+	currentAckPID = (m_24gRxPayload[3] & 0xff) |(m_24gRxPayload[4] <<8);
+	if((ESWAP(ESWAP(currentAckPID) -ESWAP(g_variable.otaLastAckPid))&0xff) != 0x01){
+		g_variable.otaReqPacValue[0] = CMD_OTA_DATA;
+		g_variable.otaReqPacValue[1] = g_variable.otaLastAckPid & 0xff;
+		g_variable.otaReqPacValue[2] = g_variable.otaLastAckPid >> 8;
+		return;
+	}
+	g_variable.otaLastAckPid = currentAckPID;
+	g_variable.otaReqPacValue[0] = CMD_OTA_DATA;
+	g_variable.otaReqPacValue[1] = m_24gRxPayload[3];
+	g_variable.otaReqPacValue[2] = m_24gRxPayload[4];
+	//store ota data
+	if(g_variable.otaHeadAddr == 0x0000 
+		&& m_24gRxPayload[3] == 0x01 
+		&&m_24gRxPayload[4] == 0x00){
+		IIC_WriteBlock(g_variable.otaHeadAddr+2,m_24gRxPayload[5],&m_24gRxPayload[8]);
+	}
+	else	
+		IIC_WriteBlock(g_variable.otaHeadAddr,m_24gRxPayload[5],&m_24gRxPayload[6]);
+	g_variable.otaHeadAddr += m_24gRxPayload[5];
+}
+
+void wirelessCmdOtaExit()
+{
+	u32_t checkSum = 0;
+	u16_t i,eepromHead = 0;
+	u8_t eepromData = 0,eepromData1 = 0;
+	u8_t eeprom_addr[2] = 0;
+	u16_t eepromDataRAddr = 0,eepromDataWAddr = 0;
+	u8_t eepromBootAddr = 0;
+	u16_t j,k;
+		
+	if(g_variable.otaExitFlag == 1){
+		IIC_Read(EEPROM_HEAD_ADDR,2,eeprom_addr);
+		if(eeprom_addr[0] == 0x00 && eeprom_addr[1] == 0x02){
+			eepromDataRAddr = EEPROM_RECON_INFO_BASE;
+			eepromDataWAddr = EEPROM_RECON_INFO_BASE+EEPROM_SIZE;
+			eepromBootAddr = 0x80;
+		}
+		else{
+			eepromDataRAddr = EEPROM_RECON_INFO_BASE+EEPROM_SIZE;
+			eepromDataWAddr = EEPROM_RECON_INFO_BASE;
+			eepromBootAddr = 0x00;
+		}
+		for(j=0;j<EEPROM_DATA_LENGTH;j++){
+			IIC_Read((eepromDataRAddr+j),1,&eepromData1);
+			Delay1ms(10);
+			IIC_WriteBlock((eepromDataWAddr+j),1,&eepromData1);
+			Delay1ms(10);
+		}
+		IIC_WriteBlock(EEPROM_HEAD_ADDR,1,&eepromBootAddr);
+		m_new24gOtaEnable = 0;
+		g_variable.otaHeadAddr = 0;
+		g_variable.otaLastAckPid = 0;
+		g_variable.otaReqPacEnable = 0;
+		g_variable.otaExitFlag = 0;
+		g_variable.otaExitCmdCount = 0;
+		for(k=0;k<7;k++)
+			g_variable.otaReqPacValue[k] = 0;
+		REG_RST = 1;
+		return;
+	}
+
+	if(g_variable.otaExitCmdCount == 1)
+		return;
+	g_variable.otaExitCmdCount = 1;
+
+	eepromHead = g_variable.otaHeadAddr -EEPROM_SIZE;
+	for(i=0;i<EEPROM_SIZE;i++){
+		IIC_Read((eepromHead+i),1,&eepromData);
+		checkSum += eepromData;
+	}
+	IIC_Read(EEPROM_HEAD_ADDR,2,eeprom_addr);
+	if(eeprom_addr[0] == 0x80 && eeprom_addr[1] == 0x02)
+		checkSum -= 0x80;
+
+	if(((checkSum & 0xff) == m_24gRxPayload[5]) 
+		&& (((checkSum>>8) & 0xff) == m_24gRxPayload[6]) 
+		&& (((checkSum>>16) & 0xff) == m_24gRxPayload[7])){
+		g_variable.otaReqPacValue[0] = CMD_OTA_EXIT;
+		g_variable.otaReqPacValue[1] = m_24gRxPayload[3];
+		g_variable.otaReqPacValue[2] = m_24gRxPayload[4];
+		g_variable.otaReqPacValue[3] = 0x55;
+		g_variable.otaReqPacValue[4] = 0;
+		g_variable.otaExitFlag = 1;
+	}
+	else{
+		g_variable.otaReqPacValue[0] = CMD_OTA_EXIT;
+		g_variable.otaReqPacValue[1] = m_24gRxPayload[3];
+		g_variable.otaReqPacValue[2] = m_24gRxPayload[4];
+		g_variable.otaReqPacValue[3] = 0xaa;
+		g_variable.otaReqPacValue[4] = 0;
+	}
+}
+
+void wirelessConfigProcess()
+{
+	if(g_variable.currentState != DEVICE_MODE_24G || g_variable.g24DongleExist != 1){
+		return;
+	}
+	//pc user define features
+	if(m_24gRxPayload[0] != PC_REPORT_ID ||m_24gRxPayload[1] != CMD_USER_DEFINE){
+		return;
+	}
+	else{	
+		switch(m_24gRxPayload[2]){	//pc cmd
+		case CMD_OTA_START:	//0xc0
+			wirelessCmdOtaStart();
+			break;
+		case CMD_OTA_DATA:	//0xc1
+			wirelessCmdOtaData();
+			break;
+		case CMD_OTA_EXIT:	//0xc2
+			wirelessCmdOtaExit();
+			break;
+		default:
+			break;
+		}
+	}
+}
+#endif
+
+void sensorClearData()
+{
+	sensorPowerOn();
+	SPI_TwReset();
+	while(!GPIO_GetInputStatus(SENSOR_MOTION_GPIO)){
+		SPI_ReadSensor(SENSOR_MOTION);
+		SPI_ReadSensor(SENSOR_X_ADDR);
+		SPI_ReadSensor(SENSOR_Y_ADDR);
+	}
+}
+
+void dpiWriteInSensor()
+{
+	SPI_TwReset();
+#if MOUSE_3205_ENABLE
+	if((g_variable.sensorType == PAW3205_ID) ||(g_variable.sensorType == PAW3204UL_ID)) 
+	{
+		SPI_WriteSensor((g_variable.dpiCount+1), SENSOR_POWER);
+	}
+#endif
+
+	if (g_variable.sensorType == FCT3065_ID)
+	{
+		if(g_variable.dpiCount == 1)
+			SPI_WriteSensor(0, SENSOR_POWER);
+		else
+			SPI_WriteSensor(g_variable.dpiCount, SENSOR_POWER);
+	}
+	
+#if MOUSE_3204_ENABLE
+	if (g_variable.sensorType == PAW3204DB_ID)
+	{
+		SPI_WriteSensor((g_variable.dpiCount+3), SENSOR_POWER);
+	}
+#endif
+
+#if MOUSE_8650_ENABLE
+	if (g_variable.sensorType == MA8650_ID)
+	{
+		SPI_WriteSensor((g_variable.dpiCount+3), SENSOR_POWER);
+	}
+#endif
+
+#if MOUSE_3212_ENABLE	
+	if (g_variable.sensorType == PAW3212_ID) 
+	{
+		SPI_WriteSensor(0x5a,0x09);
+		switch (g_variable.dpiCount)
+		{
+			case 0:
+				SPI_WriteSensor(PAW3212_DPI0, 0x0d);
+				SPI_WriteSensor(PAW3212_DPI0, 0x0e);
+				break;
+			case 1:
+				SPI_WriteSensor(PAW3212_DPI1, 0x0d);
+				SPI_WriteSensor(PAW3212_DPI1, 0x0e);
+				break;				
+			case 2:
+				SPI_WriteSensor(PAW3212_DPI2, 0x0d);
+				SPI_WriteSensor(PAW3212_DPI2, 0x0e);
+				break;
+			case 3:
+				SPI_WriteSensor(PAW3212_DPI3, 0x0d);
+				SPI_WriteSensor(PAW3212_DPI3, 0x0e);
+				break;
+			default:
+				break;
+		}
+		SPI_WriteSensor(0x00,0x09);
+	}
+#endif
+
+	Sensor_spi_disable();
+}
+
+static u8_t mouseLKeyCheck()
+{
+	GPIO_SetOutput(Timer_div_io, 1);
+	g_variable.lKeyTemp <<=1;
+	g_variable.lKeyTemp |= !GPIO_GetInputStatus(KS_BL_GPIO);
+	if (g_variable.lKeyTemp&0x01)
+	{
+		g_variable.wheelTimer= 2;
+	}
+	do
+	{ 
+		if((g_variable.lKeyTemp & 0x07) == 0x07)
+		{
+			g_variable.lKey = 1;
+			break;
+		}
+		if((g_variable.lKeyTemp & 0x07) == 0x00)
+		{
+			g_variable.lKey = 0;
+			break;
+		}
+	}while(0);
+	return g_variable.lKey;
+}
+
+static u8_t mouseMKeyCheck()
+{
+	GPIO_SetOutput(Timer_div_io, 1);
+	g_variable.mKeyTemp <<=1;
+	g_variable.mKeyTemp |= !GPIO_GetInputStatus(KS_BM_GPIO);
+	if (g_variable.mKeyTemp&0x01) 
+	{
+		g_variable.wheelTimer= 2 ;
+	}
+	do 
+	{ 
+		if((g_variable.mKeyTemp & 0x07) == 0x07) 
+		{
+			g_variable.mKey = 1;
+			break;
+		}
+		if((g_variable.mKeyTemp & 0x07) == 0x00) 
+		{
+			g_variable.mKey = 0;
+			break;
+		}
+	}while(0);
+	return g_variable.mKey;
+}
+
+
+static u8_t mouseRKeyCheck()
+{
+	GPIO_SetOutput(Timer_div_io, 1);
+	g_variable.rKeyTemp <<=1;
+	g_variable.rKeyTemp |= !GPIO_GetInputStatus(KS_BR_GPIO);
+	if (g_variable.rKeyTemp&0x01) 
+	{
+		g_variable.wheelTimer= 2 ;
+	}
+	do 
+	{ 
+		if((g_variable.rKeyTemp & 0x07) == 0x07) 
+		{
+			g_variable.rKey = 1;
+			break;
+		}
+		if((g_variable.rKeyTemp & 0x07) == 0x00) 
+		{
+			g_variable.rKey = 0;
+			break;
+		}
+	}while(0);
+	return g_variable.rKey;
+}
+
+static u8_t mouseBkKeyCheck()
+{
+	if (!GPIO_GetInputStatus(KS_BK_GPIO)) return 0;
+	GPIO_SetOutput(Timer_div_io, 0);
+	g_variable.bkKeyTemp <<=1;
+	g_variable.bkKeyTemp |= !GPIO_GetInputStatus(KS_BK_GPIO);
+	GPIO_SetOutput(Timer_div_io,1);
+	GPIO_SetInput(Timer_div_io, 0);	
+	if (g_variable.bkKeyTemp&0x01)
+	{
+		g_variable.wheelTimer= 2 ;
+	}	
+	do 
+	{ 
+		if((g_variable.bkKeyTemp & 0x07) == 0x07)
+		{
+			g_variable.bkKey = 1;
+			break;
+		}
+		if((g_variable.bkKeyTemp & 0x07) == 0x00)
+		{
+			g_variable.bkKey = 0;
+			break;
+		}
+	}while(0);
+	return g_variable.bkKey;
+}
+
+static u8_t mouseFwKeyCheck()
+{
+	if (!GPIO_GetInputStatus(KS_FW_GPIO)) return 0;
+	GPIO_SetOutput(Timer_div_io, 0);
+	g_variable.fwKeyTemp <<=1;
+	g_variable.fwKeyTemp |= !GPIO_GetInputStatus(KS_FW_GPIO);
+	GPIO_SetOutput(Timer_div_io,1);
+	GPIO_SetInput(Timer_div_io, 0);	
+	if (g_variable.fwKeyTemp&0x01) 
+	{
+		g_variable.wheelTimer= 2 ;
+	}
+	do
+	{ 
+		if((g_variable.fwKeyTemp & 0x07) == 0x07) 
+		{
+			g_variable.fwKey = 1;
+			break;
+		}
+		if((g_variable.fwKeyTemp & 0x07) == 0x00)
+		{
+			g_variable.fwKey = 0;
+			break;
+		}
+	}while(0);
+	return g_variable.fwKey;
+}
+
+void mouseDpiKeyCheck(void)
+{
+	g_variable.dpiKeyTemp <<=1;
+	g_variable.dpiKeyTemp |= !GPIO_GetInputStatus(CPI_GPIO);
+	if (g_variable.dpiKeyTemp&0x01)	g_variable.wheelTimer= 2 ;
+	if((g_variable.dpiKeyTemp & 0xff) == 0x07)  
+	{
+		g_variable.dpiCount++;
+		g_variable.dpiCount &= 0x03;
+		if (g_variable.dpiCount == 0 ) g_variable.dpiCount = 1;
+		g_variable.dpiLedFlipTime = g_variable.dpiCount;
+		dpiWriteInSensor();
+		IIC_WriteBlock(EEPROM_DPI_ADDR, 1,&g_variable.dpiCount);
+	}
+}
+
+
+void mouse_wheel_delay_lpm(void)
+{
+	if(g_variable.currentState != DEVICE_MODE_24G)
+	{
+		g_variable.wheelTimer= 3;			//   10
+	}
+}
+
+void mouseWheelScan(void)
+{
+	u16_t result = 0;
+	u8_t tempStateA = GPIO_GetInputStatus(WHEEL_DATA_A_GPIO);
+	u8_t tempState = (tempStateA << 1)|
+		GPIO_GetInputStatus(WHEEL_DATA_B_GPIO);
+	
+	if (g_variable.wheelStateNow == tempState)
+		return;
+
+	g_variable.wheelStateLast = g_variable.wheelStateBefore;
+	g_variable.wheelStateBefore = g_variable.wheelStateNow;
+	g_variable.wheelStateNow = tempState;
+
+	result = (g_variable.wheelStateNow << 4) |(g_variable.wheelStateBefore << 2) |g_variable.wheelStateLast;
+
+	switch (result) 
+	{
+		case 0x38:
+		case 0x07:
+			g_variable.deltaZWheel --;
+			mouse_wheel_delay_lpm();
+			break;
+		case 0x34:
+		case 0x0b:
+			g_variable.deltaZWheel ++;
+			mouse_wheel_delay_lpm();
+			break;
+		default:
+			break;
+	}
+}
+
+void IPC_TxHidData(u8_t* dt, u8_t len)
+{
+	if(g_variable.currentState != DEVICE_MODE_24G
+		&&g_variable.currentState != DEVICE_MODE_BT
+		&& g_variable.currentState != DEVICE_MODE_BLE_BB_CONNECT)
+		return;
+	if(g_variable.currentState == DEVICE_MODE_24G)
+	{
+		IPC_Tx24GData(dt,len);
+	}	
+#if MOUSE_BT_MODE_ENABLE
+	else if(g_variable.currentState == DEVICE_MODE_BT)
+	{
+		IPC_TxBREDRHidData(dt,len);
+	}
+#endif
+	else if(g_variable.currentState == DEVICE_MODE_BLE_BB_CONNECT)
+	{
+		IPC_TxBleData(dt,len);
+	}
+	else
+	{
+		while(1);
+	}
+}
+
+void mouseKeyDetect()
+{
+	u8_t buttonLeft = 0,buttonRight = 0,buttonMiddle = 0,buttonBack=0,buttonForward=0;
+	buttonLeft = mouseLKeyCheck();
+	buttonMiddle = mouseMKeyCheck();
+	buttonRight = mouseRKeyCheck();
+	buttonBack = mouseBkKeyCheck();
+	buttonForward = mouseFwKeyCheck();
+
+	mouseDpiKeyCheck();
+	g_variable.keyDetect = buttonLeft |buttonRight<<1|buttonMiddle<<2|buttonBack<<3|buttonForward<<4;
+}
+
+
+static bool mouseReadSensor(void)
+{
+	u8_t deltaXL=0, deltaYL=0, deltaXH=0, deltaYH=0;
+
+	g_variable.SensorDataCnt++;
+	g_variable.wheelTimer= 2;
+	if(g_variable.SensorDataCnt>=0 && g_variable.SensorDataCnt<=50)
+	{
+		deltaXL = 5;
+		deltaXH = 0;
+		deltaYL = 0;
+		deltaYH = 0;
+	}
+	else if(g_variable.SensorDataCnt>=51 && g_variable.SensorDataCnt<=100)
+	{
+		deltaXL = 0;
+		deltaXH = 0;
+		deltaYL = 5;
+		deltaYH = 0;
+	}
+	else if(g_variable.SensorDataCnt>=101 && g_variable.SensorDataCnt<=150)
+	{
+		deltaXL = 0xfb;
+		deltaXH = 0xff;
+		deltaYL = 0;
+		deltaYH = 0;
+	}
+	else if(g_variable.SensorDataCnt>=151 && g_variable.SensorDataCnt<=200)
+	{
+		deltaXL = 0;
+		deltaXH = 0;
+		deltaYL = 0xfb;
+		deltaYH = 0xff;
+		if(g_variable.SensorDataCnt == 200)
+			g_variable.SensorDataCnt =0;
+	}
+	else
+	{
+
+	}
+	if (g_variable.sensorChoice == 0) {
+		g_variable.Y_data = 0 -(deltaXL | deltaXH<<8);
+		g_variable.X_data = deltaYL | deltaYH<<8;
+	}
+	else {
+		g_variable.X_data = deltaXL | deltaXH<<8;
+		g_variable.Y_data = deltaYL | deltaYH<<8;
+	}
+	g_variable.X_data = 0 -g_variable.X_data ;
+	g_variable.Y_data = 0 -g_variable.Y_data;
+	
+	if(g_variable.currentState == DEVICE_MODE_24G)
+		Drawing_optima();
+	return (1);
+}
+
+
+void mousePackage()
+{	
+	m_hidBuff[0] = g_variable.deltaKey;
+	m_hidBuff[1] = (u8_t)(g_variable.X_data & 0x00ff);
+	m_hidBuff[2] = (u8_t)(g_variable.X_data >>8);
+	m_hidBuff[3] = (u8_t)(g_variable.Y_data & 0x00ff);
+	m_hidBuff[4] = (u8_t)(g_variable.Y_data >>8);
+	m_hidBuff[5] = g_variable.deltaZWheel;
+	m_hidBuff[6] = 0;	//tz
+	g_variable.deltaZWheel = 0;	
+	g_variable.sleepTimer = 0;
+}
+
+static void mouseMotion()
+{
+	u8_t deltaXL=0, deltaYL=0, deltaXH=0, deltaYH=0;
+	bool sendFlag = 0;
+
+#if MOUSE_BT_MODE_ENABLE
+	if ((g_variable.currentState != DEVICE_MODE_24G)
+		&&(g_variable.currentState != DEVICE_MODE_BLE_BB_CONNECT)
+		&&(g_variable.currentState != DEVICE_MODE_BT))
+	{
+#else
+	if ((g_variable.currentState != DEVICE_MODE_24G)&&(g_variable.currentState != DEVICE_MODE_BLE_BB_CONNECT))
+	{
+#endif
+		return;
+	}
+	if ((g_variable.g24DongleExist == 0)&&(g_variable.currentState == DEVICE_MODE_24G)){
+		return;	
+	}
+
+	if (!IPC_IsTxBuffEmpty()) {
+		return;
+	}
+	
+#if OTA_ENABLE
+	//OTA
+	if(m_new24gOtaEnable == 1 
+		&& g_variable.otaReqPacEnable == 1
+		&& g_variable.currentState == DEVICE_MODE_24G)
+	{
+		g_variable.sleepTimer = 0;
+		m_hidBuff[0] = CMD_OTA;
+		m_hidBuff[1] = g_variable.otaReqPacValue[0];	//ackpayload type
+		m_hidBuff[2] = g_variable.otaReqPacValue[1];	//ackpayload low byte
+		m_hidBuff[3] = g_variable.otaReqPacValue[2];	//ackpayload high byte
+		m_hidBuff[4] = g_variable.otaReqPacValue[3];
+		m_hidBuff[5] = g_variable.otaReqPacValue[4];
+		m_hidBuff[6] = 0;
+		IPC_TxHidData(m_hidBuff,7);
+		return;
+	}
+#endif
+	
+	if(g_variable.deltaKey != g_variable.keyDetect
+		||(g_variable.wheelTimer > 0 && g_variable.wheelTimer < 3)
+		||((g_variable.currentState == DEVICE_MODE_24G) && (g_variable.keyDetect != 0)))
+	{
+		sendFlag = 1;
+		m_new24gKWEvent = 1;
+	}
+	g_variable.deltaKey = g_variable.keyDetect;
+		
+	g_variable.X_data = 0;g_variable.Y_data = 0;
+	
+#if MOUSE_BT_MODE_ENABLE
+
+	if(g_variable.currentState == DEVICE_MODE_BT)
+	{
+		sendFlag |= mouseReadSensor();
+	}
+
+#endif
+	if ( (g_variable.currentState == DEVICE_MODE_24G) ) {
+		sendFlag |= mouseReadSensor();
+	}
+	
+	if ( (g_variable.currentState == DEVICE_MODE_BLE_BB_CONNECT) && m_bleSendDataFlag == 1 ) 
+	{
+			SPI_Initialize();//spi
+			sendFlag |= mouseReadSensor();
+			if(m_51ReadSensor != m_BtReadIpcCount)
+			{
+				m_51ReadSensor ++;
+			}
+	}
+
+	if (g_variable.deltaZWheel)
+	{
+		sendFlag = 1;
+		m_new24gKWEvent = 1;
+		m_shortDataWheel = 1;
+		if(g_variable.currentState == DEVICE_MODE_BLE_BB_CONNECT)
+		{
+			m_bleDataWheel = 1;
+			m_bleDataWheelLpmTimer = 10;
+		}
+	}
+
+	if(g_variable.buttonTimer >= (MOUSE_ENTER_PB_TIME - 2))
+	{
+		g_variable.deltaKey = 0;	
+		sendFlag = 1;
+	}
+	
+	if ((!sendFlag) ||(g_variable.buttonTimer >= (MOUSE_ENTER_PB_TIME - 1)))
+		return;
+	
+	m_btMotionEvent = 1;
+	if (g_variable.currentState == DEVICE_MODE_24G
+		||g_variable.currentState == DEVICE_MODE_BT
+		||g_variable.currentState == DEVICE_MODE_BLE_BB_CONNECT)
+	{
+		mousePackage();
+		IPC_TxHidData(m_hidBuff,7);
+	}
+}
+
+
+static void deviceSwitch24GMode()
+{
+	IIC_Read(EEPROM_24G_ADDR+2, 4, (u8_t *)m_24gAddr);
+	if(m_24gAddr[0] == 0xff && m_24gAddr[1] == 0xff && m_24gAddr[2] == 0xff && m_24gAddr[3] == 0xff)
+	{
+		m_24gAddr[0] = 0x0f;
+		m_24gAddr[1] = 0x0f;
+		m_24gAddr[2] = 0x0f;
+		m_24gAddr[3] = 0x0f;
+		IPC_TxControlCmd(IPC_CMD_START_24G);
+		g_variable.Factory_Pwr_on_f = 1;
+	}
+	else
+		IPC_TxControlCmd(IPC_CMD_START_24G);
+	g_variable.currentState = DEVICE_MODE_24G;
+}
+
+static void deviceStop24g()
+{
+	IPC_TxControlCmd(IPC_CMD_STOP_24G);
+	g_variable.currentState = DEVICE_MODE_NONE;
+}
+
+
+/*
+void deviceBtPairCheck(void)
+{
+	g_variable.btKeyTemp <<=1;
+	g_variable.btKeyTemp |= !GPIO_GetInputStatus(BT_BUTTON_GPIO);
+
+	if (g_variable.btKeyTemp&0x01)
+	{
+		g_variable.wheelTimer = 2;
+	}
+	if((g_variable.btKeyTemp & 0xff) == 0x07)
+	{
+		switch (g_variable.currentState) 
+		{
+			case DEVICE_MODE_BT:
+			case DEVICE_MODE_BB:
+				IPC_TxControlCmd(IPC_CMD_DISCONNECT);
+				g_variable.nextMode = DEVICE_MODE_DISC;
+				g_variable.reconnFlag = 0;
+				break;
+			
+			case DEVICE_MODE_BLE_BB_CONNECT:
+				IPC_TxControlCmd(IPC_CMD_LE_DISCONNECT);
+				g_variable.nextMode = DEVICE_MODE_BLE_ADV;
+				break;
+			case DEVICE_MODE_BLE_ADV:
+				IPC_TxControlCmd(IPC_CMD_START_ADV);
+				IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+				break;	
+			case DEVICE_MODE_24G:
+				g_variable.g24Pid++;
+				if(g_variable.g24Pid>255)
+					g_variable.g24Pid = 0;
+				m_hidBuff[0] = HID_REPORTID_MS;
+				m_hidBuff[1] = 0;
+				m_hidBuff[2] = 0;
+				m_hidBuff[3] = 0;
+				m_hidBuff[4] = 0;
+				m_hidBuff[5] = 0;
+				m_hidBuff[6] = 0;
+				m_hidBuff[7] = 0;
+				m_hidBuff[8] = g_variable.g24Pid;
+				IPC_Tx24GData(m_hidBuff,9);
+				Delay1ms(100);
+				deviceStop24g();
+				Delay1ms(10);
+				g_variable.currentState = DEVICE_MODE_DISC;
+				
+				IPC_TxControlCmd(IPC_CMD_START_ADV);
+				IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+				break;
+			case DEVICE_MODE_PAGE:
+				g_variable.reconnFlag = 0;
+				IPC_TxControlCmd(IPC_CMD_BB_RECONN_CANCEL);
+				g_variable.nextMode = DEVICE_MODE_DISC;
+				break;
+			case DEVICE_MODE_NONE:
+			case DEVICE_MODE_PREPARE_SLEEP:
+				g_variable.currentState = DEVICE_MODE_DISC;
+			
+				IPC_TxControlCmd(IPC_CMD_START_ADV);
+				IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+				break;
+			default :
+				break;
+		}
+	}
+}
+*/
+
+void clearGlobalMem()
+{
+	xmemclear_0(m_hidBuff,32);
+	xmemclear_0((u8_t *)&g_variable,sizeof(G_VARIABLE_MAP));
+	g_variable.bufferEnd = 0xff;
+	g_variable.bufferSize = sizeof(g_variable);
+}
+
+static void deviceLongSleep()
+{
+	g_variable.sleepTimer = 0;
+	g_variable.wheelTimer = 0;
+	g_variable.lockLpm = 1;
+	g_variable.currentState = DEVICE_MODE_NONE;
+	IPC_TxControlCmd(IPC_CMD_ENTER_HIBERNATE);
+}
+
+//static void deviceLedFlash()
+//{
+//	if (g_variable.dpiLedFlipTime == 0){
+//		g_variable.dpiLedStay = 1;
+//		g_variable.dpiLedOnTimer = 0;
+//	}
+//	if (g_variable.dpiLedFlipTime){
+//		g_variable.dpiLedOnTimer++;
+//		if((g_variable.dpiLedOnTimer&0x07) == 0x05){
+//			g_variable.wheelTimer = 0x0a;
+//			if(g_variable.dpiLedStay){
+//				GPIO_Setout( LED_GPIO, 0);
+//				g_variable.dpiLedStay = 0;
+//			}
+//			else{
+//				GPIO_Setout( LED_GPIO , 1);
+//				g_variable.dpiLedStay = 1;
+//				g_variable.dpiLedFlipTime--;
+//			}
+//		}
+//	}
+//	else if (g_variable.currentState == DEVICE_MODE_DISC){
+//		g_variable.wheelTimer = 0x45;
+//		if((g_variable.timer100msCount&0x07) == 0x04)
+//			GPIO_FlipOutBit(LED_GPIO);
+//	}
+//	//low battery led
+//	else if ((g_variable.adcLowPowerFlag)&& ((g_variable.timer100msCount & 0x1f) < 5)){
+//		g_variable.wheelTimer = 10;
+//		GPIO_Setout(LED_GPIO, 0);
+//		}
+//	else  GPIO_Setout(LED_GPIO, 1);
+//}
+
+void leReconnStart()
+{
+	g_variable.sleepTimer = 0;
+	IIC_Read(EEPROM_RECONN_LE_ADDR,6,(u8_t *)m_reconnLeAddr);
+	g_variable.currentState = DEVICE_MODE_BLE_ADV;
+	IPC_TxControlCmd(IPC_CMD_START_ADV_RECONN);
+}
+
+void leADVStart()
+{
+	IIC_Read(EEPROM_BLE_ADDR_RANDOM_CNT, 2, (u8_t *)&g_variable.leAddrRandomCnt);
+	g_variable.leAddrRandomCnt++;
+	IIC_WriteBlock(EEPROM_BLE_ADDR_RANDOM_CNT, 2, (u8_t *)&g_variable.leAddrRandomCnt);
+	m_reconnLeAddr[1] = g_variable.leAddrRandomCnt & 0xff;
+	m_reconnLeAddr[2] = g_variable.leAddrRandomCnt >> 8;
+	IPC_TxControlCmd(IPC_CMD_START_ADV);
+}
+
+void leAddrRandomCntInit()
+{	
+	u8_t leAddrE2WP = 0;
+	IIC_Read(EEPROM_BLE_ADDR_RANDOM_CNT_WP, 1, &leAddrE2WP);
+	if(leAddrE2WP == 0xff)
+	{
+		g_variable.leAddrRandomCnt = ADC_Get0vBase();
+		IIC_WriteBlock(EEPROM_BLE_ADDR_RANDOM_CNT, 2, (u8_t *)&g_variable.leAddrRandomCnt);
+		leAddrE2WP = 0x5a;
+		IIC_WriteBlock(EEPROM_BLE_ADDR_RANDOM_CNT_WP, 1, &leAddrE2WP);
+	}
+}
+
+static void deviceEvtCB(u8_t evt)
+{
+	u8_t curentMode;
+	u8_t buttonLeft = 0,buttonRight = 0,buttonMiddle = 0;
+	u8_t combkey = 0;
+	u8_t reconnLeAddr_buff[6] = 0;
+	
+	switch(evt)
+	{
+		case IPC_EVT_HIBERNATE_WAKE:
+			clearGlobalMem();
+		case IPC_EVT_RESET:
+			leAddrRandomCntInit();
+//			GPIO_SetInput(SENSOR_MOTION_GPIO, 0);
+//			GPIO_SetInput(SENSOR_DIRECTION_GPIO_CHOICE,0);
+//			GPIO_SetInput(LOWPOWER_GPIO_CHOICE, 0);
+//			GPIO_SetInput(WHEEL_DATA_A_GPIO, 0);
+//			GPIO_SetInput(WHEEL_DATA_B_GPIO, 0);
+//			GPIO_SetInput(KS_BL_GPIO, 0);
+//			GPIO_SetInput(KS_BM_GPIO, 0);
+//			GPIO_SetInput(KS_BR_GPIO, 0);
+//			GPIO_SetInput(KS_BK_GPIO, 0);
+//			GPIO_SetInput(KS_FW_GPIO, 0);
+//			GPIO_SetInput(CPI_GPIO, 0);
+//			GPIO_SetOutput(LED_GPIO,1);
+//			GPIO_SetOutput(Timer_div_io, 1);
+//						
+//			if (!GPIO_GetInputStatus(SENSOR_DIRECTION_GPIO_CHOICE)) {
+//				g_variable.sensorChoice = 0;
+//			}
+//			else {
+//				g_variable.sensorChoice = 1;
+//			}
+//			
+//			if (!GPIO_GetInputStatus(LOWPOWER_GPIO_CHOICE)){
+//			
+//#if ADC_VINLPM_ENABLE
+//				(*(volatile unsigned char xdata *)mem_adc_config_flag) = 0x01;
+//#endif
+//			}
+//			else {
+//#if ADC_GPIO_ENABLE
+//				(*(volatile unsigned char xdata *)mem_adc_config_flag) = 0x04;
+//				(*(volatile unsigned char xdata *)mem_adc_channel) = 0x30;//gpio5 for adc
+//#endif				
+//			}
+//			SPI_Initialize();
+			Drawing_optima_init();
+//			g_variable.sensorType = SPI_ResetSensor();
+//			IIC_Read(EEPROM_DPI_ADDR, 1, &g_variable.dpiCount);
+//			if(g_variable.dpiCount>3) 
+//				g_variable.dpiCount=0x02;
+//			IIC_WriteBlock(EEPROM_DPI_ADDR, 1, &g_variable.dpiCount);
+//			dpiWriteInSensor();
+//			REG_GPIO_SELECT(0) = 0x00;
+//			g_variable.dpiLedStay = 0;
+//			g_variable.dpiLedFlipTime = 0;
+//			buttonLeft = !GPIO_GetInputStatus(KS_BL_GPIO);
+//			buttonMiddle = !GPIO_GetInputStatus(KS_BM_GPIO);
+//			buttonRight = !GPIO_GetInputStatus(KS_BR_GPIO);
+//			combkey = buttonLeft |buttonRight<<1|buttonMiddle<<2;
+//			if ((combkey == 0x05)&&(evt == IPC_EVT_RESET)) 
+//			{
+				IPC_TxControlCmd(IPC_CMD_PAIR_24G);
+//				break;
+//			}
+//			deviceSwitch24GMode();
+			break;
+		case IPC_EVT_WAKEUP:
+			if(g_variable.currentState == DEVICE_MODE_BLE_BB_CONNECT)
+			{
+				if(m_btWakeupFromLongMult == 1)
+					break;
+				if(m_btWakeupFromLongMult == 2)
+					m_btWakeupFromLongMult = 1;
+			}
+//			SPI_Initialize();//spi
+//			GPIO_SetOutput(Timer_div_io,1);
+//			GPIO_SetInput(Timer_div_io,0);
+			Drawing_optima_init();
+			break;
+#if MOUSE_BT_MODE_ENABLE			
+		case IPC_EVT_BB_CONNECTED:
+			IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+			IPC_TxControlCmd(IPC_CMD_STOP_DISCOVERY);
+			g_variable.currentState = DEVICE_MODE_BB;
+			if (g_variable.reconnFlag)
+			{
+				g_variable.nextMode = DEVICE_MODE_NONE;
+			}
+			else 
+			{
+				g_variable.nextMode = DEVICE_MODE_DISC;
+			}
+			break;
+	
+		case IPC_EVT_PINCODE_REQ:
+			IPC_SetPincode("0000",4);
+			IPC_TxControlCmd(IPC_CMD_SET_PIN_CODE);
+			g_variable.nextMode = DEVICE_MODE_DISC;
+			break;
+		case IPC_EVT_HID_HANDSHAKE:
+			g_variable.currentState = DEVICE_MODE_BT;
+//			sensorClearData();
+			IIC_WriteBlock(EEPROM_RECON_INFO_BASE,6,(u8_t *)m_remoteAddr);
+			Delay1ms(10);
+			IIC_WriteBlock(EEPROM_CONN_MODE,1,&g_variable.currentState);
+			IPC_TxControlCmd(IPC_CMD_ENTER_SNIFF);
+			g_variable.nextMode = DEVICE_MODE_NONE;
+			g_variable.reconnFlag = 0;
+			break;
+		case IPC_EVT_LINKKEY_GENERATE:
+			IIC_WriteBlock(EEPROM_LINK_KEY,16,(u8_t *)m_linkKey);
+			break;
+		case IPC_EVT_VIRTUAL_CABLE_UNPLUG:
+		case IPC_EVT_CLEAR_LINKKEY:
+			xmemclear_ff(m_remoteAddr,6);
+			IIC_WriteBlock(EEPROM_RECON_INFO_BASE,6,(u8_t *)m_remoteAddr);
+
+		case IPC_EVT_RECONN_FAILED:
+		case IPC_EVT_RECONN_PAGE_TIMEOUT:
+		case IPC_EVT_BB_DISCONNECTED:
+			if (g_variable.nextMode == DEVICE_MODE_24G) 
+			{
+				deviceSwitch24GMode();
+				g_variable.nextMode = DEVICE_MODE_NONE;
+				break;
+			}
+			else if (g_variable.nextMode == DEVICE_MODE_DISC) 
+			{
+				g_variable.currentState = DEVICE_MODE_DISC;
+				g_variable.nextMode = DEVICE_MODE_NONE;
+				
+#if MOUSE_BT_MODE_ENABLE	
+				IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+#endif
+				leADVStart();
+				break;
+			}
+			g_variable.currentState = DEVICE_MODE_PREPARE_SLEEP;
+			break;
+#endif			
+		case IPC_EVT_24G_PAIRING_COMPLETE:
+			g_variable.currentState = DEVICE_MODE_24G;
+			IIC_WriteBlock(EEPROM_CONN_MODE, 1,&g_variable.currentState);
+		//	IIC_WriteBlock(EEPROM_24G_ADDR,6,(u8_t *)m_24gRxPayload);
+			IPC_TxControlCmd( IPC_CMD_START_24G);
+			break;
+		case IPC_EVT_24G_ATTEMPT_FAIL:	
+			deviceStop24g();
+			g_variable.g24DongleExist = 0;
+			if (g_variable.Factory_Pwr_on_f)
+			{
+				g_variable.Factory_Pwr_on_f++;
+				g_variable.Factory_Pwr_on_f = (g_variable.Factory_Pwr_on_f) & 0x07;
+				if (g_variable.Factory_Pwr_on_f & 0x01)
+					IPC_TxControlCmd(IPC_CMD_START_24G);
+				else 
+					IPC_TxControlCmd(IPC_CMD_PAIR_24G);
+				break;
+			}
+
+			REG_RST = 1;
+			
+//#if MOUSE_BT_MODE_ENABLE			
+//			IIC_Read(EEPROM_CONN_MODE, 1,&curentMode);
+//			Delay1ms(10);
+//			if (curentMode == DEVICE_MODE_BT) 
+//			{
+//				Delay1ms(10);
+//				IIC_Read(EEPROM_RECON_INFO_BASE ,6 , m_reconnAddr);
+//				Delay1ms(10);
+//				IIC_Read(EEPROM_LINK_KEY, 16, m_linkKey);
+//				if (m_reconnAddr[0]!=0) 
+//				{
+//					g_variable.currentState = DEVICE_MODE_PAGE;
+//					IPC_TxControlCmd(IPC_CMD_RECONNECT);
+//					break;
+//				}
+//				else 
+//				{
+//					IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+//					break;
+//				}
+//			}
+//			else
+//			{
+//				leReconnStart();
+//			}
+//#else
+//			IIC_Read(EEPROM_RECONN_LE_ADDR, 6,reconnLeAddr_buff);
+//			if((reconnLeAddr_buff[0] == 0xff) && (reconnLeAddr_buff[1] == 0xff) 
+//				&& (reconnLeAddr_buff[2] == 0xff) && (reconnLeAddr_buff[3] == 0xff) 
+//				&& (reconnLeAddr_buff[4] == 0xff) && (reconnLeAddr_buff[5] == 0xff)){
+//				g_variable.enterHibernateFlag = 1;
+//				g_variable.enterHibernateTimer = 30;	//wait bt to exit 2.4G short lpm (about 50ms)
+//				break;
+//			}
+//			leReconnStart();
+//#endif
+			break;
+		case IPC_EVT_24G_ATTEMPT_SUCCESS:
+//			sensorClearData();
+			g_variable.g24DongleExist = 1;
+			g_variable.mouseFlag = 0;
+			g_variable.Factory_Pwr_on_f = 0;
+//			curentMode = DEVICE_MODE_24G;
+//			IIC_WriteBlock(EEPROM_CONN_MODE,1,&curentMode);
+			g_variable.nextMode = DEVICE_MODE_NONE;
+			break;
+
+		case IPC_EVT_LE_NOTIFY_ENABLE:
+			SPI_Initialize();//spi
+			SPI_TwReset();
+			SPI_WriteSensor(0x80,0x06);			
+			IIC_Read(EEPROM_DPI_ADDR, 1, &g_variable.dpiCount);
+			dpiWriteInSensor();
+			break;
+		case IPC_EVT_LE_CONNECTED:
+			m_51ReadSensor = 0;
+			IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+			IPC_TxControlCmd(IPC_CMD_STOP_DISCOVERY);
+			g_variable.currentState = DEVICE_MODE_BLE_BB_CONNECT;
+			curentMode = DEVICE_MODE_BLE;
+			sensorClearData();
+			IIC_WriteBlock(EEPROM_REMOTE_LE_ADDR,6,(u8_t *)m_remoteLeAddr);
+			Delay1ms(10);
+			IIC_WriteBlock(EEPROM_RECONN_LE_ADDR,6,(u8_t *)m_reconnLeAddr);
+			Delay1ms(10);				
+			IIC_WriteBlock(EEPROM_CONN_MODE,1,&curentMode);
+			g_variable.nextMode = DEVICE_MODE_PREPARE_SLEEP;
+			g_variable.reconnFlag = 0;
+			break;
+		case IPC_EVT_LE_DISCONNECTED:	
+			if(g_variable.nextMode == DEVICE_MODE_BLE_ADV)
+			{
+#if MOUSE_BT_MODE_ENABLE	
+				IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+#endif
+				leADVStart();
+				g_variable.currentState = DEVICE_MODE_DISC;
+			}
+			else if(g_variable.nextMode == DEVICE_MODE_PREPARE_SLEEP)
+			{
+				deviceLongSleep();
+			}
+			else 
+			{
+				leReconnStart();
+			}
+			break;
+		}
+			
+}
+
+//void comboKeyPb()    // Lmr 3s enter discovery mode
+//{
+//	u8_t buttonLeft = 0,buttonRight = 0,buttonMiddle = 0;
+//	u8_t combkey = 0;
+//	u8_t currentStateTemp=0;
+//	buttonLeft = !GPIO_GetInputStatus(KS_BL_GPIO);
+//	buttonMiddle = !GPIO_GetInputStatus(KS_BM_GPIO);
+//	buttonRight = !GPIO_GetInputStatus(KS_BR_GPIO);
+//	combkey = buttonLeft |buttonRight<<1|buttonMiddle<<2;
+//	if(combkey == 0x07) 
+//	{
+//		g_variable.enterHibernateTimer = 30;
+//		g_variable.sleepTimer = 0;
+//		g_variable.wheelTimer = 10;
+//		if (g_variable.buttonTimer >= MOUSE_ENTER_PB_TIME)
+//			return ;
+//		g_variable.buttonTimer ++;
+//		if (g_variable.buttonTimer == MOUSE_ENTER_PB_TIME)
+//		{
+//			g_variable.enterHibernateFlag = 0;
+//			g_variable.enterHibernateTimer = 0;
+//		
+//			switch (g_variable.currentState) 
+//			{
+//#if MOUSE_BT_MODE_ENABLE
+//				case DEVICE_MODE_BT:
+//				case DEVICE_MODE_BB:
+//					IPC_TxControlCmd(IPC_CMD_DISCONNECT);
+//					g_variable.nextMode = DEVICE_MODE_DISC;
+//					g_variable.reconnFlag = 0;
+//					break;
+//#endif 
+//				case DEVICE_MODE_BLE_BB_CONNECT:
+//					IPC_TxControlCmd(IPC_CMD_LE_DISCONNECT);
+//					g_variable.nextMode = DEVICE_MODE_BLE_ADV;
+//					break;
+//				case DEVICE_MODE_BLE_ADV:
+//					g_variable.currentState = DEVICE_MODE_DISC;
+//#if MOUSE_BT_MODE_ENABLE
+//					IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+//#endif
+//					leADVStart();
+//					break;	
+//				case DEVICE_MODE_24G:
+//					deviceStop24g();
+//					Delay1ms(10);
+//					g_variable.currentState = DEVICE_MODE_DISC;
+//#if MOUSE_BT_MODE_ENABLE
+//					IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+//#endif
+//					leADVStart();
+//					break;
+//#if MOUSE_BT_MODE_ENABLE
+//				case DEVICE_MODE_PAGE:
+//					g_variable.reconnFlag = 0;
+//					IPC_TxControlCmd(IPC_CMD_BB_RECONN_CANCEL);
+//					g_variable.nextMode = DEVICE_MODE_DISC;
+//					break;
+//#endif
+//				case DEVICE_MODE_NONE:
+//				case DEVICE_MODE_PREPARE_SLEEP:
+//					deviceStop24g();
+//					g_variable.currentState = DEVICE_MODE_DISC;
+//#if MOUSE_BT_MODE_ENABLE
+//					IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+//#endif
+//					leADVStart();
+//					break;
+//				default :
+//					break;
+//			}
+//		}
+//	}
+//	else  g_variable.buttonTimer = 0;
+//}
+
+static void deviceTimer500ms()
+{
+	u8_t sleepState = 0;
+	g_variable.sleepTimer++;
+	switch (g_variable.currentState) 
+	{
+		case DEVICE_MODE_BLE_ADV:
+			 sleepState = DEVICE_MODE_BLE;
+			 if (g_variable.sleepTimer == 16)
+			 {
+		 		goto LONG_SLEEP;
+			 }
+			 break;
+		case DEVICE_MODE_DISC:
+			sleepState = DEVICE_MODE_BT;
+			if (g_variable.sleepTimer == 360)	//BT Discover time 360 = 3min
+			{
+				m_lpmMode = 1;
+				goto LONG_SLEEP;
+			}
+			break;
+		case DEVICE_MODE_BLE_BB_CONNECT:	
+			sleepState = DEVICE_MODE_BLE;
+			if (g_variable.sleepTimer == 1200)	//BT sleep time 1200 = 10min
+			{	
+				IPC_TxControlCmd(IPC_CMD_LE_DISCONNECT);
+				g_variable.nextMode = DEVICE_MODE_PREPARE_SLEEP;
+			}
+			break;
+#if MOUSE_BT_MODE_ENABLE
+		case DEVICE_MODE_BT:
+			sleepState = DEVICE_MODE_BT;
+			if (g_variable.sleepTimer == 1200)	//BT sleep time 1200 = 10min
+			{	
+				IPC_TxControlCmd(IPC_CMD_DISCONNECT);
+				g_variable.nextMode = DEVICE_MODE_NONE;
+			}
+			break;
+#endif
+		case DEVICE_MODE_24G:
+			sleepState = DEVICE_MODE_24G;
+			if ((g_variable.sleepTimer > 1200) && (g_variable.g24DongleExist == 1))
+			{
+				goto LONG_SLEEP; 
+			}
+			break;
+		case DEVICE_MODE_PREPARE_SLEEP:
+			sleepState = DEVICE_MODE_BT;
+			if (!IPC_IsTxBuffEmpty())
+				return;
+			if (g_variable.sleepTimer >= 3)		//24G sleep time 600=10min
+			{
+				goto LONG_SLEEP;
+			}
+			break;
+	}
+	return;
+		
+	LONG_SLEEP:
+//		IIC_WriteBlock(EEPROM_CONN_MODE,1,&sleepState);
+		deviceLongSleep();
+}
+
+//void Power_low_detect(void)
+//{
+//	u16_t adc_value = 0;
+//	adc_value = ADC_GetCurrentValue() - ADC_Get0vBase();
+//	
+//#if ADC_VINLPM_ENABLE
+//	if ((*(volatile unsigned char xdata *)mem_adc_config_flag)  == 1) 
+//	{
+//		if (adc_value < (((ADC_Get3vBase() - ADC_Get0vBase()) /30)*23)) 
+//		{
+//			g_variable.adcLowPowerFlag = 1;
+//		}
+//		else 
+//		{
+//			g_variable.adcLowPowerFlag = 0;
+//		}
+//		if (adc_value < ((ADC_Get3vBase() - ADC_Get0vBase()) /30 * 21))
+//		{
+//			if(m_new24gAbortPac != 1 && g_variable.currentState == DEVICE_MODE_24G)
+//				return;
+//			deviceLongSleep();
+//		}
+//	}
+//#endif
+//	
+//#if ADC_GPIO_ENABLE
+//	if ((*(volatile unsigned char xdata *)mem_adc_config_flag)  == 4) 
+//	{
+//		if (adc_value < (((ADC_Get3vBase() - ADC_Get0vBase()) /30)*10)) 
+//			g_variable.adcLowPowerFlag = 1;
+//		else g_variable.adcLowPowerFlag = 0;
+//		if (adc_value < ((ADC_Get3vBase() - ADC_Get0vBase()) /30 * 9))
+//		{
+//			if(m_new24gAbortPac != 1 && g_variable.currentState == DEVICE_MODE_24G)
+//				return;
+//			deviceLongSleep();
+//		}
+//	}
+//#endif
+//}
+
+static void deviceTimer100ms()
+{
+	if (g_variable.wheelTimer!=0) 
+		g_variable.wheelTimer--;
+	g_variable.timer100msCount++;
+	if (g_variable.modeSwCount)
+		g_variable.modeSwCount ++;
+//	deviceLedFlash();
+//	comboKeyPb();
+//	Power_low_detect();
+
+	if(g_variable.enterHibernateFlag == 1){
+		if(g_variable.enterHibernateTimer == 0){
+			g_variable.enterHibernateFlag = 0;
+			deviceLongSleep();
+		}
+		g_variable.enterHibernateTimer--;
+	}	
+}
+
+static tIPCControlBlock cb = 
+{
+	deviceEvtCB,
+	NULL,
+	deviceTimer500ms,
+	deviceTimer100ms,
+	NULL
+};
+
+static void deviceInit()
+{
+	IPC_Initialize(&cb);
+}
+
+//void YC_SetWake(void)
+//{
+//	(*(volatile unsigned char xdata *)(mem_gpio_wakeup_low+0)) = 0;
+//	(*(volatile unsigned char xdata *)(mem_gpio_wakeup_low+1)) = 0;
+//	(*(volatile unsigned char xdata *)(mem_gpio_wakeup_low+2)) = 0;
+//	(*(volatile unsigned char xdata *)(mem_gpio_wakeup_low+3)) = 0;
+//	Sensor_spi_disable();
+//	GPIO_SetOutput(Timer_div_io, 0);
+//	GPIO_SetInput(KS_BL_GPIO, 0);
+//	GPIO_SetInput(KS_BR_GPIO, 0);
+//	GPIO_SetInput(KS_BM_GPIO, 0);
+//	GPIO_SetInput(KS_BK_GPIO, 0);
+//	GPIO_SetInput(KS_FW_GPIO, 0);
+//	GPIO_SetInput(CPI_GPIO, 0);
+//	GPIO_SetWakeupByCurrentState(WHEEL_DATA_A_GPIO);
+//	GPIO_SetWakeupByCurrentState(WHEEL_DATA_B_GPIO);
+//	GPIO_SetWakeupByCurrentState(KS_BL_GPIO);
+//	GPIO_SetWakeupByCurrentState(KS_BM_GPIO);
+//	GPIO_SetWakeupByCurrentState(KS_BR_GPIO);
+//	GPIO_SetWakeupByCurrentState(KS_BK_GPIO);
+//	GPIO_SetWakeupByCurrentState(KS_FW_GPIO);
+//	GPIO_SetWakeupByCurrentState(CPI_GPIO);
+//}
+
+
+//void YC_24gShortLpmProcess(void)
+//{
+//	u8_t deltaXL=0, deltaYL=0, deltaXH=0, deltaYH=0;
+//	u8_t send_flag = 0;
+//	u8_t poll_cnt = 0;
+
+//	m_sendData24gShortLpm = SHORT_LPM_STATE_POLLING;
+
+//	SPI_Initialize();//spi
+//	if ( g_variable.currentState == DEVICE_MODE_24G && g_variable.g24DongleExist == 1
+//		&&(!GPIO_GetInputStatus(SENSOR_MOTION_GPIO))){
+//		send_flag = mouseReadSensor();
+//	}
+//	g_variable.currentState = DEVICE_MODE_24G;
+//	
+//	while(1){
+//		poll_cnt ++;
+//		IPC_DealSingleStep();
+//		if(poll_cnt > 5){
+//			poll_cnt = 5;
+//			m_sendData24gShortLpm = SHORT_LPM_STATE_NODATA;
+//		}else{
+//			mouseWheelScan();
+//			mouseKeyDetect();			
+//			if(SHORT_LPM_STATE_POLLING== m_sendData24gShortLpm){
+//				if (g_variable.deltaZWheel)
+//				{
+//					send_flag = 1;
+//					m_sendData24gShortLpm = SHORT_LPM_STATE_BUTTON_WHEEL;
+//					m_new24gKWEvent = 1;
+//					m_shortDataWheel = 1;
+//				}
+//				if(g_variable.deltaKey != g_variable.keyDetect)
+//				{	
+//					m_new24gKWEvent = 1;
+//					send_flag = 1;
+//					m_sendData24gShortLpm = SHORT_LPM_STATE_BUTTON_WHEEL;
+//					g_variable.deltaKey = g_variable.keyDetect;
+//					if (g_variable.deltaKey == 0x07) {
+//					//	g_variable.deltaKey = 0;
+//						send_flag = 0;
+//					}
+//				}
+//				if(g_variable.deltaKey == 0x07)
+//				{
+//					//m_new24gKWEvent = 1;
+//					m_sendData24gShortLpm = SHORT_LPM_STATE_BUTTON_WHEEL;
+//				}
+//				
+//				if(1 == send_flag){
+//					mousePackage();
+//					send_flag = 0;
+//					if(SHORT_LPM_STATE_BUTTON_WHEEL != m_sendData24gShortLpm){
+//						m_sendData24gShortLpm = SHORT_LPM_STATE_DATA;
+//					}
+//				}
+//			}
+//		}
+
+//#if OTA_ENABLE
+//		//OTA
+//		if(m_24gRxPayload[0] == PC_REPORT_ID 
+//			&&m_24gRxPayload[1] == CMD_USER_DEFINE
+//			&&m_24gRxPayload[2] == CMD_OTA_START){
+//			wirelessCmdOtaStart();
+//		}		
+//#endif
+
+//		if(FIX_ENTER_LPM == current_task){
+//			if(g_variable.wheelTimer ||g_variable.lockLpm)
+//			{
+//				IPC_AbandonLpm();
+//				break;
+//			}
+//			if (g_variable.currentState == DEVICE_MODE_24G)
+//			{
+//				YC_SetWake();
+//				GPIO_SetWakeup(SENSOR_MOTION_GPIO,0);
+//				IPC_WaitLpm();	//<wait enter lpm,do nothing
+//				break;
+//			}
+//			else
+//			{
+//				IPC_AbandonLpm();
+//				break;
+//			}
+//		}
+//	}
+//}
+void YC_SysMain(void)
+{		
+	u8_t i;
+	deviceInit();
+//	if(1 == m_enable24gShortLpm){
+//		YC_24gShortLpmProcess();
+//	}
+	while(1)
+	{
+		IPC_DealSingleStep();
+//		mouseWheelScan();
+//		mouseKeyDetect();
+		mouseMotion();
+#if OTA_ENABLE
+		wirelessConfigProcess();
+#endif		
+		switch (current_task) 
+		{
+			case FIX_ENTER_HIBERNATE:
+				g_variable.read_sensor_count = 0;
+//				sensorPowerDown();
+				for (i = 0; i < 16; i ++) {
+					REG_GPIO_OE(i) = 0x00;
+				}
+//				if (GPIO_GetInputStatus(WHEEL_DATA_A_GPIO))
+//					GPIO_SetInput(WHEEL_DATA_A_GPIO, 0);
+//				else GPIO_SetInput(WHEEL_DATA_A_GPIO, 1);
+//				if (GPIO_GetInputStatus(WHEEL_DATA_B_GPIO))
+//					GPIO_SetInput(WHEEL_DATA_B_GPIO, 0);
+//				else GPIO_SetInput(WHEEL_DATA_B_GPIO, 1);
+//				GPIO_SetOutput(LED_GPIO, 1);
+//				YC_SetWake();
+				IPC_WaitLpm();
+				while(1);
+				break;
+			case FIX_ENTER_LPM:
+				if (g_variable.wheelTimer ||g_variable.lockLpm)
+				{
+					IPC_AbandonLpm();
+					break;
+				}
+				if (g_variable.currentState == DEVICE_MODE_24G 
+					||g_variable.currentState == DEVICE_MODE_BT
+					||g_variable.currentState == DEVICE_MODE_BLE_BB_CONNECT)
+				{
+//					YC_SetWake();
+//					GPIO_SetWakeup(SENSOR_MOTION_GPIO,0);
+					IPC_WaitLpm();	/*<wait enter lpm,do nothing*/
+					break;
+				}
+				else
+				{
+					IPC_AbandonLpm();
+					break;
+				}
+		}
+	}
+}
+
+
+
+
Index: c51/type.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/type.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/type.h	(working copy)
@@ -0,0 +1,28 @@
+#ifndef _YC_DEFINE_H_
+#define _YC_DEFINE_H_
+
+#define PUBLIC 
+#define LOCAL static
+
+typedef unsigned char byte;
+typedef unsigned char xdata xbyte;
+typedef unsigned int uint;
+typedef unsigned char xdata * pxbyte;
+typedef unsigned char xdata * data pxdbyte;
+typedef unsigned   char    u8_t;
+typedef signed     char    s8_t;
+typedef unsigned   short   u16_t;
+typedef signed     short   s16_t;
+typedef unsigned   long    u32_t;
+typedef signed     long    s32_t;
+typedef unsigned char xdata xu8_t;
+typedef bit bool;
+
+#define true 1
+#define false 0
+#ifndef NULL
+#define NULL (0)
+#endif
+
+#endif
+
Index: c51/uart.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/uart.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/uart.h	(working copy)
@@ -0,0 +1,56 @@
+#ifndef _UART_H_
+#define _UART_H_
+#include "type.h"
+ 
+#define  UART_BAUD_115200 0x00d0
+
+///**********************<buff define**************************/
+//please do not change here
+#define UART_RX_HEAD	0x1e00		/**< yc rx buff head */
+#define UART_RX_END		0x1eff		/**< yc rx buff end */
+
+#define UART_TX_HEAD	0x1f00		  /**< yc tx buff head */
+#define UART_TX_END		0x1fff		/**< yc tx buff end */
+///**************************<end ****************************/
+#define UART_SelectGpio() REG_GPIO_SELECT(1) |= BIT(2)
+
+#define UART_Enable() \
+			REG_UART_CLK_SEL &= 0xfe,\
+			REG_CLK_OFF(1) &= ~ BIT(7)				//turn on UART's clock
+			
+#define  UART_ControlOn() \
+			REG_UART_CTRL = 0x91
+
+#define UART_ControlOff() \
+			REG_UART_CTRL = 0x81
+
+#define UART_SetRxBuff(s,e)   REG_UART_RX_ADDR_S = ESWAP((u16_t)(s)),\
+								REG_UART_RX_ADDR_E =  ESWAP((u16_t)(e))
+								
+							
+#define UART_SetTxBuff(s,e)	REG_UART_TX_ADDR_S = ESWAP((u16_t)(s)),\
+								REG_UART_TX_ADDR_E =  ESWAP((u16_t)(e))
+									
+
+#define UART_SetBaudRate(b)		REG_UART_BAUD = ESWAP((u16_t)(b))
+
+
+#define UART_ReSet()	REG_UART_TX_PTRP_R = REG_UART_TX_ADDR_S,\
+							REG_UART_TX_PTR_W = REG_UART_TX_ADDR_S,\
+								REG_UART_RX_PTR_R = REG_UART_RX_ADDR_S
+
+#define UART_OP_MAXREAD	1		
+#define UART_OP_UNRELEASE (0x02)
+
+
+void UART_Initialize(void);
+
+u8_t UART_RecvData(u8_t *   pbuff, u8_t len);
+
+u8_t  UART_SendData(const u8_t*  pbuff, u8_t len);
+
+u16_t UART_GetRxCount();
+
+u8_t UART_RecvDataWithoutRelease(u8_t *   pbuff, u8_t len);
+
+#endif
\ No newline at end of file
Index: c51/uart.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/uart.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/uart.c	(working copy)
@@ -0,0 +1,86 @@
+#include "uart.h" 
+#include "utilities.h"
+ 
+static volatile u8_t xdata uart_tx_buff[0x1ff] _at_ UART_RX_HEAD ;
+
+/*<********************** internal func**********************/
+
+static pxbyte uart_cpyout(pxbyte dest, u8_t* src, u8_t len)
+{
+	while(len--){
+		*dest++ = *src++;
+		if ((u16_t)src > UART_RX_END){
+			src = (pxbyte)UART_RX_HEAD;
+		}
+	}
+	return src;
+}
+
+static pxbyte uart_cpyin(pxbyte dest, u8_t* src, u8_t len)
+{
+	while(len--){
+		*dest++ = *src++;
+		if ((u16_t)dest > UART_TX_END){
+			dest = (pxbyte)UART_TX_HEAD;
+		}
+	}
+	return dest;
+}
+
+
+/*==============UART======================================================================*/
+void UART_Initialize()
+{
+	UART_SetRxBuff(UART_RX_HEAD,UART_RX_END);
+	UART_SetTxBuff(UART_TX_HEAD,UART_TX_END);
+	UART_SelectGpio();
+	UART_ReSet();
+	UART_SetBaudRate(UART_BAUD_115200);
+	UART_Enable();
+	UART_ControlOff();
+}
+//if len =0 ;return rev length in uart buff
+u8_t *rrptr  = uart_tx_buff;
+u8_t UART_RecvData(u8_t *   pbuff, u8_t len)
+{
+	u16_t rx_len;
+	rx_len = ESWAP(REG_UART_RX_ITEMS);
+
+	rx_len = min(len,rx_len);	
+	if (rx_len!=0){
+		rrptr = uart_cpyout(pbuff,rrptr,rx_len);
+		//yc_ice_break();
+		REG_UART_RX_PTR_R = ESWAP((short)rrptr);
+	}
+	return rx_len;
+}
+
+u8_t  UART_SendData(const u8_t*  pbuff, u8_t len)
+{
+	u8_t* twptr;
+	u8_t lenoo= len;
+	twptr = (u8_t*)ESWAP(REG_UART_TX_PTR_W);
+	twptr = uart_cpyin((u8_t*)twptr, pbuff,len);
+	REG_UART_TX_PTR_W = ESWAP((short)twptr);
+	return 0;
+}
+
+u16_t UART_GetRxCount()
+{
+	return ESWAP(REG_UART_RX_ITEMS);
+}
+
+u8_t UART_RecvDataWithoutRelease(u8_t *   pbuff, u8_t len)
+{
+	u16_t rx_len;
+	u8_t* rrp = rrptr;
+	rx_len = ESWAP(REG_UART_RX_ITEMS);
+
+	rx_len = min(len,rx_len);	
+	if (rx_len!=0){
+		rrp = uart_cpyout(pbuff,rrp,rx_len);
+	}
+	return rx_len;
+}
+
+ 
Index: c51/util/crc16.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/util/crc16.exe
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/crc16.exe	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/crc16.exe	(working copy)

Property changes on: c51/util/crc16.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/util/crc16.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/crc16.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/crc16.pl	(working copy)
@@ -0,0 +1,27 @@
+$debug = 0;
+$crc = 0xffff;
+$i = 0;
+$offset = 0xffff;
+$source_file = $ARGV[0];
+$offset = $ARGV[1];
+
+open(EEP,"$source_file") or die $!;
+
+while (<EEP>) {    
+	$c = hex();
+
+  if($i >= $offset){
+  	if($debug){printf "%02x\t", $c;}
+  	$crc  = ($crc >> 8) | ($crc << 8);
+		$crc ^= $c & 0xff;
+		$crc ^= ($crc & 0xff) >> 4;
+		$crc ^= $crc << 12;
+		$crc ^= ($crc & 0xff) << 5;
+		$crc &= 0xffff;
+  }
+  $i ++;
+  if($debug){printf "%02x\t", $crc;}
+  printf "%02x\n", $c;
+}
+
+printf "%02x\n%02x\n", (($crc >> 8) & 0xff),($crc & 0xff);
Index: c51/util/eeprom2bin.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/eeprom2bin.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/eeprom2bin.pl	(working copy)
@@ -0,0 +1,15 @@
+
+$source_file = $ARGV[0];
+#$dest_file = $ARGV[1];
+
+
+open(EEP,"$source_file") or die $!;
+open(BINFILE, ">eeprom.bin") or die $!;
+binmode(BINFILE);
+while (<EEP>) {
+	printf BINFILE "%c", hex();
+}
+close(EEP);
+close(BINFILE);
+    
+   
Index: c51/util/eeprom2fulleeprom.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/util/eeprom2fulleeprom.exe
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/eeprom2fulleeprom.exe	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/eeprom2fulleeprom.exe	(working copy)

Property changes on: c51/util/eeprom2fulleeprom.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/util/eeprom2fulleeprom.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/eeprom2fulleeprom.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/eeprom2fulleeprom.pl	(working copy)
@@ -0,0 +1,18 @@
+
+
+
+$source_file = $ARGV[0];
+$eeprom_size = $ARGV[1];
+
+open(EEP,"$source_file") or die("cannot open files");
+for ($i = 1 ;$i<=$eeprom_size*128-2;$i++)
+{
+
+    while (<EEP>) { 
+        $c = hex();
+        printf "%02x\n", $c;
+        $i++;
+    }
+
+	printf "FF\n";
+}
Index: c51/util/hex2mif.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/util/hex2mif.exe
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/hex2mif.exe	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/hex2mif.exe	(working copy)

Property changes on: c51/util/hex2mif.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/util/hex2mif.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/hex2mif.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/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: c51/util/transform_name2addr.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/util/transform_name2addr.exe
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/transform_name2addr.exe	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/transform_name2addr.exe	(working copy)

Property changes on: c51/util/transform_name2addr.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/util/transform_name2addr.pl
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/transform_name2addr.pl	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/util/transform_name2addr.pl	(working copy)
@@ -0,0 +1,103 @@
+$Sched_path=$ARGV[0];
+$Sched_test_path=$ARGV[1];
+$Memmap_path=$ARGV[2];
+open(Sched,$Sched_path)||die("Cannot open files\n");
+@sched=<Sched>;
+close(Sched);
+open(Sched_test,">$Sched_test_path");
+print Sched_test ("");
+close(Sched_test);
+open(Sched_test,">$Sched_test_path");
+open(Memmap,$Memmap_path)||die("Cannot open files\n");
+@memmap=<Memmap>;
+close(Memmap);
+$type_add=0;
+$type_exchange=0;
+foreach $sched(@sched)
+{
+	$sched_begin = $sched;
+	@Sched = split(/[#]+/, $sched);
+	$sched = @Sched[0];
+	@Sched[0] = "";
+	if($sched =~ /mem[\w]+/)
+	{
+		@memmap_name = split(/[\W]+/, $sched);
+		foreach $memmap_name(@memmap_name)
+		{
+			if($memmap_name =~ /mem[\w]+/)
+			{
+				$Memmap_name=$memmap_name;
+				$type_add = 0;
+				$type_exchange = 0;
+				if($sched =~ /$Memmap_name[+]/)
+				{
+					$type_add = 1;#ÐÞ¸ÄµÄÀàÐÍµÚÒ»ÖÖ£¬¼Ó
+					@ADD_Num=split(/[^0-9\+xa-fA-F]/,$sched);
+					foreach $ADD_Num(@ADD_Num)
+					{
+						if($ADD_Num =~ /\+/)
+						{
+							if($ADD_Num =~ /0x/)
+							{
+								@add_num = split(/\+0x/,$ADD_Num);
+								$add_num1 =@add_num[1];
+								$add_num_begin = "0x".$add_num1;
+								$add_num = hex($add_num1);
+							}
+							else
+							{
+								@add_num = split(/\+/,$ADD_Num);
+								$add_num1 =@add_num[1];
+								$add_num_begin = $add_num1;
+								$add_num = int($add_num1);
+							}
+						}#$add_numÊÇÆ¥Åä³öµÄÐèÒª¼ÓµÄÊýÖµ£¬×Ö·û´®ÐÎÊ½
+					}
+				}
+				if($sched =~ /[:] *\t*$Memmap_name/)
+				{
+					$type_exchange = 1;#ÐÞ¸ÄµÄÀàÐÍµÚ¶þÖÖ£¬¸ßµÍÎ»½»»»
+				}
+				foreach $memmap(@memmap)
+				{
+					if($memmap =~ /$Memmap_name/ && $memmap !~ /$Memmap_name[\w]+/)
+					{
+						@Memmap=split(/[ \t\n]/,$memmap);
+						$memmap_address=@Memmap[0];
+						$memmap_address =~ s/0x//;
+						if($type_add==1)
+						{
+							$memmap_address_D = hex($memmap_address);
+							$memmap_address_D = $memmap_address_D+$add_num;
+							$memmap_address_H = sprintf("%x", $memmap_address_D);
+							$memmap_address = $memmap_address_H;
+							$memmap_address_add_finish = $memmap_address;
+							$sched_begin =~ s/$Memmap_name\+$add_num_begin/$memmap_address/;
+						}
+						if($type_exchange==1)
+						{
+							$memmap_address_High = substr($memmap_address,0,2);
+							$memmap_address_Low = substr($memmap_address,2,2);
+							$memmap_address = $memmap_address_Low." ".$memmap_address_High;
+							if($type_add==0)
+							{
+								$sched_begin =~ s/$Memmap_name/$memmap_address/;
+							}
+							else
+							{
+								$sched_begin =~ s/$memmap_address_add_finish/$memmap_address/;
+							}
+						}
+					}
+				}
+				$sched_begin =~ s/$Memmap_name/$memmap_address/;
+			}
+		}
+		printf Sched_test ("%s",$sched_begin);
+	}
+	else
+	{
+		printf Sched_test ("%s",$sched_begin);
+	}	
+}
+close(Sched_test);
Index: c51/utilities.h
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/utilities.h	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/utilities.h	(working copy)
@@ -0,0 +1,28 @@
+#ifndef _YC_UTILITIES_H_
+#define _YC_UTILITIES_H_
+#include "common.h"
+
+
+/*==============Set a breakpoint function
+no input:
+no output
+====================*/
+void YC_Ice_break();
+
+//void YC_Ice_Set_Write_Bp(u16_t memaddr);
+
+void dmemcpy(u8_t *dest, u8_t* src, u16_t len) ;
+
+void xmemcpy(pxbyte dest, u8_t* src, u8_t len);
+
+void Delay1ms(u16_t Time);
+
+//void YC_DelayNOP(u8_t num);
+
+void xmemclear_0(u8_t *dest, u16_t len);
+
+void xmemclear_ff(u8_t *dest, u16_t len);
+
+u8_t compare_str(u8_t * str1,u8_t * str2,u8_t len);
+
+#endif
Index: c51/utilities.c
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/utilities.c	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/c51/utilities.c	(working copy)
@@ -0,0 +1,66 @@
+#include "utilities.h"
+
+
+void YC_Ice_break()
+{
+	CPUB_ICE_CTRL = 1;
+	return;
+}
+
+void xmemcpy(pxbyte dest, u8_t* src, u8_t len) 
+{
+	while(len--)
+		*dest++ = *src++;
+	return;
+}
+
+void dmemcpy(u8_t *dest, u8_t* src, u16_t len) 
+{
+	while(len--)
+		*dest++ = *src++;
+	return;
+}
+
+void xmemclear_0(u8_t *dest, u16_t len)
+{
+	while(len--)
+		*dest++ = 0x00;
+	return;
+}
+
+void xmemclear_ff(u8_t *dest, u16_t len)
+{
+	while(len--)
+		*dest++ = 0xff;
+	return;
+}
+/*
+void YC_DelayNOP(u8_t num)
+{
+	for(;num>0;num--)
+	{
+		;
+	}
+}
+*/
+void Delay1ms(u16_t Time)
+{
+	u16_t j; 
+	for(;Time>0;Time--)
+	{
+		for(j=0;j<1190;j++);
+	}
+}
+
+u8_t compare_str(u8_t * str1,u8_t * str2,u8_t len)
+{
+	u8_t i;
+	for (i=0;i < len;i++)
+	{
+		if (str1[i] != str2[i])
+			return 0x00;
+	}
+	return 0x01;
+}
+
+
Index: doc/20200620_1098_Mouse_24G_Universal_Tool.dat
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/doc/20200620_1098_Mouse_24G_Universal_Tool.dat	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/doc/20200620_1098_Mouse_24G_Universal_Tool.dat	(working copy)
@@ -0,0 +1,16384 @@
+00
+02
+aa
+55
+56
+1a
+c5
+12
+80
+0f
+c0
+00
+00
+25
+c0
+01
+80
+31
+c0
+43
+00
+37
+c0
+45
+00
+42
+c0
+45
+80
+65
+c0
+53
+80
+71
+c0
+54
+00
+78
+c0
+54
+80
+8c
+c0
+56
+00
+9f
+c0
+5a
+03
+3b
+c0
+5a
+80
+b8
+c0
+5b
+00
+bf
+c0
+5b
+80
+df
+20
+20
+3b
+34
+c0
+02
+81
+3a
+c0
+0b
+01
+3f
+c0
+0d
+81
+43
+c0
+11
+81
+46
+c0
+17
+81
+6a
+c0
+18
+81
+7f
+c0
+19
+01
+91
+c0
+19
+81
+a4
+c0
+1c
+81
+b5
+c0
+1e
+01
+c2
+c0
+1e
+81
+d5
+c0
+1f
+01
+db
+c0
+1f
+81
+ea
+c0
+21
+02
+08
+c0
+26
+82
+0d
+c0
+41
+02
+27
+c0
+4a
+82
+29
+c0
+79
+82
+30
+c0
+7b
+82
+3c
+c0
+7c
+02
+71
+c0
+7c
+82
+77
+20
+20
+3b
+34
+20
+80
+00
+00
+70
+40
+30
+00
+24
+35
+b0
+04
+68
+00
+c5
+95
+24
+3a
+00
+2f
+68
+00
+ce
+78
+20
+3a
+30
+04
+70
+4e
+7f
+00
+c5
+93
+30
+04
+24
+35
+b0
+04
+70
+82
+80
+03
+20
+20
+30
+04
+20
+40
+02
+81
+20
+40
+04
+18
+20
+40
+02
+b3
+68
+00
+ce
+78
+24
+3a
+03
+6d
+20
+20
+30
+1b
+20
+30
+b9
+a3
+70
+89
+55
+d4
+20
+00
+00
+04
+70
+89
+55
+d2
+20
+00
+00
+04
+70
+89
+55
+d1
+20
+00
+00
+04
+20
+20
+39
+ae
+68
+00
+c2
+80
+c0
+0a
+39
+ae
+20
+20
+39
+9c
+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
+20
+20
+00
+62
+68
+00
+c2
+80
+c0
+0a
+00
+62
+c2
+80
+80
+5c
+c2
+81
+00
+5c
+70
+89
+4c
+5b
+70
+89
+4d
+96
+70
+89
+4e
+2c
+70
+89
+4f
+46
+20
+20
+00
+60
+70
+89
+4c
+fb
+70
+89
+4d
+ef
+70
+89
+4e
+ec
+70
+89
+4f
+5e
+68
+00
+c2
+80
+20
+20
+39
+dc
+70
+89
+56
+c5
+70
+89
+55
+d0
+20
+60
+00
+00
+20
+40
+3c
+d2
+20
+40
+3a
+5f
+70
+80
+42
+06
+68
+10
+89
+68
+79
+20
+7e
+07
+60
+10
+89
+68
+79
+3f
+fe
+07
+60
+10
+89
+68
+79
+20
+7e
+07
+60
+10
+89
+68
+70
+80
+42
+05
+20
+20
+3a
+0c
+20
+40
+3c
+2b
+68
+00
+ce
+45
+20
+7a
+00
+00
+70
+4e
+45
+00
+1c
+42
+7e
+00
+60
+02
+48
+9e
+20
+60
+00
+00
+c6
+13
+00
+00
+20
+40
+3b
+e2
+68
+01
+c2
+0f
+20
+7a
+00
+00
+68
+01
+40
+42
+d8
+40
+ff
+ff
+98
+46
+7c
+00
+20
+62
+80
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+20
+40
+48
+16
+24
+7a
+00
+00
+20
+40
+3d
+0e
+24
+7a
+00
+00
+20
+40
+3a
+7b
+68
+00
+c6
+e2
+20
+3a
+3c
+5e
+68
+00
+c6
+39
+20
+7a
+00
+00
+20
+20
+3c
+5e
+68
+00
+c5
+95
+20
+3a
+00
+99
+68
+00
+80
+9f
+24
+3a
+00
+99
+68
+00
+ce
+83
+68
+08
+ce
+84
+98
+46
+7c
+00
+24
+62
+80
+00
+68
+00
+ce
+81
+24
+7a
+00
+00
+58
+00
+00
+00
+60
+04
+00
+a0
+20
+20
+3c
+6a
+20
+40
+00
+a4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+70
+49
+c1
+00
+20
+20
+3c
+6a
+20
+40
+00
+a4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+20
+20
+3c
+8c
+20
+40
+00
+af
+24
+74
+00
+00
+20
+40
+00
+ac
+24
+74
+00
+00
+70
+0b
+2b
+01
+70
+0b
+2a
+01
+20
+40
+00
+b4
+20
+20
+00
+af
+68
+01
+48
+2c
+68
+09
+48
+2e
+20
+20
+00
+b1
+68
+01
+47
+c4
+68
+09
+47
+c6
+98
+46
+7c
+00
+20
+22
+e4
+c0
+20
+20
+31
+d4
+68
+00
+8b
+2a
+20
+00
+00
+0a
+c0
+80
+00
+b4
+20
+60
+00
+00
+70
+00
+16
+27
+70
+01
+50
+00
+70
+01
+7e
+00
+70
+01
+7f
+00
+58
+00
+00
+00
+60
+02
+88
+d2
+20
+60
+00
+00
+da
+20
+46
+f0
+20
+40
+7f
+95
+20
+7a
+00
+00
+1f
+e2
+26
+00
+20
+40
+00
+c5
+20
+20
+3d
+9b
+c1
+0c
+00
+00
+c0
+0a
+00
+ca
+c0
+0a
+80
+d2
+c0
+14
+80
+dd
+20
+20
+3d
+73
+70
+4e
+83
+00
+70
+42
+12
+00
+70
+4e
+a6
+00
+70
+4e
+51
+78
+20
+40
+3e
+61
+20
+40
+3e
+59
+20
+40
+3e
+7f
+20
+20
+3d
+c2
+70
+4e
+a4
+00
+20
+40
+02
+fa
+70
+44
+b2
+00
+70
+42
+12
+00
+70
+4e
+a6
+00
+70
+4e
+51
+00
+70
+45
+6a
+00
+68
+09
+4e
+4e
+60
+09
+44
+f8
+20
+40
+52
+a0
+20
+20
+3d
+c6
+20
+40
+01
+28
+20
+20
+7e
+3b
+60
+08
+82
+4e
+68
+00
+c8
+9c
+1f
+e0
+fe
+01
+60
+00
+c8
+9c
+68
+00
+82
+4e
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+82
+4e
+20
+40
+01
+2b
+20
+40
+01
+0e
+20
+40
+01
+34
+20
+40
+01
+21
+20
+40
+00
+ee
+20
+40
+00
+fe
+20
+20
+00
+e3
+68
+00
+ce
+a7
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+a7
+24
+7a
+00
+00
+68
+00
+ce
+a8
+1f
+e0
+fe
+01
+1f
+e1
+7e
+01
+60
+00
+ce
+a8
+c0
+00
+00
+fa
+c0
+00
+80
+fc
+20
+60
+00
+00
+d8
+40
+00
+08
+20
+20
+64
+fd
+d8
+40
+00
+08
+20
+20
+64
+ff
+68
+00
+ce
+a9
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+a9
+24
+7a
+00
+00
+68
+00
+ce
+aa
+1f
+e0
+fe
+01
+1f
+e1
+7e
+01
+60
+00
+ce
+aa
+c0
+00
+01
+0a
+c0
+00
+81
+0c
+20
+60
+00
+00
+d8
+40
+00
+05
+20
+20
+64
+fd
+d8
+40
+00
+05
+20
+20
+64
+ff
+68
+00
+ce
+a6
+20
+7a
+00
+00
+68
+00
+c2
+12
+2f
+e1
+fe
+20
+24
+40
+81
+18
+68
+00
+c1
+31
+20
+5a
+01
+16
+20
+60
+00
+00
+70
+41
+31
+01
+20
+60
+00
+00
+70
+42
+12
+20
+20
+60
+00
+00
+68
+00
+c9
+ba
+20
+7a
+00
+00
+70
+4e
+80
+00
+1f
+e0
+ff
+ff
+60
+00
+c9
+ba
+24
+7a
+00
+00
+20
+60
+00
+00
+68
+00
+ce
+82
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+82
+24
+7a
+00
+00
+70
+4e
+81
+00
+20
+60
+00
+00
+20
+40
+3e
+7f
+70
+09
+bd
+12
+20
+20
+7d
+90
+68
+00
+ce
+51
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+51
+24
+7a
+00
+00
+70
+42
+12
+20
+70
+41
+31
+01
+70
+4e
+a6
+01
+20
+60
+00
+00
+68
+00
+ce
+52
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+52
+24
+7a
+00
+00
+20
+20
+3e
+6d
+20
+40
+49
+68
+20
+40
+4b
+51
+20
+40
+4b
+d8
+20
+40
+05
+ea
+20
+20
+49
+45
+20
+40
+3a
+50
+1f
+e2
+22
+00
+20
+40
+06
+28
+20
+20
+4a
+3d
+68
+02
+4e
+48
+60
+02
+45
+96
+20
+20
+4a
+8c
+70
+41
+31
+01
+68
+01
+03
+7c
+68
+09
+03
+82
+98
+46
+7e
+00
+60
+01
+09
+be
+68
+00
+83
+62
+79
+3f
+fe
+05
+79
+3f
+fe
+03
+60
+00
+83
+62
+68
+02
+03
+66
+68
+09
+03
+64
+60
+09
+09
+c6
+98
+46
+22
+00
+68
+00
+c4
+5b
+60
+00
+83
+8d
+e8
+c9
+00
+00
+e8
+c1
+00
+00
+1f
+eb
+fe
+00
+60
+01
+03
+64
+18
+4b
+84
+00
+98
+40
+fe
+00
+e8
+ca
+00
+00
+60
+0a
+03
+8e
+9a
+20
+fe
+00
+1f
+e2
+28
+00
+68
+01
+03
+64
+68
+09
+09
+c6
+98
+46
+7e
+00
+68
+09
+09
+be
+98
+4f
+fe
+00
+9a
+80
+fe
+00
+60
+02
+03
+66
+20
+40
+51
+99
+68
+01
+03
+90
+60
+01
+45
+61
+20
+60
+00
+00
+68
+00
+83
+79
+c2
+82
+81
+7b
+20
+40
+05
+dc
+70
+4e
+62
+00
+68
+00
+ce
+20
+24
+3a
+01
+75
+68
+00
+ce
+a5
+c0
+00
+81
+79
+68
+00
+83
+03
+20
+3a
+4b
+de
+20
+20
+4f
+87
+68
+00
+ce
+20
+1f
+e0
+ff
+ff
+60
+00
+ce
+20
+20
+20
+4f
+87
+70
+4e
+20
+03
+20
+20
+4b
+de
+68
+00
+ce
+62
+1f
+e0
+fe
+01
+60
+00
+ce
+62
+20
+20
+05
+e0
+68
+00
+c4
+67
+c0
+03
+01
+83
+c0
+01
+01
+8a
+20
+20
+4b
+fb
+68
+00
+ce
+53
+c0
+00
+81
+87
+20
+40
+3e
+6d
+20
+20
+4c
+86
+20
+40
+01
+28
+70
+4e
+52
+03
+20
+20
+4c
+90
+58
+00
+00
+13
+e0
+a0
+80
+00
+20
+40
+4c
+58
+58
+00
+00
+0a
+60
+01
+03
+90
+60
+01
+45
+61
+20
+60
+00
+00
+68
+00
+c4
+6b
+c0
+01
+01
+98
+c0
+03
+01
+9f
+c0
+03
+81
+96
+20
+20
+4c
+18
+70
+4e
+a5
+00
+20
+20
+4d
+17
+59
+00
+03
+02
+60
+01
+c4
+dc
+58
+00
+00
+01
+e0
+a0
+80
+00
+58
+01
+00
+10
+e0
+a1
+80
+00
+20
+20
+4c
+cd
+70
+09
+bd
+29
+20
+40
+7d
+86
+70
+09
+bd
+47
+20
+40
+4b
+d6
+20
+20
+4d
+01
+68
+00
+c4
+6b
+c0
+0d
+81
+a8
+c0
+0e
+81
+a8
+20
+20
+4c
+2b
+68
+09
+4e
+4e
+60
+09
+44
+6c
+68
+00
+ce
+86
+1f
+e0
+84
+01
+18
+41
+04
+03
+60
+08
+ce
+86
+1f
+ef
+fe
+07
+d8
+c0
+4e
+87
+98
+c0
+8c
+00
+e8
+c3
+80
+00
+60
+03
+c4
+6e
+d8
+40
+00
+0e
+20
+20
+4f
+89
+60
+08
+c4
+66
+28
+20
+06
+02
+24
+20
+81
+ba
+18
+40
+ff
+fc
+60
+01
+44
+67
+68
+08
+83
+79
+20
+40
+01
+bd
+20
+20
+4f
+92
+68
+00
+ce
+a5
+c0
+00
+81
+c0
+20
+20
+4b
+d0
+58
+00
+00
+00
+20
+60
+00
+00
+1a
+62
+7e
+00
+c0
+00
+01
+c8
+c0
+01
+01
+cb
+c0
+01
+81
+cf
+c0
+05
+01
+d3
+20
+20
+4f
+b9
+70
+41
+31
+00
+70
+4e
+51
+3c
+20
+20
+50
+1f
+20
+40
+50
+33
+58
+00
+00
+00
+60
+04
+45
+44
+20
+60
+00
+00
+20
+40
+50
+39
+68
+00
+c5
+6a
+c1
+01
+00
+00
+20
+20
+64
+18
+70
+09
+bd
+2b
+20
+20
+4b
+d6
+e8
+c0
+80
+00
+c0
+00
+81
+d8
+20
+20
+4f
+fe
+70
+4e
+a5
+01
+70
+4e
+20
+03
+20
+20
+50
+69
+e8
+c1
+80
+00
+60
+01
+83
+9a
+c0
+09
+01
+df
+20
+20
+50
+11
+70
+41
+31
+01
+20
+40
+01
+e5
+20
+40
+51
+25
+24
+62
+80
+00
+70
+09
+bd
+13
+20
+20
+4b
+d6
+68
+00
+83
+03
+1f
+e0
+ff
+f9
+1f
+e2
+72
+00
+1f
+22
+24
+00
+20
+20
+51
+35
+68
+00
+c3
+ff
+20
+7a
+00
+00
+d8
+e0
+00
+01
+20
+40
+7e
+e2
+24
+7a
+00
+00
+78
+54
+fc
+00
+78
+28
+7c
+00
+20
+40
+4b
+1e
+20
+40
+49
+d4
+20
+40
+4a
+8a
+24
+36
+81
+fc
+68
+00
+80
+03
+1f
+e0
+fe
+01
+60
+00
+80
+03
+68
+00
+83
+02
+1f
+e1
+7e
+0f
+c0
+01
+82
+06
+c0
+02
+d1
+af
+68
+00
+80
+16
+c0
+93
+d1
+7d
+18
+0a
+7e
+00
+d8
+40
+01
+ff
+98
+41
+7e
+00
+1f
+e0
+fe
+fa
+1f
+e0
+ff
+ff
+20
+00
+00
+26
+24
+3a
+02
+02
+20
+20
+51
+96
+20
+40
+4a
+c5
+20
+20
+01
+fc
+68
+02
+45
+96
+d8
+40
+ea
+60
+98
+40
+fe
+00
+60
+02
+45
+96
+20
+20
+51
+a9
+78
+55
+fc
+00
+20
+37
+02
+10
+24
+36
+82
+1f
+20
+40
+3c
+b7
+68
+01
+41
+61
+60
+01
+03
+70
+68
+00
+83
+02
+2f
+e0
+06
+01
+24
+20
+bc
+cb
+68
+00
+c4
+65
+2f
+e0
+06
+01
+24
+20
+bc
+cb
+20
+40
+4b
+d0
+24
+3a
+3c
+cb
+68
+00
+ce
+62
+1f
+e6
+7c
+01
+24
+21
+3c
+cb
+20
+20
+52
+97
+68
+09
+41
+61
+68
+01
+4e
+60
+98
+40
+84
+00
+18
+43
+04
+00
+68
+01
+03
+70
+98
+40
+fe
+00
+60
+01
+03
+70
+20
+20
+3c
+c3
+c5
+15
+62
+3d
+20
+20
+62
+50
+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
+1a
+22
+7e
+00
+20
+7a
+00
+00
+18
+40
+85
+60
+18
+40
+85
+60
+79
+3f
+84
+1c
+60
+0a
+47
+03
+1f
+e2
+04
+00
+da
+20
+46
+f0
+20
+40
+7f
+a6
+24
+7a
+00
+00
+18
+42
+7e
+00
+20
+20
+7d
+7d
+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
+11
+82
+49
+c0
+12
+02
+4d
+c0
+12
+82
+51
+c0
+06
+82
+53
+c0
+13
+82
+60
+20
+20
+7d
+b3
+68
+00
+c9
+c3
+60
+00
+c2
+80
+70
+49
+38
+ff
+20
+20
+06
+70
+68
+00
+c9
+c3
+60
+00
+c2
+80
+79
+3f
+80
+26
+20
+20
+49
+7d
+70
+42
+80
+14
+20
+20
+06
+41
+79
+3f
+80
+26
+70
+41
+31
+00
+18
+0a
+7e
+00
+60
+00
+c5
+3e
+70
+4e
+53
+00
+68
+09
+4e
+4e
+60
+09
+44
+f8
+20
+40
+52
+a0
+da
+40
+00
+05
+20
+40
+02
+6a
+1a
+42
+7e
+00
+e0
+c0
+80
+00
+20
+20
+7e
+07
+79
+3f
+80
+26
+70
+41
+31
+00
+70
+4e
+53
+01
+68
+09
+4e
+4e
+20
+40
+4f
+6a
+1a
+22
+0a
+00
+58
+00
+00
+01
+e0
+a0
+80
+00
+da
+40
+00
+04
+20
+20
+02
+5c
+da
+20
+44
+01
+ea
+20
+80
+00
+20
+7a
+00
+00
+98
+c0
+a2
+00
+e8
+c0
+80
+00
+c1
+00
+80
+00
+20
+20
+02
+6b
+20
+40
+58
+c5
+24
+3a
+7d
+e5
+68
+00
+89
+bd
+c5
+84
+fd
+e0
+c0
+0f
+82
+96
+20
+20
+7d
+d0
+70
+0b
+2a
+03
+20
+40
+00
+b4
+70
+4e
+45
+5a
+20
+40
+3c
+fc
+68
+12
+01
+38
+79
+3f
+fe
+0f
+60
+12
+00
+4c
+20
+40
+3c
+f4
+d8
+5f
+ff
+ff
+20
+20
+3c
+11
+68
+0a
+48
+9e
+1c
+42
+7e
+00
+98
+46
+7e
+00
+d8
+40
+06
+40
+98
+46
+fc
+00
+20
+40
+7f
+53
+18
+07
+fe
+00
+20
+7a
+00
+00
+1c
+42
+04
+00
+60
+0a
+48
+9e
+68
+09
+48
+98
+18
+50
+84
+00
+98
+40
+fe
+00
+1f
+f0
+fe
+00
+60
+01
+48
+98
+1f
+f0
+fe
+00
+1f
+e1
+7e
+03
+c1
+80
+00
+00
+20
+40
+02
+a9
+24
+76
+00
+00
+68
+00
+c2
+cf
+20
+60
+00
+00
+68
+10
+80
+53
+79
+20
+7e
+07
+60
+10
+80
+53
+68
+10
+89
+73
+1f
+e1
+fe
+30
+60
+10
+89
+73
+70
+89
+06
+7c
+70
+89
+72
+aa
+20
+00
+13
+88
+68
+19
+01
+50
+68
+10
+80
+53
+79
+3f
+fe
+07
+60
+10
+80
+53
+18
+50
+84
+00
+60
+09
+42
+d1
+20
+60
+00
+00
+78
+36
+7c
+00
+20
+60
+00
+00
+78
+56
+7c
+00
+20
+40
+4b
+d0
+20
+5a
+02
+a7
+68
+00
+c9
+54
+24
+5a
+02
+a7
+20
+60
+00
+00
+70
+4e
+a3
+01
+20
+40
+02
+b3
+70
+4e
+a3
+00
+20
+60
+00
+00
+20
+40
+00
+af
+20
+74
+00
+00
+1f
+f0
+fe
+00
+1f
+e2
+0c
+00
+20
+40
+02
+d9
+60
+00
+c8
+97
+c0
+00
+82
+c4
+c0
+03
+02
+f5
+1f
+e2
+04
+00
+18
+c2
+22
+00
+68
+00
+c0
+40
+c3
+00
+02
+ce
+1a
+22
+0c
+00
+c6
+84
+80
+00
+18
+42
+7e
+00
+c0
+02
+83
+0c
+20
+20
+3b
+31
+20
+40
+02
+d9
+20
+40
+02
+d9
+60
+00
+89
+bd
+20
+40
+02
+c9
+20
+20
+7d
+90
+20
+40
+02
+dc
+18
+c2
+04
+00
+18
+50
+84
+00
+60
+09
+47
+c4
+20
+60
+00
+00
+1a
+22
+0c
+00
+d8
+a0
+00
+f5
+20
+20
+02
+d1
+20
+40
+02
+d9
+1f
+e2
+72
+00
+20
+40
+02
+d5
+20
+20
+02
+c9
+20
+40
+02
+d9
+e0
+a0
+80
+00
+c2
+00
+02
+d5
+20
+60
+00
+00
+20
+40
+02
+dc
+e8
+c0
+80
+00
+20
+60
+00
+00
+58
+00
+47
+c4
+98
+c6
+7c
+00
+24
+62
+80
+00
+d8
+c0
+47
+2e
+20
+60
+00
+00
+df
+20
+00
+03
+d8
+c0
+48
+94
+18
+c2
+22
+00
+68
+01
+48
+2e
+1f
+f0
+fe
+00
+1f
+e2
+0a
+00
+1a
+22
+0c
+00
+e8
+c0
+80
+00
+e0
+a0
+80
+00
+20
+40
+02
+f0
+c2
+00
+02
+e8
+18
+a2
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+48
+2e
+20
+60
+00
+00
+58
+00
+48
+2c
+98
+a6
+7c
+00
+24
+62
+80
+00
+d8
+a0
+47
+c8
+20
+60
+00
+00
+c6
+93
+80
+00
+20
+40
+02
+d9
+1f
+e2
+72
+00
+60
+00
+c9
+70
+20
+20
+02
+d3
+58
+00
+00
+00
+60
+01
+ce
+85
+20
+60
+00
+00
+c6
+13
+00
+00
+68
+00
+c5
+95
+20
+7a
+00
+00
+20
+40
+00
+af
+20
+74
+00
+00
+1f
+f0
+fe
+00
+1f
+e2
+0c
+00
+20
+40
+02
+d9
+60
+00
+c8
+97
+18
+c2
+22
+00
+c0
+82
+82
+ce
+18
+c2
+24
+00
+20
+40
+4b
+d4
+24
+7a
+00
+00
+20
+20
+03
+11
+18
+c2
+24
+00
+68
+00
+ce
+a3
+20
+7a
+00
+00
+20
+40
+4b
+d0
+24
+7a
+00
+00
+68
+09
+4e
+4e
+20
+40
+4f
+6a
+c4
+00
+00
+00
+68
+00
+c5
+95
+c1
+00
+00
+00
+68
+00
+ce
+83
+1f
+e0
+fe
+01
+60
+00
+ce
+83
+68
+00
+ce
+85
+1f
+e0
+84
+01
+18
+41
+04
+03
+60
+08
+ce
+85
+1f
+ef
+fe
+07
+d8
+a0
+4e
+87
+98
+a0
+8a
+00
+1a
+42
+0c
+00
+20
+40
+02
+d9
+1f
+e2
+72
+00
+20
+40
+02
+d3
+20
+40
+03
+28
+20
+76
+00
+00
+70
+09
+bd
+1b
+20
+20
+4b
+d6
+78
+56
+7c
+00
+68
+00
+ce
+a4
+c1
+02
+80
+00
+78
+36
+7c
+00
+1f
+e0
+fe
+01
+60
+00
+ce
+a4
+1f
+e6
+7c
+01
+24
+61
+00
+00
+70
+48
+96
+40
+20
+20
+02
+e1
+58
+00
+47
+2e
+1f
+f0
+fe
+00
+60
+01
+47
+c4
+60
+01
+47
+c6
+58
+00
+47
+c8
+1f
+f0
+fe
+00
+60
+01
+48
+2c
+60
+01
+48
+2e
+20
+60
+00
+00
+d8
+40
+00
+08
+20
+40
+64
+e8
+d8
+40
+00
+05
+20
+40
+64
+e8
+20
+40
+52
+4a
+70
+0b
+2a
+00
+70
+01
+6c
+06
+20
+40
+3e
+7f
+58
+00
+03
+a3
+60
+01
+42
+96
+58
+00
+02
+af
+60
+01
+42
+90
+58
+00
+03
+9c
+60
+01
+42
+8c
+24
+55
+83
+32
+20
+55
+83
+73
+20
+40
+3d
+3e
+68
+00
+ce
+45
+c0
+2d
+03
+87
+20
+35
+83
+85
+68
+00
+c2
+80
+60
+00
+c9
+c3
+20
+40
+05
+d9
+68
+01
+4e
+41
+1f
+f0
+fe
+00
+60
+01
+4e
+41
+68
+01
+4e
+43
+1f
+f0
+fe
+00
+60
+01
+4e
+43
+20
+40
+03
+92
+20
+40
+03
+bd
+68
+04
+09
+c6
+24
+3a
+03
+60
+68
+01
+4a
+d4
+1f
+f0
+fe
+00
+20
+3a
+03
+60
+60
+01
+4e
+43
+70
+48
+96
+2f
+68
+00
+ce
+78
+24
+3a
+03
+68
+20
+40
+02
+95
+20
+40
+02
+e1
+20
+40
+02
+fd
+70
+82
+80
+03
+20
+60
+00
+00
+20
+55
+bc
+29
+d9
+60
+0d
+00
+34
+73
+02
+00
+1c
+42
+7e
+00
+60
+01
+ce
+7a
+68
+01
+47
+0b
+c3
+85
+80
+00
+c3
+83
+00
+00
+20
+40
+3d
+60
+20
+40
+04
+c8
+20
+20
+03
+6d
+1c
+e2
+7e
+00
+c5
+93
+03
+7d
+20
+3a
+03
+78
+70
+49
+b9
+bb
+20
+60
+00
+00
+70
+49
+b9
+00
+68
+00
+c9
+b7
+20
+7a
+00
+00
+70
+49
+b7
+00
+20
+20
+03
+76
+20
+3a
+03
+80
+70
+49
+c1
+02
+20
+60
+00
+00
+68
+00
+c9
+c2
+20
+7a
+00
+00
+70
+49
+c2
+00
+70
+49
+c1
+01
+20
+60
+00
+00
+70
+48
+96
+3c
+20
+20
+03
+61
+1c
+e2
+7e
+00
+20
+3a
+02
+79
+20
+40
+53
+0d
+20
+40
+42
+eb
+58
+00
+00
+00
+60
+04
+40
+40
+60
+01
+47
+0b
+60
+01
+48
+98
+60
+01
+48
+9a
+70
+48
+96
+3d
+20
+20
+03
+61
+20
+40
+62
+c4
+58
+00
+07
+e2
+da
+20
+09
+c6
+d8
+40
+00
+0c
+20
+40
+63
+0d
+20
+40
+62
+c7
+68
+04
+09
+c6
+20
+7a
+00
+00
+68
+00
+c2
+cf
+20
+60
+00
+00
+78
+34
+7c
+00
+68
+12
+01
+38
+79
+34
+7e
+1a
+60
+12
+00
+4c
+20
+40
+3c
+f4
+70
+00
+9f
+01
+20
+60
+00
+00
+1a
+62
+7e
+00
+1f
+e1
+7e
+f0
+c1
+28
+00
+00
+1a
+62
+7e
+00
+60
+00
+c8
+96
+20
+20
+02
+e1
+70
+49
+27
+00
+70
+49
+32
+4e
+68
+02
+49
+34
+60
+02
+49
+50
+20
+20
+04
+66
+68
+08
+c9
+33
+20
+40
+03
+b4
+18
+40
+84
+01
+18
+41
+04
+03
+60
+08
+c9
+33
+20
+60
+00
+00
+68
+00
+c9
+50
+1f
+e1
+7e
+03
+1f
+ef
+a2
+04
+58
+00
+49
+39
+9a
+20
+fe
+00
+98
+40
+8c
+00
+e8
+c0
+80
+00
+60
+00
+c9
+32
+20
+60
+00
+00
+68
+02
+09
+c6
+60
+02
+49
+60
+24
+7a
+00
+00
+68
+02
+41
+40
+60
+02
+49
+60
+20
+60
+00
+00
+70
+49
+b0
+01
+70
+49
+b2
+00
+68
+00
+c9
+29
+1f
+e1
+7e
+07
+60
+00
+c9
+29
+20
+60
+00
+00
+68
+00
+c9
+29
+79
+20
+7e
+04
+60
+00
+c9
+29
+60
+00
+c8
+e4
+20
+60
+00
+00
+68
+00
+c9
+29
+79
+3f
+fe
+04
+60
+00
+c9
+29
+20
+60
+00
+00
+20
+40
+05
+e0
+68
+00
+c9
+b4
+c0
+00
+83
+d7
+c0
+01
+03
+db
+20
+60
+00
+00
+70
+49
+b2
+02
+70
+49
+b3
+00
+70
+49
+b0
+00
+20
+20
+03
+c5
+70
+49
+b1
+00
+20
+20
+03
+d8
+68
+01
+49
+2e
+1f
+e0
+fe
+01
+60
+01
+49
+2e
+c2
+83
+05
+45
+68
+00
+c9
+b1
+c0
+00
+83
+e6
+70
+49
+b1
+01
+68
+00
+c9
+b1
+c0
+80
+83
+c5
+68
+00
+c9
+b5
+1f
+e0
+fe
+01
+60
+00
+c9
+b5
+c0
+02
+03
+ed
+20
+40
+03
+ae
+70
+49
+6e
+02
+20
+20
+05
+04
+20
+40
+05
+e0
+70
+49
+b5
+00
+20
+20
+03
+c5
+70
+49
+b2
+02
+70
+49
+b0
+01
+70
+49
+b1
+00
+20
+20
+03
+c5
+68
+00
+c9
+b4
+c0
+01
+83
+f1
+68
+00
+c9
+29
+2f
+ec
+00
+04
+20
+20
+83
+c3
+68
+00
+c9
+b4
+c0
+00
+83
+f0
+c0
+01
+03
+f1
+20
+60
+00
+00
+68
+00
+c9
+38
+c1
+ff
+80
+00
+20
+40
+04
+02
+24
+56
+04
+0a
+20
+60
+00
+00
+78
+56
+7c
+00
+68
+00
+c9
+b0
+c1
+80
+80
+00
+68
+00
+c9
+b2
+c1
+80
+00
+00
+70
+49
+b4
+01
+70
+49
+6e
+04
+20
+20
+02
+a7
+68
+00
+c9
+b2
+20
+3a
+04
+12
+1f
+e0
+ff
+ff
+60
+00
+c9
+b2
+70
+49
+b4
+02
+20
+40
+03
+ae
+70
+49
+6e
+04
+20
+60
+00
+00
+70
+49
+b4
+03
+68
+00
+c9
+b1
+24
+3a
+03
+e4
+20
+40
+03
+ae
+70
+49
+6e
+02
+20
+60
+00
+00
+c6
+93
+00
+00
+79
+20
+00
+27
+68
+0a
+49
+49
+1c
+42
+7e
+00
+98
+46
+7c
+00
+24
+41
+04
+31
+1f
+e2
+24
+00
+68
+02
+49
+49
+68
+08
+c9
+4d
+98
+40
+84
+00
+1a
+42
+7e
+00
+98
+46
+7c
+00
+24
+21
+04
+2f
+79
+3f
+fe
+1c
+60
+02
+49
+49
+20
+40
+04
+34
+20
+40
+04
+41
+20
+34
+04
+96
+20
+40
+03
+fd
+20
+40
+05
+04
+68
+00
+c9
+38
+1f
+e6
+7c
+ff
+20
+42
+85
+ea
+79
+3f
+80
+27
+20
+60
+00
+00
+20
+62
+80
+00
+79
+20
+7e
+1c
+20
+60
+00
+00
+68
+00
+c9
+64
+1f
+e0
+fe
+01
+60
+00
+c9
+64
+c0
+02
+04
+3a
+c0
+02
+84
+3d
+20
+60
+00
+00
+68
+00
+c9
+4f
+60
+00
+c9
+4d
+20
+60
+00
+00
+70
+49
+64
+00
+68
+00
+c9
+4e
+60
+00
+c9
+4d
+20
+60
+00
+00
+68
+00
+c9
+38
+c0
+ff
+86
+45
+20
+40
+02
+b3
+20
+34
+04
+4f
+68
+00
+c8
+97
+c0
+83
+64
+c0
+20
+40
+04
+52
+20
+40
+04
+73
+70
+49
+2d
+01
+20
+60
+00
+00
+70
+4e
+79
+00
+70
+4e
+78
+00
+70
+49
+ba
+0a
+20
+60
+00
+00
+68
+00
+c9
+2d
+c0
+00
+b1
+d4
+20
+60
+00
+00
+68
+00
+c9
+b9
+60
+00
+c9
+b8
+68
+00
+c9
+70
+1f
+e2
+22
+00
+da
+40
+49
+71
+70
+49
+54
+00
+20
+40
+03
+c5
+60
+00
+c9
+90
+1a
+20
+84
+01
+d8
+a0
+49
+91
+1a
+22
+72
+00
+1a
+42
+0c
+00
+20
+40
+7e
+cd
+da
+20
+49
+90
+c6
+93
+80
+00
+60
+08
+c9
+28
+18
+42
+72
+00
+d8
+a0
+48
+c4
+1a
+22
+0c
+00
+20
+20
+7e
+cd
+da
+20
+00
+00
+df
+20
+00
+04
+d8
+c0
+49
+50
+e8
+c0
+80
+00
+9a
+20
+a2
+00
+c2
+00
+04
+69
+1a
+22
+7e
+00
+60
+01
+49
+bb
+68
+00
+c9
+bb
+68
+08
+c9
+bc
+98
+40
+fe
+00
+60
+00
+c9
+bd
+20
+60
+00
+00
+68
+00
+c9
+28
+1f
+e0
+fe
+02
+60
+00
+c9
+2a
+68
+00
+c9
+29
+60
+00
+c8
+e4
+68
+00
+c9
+28
+1f
+e9
+fe
+00
+68
+08
+c9
+27
+18
+41
+04
+03
+18
+43
+84
+00
+98
+41
+fe
+00
+68
+08
+c9
+65
+98
+40
+fe
+00
+e0
+a0
+80
+00
+68
+00
+c9
+28
+98
+00
+72
+00
+d8
+c0
+48
+c4
+20
+20
+7e
+cd
+70
+49
+54
+01
+70
+49
+b1
+00
+20
+40
+03
+c5
+60
+00
+c9
+90
+58
+00
+00
+00
+60
+03
+c9
+91
+68
+02
+49
+60
+60
+02
+49
+98
+d8
+40
+00
+0c
+da
+20
+49
+90
+20
+40
+04
+60
+68
+00
+c9
+29
+79
+20
+7e
+03
+60
+00
+c9
+29
+20
+40
+04
+73
+20
+40
+04
+49
+20
+20
+04
+2b
+20
+60
+00
+00
+68
+00
+c9
+54
+20
+3a
+04
+85
+68
+08
+c9
+b8
+18
+40
+84
+01
+60
+08
+c9
+b8
+68
+00
+c9
+b9
+98
+46
+7c
+00
+20
+61
+00
+00
+70
+49
+b8
+00
+20
+40
+00
+a4
+24
+74
+00
+00
+68
+00
+8b
+2b
+24
+7a
+00
+00
+68
+00
+c9
+ba
+24
+7a
+00
+00
+70
+4e
+80
+00
+20
+40
+3b
+e2
+68
+01
+c2
+0f
+20
+7a
+00
+00
+68
+04
+49
+58
+20
+40
+7f
+16
+60
+0a
+41
+fb
+20
+20
+3c
+11
+68
+00
+c2
+b8
+2f
+ec
+00
+02
+20
+20
+84
+b8
+68
+00
+ce
+79
+c1
+02
+80
+00
+1f
+e0
+fe
+01
+60
+00
+ce
+79
+c1
+82
+80
+00
+70
+4e
+78
+01
+20
+60
+00
+00
+68
+00
+ce
+79
+c1
+0a
+00
+00
+1f
+e0
+fe
+01
+60
+00
+ce
+79
+c1
+8a
+00
+00
+68
+00
+c2
+b8
+79
+20
+7e
+02
+60
+00
+c2
+b8
+20
+20
+04
+b6
+68
+00
+ce
+79
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+ce
+79
+24
+7a
+00
+00
+70
+4e
+78
+00
+20
+60
+00
+00
+79
+20
+00
+27
+20
+40
+02
+b3
+20
+34
+04
+cd
+68
+00
+c8
+97
+c0
+03
+04
+dc
+68
+00
+ce
+7d
+c0
+00
+84
+d4
+c0
+01
+04
+96
+c0
+01
+84
+d2
+20
+60
+00
+00
+70
+4e
+79
+00
+70
+4e
+78
+00
+20
+40
+04
+ae
+70
+4e
+7d
+00
+df
+20
+00
+07
+1f
+22
+7e
+00
+60
+00
+c9
+70
+d8
+c0
+4e
+21
+20
+40
+7e
+cd
+78
+54
+7c
+00
+20
+40
+04
+47
+20
+40
+03
+fd
+20
+40
+05
+04
+20
+40
+05
+ea
+20
+40
+3b
+e2
+68
+01
+c2
+0f
+20
+7a
+00
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+68
+00
+ce
+80
+c0
+00
+84
+e9
+58
+00
+00
+00
+60
+04
+00
+a0
+20
+40
+04
+f9
+d9
+60
+0d
+00
+34
+73
+02
+00
+68
+09
+ce
+7a
+1c
+42
+7e
+00
+98
+46
+7e
+00
+1f
+e1
+7e
+ff
+d8
+40
+0e
+a6
+98
+4f
+84
+00
+68
+02
+4e
+74
+98
+46
+7e
+00
+20
+21
+3c
+7f
+68
+00
+c2
+18
+1f
+e0
+fe
+01
+60
+02
+41
+fb
+20
+20
+3c
+86
+58
+01
+3c
+68
+60
+02
+4e
+74
+68
+00
+ce
+7e
+1f
+e0
+fe
+01
+c0
+82
+84
+ff
+58
+00
+00
+00
+60
+00
+ce
+7e
+c4
+00
+00
+00
+58
+01
+30
+b0
+60
+02
+4e
+74
+20
+60
+00
+00
+70
+4e
+a7
+01
+70
+49
+31
+00
+d9
+60
+0d
+00
+34
+73
+02
+00
+20
+40
+05
+1e
+68
+00
+c9
+65
+c1
+00
+80
+00
+24
+2c
+05
+2d
+24
+37
+85
+2d
+70
+4e
+a9
+01
+20
+40
+05
+4c
+20
+40
+05
+dc
+68
+00
+c9
+27
+1f
+e0
+fe
+01
+60
+00
+c9
+27
+68
+00
+c9
+38
+c0
+ff
+85
+1c
+20
+40
+03
+f4
+58
+00
+00
+00
+60
+01
+49
+2e
+60
+00
+c9
+30
+60
+00
+c9
+b3
+70
+49
+2d
+00
+20
+60
+00
+00
+20
+40
+05
+d9
+20
+20
+06
+60
+78
+57
+fc
+00
+20
+40
+05
+6c
+68
+00
+c9
+65
+c0
+00
+85
+2b
+18
+00
+2a
+00
+68
+02
+49
+50
+98
+00
+12
+00
+68
+08
+80
+17
+20
+40
+39
+b9
+20
+40
+39
+bf
+20
+40
+05
+96
+20
+57
+85
+d5
+20
+60
+00
+00
+20
+40
+05
+d5
+20
+20
+05
+10
+68
+00
+c9
+30
+1f
+e0
+fe
+01
+60
+00
+c9
+30
+68
+00
+c9
+38
+c0
+ff
+85
+41
+68
+08
+c9
+31
+18
+40
+84
+01
+60
+08
+c9
+31
+68
+00
+c9
+6e
+98
+46
+7e
+00
+24
+3a
+05
+06
+68
+00
+c9
+b4
+c0
+01
+83
+dd
+68
+00
+c9
+b3
+1f
+e0
+fe
+01
+60
+00
+c9
+b3
+c0
+01
+03
+d2
+20
+40
+03
+c9
+70
+49
+6e
+01
+20
+20
+05
+04
+68
+00
+c9
+30
+c1
+ff
+80
+00
+70
+49
+30
+00
+20
+20
+05
+4a
+58
+00
+00
+00
+60
+01
+49
+2e
+70
+41
+31
+00
+70
+4e
+79
+00
+70
+4e
+78
+00
+70
+48
+96
+3b
+20
+20
+02
+e1
+20
+40
+05
+53
+68
+00
+c9
+26
+20
+7a
+00
+00
+98
+00
+72
+00
+d8
+c0
+48
+a4
+d8
+a0
+49
+06
+20
+20
+7e
+cd
+68
+00
+c8
+a3
+1f
+e9
+7e
+00
+60
+00
+c9
+26
+1f
+e0
+fe
+01
+d8
+c0
+48
+a3
+98
+c0
+8c
+00
+e8
+c1
+80
+00
+60
+01
+c9
+66
+68
+00
+c8
+a3
+1f
+e3
+7e
+00
+1f
+e1
+7e
+03
+60
+00
+c9
+6c
+20
+60
+00
+00
+78
+44
+fc
+00
+78
+43
+fc
+00
+58
+55
+55
+55
+98
+00
+1e
+00
+68
+00
+c9
+32
+1f
+ed
+84
+00
+79
+20
+04
+01
+18
+43
+1c
+00
+20
+60
+00
+00
+20
+40
+39
+b1
+68
+08
+c9
+32
+20
+20
+39
+c9
+20
+40
+49
+76
+68
+02
+49
+50
+98
+00
+12
+00
+20
+40
+05
+60
+20
+40
+05
+69
+79
+20
+2a
+00
+78
+2e
+fc
+00
+78
+30
+7c
+00
+78
+50
+fc
+00
+19
+31
+7e
+00
+1f
+ec
+fe
+00
+1f
+f1
+fe
+00
+08
+00
+86
+28
+78
+4e
+fc
+00
+78
+2d
+fc
+00
+78
+23
+fc
+00
+78
+24
+fc
+00
+68
+00
+c9
+bd
+08
+00
+86
+08
+68
+00
+c9
+2a
+98
+00
+72
+00
+d8
+c0
+48
+e4
+e8
+c0
+80
+00
+08
+00
+86
+08
+c2
+00
+05
+82
+78
+24
+7c
+00
+08
+00
+86
+18
+78
+44
+7c
+00
+37
+d3
+82
+00
+20
+00
+00
+64
+78
+4e
+fc
+00
+78
+4d
+fc
+00
+20
+60
+00
+00
+20
+40
+49
+76
+68
+02
+49
+50
+98
+00
+12
+00
+20
+40
+39
+b1
+68
+08
+c9
+32
+20
+40
+39
+b9
+58
+00
+05
+00
+20
+40
+3b
+35
+20
+40
+39
+bf
+20
+40
+05
+60
+78
+57
+fc
+00
+78
+26
+fc
+00
+78
+30
+fc
+00
+78
+50
+7c
+00
+78
+28
+7c
+00
+68
+01
+49
+2b
+98
+00
+36
+00
+37
+c1
+84
+00
+24
+2c
+05
+d8
+78
+46
+fc
+00
+78
+25
+fc
+00
+78
+23
+fc
+00
+78
+24
+fc
+00
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+c9
+be
+20
+40
+04
+66
+68
+08
+c9
+be
+98
+46
+7c
+00
+24
+22
+85
+d5
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+c8
+a2
+68
+00
+c9
+6f
+1f
+e6
+7c
+02
+20
+22
+85
+b5
+68
+00
+c8
+a2
+68
+08
+c9
+29
+a8
+40
+0e
+00
+24
+20
+85
+d5
+09
+80
+00
+08
+19
+89
+7e
+00
+e0
+a0
+80
+00
+1f
+e9
+7e
+00
+1f
+e1
+72
+1f
+20
+22
+85
+bf
+09
+80
+00
+08
+19
+89
+7e
+00
+e0
+a0
+80
+00
+c2
+00
+05
+bb
+18
+a2
+22
+00
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+c9
+cf
+1a
+22
+0a
+00
+09
+80
+00
+18
+78
+28
+7c
+00
+db
+60
+06
+64
+1f
+ef
+7e
+00
+1f
+f1
+7e
+00
+e0
+a1
+80
+00
+78
+45
+fc
+00
+20
+23
+05
+d5
+78
+37
+fc
+00
+68
+00
+80
+17
+1f
+e0
+a2
+00
+20
+40
+3a
+13
+78
+46
+fc
+00
+20
+40
+39
+b1
+68
+00
+c9
+cf
+1f
+e2
+22
+00
+20
+20
+06
+28
+78
+4d
+fc
+00
+78
+45
+fc
+00
+20
+20
+36
+c6
+20
+20
+05
+d5
+70
+49
+c4
+01
+70
+49
+c5
+00
+20
+60
+00
+00
+68
+00
+c9
+c5
+1f
+e0
+fe
+01
+60
+00
+c9
+c5
+20
+60
+00
+00
+68
+00
+c9
+c5
+1f
+e6
+7c
+01
+24
+41
+05
+e8
+68
+00
+c9
+c5
+c1
+00
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+c9
+c5
+20
+60
+00
+00
+70
+49
+c5
+02
+20
+60
+00
+00
+da
+20
+49
+c6
+20
+40
+06
+31
+60
+08
+c9
+d0
+28
+0f
+fe
+26
+20
+40
+85
+f8
+24
+40
+85
+fc
+98
+46
+7c
+00
+24
+21
+06
+15
+68
+00
+c9
+c5
+1f
+e6
+7c
+01
+24
+21
+06
+00
+68
+00
+c9
+c5
+c0
+00
+06
+15
+20
+60
+00
+00
+58
+00
+00
+82
+20
+60
+00
+00
+58
+00
+00
+77
+20
+60
+00
+00
+58
+00
+00
+80
+20
+60
+00
+00
+58
+00
+00
+75
+20
+60
+00
+00
+68
+00
+c9
+c5
+c1
+a3
+00
+00
+70
+49
+c5
+00
+68
+08
+c9
+d0
+28
+0f
+fe
+26
+20
+40
+85
+fa
+24
+40
+85
+fe
+98
+46
+7c
+00
+24
+61
+00
+00
+68
+00
+c9
+c4
+c0
+00
+06
+21
+1f
+e0
+ff
+ff
+60
+00
+c9
+c4
+c0
+00
+06
+21
+70
+89
+55
+d0
+70
+89
+56
+e0
+70
+89
+57
+4c
+70
+89
+58
+6c
+70
+89
+59
+50
+70
+42
+80
+01
+20
+60
+00
+00
+68
+00
+c9
+c4
+c0
+01
+06
+1a
+1f
+e0
+fe
+01
+60
+00
+c9
+c4
+c0
+00
+86
+0e
+70
+89
+55
+d0
+70
+89
+56
+e0
+70
+89
+57
+4c
+70
+89
+58
+3c
+70
+89
+59
+10
+70
+42
+80
+04
+20
+60
+00
+00
+70
+89
+55
+d0
+70
+89
+56
+c0
+70
+89
+57
+4c
+70
+89
+58
+6c
+70
+89
+59
+50
+70
+42
+80
+10
+20
+60
+00
+00
+68
+08
+c9
+ce
+58
+00
+49
+c6
+98
+40
+8a
+00
+1a
+22
+7e
+00
+e0
+a0
+80
+00
+18
+40
+84
+01
+18
+41
+04
+07
+60
+08
+c9
+ce
+20
+60
+00
+00
+d8
+40
+00
+00
+df
+20
+00
+08
+1a
+22
+0c
+00
+e8
+c0
+80
+00
+98
+40
+84
+00
+c2
+00
+06
+34
+18
+49
+7e
+00
+1f
+e2
+04
+00
+c6
+93
+00
+00
+1f
+e6
+fc
+0a
+20
+40
+7f
+53
+18
+07
+fe
+00
+1f
+f2
+7e
+00
+18
+07
+04
+00
+98
+41
+84
+00
+20
+60
+00
+00
+79
+20
+00
+26
+20
+40
+03
+a9
+70
+49
+38
+01
+20
+60
+00
+00
+68
+00
+c9
+2d
+c0
+00
+b1
+d4
+68
+00
+c9
+38
+c0
+00
+86
+4c
+c0
+01
+06
+4f
+c0
+01
+86
+52
+20
+20
+3b
+31
+70
+49
+38
+11
+70
+49
+90
+aa
+20
+20
+06
+54
+70
+49
+38
+12
+70
+49
+90
+55
+20
+20
+06
+54
+70
+49
+38
+13
+70
+49
+90
+22
+68
+00
+c9
+29
+1f
+e1
+7e
+07
+60
+00
+c9
+91
+68
+02
+49
+60
+60
+02
+49
+92
+70
+49
+96
+00
+da
+20
+49
+90
+d8
+40
+00
+07
+20
+40
+04
+60
+20
+40
+04
+73
+20
+40
+04
+49
+20
+20
+31
+d4
+68
+00
+c9
+38
+c1
+7f
+80
+00
+c0
+08
+86
+66
+c0
+09
+06
+68
+c0
+09
+86
+6a
+20
+60
+00
+00
+70
+49
+38
+02
+20
+20
+05
+16
+70
+49
+38
+03
+20
+20
+05
+16
+70
+49
+38
+ff
+70
+48
+96
+39
+20
+40
+02
+e1
+68
+02
+49
+08
+20
+40
+03
+ac
+20
+20
+05
+16
+79
+3f
+80
+26
+20
+40
+03
+ae
+68
+02
+49
+50
+20
+40
+04
+66
+68
+00
+c9
+38
+c1
+ff
+80
+00
+20
+40
+06
+86
+58
+00
+00
+00
+60
+01
+49
+56
+20
+00
+07
+d0
+68
+00
+c9
+56
+c0
+7f
+85
+4a
+20
+40
+05
+1e
+24
+2c
+06
+90
+24
+37
+86
+90
+70
+41
+31
+01
+79
+20
+00
+26
+58
+00
+00
+00
+60
+01
+49
+56
+70
+09
+bd
+3a
+20
+40
+7d
+86
+20
+20
+7e
+0d
+79
+20
+00
+27
+70
+49
+90
+ff
+68
+00
+c9
+29
+60
+00
+c9
+91
+68
+02
+49
+60
+60
+02
+49
+92
+d8
+40
+00
+06
+da
+20
+49
+90
+20
+40
+04
+60
+20
+20
+04
+73
+68
+01
+49
+56
+1f
+e0
+fe
+01
+60
+01
+49
+56
+20
+40
+03
+ae
+20
+20
+06
+79
+15
+16
+aa
+55
+3c
+1b
+02
+02
+34
+e7
+09
+f6
+08
+df
+fa
+80
+46
+e7
+09
+f2
+08
+df
+fa
+80
+3e
+88
+82
+8c
+83
+e7
+09
+f0
+a3
+df
+fa
+80
+32
+e3
+09
+f6
+08
+df
+fa
+80
+78
+e3
+09
+f2
+08
+df
+fa
+80
+70
+88
+82
+8c
+83
+e3
+09
+f0
+a3
+df
+fa
+80
+64
+89
+82
+8a
+83
+e0
+a3
+f6
+08
+df
+fa
+80
+58
+89
+82
+8a
+83
+e0
+a3
+f2
+08
+df
+fa
+80
+4c
+80
+d2
+80
+fa
+80
+c6
+80
+d4
+80
+69
+80
+f2
+80
+33
+80
+10
+80
+a6
+80
+ea
+80
+9a
+80
+a8
+80
+da
+80
+e2
+80
+ca
+80
+33
+89
+82
+8a
+83
+ec
+fa
+e4
+93
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+f0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+df
+e9
+de
+e7
+80
+0d
+89
+82
+8a
+83
+e4
+93
+a3
+f6
+08
+df
+f9
+ec
+fa
+a9
+f0
+ed
+fb
+22
+89
+82
+8a
+83
+ec
+fa
+e0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+f0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+df
+ea
+de
+e8
+80
+db
+89
+82
+8a
+83
+e4
+93
+a3
+f2
+08
+df
+f9
+80
+cc
+88
+f0
+ef
+60
+01
+0e
+4e
+60
+c3
+88
+f0
+ed
+24
+02
+b4
+04
+00
+50
+b9
+f5
+82
+eb
+24
+02
+b4
+04
+00
+50
+af
+23
+23
+45
+82
+23
+90
+00
+53
+73
+bb
+01
+06
+89
+82
+8a
+83
+e0
+22
+50
+02
+e7
+22
+bb
+fe
+02
+e3
+22
+89
+82
+8a
+83
+e4
+93
+22
+bb
+01
+0c
+e5
+82
+29
+f5
+82
+e5
+83
+3a
+f5
+83
+e0
+22
+50
+06
+e9
+25
+82
+f8
+e6
+22
+bb
+fe
+06
+e9
+25
+82
+f8
+e2
+22
+e5
+82
+29
+f5
+82
+e5
+83
+3a
+f5
+83
+e4
+93
+22
+bb
+01
+06
+89
+82
+8a
+83
+f0
+22
+50
+02
+f7
+22
+bb
+fe
+01
+f3
+22
+c2
+d5
+ec
+30
+e7
+09
+b2
+d5
+e4
+c3
+9d
+fd
+e4
+9c
+fc
+ee
+30
+e7
+15
+b2
+d5
+e4
+c3
+9f
+ff
+e4
+9e
+fe
+12
+01
+df
+c3
+e4
+9d
+fd
+e4
+9c
+fc
+80
+03
+12
+01
+df
+30
+d5
+07
+c3
+e4
+9f
+ff
+e4
+9e
+fe
+22
+c5
+f0
+f8
+a3
+e0
+28
+f0
+c5
+f0
+f8
+e5
+82
+15
+82
+70
+02
+15
+83
+e0
+38
+f0
+22
+a3
+f8
+e0
+c5
+f0
+25
+f0
+f0
+e5
+82
+15
+82
+70
+02
+15
+83
+e0
+c8
+38
+f0
+e8
+22
+d0
+83
+d0
+82
+f8
+e4
+93
+70
+12
+74
+01
+93
+70
+0d
+a3
+a3
+93
+f8
+74
+01
+93
+f5
+82
+88
+83
+e4
+73
+74
+02
+93
+68
+60
+ef
+a3
+a3
+a3
+80
+df
+8a
+83
+89
+82
+e4
+73
+bc
+00
+0b
+be
+00
+29
+ef
+8d
+f0
+84
+ff
+ad
+f0
+22
+e4
+cc
+f8
+75
+f0
+08
+ef
+2f
+ff
+ee
+33
+fe
+ec
+33
+fc
+ee
+9d
+ec
+98
+40
+05
+fc
+ee
+9d
+fe
+0f
+d5
+f0
+e9
+e4
+ce
+fd
+22
+ed
+f8
+f5
+f0
+ee
+84
+20
+d2
+1c
+fe
+ad
+f0
+75
+f0
+08
+ef
+2f
+ff
+ed
+33
+fd
+40
+07
+98
+50
+06
+d5
+f0
+f2
+22
+c3
+98
+fd
+0f
+d5
+f0
+ea
+22
+78
+7f
+e4
+f6
+d8
+fd
+75
+81
+cf
+02
+02
+7b
+02
+02
+df
+e4
+93
+a3
+f8
+e4
+93
+a3
+40
+03
+f6
+80
+01
+f2
+08
+df
+f4
+80
+29
+e4
+93
+a3
+f8
+54
+07
+24
+0c
+c8
+c3
+33
+c4
+54
+0f
+44
+20
+c8
+83
+40
+04
+f4
+56
+80
+01
+46
+f6
+df
+e4
+80
+0b
+01
+02
+04
+08
+10
+20
+40
+80
+90
+02
+c0
+e4
+7e
+01
+93
+60
+bc
+a3
+ff
+54
+3f
+30
+e5
+09
+54
+1f
+fe
+e4
+93
+a3
+60
+01
+0e
+cf
+54
+c0
+25
+e0
+60
+a8
+40
+b8
+e4
+93
+a3
+fa
+e4
+93
+a3
+f8
+e4
+93
+a3
+c8
+c5
+82
+c8
+ca
+c5
+83
+ca
+f0
+a3
+c8
+c5
+82
+c8
+ca
+c5
+83
+ca
+df
+e9
+de
+e7
+80
+be
+52
+1b
+ab
+ff
+03
+72
+00
+00
+00
+ff
+14
+da
+ff
+15
+ad
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+01
+00
+f1
+ee
+12
+18
+61
+12
+10
+ba
+90
+0b
+2a
+e0
+14
+60
+20
+24
+fe
+70
+ef
+e4
+90
+4e
+f0
+f0
+ff
+ef
+24
+70
+fd
+e4
+34
+80
+8d
+82
+f5
+83
+e4
+f0
+0f
+ef
+b4
+10
+ee
+71
+47
+80
+fe
+90
+4e
+b7
+e0
+70
+06
+90
+4e
+b1
+e0
+60
+04
+71
+3b
+80
+c3
+90
+4e
+ad
+e0
+ff
+64
+01
+60
+09
+ef
+64
+02
+60
+04
+ef
+b4
+07
+04
+71
+47
+80
+ad
+71
+3b
+80
+a9
+80
+a7
+22
+90
+0b
+2b
+74
+01
+f0
+e4
+90
+0b
+2a
+f0
+22
+e4
+90
+0b
+2b
+f0
+90
+0b
+2a
+f0
+7f
+01
+fe
+d3
+ef
+94
+00
+ee
+94
+00
+40
+15
+e4
+fd
+fc
+0d
+bd
+00
+01
+0c
+bc
+04
+f8
+bd
+a6
+f5
+ef
+1f
+70
+01
+1e
+80
+e2
+22
+90
+1b
+bd
+ef
+f0
+e4
+90
+1b
+bf
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+78
+c3
+7c
+1b
+7d
+01
+7b
+ff
+7a
+02
+79
+d6
+fe
+7f
+06
+11
+d3
+90
+1b
+bd
+e0
+31
+b3
+04
+54
+14
+04
+bb
+15
+03
+bb
+2f
+03
+e4
+39
+04
+22
+3a
+03
+fd
+3b
+03
+c5
+3c
+03
+b8
+3d
+04
+34
+40
+00
+00
+04
+d9
+12
+16
+27
+12
+0d
+7c
+12
+1b
+18
+7f
+25
+e1
+4a
+90
+4e
+ad
+e0
+b4
+07
+15
+90
+49
+c1
+e0
+ff
+64
+01
+70
+02
+81
+d9
+ef
+b4
+02
+06
+90
+49
+c1
+74
+01
+f0
+02
+1b
+18
+90
+4e
+ad
+74
+01
+f0
+fb
+7a
+4e
+79
+ad
+fd
+7c
+00
+7f
+a9
+7e
+3f
+12
+0c
+cb
+7f
+23
+e1
+4a
+f1
+e4
+e4
+90
+4e
+d3
+f0
+90
+4e
+e2
+e0
+60
+11
+04
+f0
+e0
+54
+07
+f0
+30
+e0
+04
+7f
+23
+e1
+4a
+7f
+25
+e1
+4a
+90
+80
+10
+74
+01
+f0
+22
+90
+4e
+d3
+74
+01
+f0
+e4
+90
+4e
+e1
+f0
+a3
+f0
+90
+4e
+ae
+f0
+22
+12
+13
+ea
+12
+0a
+9e
+7d
+06
+7f
+80
+91
+da
+7b
+01
+7a
+4e
+79
+cb
+7d
+01
+7c
+00
+7f
+a8
+7e
+3f
+12
+0e
+d1
+02
+0d
+c8
+e4
+90
+4e
+84
+f0
+7f
+0e
+f1
+4a
+7f
+02
+f1
+4a
+90
+4e
+ad
+74
+07
+f0
+90
+1b
+be
+74
+09
+f0
+12
+08
+01
+7b
+01
+7a
+03
+79
+72
+7d
+06
+7c
+00
+7f
+96
+7e
+3f
+12
+0c
+cb
+7f
+0a
+7e
+00
+71
+53
+7b
+01
+7a
+45
+79
+3e
+7d
+06
+7c
+00
+7f
+9c
+7e
+3f
+12
+0c
+cb
+7f
+0a
+7e
+00
+71
+53
+7b
+01
+7a
+1b
+79
+be
+7d
+01
+7c
+00
+7f
+a9
+7e
+3f
+12
+0c
+cb
+90
+4e
+ae
+74
+06
+f0
+e4
+90
+4e
+b2
+f0
+22
+90
+4e
+ae
+e0
+b4
+08
+0a
+12
+0e
+90
+90
+4e
+ad
+74
+03
+f0
+22
+90
+4e
+ae
+e0
+b4
+06
+03
+02
+15
+93
+12
+16
+76
+22
+ac
+07
+ed
+44
+80
+90
+02
+18
+f0
+a3
+ef
+f0
+90
+80
+88
+74
+02
+f0
+a3
+e4
+f0
+90
+80
+8e
+f0
+a3
+f0
+90
+80
+06
+74
+02
+f0
+90
+81
+2c
+e0
+30
+e3
+f9
+7f
+00
+22
+e4
+90
+1c
+16
+f0
+a3
+f0
+e4
+ff
+f1
+21
+bf
+31
+18
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+90
+1c
+17
+74
+31
+f0
+a1
+e5
+7f
+01
+f1
+21
+bf
+5a
+18
+90
+1c
+17
+74
+5a
+f0
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+a1
+e5
+e4
+ff
+f1
+21
+ef
+64
+30
+60
+02
+a1
+e0
+7f
+01
+f1
+21
+bf
+54
+08
+90
+1c
+17
+74
+31
+f0
+a1
+e5
+7f
+01
+f1
+21
+ef
+54
+f0
+64
+d0
+70
+28
+7f
+1e
+f1
+21
+ef
+30
+e0
+08
+90
+1c
+17
+74
+d1
+f0
+80
+06
+90
+1c
+17
+74
+d0
+f0
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+80
+4e
+7f
+01
+f1
+21
+ef
+54
+f0
+ff
+bf
+50
+18
+90
+1c
+17
+74
+50
+f0
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+80
+2b
+7f
+01
+f1
+21
+bf
+02
+1f
+7f
+06
+f1
+21
+ef
+44
+80
+ff
+90
+1c
+16
+f0
+7d
+06
+91
+da
+90
+1c
+17
+74
+02
+f0
+7f
+01
+f1
+21
+ef
+64
+02
+60
+05
+12
+0a
+9e
+a1
+0c
+90
+1c
+17
+e0
+64
+d0
+60
+02
+c1
+b5
+7d
+09
+7f
+5a
+91
+da
+7d
+0d
+7f
+0a
+91
+da
+7d
+1b
+7f
+35
+91
+da
+7d
+1d
+7f
+db
+91
+da
+7d
+28
+7f
+b4
+91
+da
+7d
+29
+7f
+46
+91
+da
+7d
+2a
+7f
+96
+91
+da
+7d
+2b
+7f
+8c
+91
+da
+7d
+2c
+7f
+6e
+91
+da
+7d
+2d
+7f
+64
+91
+da
+7d
+38
+7f
+5f
+91
+da
+7d
+39
+7f
+0f
+91
+da
+7d
+3a
+7f
+32
+91
+da
+7d
+3b
+7f
+47
+91
+da
+7d
+42
+7f
+10
+91
+da
+7d
+43
+7f
+09
+91
+da
+7d
+54
+7f
+2e
+91
+da
+7d
+55
+7f
+f2
+91
+da
+7d
+61
+7f
+f4
+91
+da
+7d
+63
+7f
+70
+91
+da
+7d
+75
+7f
+52
+91
+da
+7d
+76
+7f
+41
+91
+da
+7d
+77
+7f
+ed
+91
+da
+7d
+78
+7f
+23
+91
+da
+7d
+79
+7f
+46
+91
+da
+7d
+7a
+7f
+e5
+91
+da
+7d
+7c
+7f
+48
+91
+da
+7d
+7d
+7f
+80
+91
+da
+7d
+7e
+7f
+77
+91
+da
+7d
+7f
+7f
+01
+91
+da
+7d
+0b
+e4
+ff
+91
+da
+7d
+7f
+e4
+ff
+91
+da
+7d
+09
+e4
+ff
+91
+da
+90
+1c
+17
+e0
+b4
+02
+18
+7d
+09
+7f
+5a
+91
+da
+7d
+26
+7f
+34
+91
+da
+7d
+19
+7f
+14
+91
+da
+7d
+09
+e4
+ff
+91
+da
+90
+1c
+17
+e0
+64
+50
+70
+3f
+7d
+09
+7f
+5a
+91
+da
+7d
+5b
+7f
+9a
+91
+da
+7f
+0d
+f1
+21
+ef
+64
+12
+60
+08
+7d
+0d
+7f
+12
+91
+da
+80
+ef
+7f
+0e
+f1
+21
+ef
+64
+c5
+60
+08
+7d
+0e
+7f
+c5
+91
+da
+80
+ef
+7f
+53
+f1
+21
+ef
+64
+48
+60
+08
+7d
+53
+7f
+48
+91
+da
+80
+ef
+90
+1c
+17
+e0
+ff
+22
+90
+02
+18
+ef
+f0
+90
+80
+88
+74
+01
+f0
+a3
+e4
+f0
+90
+80
+8e
+04
+f0
+a3
+e4
+f0
+90
+80
+06
+74
+02
+f0
+90
+81
+2c
+e0
+30
+e3
+f9
+90
+02
+1d
+e0
+ff
+22
+90
+1c
+03
+ef
+f0
+78
+04
+7c
+1c
+7d
+01
+7b
+ff
+7a
+02
+79
+dc
+7e
+00
+7f
+03
+11
+d3
+90
+1c
+03
+e0
+90
+1c
+06
+f0
+7b
+01
+7a
+1c
+79
+04
+7d
+03
+90
+1b
+e7
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+47
+c6
+e0
+ff
+a3
+e0
+90
+1b
+eb
+cf
+f0
+a3
+ef
+f0
+90
+1b
+ea
+e0
+ff
+14
+f0
+ef
+60
+3c
+90
+1b
+e7
+e0
+fb
+a3
+e4
+75
+f0
+01
+31
+9d
+a9
+f0
+fa
+11
+f9
+ff
+90
+1b
+eb
+e4
+75
+f0
+01
+31
+9d
+85
+f0
+82
+f5
+83
+ef
+f0
+90
+1b
+eb
+e0
+fe
+a3
+e0
+ff
+be
+47
+c9
+bf
+c4
+c6
+90
+1b
+eb
+74
+47
+f0
+a3
+74
+2e
+f0
+80
+ba
+90
+1b
+eb
+e0
+ff
+a3
+e0
+90
+47
+c6
+cf
+f0
+a3
+ef
+f0
+22
+7f
+24
+f1
+4a
+e4
+90
+4e
+ad
+f0
+22
+7b
+01
+7a
+1b
+79
+ab
+78
+30
+7c
+48
+7d
+01
+7e
+00
+7f
+12
+02
+00
+d3
+51
+73
+51
+9e
+7f
+18
+11
+1d
+40
+11
+7f
+02
+12
+07
+21
+7f
+03
+12
+07
+21
+7f
+04
+12
+07
+21
+80
+e9
+22
+7b
+01
+7a
+81
+79
+1c
+ad
+07
+e4
+90
+1c
+1b
+f0
+fe
+ef
+54
+07
+f0
+ef
+13
+13
+13
+54
+03
+fe
+f5
+82
+75
+83
+00
+12
+01
+12
+fd
+33
+95
+e0
+fc
+90
+1c
+1b
+e0
+ff
+74
+01
+7e
+00
+a8
+07
+08
+80
+05
+c3
+33
+ce
+33
+ce
+d8
+f9
+ff
+ee
+5c
+fe
+ef
+5d
+4e
+24
+ff
+22
+7f
+17
+11
+1d
+40
+03
+7f
+00
+22
+c2
+07
+7f
+07
+11
+c6
+90
+4e
+c2
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+17
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+c2
+f0
+d2
+07
+7f
+07
+11
+c6
+c2
+06
+7f
+07
+31
+a7
+90
+4e
+c2
+e0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+c2
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+c3
+f0
+90
+4e
+c3
+e0
+ff
+22
+ac
+07
+d2
+05
+31
+bc
+af
+04
+a2
+07
+92
+02
+51
+5b
+af
+04
+c2
+03
+7b
+01
+7a
+80
+79
+78
+a2
+03
+92
+01
+90
+1c
+10
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+fe
+fd
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+fd
+30
+01
+22
+90
+1c
+10
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+12
+00
+f9
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+4f
+02
+01
+3f
+90
+1c
+10
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+12
+00
+f9
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5f
+02
+01
+3f
+7f
+04
+11
+1d
+40
+03
+7f
+00
+22
+c2
+07
+7f
+07
+11
+c6
+90
+4e
+c0
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+04
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+c0
+f0
+d2
+07
+7f
+07
+11
+c6
+c2
+06
+7f
+07
+31
+a7
+90
+4e
+c0
+e0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+c0
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+c1
+f0
+90
+4e
+c1
+e0
+ff
+22
+ac
+07
+a2
+06
+92
+04
+51
+67
+af
+04
+a2
+06
+b3
+92
+03
+11
+d8
+af
+04
+c2
+05
+7b
+01
+7a
+80
+79
+70
+a2
+05
+92
+01
+01
+e2
+e4
+90
+1c
+07
+f0
+a3
+f0
+7f
+02
+11
+1d
+e4
+33
+90
+1c
+09
+f0
+7f
+03
+11
+1d
+e4
+33
+ff
+90
+1c
+09
+e0
+fe
+25
+e0
+4f
+ff
+90
+4e
+c5
+e0
+6f
+60
+5b
+90
+4e
+c6
+e0
+a3
+f0
+90
+4e
+c5
+e0
+a3
+f0
+90
+4e
+c5
+ef
+f0
+fd
+a3
+e0
+75
+f0
+04
+a4
+fb
+aa
+f0
+ed
+75
+f0
+10
+a4
+ff
+e5
+f0
+4a
+fe
+ef
+4b
+ff
+a3
+e0
+fd
+ee
+ef
+4d
+ff
+90
+1c
+07
+ee
+f0
+a3
+ef
+f0
+ee
+70
+21
+ef
+24
+f5
+60
+14
+24
+d7
+60
+10
+24
+fc
+60
+04
+24
+31
+70
+10
+90
+4e
+c8
+e0
+14
+f0
+80
+09
+90
+4e
+c8
+e0
+04
+f0
+51
+4c
+22
+90
+4e
+ad
+e0
+64
+01
+60
+06
+90
+4e
+b7
+74
+03
+f0
+22
+7b
+01
+7a
+80
+79
+74
+a2
+02
+92
+01
+01
+e2
+7b
+01
+7a
+80
+79
+7c
+a2
+04
+92
+01
+01
+e2
+e4
+ff
+51
+9e
+7f
+06
+12
+07
+21
+ef
+54
+f7
+ff
+7d
+06
+12
+04
+da
+7f
+02
+12
+07
+21
+90
+80
+81
+e4
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+77
+e0
+44
+02
+f0
+22
+e4
+90
+1c
+22
+f0
+90
+80
+81
+04
+f0
+e4
+90
+4e
+f0
+f0
+90
+4e
+f0
+e0
+04
+f0
+e0
+c3
+94
+06
+40
+03
+12
+13
+ea
+e4
+ff
+12
+07
+21
+90
+1c
+22
+ef
+f0
+64
+30
+60
+27
+e0
+64
+31
+60
+22
+90
+80
+81
+e4
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+77
+e0
+54
+fd
+f0
+90
+80
+73
+e0
+44
+02
+f0
+90
+80
+81
+74
+01
+f0
+80
+bc
+22
+e4
+ff
+51
+9e
+7f
+06
+12
+07
+21
+ef
+44
+08
+ff
+7d
+06
+12
+04
+da
+90
+80
+81
+e4
+f0
+c2
+06
+7f
+19
+31
+a7
+c2
+06
+7f
+1a
+21
+a7
+90
+1c
+1d
+ef
+f0
+7b
+01
+7a
+80
+79
+74
+11
+23
+92
+0a
+90
+1c
+1d
+e0
+ff
+a2
+0a
+b3
+92
+02
+41
+5b
+d2
+07
+7f
+07
+11
+c6
+90
+4e
+ba
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+04
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+ba
+f0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+ba
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+bb
+f0
+90
+4e
+bb
+e0
+ff
+22
+e4
+90
+1b
+ed
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+71
+30
+90
+1b
+ed
+ef
+f0
+71
+dc
+90
+1b
+ef
+ef
+f0
+91
+27
+90
+1b
+ee
+ef
+f0
+11
+62
+90
+1b
+f0
+ef
+f0
+31
+43
+90
+1b
+f1
+ef
+f0
+91
+72
+90
+1b
+ee
+e0
+ff
+25
+e0
+ff
+90
+1b
+ed
+e0
+4f
+ff
+90
+1b
+ef
+e0
+fe
+25
+e0
+25
+e0
+4f
+ff
+a3
+e0
+fe
+33
+33
+33
+54
+f8
+4f
+ff
+a3
+e0
+fe
+c4
+54
+f0
+4f
+90
+4e
+dd
+f0
+22
+d2
+07
+7f
+07
+11
+c6
+90
+4e
+bc
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+17
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+bc
+f0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+bc
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+bd
+f0
+90
+4e
+bd
+e0
+ff
+22
+d2
+07
+7f
+07
+11
+c6
+90
+4e
+be
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+1b
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+be
+f0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+be
+e0
+54
+07
+ff
+bf
+07
+06
+a3
+74
+01
+f0
+80
+07
+ef
+70
+04
+90
+4e
+bf
+f0
+90
+4e
+bf
+e0
+ff
+22
+90
+4e
+cc
+e0
+ff
+25
+e0
+f0
+e0
+ff
+c0
+07
+7f
+06
+11
+1d
+40
+04
+7e
+01
+80
+02
+7e
+00
+d0
+e0
+4e
+90
+4e
+cc
+f0
+30
+e0
+06
+90
+4e
+b7
+74
+02
+f0
+90
+4e
+cc
+e0
+64
+07
+70
+28
+90
+4e
+cb
+e0
+04
+f0
+e0
+54
+03
+f0
+70
+02
+04
+f0
+90
+4e
+cb
+e0
+90
+4e
+cd
+f0
+b1
+c8
+7b
+01
+7a
+4e
+79
+cb
+7d
+01
+7c
+00
+7f
+a8
+7e
+3f
+91
+cb
+22
+90
+1b
+c9
+ee
+f0
+a3
+ef
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+1b
+cb
+e0
+70
+02
+a3
+e0
+70
+02
+a1
+7b
+90
+1b
+c9
+e0
+fe
+a3
+e0
+ff
+44
+0f
+24
+01
+fd
+e4
+3e
+fc
+c3
+ed
+9f
+ff
+ec
+9e
+fe
+90
+1b
+d0
+f0
+a3
+ef
+f0
+90
+1b
+cb
+e0
+fc
+a3
+e0
+fd
+d3
+9f
+ec
+9e
+40
+0a
+90
+1b
+d0
+e0
+fe
+a3
+e0
+ff
+80
+04
+ae
+04
+af
+05
+90
+1b
+d0
+ee
+f0
+fc
+a3
+ef
+f0
+fd
+c3
+90
+1b
+cc
+e0
+9d
+f0
+90
+1b
+cb
+e0
+9c
+f0
+90
+1b
+c9
+e0
+fe
+a3
+e0
+ff
+90
+1b
+cd
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+17
+95
+7f
+0a
+7e
+00
+12
+03
+53
+90
+1b
+d0
+e0
+fe
+a3
+e0
+ff
+90
+1b
+ce
+ee
+8f
+f0
+12
+01
+87
+90
+1b
+ca
+e0
+2f
+f0
+90
+1b
+c9
+e0
+3e
+f0
+81
+e2
+22
+e4
+90
+1c
+19
+f0
+7b
+01
+7a
+1c
+79
+19
+7d
+01
+fc
+7f
+ac
+7e
+3f
+d1
+d1
+90
+1c
+19
+e0
+b4
+ff
+30
+f1
+c9
+90
+4f
+01
+ee
+f0
+a3
+ef
+f0
+7b
+01
+7a
+4f
+79
+01
+7d
+02
+7c
+00
+7f
+aa
+7e
+3f
+91
+cb
+90
+1c
+19
+74
+5a
+f0
+7b
+01
+7a
+1c
+79
+19
+7d
+01
+7c
+00
+7f
+ac
+7e
+3f
+91
+cb
+22
+51
+9e
+90
+4e
+c9
+e0
+ff
+64
+d0
+60
+04
+ef
+b4
+d1
+0b
+90
+4e
+cb
+e0
+04
+ff
+7d
+06
+12
+04
+da
+90
+4e
+c9
+e0
+b4
+31
+1a
+90
+4e
+cb
+e0
+b4
+01
+09
+7d
+06
+e4
+ff
+12
+04
+da
+80
+0a
+90
+4e
+cb
+e0
+ff
+7d
+06
+12
+04
+da
+90
+4e
+c9
+e0
+b4
+50
+0c
+90
+4e
+cb
+e0
+24
+03
+ff
+7d
+06
+12
+04
+da
+90
+4e
+c9
+e0
+b4
+5a
+0c
+90
+4e
+cb
+e0
+24
+03
+ff
+7d
+06
+12
+04
+da
+90
+4e
+c9
+e0
+64
+02
+70
+5d
+7d
+09
+7f
+5a
+12
+04
+da
+90
+4e
+cb
+e0
+14
+60
+1a
+14
+60
+27
+14
+60
+34
+24
+03
+70
+3e
+7d
+0d
+7f
+15
+12
+04
+da
+7d
+0e
+7f
+15
+12
+04
+da
+80
+2e
+7d
+0d
+7f
+20
+12
+04
+da
+7d
+0e
+7f
+20
+12
+04
+da
+80
+1e
+7d
+0d
+7f
+2a
+12
+04
+da
+7d
+0e
+7f
+2a
+12
+04
+da
+80
+0e
+7d
+0d
+7f
+3f
+12
+04
+da
+7d
+0e
+7f
+3f
+12
+04
+da
+7d
+09
+e4
+ff
+12
+04
+da
+41
+8a
+7b
+01
+7a
+4f
+79
+01
+7d
+02
+7c
+00
+7f
+aa
+7e
+3f
+d1
+d1
+90
+4f
+02
+e0
+04
+f0
+70
+06
+90
+4f
+01
+e0
+04
+f0
+7b
+01
+7a
+4f
+79
+01
+7d
+02
+7c
+00
+7f
+aa
+7e
+3f
+91
+cb
+90
+4f
+01
+e0
+fc
+a3
+e0
+90
+45
+3f
+f0
+ec
+a3
+f0
+7f
+0d
+02
+07
+4a
+90
+1b
+f2
+ec
+f0
+a3
+ed
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+80
+98
+74
+04
+f0
+a3
+e4
+f0
+90
+1b
+2c
+74
+a0
+f0
+a3
+ee
+f0
+a3
+ef
+f0
+90
+1b
+2f
+74
+a1
+f0
+7a
+1b
+79
+2c
+7e
+1b
+7f
+2c
+74
+2c
+fc
+74
+1b
+ff
+ec
+fe
+ef
+90
+80
+9a
+ee
+f0
+a3
+ef
+f0
+90
+1b
+f2
+e0
+fc
+a3
+e0
+fa
+ec
+ff
+ea
+fe
+ef
+90
+80
+9e
+ee
+f0
+a3
+ef
+f0
+7a
+1b
+79
+30
+7e
+1b
+7f
+30
+74
+30
+fc
+74
+1b
+ff
+ec
+fe
+ef
+90
+80
+9c
+ee
+f0
+a3
+ef
+f0
+90
+80
+90
+74
+02
+f0
+90
+80
+9c
+a3
+e0
+20
+e7
+07
+90
+80
+90
+e0
+44
+01
+f0
+90
+80
+06
+e0
+44
+04
+f0
+f1
+c1
+90
+1b
+f4
+e0
+a3
+e0
+fa
+a3
+e0
+ae
+02
+ff
+7b
+01
+7a
+1b
+79
+30
+90
+1b
+f2
+e0
+a3
+e0
+90
+1b
+e6
+f0
+90
+1b
+e1
+ee
+f0
+a3
+ef
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+1b
+e6
+e0
+ff
+14
+f0
+ef
+60
+27
+90
+1b
+e3
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+12
+00
+f9
+ff
+90
+1b
+e1
+e4
+75
+f0
+01
+12
+01
+9d
+85
+f0
+82
+f5
+83
+ef
+f0
+80
+cf
+22
+90
+81
+2c
+e0
+30
+e5
+f9
+22
+90
+4e
+41
+e0
+fe
+a3
+e0
+ff
+22
+90
+1c
+1c
+ef
+f0
+11
+1d
+92
+09
+90
+1c
+1c
+e0
+ff
+a2
+09
+b3
+92
+08
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+ff
+30
+08
+43
+24
+a0
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5d
+d0
+82
+d0
+83
+f0
+74
+a4
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+4f
+d0
+82
+d0
+83
+f0
+22
+74
+a0
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+fc
+4d
+d0
+82
+d0
+83
+f0
+74
+a4
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+e0
+ff
+ec
+f4
+fe
+ef
+5e
+f0
+22
+90
+1b
+f7
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+4e
+ad
+e0
+ff
+64
+01
+60
+0a
+ef
+64
+02
+60
+05
+ef
+64
+07
+70
+2d
+ef
+b4
+01
+10
+90
+1b
+f7
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+a3
+e0
+fd
+81
+52
+90
+4e
+ad
+e0
+b4
+07
+10
+90
+1b
+f7
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+a3
+e0
+fd
+81
+96
+80
+fe
+22
+e4
+90
+1b
+fb
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+c2
+00
+90
+4e
+ad
+e0
+ff
+64
+01
+60
+07
+ef
+64
+07
+60
+02
+21
+c4
+90
+4e
+d3
+e0
+70
+0a
+90
+4e
+ad
+e0
+64
+01
+70
+02
+21
+c4
+71
+d2
+40
+02
+21
+c4
+90
+4e
+dd
+e0
+ff
+90
+4e
+c4
+e0
+b5
+07
+19
+90
+4e
+b7
+e0
+fe
+d3
+94
+00
+40
+05
+ee
+94
+03
+40
+0a
+90
+4e
+ad
+e0
+b4
+01
+0b
+ef
+60
+08
+d2
+00
+90
+49
+b7
+74
+01
+f0
+90
+4e
+dd
+e0
+90
+4e
+c4
+f0
+e4
+90
+4e
+eb
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+4e
+ad
+e0
+b4
+01
+06
+31
+c5
+72
+00
+92
+00
+90
+4e
+ad
+e0
+b4
+07
+1e
+90
+45
+95
+e0
+b4
+01
+17
+71
+ea
+31
+c5
+72
+00
+92
+00
+90
+4e
+83
+e0
+ff
+90
+4e
+84
+e0
+6f
+60
+03
+e0
+04
+f0
+90
+4e
+c8
+e0
+60
+1f
+d2
+00
+90
+49
+b7
+74
+01
+f0
+90
+4e
+80
+f0
+90
+4e
+ad
+e0
+b4
+07
+0c
+90
+4e
+81
+74
+01
+f0
+90
+4e
+82
+74
+0a
+f0
+90
+4e
+b6
+e0
+c3
+94
+17
+40
+07
+e4
+90
+4e
+c4
+f0
+d2
+00
+30
+00
+2d
+90
+4e
+b6
+e0
+c3
+94
+18
+50
+24
+90
+49
+c2
+74
+01
+f0
+90
+4e
+ad
+e0
+ff
+64
+01
+60
+09
+ef
+64
+02
+60
+04
+ef
+b4
+07
+0c
+91
+0e
+7b
+01
+7a
+4e
+79
+21
+7d
+07
+11
+6b
+22
+e4
+90
+1c
+18
+f0
+f9
+ff
+fd
+90
+4f
+03
+e0
+04
+f0
+90
+4e
+b7
+74
+02
+f0
+90
+4f
+03
+e0
+fe
+c3
+94
+00
+40
+0f
+ee
+d3
+94
+32
+50
+09
+90
+1c
+18
+74
+05
+f0
+e4
+80
+4f
+ee
+c3
+94
+33
+40
+11
+ee
+d3
+94
+64
+50
+0b
+e4
+90
+1c
+18
+f0
+ff
+79
+05
+fd
+80
+38
+ee
+c3
+94
+65
+40
+13
+ee
+d3
+94
+96
+50
+0d
+90
+1c
+18
+74
+fb
+f0
+7f
+ff
+e4
+f9
+fd
+80
+1f
+ee
+c3
+94
+97
+40
+19
+ee
+d3
+94
+c8
+50
+13
+e4
+90
+1c
+18
+f0
+ff
+79
+fb
+7d
+ff
+ee
+b4
+c8
+05
+e4
+90
+4f
+03
+f0
+90
+4e
+e0
+e0
+70
+28
+ef
+fe
+90
+1c
+18
+e0
+fb
+ee
+eb
+ff
+c3
+e4
+9f
+ff
+e4
+9e
+90
+4e
+ed
+f0
+a3
+ef
+f0
+ed
+fe
+e9
+fd
+ee
+ed
+ff
+90
+4e
+eb
+ee
+f0
+a3
+ef
+f0
+80
+1b
+ef
+fe
+90
+1c
+18
+e0
+fb
+ee
+eb
+ff
+90
+4e
+eb
+ee
+f0
+a3
+ef
+f0
+ed
+ff
+e9
+a3
+cf
+f0
+a3
+ef
+f0
+90
+4e
+eb
+e0
+fe
+a3
+e0
+ff
+c3
+e4
+9f
+ff
+e4
+9e
+90
+4e
+eb
+f0
+a3
+ef
+f0
+a3
+e0
+fe
+a3
+e0
+ff
+c3
+e4
+9f
+ff
+e4
+9e
+90
+4e
+ed
+f0
+a3
+ef
+f0
+90
+4e
+ad
+e0
+b4
+01
+02
+51
+bd
+d3
+22
+90
+4e
+eb
+e0
+fe
+a3
+e0
+ff
+d3
+94
+06
+ee
+64
+80
+94
+80
+50
+26
+c3
+ef
+94
+fa
+ee
+64
+80
+94
+7f
+40
+1b
+a3
+e0
+fe
+a3
+e0
+ff
+d3
+94
+06
+ee
+64
+80
+94
+80
+50
+0b
+c3
+ef
+94
+fa
+ee
+64
+80
+94
+7f
+50
+06
+90
+4e
+ef
+74
+01
+f0
+90
+4e
+eb
+e0
+fe
+a3
+e0
+ff
+71
+bf
+c3
+ef
+94
+03
+ee
+94
+00
+50
+14
+a3
+e0
+fe
+a3
+e0
+ff
+71
+bf
+c3
+ef
+94
+03
+ee
+94
+00
+50
+03
+e4
+a3
+f0
+90
+4e
+ef
+e0
+64
+01
+60
+02
+61
+ab
+90
+4e
+e7
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4e
+e4
+e0
+9f
+ff
+90
+4e
+e3
+e0
+9e
+fe
+90
+4e
+ec
+e0
+2f
+ff
+90
+4e
+eb
+e0
+3e
+fe
+90
+4e
+e3
+f0
+a3
+ef
+f0
+7c
+00
+7d
+02
+12
+01
+51
+90
+4e
+e7
+ee
+f0
+a3
+ef
+f0
+90
+4e
+eb
+ee
+f0
+a3
+ef
+f0
+90
+4e
+e9
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4e
+e6
+e0
+9f
+ff
+90
+4e
+e5
+e0
+9e
+fe
+90
+4e
+ee
+e0
+2f
+ff
+90
+4e
+ed
+e0
+3e
+fe
+90
+4e
+e5
+f0
+a3
+ef
+f0
+7c
+00
+7d
+02
+12
+01
+51
+90
+4e
+e9
+ee
+f0
+a3
+ef
+f0
+90
+4e
+ed
+ee
+f0
+a3
+ef
+f0
+22
+e4
+90
+4e
+e3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+22
+d3
+ef
+94
+00
+ee
+64
+80
+94
+80
+50
+07
+c3
+e4
+9f
+ff
+e4
+9e
+fe
+22
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+07
+a3
+e0
+b5
+07
+02
+d3
+22
+c3
+22
+90
+80
+86
+74
+75
+f0
+a3
+74
+0a
+f0
+90
+80
+8a
+74
+18
+f0
+a3
+74
+02
+f0
+a3
+74
+1d
+f0
+a3
+74
+02
+f0
+90
+80
+77
+e0
+44
+02
+f0
+22
+90
+4e
+c4
+e0
+90
+4e
+21
+f0
+90
+4e
+eb
+e0
+fc
+a3
+e0
+90
+4e
+22
+f0
+ec
+ff
+33
+95
+e0
+a3
+ef
+f0
+90
+4e
+ed
+e0
+fc
+a3
+e0
+90
+4e
+24
+f0
+ec
+ff
+33
+95
+e0
+a3
+ef
+f0
+90
+4e
+c8
+e0
+90
+4e
+26
+f0
+e4
+a3
+f0
+90
+4e
+c8
+f0
+90
+4e
+b4
+f0
+a3
+f0
+22
+90
+1c
+1f
+ed
+f0
+90
+1a
+96
+74
+06
+f0
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+1f
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+0f
+7e
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+1f
+e0
+24
+02
+fd
+02
+07
+71
+90
+1c
+21
+ed
+f0
+90
+1a
+96
+74
+05
+f0
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+21
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+0f
+7e
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+21
+e0
+24
+02
+fd
+02
+07
+71
+e4
+90
+1c
+1a
+f0
+90
+4e
+b5
+e0
+04
+f0
+70
+06
+90
+4e
+b4
+e0
+04
+f0
+90
+4e
+ad
+e0
+14
+60
+60
+24
+fe
+60
+21
+24
+fd
+60
+77
+14
+60
+35
+14
+60
+02
+a1
+92
+90
+1c
+1a
+74
+09
+f0
+90
+4e
+b4
+e0
+70
+04
+a3
+e0
+64
+10
+70
+7c
+80
+78
+22
+90
+1c
+1a
+74
+02
+f0
+90
+4e
+b4
+e0
+64
+01
+70
+04
+a3
+e0
+64
+68
+70
+65
+90
+41
+31
+04
+f0
+80
+5c
+90
+1c
+1a
+74
+09
+f0
+90
+4e
+b4
+e0
+64
+04
+70
+04
+a3
+e0
+64
+b0
+70
+4a
+7f
+11
+12
+07
+4a
+90
+4e
+ae
+74
+06
+f0
+22
+90
+1c
+1a
+74
+01
+f0
+d3
+90
+4e
+b5
+e0
+94
+b0
+90
+4e
+b4
+e0
+94
+04
+40
+29
+90
+4e
+d3
+e0
+b4
+01
+22
+80
+1e
+22
+90
+1c
+1a
+74
+02
+f0
+71
+d2
+50
+15
+c3
+90
+4e
+b5
+e0
+94
+03
+90
+4e
+b4
+e0
+94
+00
+40
+06
+80
+02
+22
+22
+b1
+93
+22
+e4
+90
+4e
+b4
+f0
+a3
+f0
+90
+4e
+b7
+f0
+90
+4e
+b1
+04
+f0
+e4
+90
+4e
+ad
+f0
+7f
+19
+02
+07
+4a
+90
+4e
+b7
+e0
+60
+02
+14
+f0
+90
+4e
+b9
+e0
+04
+f0
+90
+4e
+dc
+e0
+60
+02
+04
+f0
+90
+4e
+f1
+e0
+b4
+01
+10
+a3
+e0
+70
+06
+90
+4e
+f1
+f0
+b1
+93
+90
+4e
+f2
+e0
+14
+f0
+22
+7b
+01
+7a
+49
+79
+50
+7d
+04
+7c
+00
+7f
+a4
+7e
+3f
+12
+0e
+d1
+90
+49
+50
+e0
+f4
+70
+28
+a3
+e0
+f4
+70
+23
+a3
+e0
+b4
+ff
+1e
+a3
+e0
+b4
+ff
+19
+90
+49
+50
+74
+0f
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+7f
+23
+12
+07
+4a
+90
+4e
+e2
+74
+01
+f0
+80
+05
+7f
+23
+12
+07
+4a
+90
+4e
+ad
+74
+01
+f0
+22
+7b
+01
+7a
+4e
+79
+21
+7d
+20
+7c
+00
+d1
+4a
+7b
+01
+7a
+4e
+79
+ab
+7d
+5b
+7c
+00
+d1
+4a
+90
+4f
+04
+74
+ff
+f0
+a3
+74
+5b
+f0
+22
+90
+1c
+0a
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+16
+90
+1c
+0a
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+e4
+12
+01
+3f
+80
+e0
+22
+e4
+90
+4e
+b4
+f0
+a3
+f0
+7b
+01
+7a
+45
+79
+3e
+7d
+06
+fc
+7f
+9c
+7e
+3f
+12
+0e
+d1
+90
+4e
+ad
+74
+08
+f0
+7f
+27
+02
+07
+4a
+90
+82
+80
+74
+01
+f0
+22
+90
+1b
+d2
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+1b
+d8
+74
+ff
+f5
+f0
+12
+01
+9d
+45
+f0
+60
+2a
+90
+1b
+d5
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+12
+00
+f9
+ff
+90
+1b
+d2
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+ef
+12
+01
+3f
+80
+c8
+22
+90
+1c
+0d
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+17
+90
+1c
+0d
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+74
+ff
+12
+01
+3f
+80
+df
+22
+90
+1b
+da
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+ff
+90
+1b
+e0
+e0
+fe
+ef
+c3
+9e
+50
+30
+90
+1b
+dd
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+01
+12
+fe
+90
+1b
+da
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+01
+12
+6e
+60
+03
+7f
+00
+22
+0f
+80
+c6
+7f
+01
+22
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+ff
+24
+a0
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+fc
+5d
+d0
+82
+d0
+83
+f0
+74
+a4
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+e0
+5c
+f0
+22
+90
+1b
+94
+ee
+f0
+a3
+ef
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+7e
+1b
+7f
+9b
+90
+1b
+e6
+f0
+12
+0f
+7e
+90
+1b
+98
+74
+a0
+f0
+90
+1b
+94
+e0
+ff
+a3
+e0
+90
+1b
+99
+cf
+f0
+a3
+ef
+f0
+90
+1b
+97
+e0
+24
+03
+fd
+90
+1b
+96
+e0
+34
+00
+fc
+ed
+fa
+ec
+ff
+ea
+fe
+ef
+90
+80
+98
+ee
+f0
+a3
+ef
+f0
+7d
+98
+ed
+fa
+74
+1b
+ff
+ea
+fe
+ef
+a3
+ee
+f0
+a3
+ef
+f0
+90
+80
+9e
+e4
+f0
+a3
+f0
+90
+80
+90
+04
+f0
+90
+80
+06
+e0
+44
+04
+f0
+02
+0f
+c1
+90
+1b
+ff
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+48
+2c
+e0
+fe
+a3
+e0
+ff
+90
+1c
+02
+e0
+fd
+14
+f0
+ed
+60
+32
+0f
+ef
+ac
+06
+70
+01
+0e
+14
+f5
+82
+8c
+83
+e0
+fd
+90
+1b
+ff
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+01
+9d
+a9
+f0
+fa
+ed
+12
+01
+3f
+ad
+07
+ac
+06
+bc
+48
+cd
+bd
+2c
+ca
+7e
+47
+7f
+c8
+80
+c4
+90
+48
+2c
+ee
+f0
+a3
+ef
+f0
+22
+7a
+1a
+79
+00
+90
+1c
+13
+74
+01
+f0
+a3
+74
+1a
+f0
+a3
+74
+00
+f0
+90
+48
+2e
+e0
+fe
+a3
+e0
+ff
+90
+48
+2c
+e0
+6e
+70
+03
+a3
+e0
+6f
+70
+02
+41
+18
+7b
+01
+7a
+1a
+79
+00
+7d
+03
+11
+06
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+b4
+02
+2b
+90
+1c
+14
+e4
+75
+f0
+02
+12
+01
+87
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+ff
+90
+48
+30
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+12
+01
+dd
+41
+18
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+64
+04
+70
+5b
+90
+1c
+14
+75
+f0
+01
+12
+01
+87
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+14
+fd
+7b
+01
+7a
+1a
+79
+03
+11
+06
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+1c
+13
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+fd
+7c
+00
+90
+48
+33
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+01
+dd
+41
+18
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+64
+05
+70
+5b
+90
+1c
+14
+75
+f0
+01
+12
+01
+87
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+14
+fd
+7b
+01
+7a
+1a
+79
+03
+11
+06
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+1c
+13
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+fd
+7c
+00
+90
+48
+3c
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+01
+dd
+80
+6f
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+64
+03
+70
+5b
+90
+1c
+14
+75
+f0
+01
+12
+01
+87
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+14
+fd
+7b
+01
+7a
+1a
+79
+03
+11
+06
+90
+1c
+13
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+1c
+13
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+00
+f9
+fd
+7c
+00
+90
+48
+3f
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+01
+dd
+80
+02
+80
+fe
+90
+48
+98
+e0
+fe
+a3
+e0
+ff
+90
+48
+9a
+e0
+6e
+70
+03
+a3
+e0
+6f
+60
+21
+90
+48
+36
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+36
+12
+01
+d9
+90
+48
+9b
+e0
+04
+f0
+70
+06
+90
+48
+9a
+e0
+04
+f0
+80
+cb
+90
+48
+9c
+e0
+ff
+a3
+e0
+6f
+60
+19
+90
+48
+39
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+0b
+12
+01
+d9
+90
+48
+9d
+e0
+04
+f0
+80
+dd
+22
+90
+1c
+1e
+ed
+f0
+90
+1a
+96
+74
+03
+f0
+90
+1c
+1e
+e0
+60
+39
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+1e
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+0f
+7e
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+1e
+e0
+24
+02
+fd
+12
+07
+71
+22
+90
+03
+f0
+e0
+ff
+22
+90
+1c
+20
+ed
+f0
+90
+1a
+96
+74
+04
+f0
+90
+47
+c6
+e0
+fe
+a3
+e0
+ff
+90
+47
+c4
+e0
+b5
+06
+f1
+a3
+e0
+b5
+07
+ec
+90
+1c
+20
+e0
+fd
+90
+1a
+97
+f0
+7e
+1a
+7f
+98
+90
+1b
+e6
+ed
+f0
+12
+0f
+7e
+7b
+01
+7a
+1a
+79
+96
+90
+1c
+20
+e0
+24
+02
+fd
+02
+07
+71
+90
+42
+d1
+e0
+fe
+a3
+e0
+ff
+22
+90
+4e
+43
+e0
+fe
+a3
+e0
+ff
+22
+e4
+90
+4e
+e3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+4e
+ef
+f0
+90
+4e
+eb
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+22
+37
+1b
+aa
+55
+01
+00
+30
+40
+04
+aa
+55
+01
+00
+00
+40
+09
+aa
+55
+02
+00
+10
+40
+40
+0c
+aa
+55
+03
+00
+14
+40
+80
+13
+f0
+aa
+55
+01
+00
+20
+40
+20
+aa
+55
+08
+00
+22
+40
+40
+08
+08
+80
+0e
+f2
+04
+20
+aa
+55
+01
+00
+32
+40
+20
+aa
+55
+02
+00
+3e
+40
+88
+03
+aa
+55
+01
+00
+e2
+46
+00
+aa
+55
+01
+00
+0d
+47
+01
+aa
+55
+01
+00
+25
+46
+00
+aa
+55
+01
+00
+32
+41
+42
+aa
+55
+01
+00
+d4
+08
+00
+aa
+55
+01
+00
+9f
+00
+00
+aa
+55
+01
+00
+d5
+08
+00
+aa
+55
+01
+00
+16
+00
+27
+aa
+55
+01
+00
+15
+47
+ff
+aa
+55
+01
+00
+0e
+47
+ff
+aa
+55
+01
+00
+31
+41
+01
+aa
+55
+02
+00
+12
+42
+20
+03
+aa
+55
+01
+00
+f6
+41
+08
+aa
+55
+02
+00
+f4
+41
+00
+00
+aa
+55
+01
+00
+33
+41
+00
+aa
+55
+02
+00
+94
+48
+02
+01
+aa
+55
+02
+00
+cf
+42
+04
+30
+aa
+55
+04
+00
+41
+4e
+9f
+3e
+cd
+4d
+aa
+55
+01
+00
+21
+45
+00
+aa
+55
+02
+00
+29
+45
+07
+00
+aa
+55
+01
+00
+96
+45
+50
+aa
+55
+01
+00
+f8
+44
+1a
+aa
+55
+06
+00
+3e
+45
+ab
+b9
+12
+0e
+10
+26
+aa
+55
+0a
+00
+40
+44
+09
+42
+4c
+45
+20
+4d
+6f
+75
+73
+65
+aa
+55
+01
+00
+4c
+45
+17
+aa
+55
+01
+00
+20
+45
+00
+aa
+55
+07
+00
+22
+45
+01
+00
+00
+00
+00
+00
+00
+aa
+55
+18
+00
+ff
+43
+00
+1f
+03
+19
+c2
+03
+03
+03
+12
+18
+02
+01
+05
+0a
+09
+42
+4c
+45
+20
+4d
+6f
+75
+73
+65
+aa
+55
+0c
+00
+20
+44
+1f
+0a
+09
+42
+4c
+45
+20
+4d
+6f
+75
+73
+65
+aa
+55
+b5
+01
+40
+4c
+01
+00
+02
+00
+28
+02
+00
+18
+02
+00
+02
+03
+28
+01
+0a
+03
+00
+02
+00
+2a
+09
+42
+4c
+45
+20
+4d
+6f
+75
+73
+65
+04
+00
+02
+03
+28
+01
+02
+05
+00
+02
+01
+2a
+02
+c2
+03
+06
+00
+02
+03
+28
+01
+02
+07
+00
+02
+04
+2a
+08
+06
+00
+06
+00
+64
+00
+2c
+01
+08
+00
+02
+00
+28
+02
+01
+18
+09
+00
+02
+03
+28
+01
+20
+0a
+00
+02
+05
+2a
+00
+0b
+00
+02
+02
+29
+02
+00
+00
+0c
+00
+02
+00
+28
+02
+0a
+18
+0d
+00
+02
+03
+28
+01
+02
+0e
+00
+02
+29
+2a
+06
+59
+69
+43
+68
+69
+70
+0f
+00
+02
+03
+28
+01
+02
+10
+00
+02
+50
+2a
+07
+02
+35
+12
+22
+aa
+01
+00
+11
+00
+02
+00
+28
+02
+0f
+18
+12
+00
+02
+03
+28
+01
+02
+13
+00
+02
+19
+2a
+01
+33
+14
+00
+02
+02
+29
+02
+00
+00
+15
+00
+02
+00
+28
+02
+12
+18
+16
+00
+02
+03
+28
+01
+06
+17
+00
+02
+4e
+2a
+01
+01
+18
+00
+02
+03
+28
+01
+1a
+19
+00
+02
+4d
+2a
+07
+00
+00
+00
+00
+00
+00
+00
+1a
+00
+02
+02
+29
+02
+00
+00
+1b
+00
+02
+08
+29
+02
+01
+01
+1c
+00
+02
+03
+28
+01
+0a
+1d
+00
+02
+4b
+2a
+45
+05
+01
+09
+02
+a1
+01
+85
+01
+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
+95
+01
+81
+06
+c0
+c0
+1e
+00
+02
+03
+28
+01
+1a
+1f
+00
+02
+33
+2a
+08
+00
+00
+00
+00
+00
+00
+00
+00
+20
+00
+02
+02
+29
+02
+01
+00
+21
+00
+02
+03
+28
+01
+02
+22
+00
+02
+4a
+2a
+04
+01
+01
+00
+03
+23
+00
+02
+03
+28
+01
+04
+24
+00
+02
+4c
+2a
+00
+25
+00
+02
+03
+28
+01
+12
+26
+00
+02
+4d
+2a
+07
+00
+00
+00
+00
+00
+00
+00
+27
+00
+02
+02
+29
+02
+00
+00
+28
+00
+02
+08
+29
+02
+11
+01
+29
+00
+02
+03
+28
+01
+0e
+2a
+00
+02
+4d
+2a
+07
+00
+00
+00
+00
+00
+00
+00
+2b
+00
+02
+08
+29
+02
+11
+02
+00
+00
+aa
+55
+02
+00
+37
+46
+40
+4c
+aa
+55
+01
+00
+48
+4e
+50
+aa
+55
+08
+00
+8d
+45
+07
+00
+07
+00
+05
+00
+2c
+01
+aa
+55
+01
+00
+20
+4e
+00
+aa
+55
+02
+00
+4e
+4e
+19
+00
+aa
+55
+02
+00
+8b
+45
+22
+00
+aa
+55
+01
+00
+6c
+45
+01
+aa
+55
+01
+00
+a8
+45
+01
+aa
+55
+01
+00
+80
+42
+02
+aa
+55
+01
+00
+6f
+49
+01
+aa
+55
+01
+00
+29
+49
+01
+aa
+55
+01
+00
+6e
+49
+04
+aa
+55
+01
+00
+65
+49
+00
+aa
+55
+02
+00
+2b
+49
+c0
+12
+aa
+55
+03
+00
+4d
+49
+19
+19
+1c
+aa
+55
+10
+00
+39
+49
+00
+13
+2c
+42
+06
+15
+36
+48
+0f
+1a
+3a
+4c
+11
+23
+31
+4d
+aa
+55
+01
+00
+38
+49
+ff
+aa
+55
+04
+00
+34
+49
+20
+15
+10
+05
+aa
+55
+0a
+00
+90
+49
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+aa
+55
+08
+00
+58
+49
+00
+48
+60
+00
+00
+00
+00
+00
+aa
+55
+03
+00
+15
+42
+8f
+1b
+ce
+aa
+55
+04
+00
+19
+42
+0a
+0b
+ef
+0f
+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
+02
+12
+00
+00
+02
+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
+02
+00
+60
+4e
+00
+40
+aa
+55
+05
+00
+a9
+45
+09
+59
+00
+b0
+00
+aa
+55
+02
+00
+a8
+42
+30
+6f
+aa
+55
+01
+00
+b6
+42
+20
+aa
+55
+01
+00
+81
+42
+01
+aa
+55
+0b
+00
+69
+4e
+55
+d0
+56
+c0
+57
+4c
+58
+3c
+59
+50
+ff
+aa
+55
+02
+00
+63
+41
+69
+4e
+e5
+77
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ef
+b6
Index: doc/readme.txt
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: doc/readme.txt
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/doc/readme.txt	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/doc/readme.txt	(working copy)

Property changes on: doc/readme.txt
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: doc/testTool.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: doc/testTool.jpg
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/doc/testTool.jpg	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/doc/testTool.jpg	(working copy)

Property changes on: doc/testTool.jpg
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: doc/testVideo.mp4
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: doc/testVideo.mp4
===================================================================
--- /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/doc/testVideo.mp4	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/doc/testVideo.mp4	(working copy)

Property changes on: doc/testVideo.mp4
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
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/1098_Mouse_Universal_Board/regedr/e.exe	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/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/1098_Mouse_Universal_Board/regedr/geneep.exe	(nonexistent)
+++ /branch/mouse_project/TestTools/1098_Mouse_Universal_Board/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
