diff --git a/._crt0.S.swn b/._crt0.S.swn new file mode 100644 index 0000000..b86f7da Binary files /dev/null and b/._crt0.S.swn differ diff --git a/._crt0.S.swo b/._crt0.S.swo new file mode 100644 index 0000000..e25f931 Binary files /dev/null and b/._crt0.S.swo differ diff --git a/._crt0.S.swp b/._crt0.S.swp new file mode 100644 index 0000000..5830e43 Binary files /dev/null and b/._crt0.S.swp differ diff --git a/._rvmain.cpp.swm b/._rvmain.cpp.swm new file mode 100644 index 0000000..ee08e76 Binary files /dev/null and b/._rvmain.cpp.swm differ diff --git a/._rvmain.cpp.swn b/._rvmain.cpp.swn new file mode 100644 index 0000000..d0b40fb Binary files /dev/null and b/._rvmain.cpp.swn differ diff --git a/._rvmain.cpp.swo b/._rvmain.cpp.swo new file mode 100644 index 0000000..afb7b4f Binary files /dev/null and b/._rvmain.cpp.swo differ diff --git a/Make.rules b/Make.rules new file mode 100644 index 0000000..c2f83f2 --- /dev/null +++ b/Make.rules @@ -0,0 +1,81 @@ + +ARCH=riscv64-unknown-elf +GNU_DIR=$(HOME)/riscv/riscv/ +GNU_BIN=$(GNU_DIR)/bin + + +CC=$(GNU_BIN)/$(ARCH)-gcc +CXX=$(GNU_BIN)/$(ARCH)-g++ +AS=$(GNU_BIN)/$(ARCH)-as +LD=$(GNU_BIN)/$(ARCH)-ld +OBJCOPY=$(GNU_BIN)/$(ARCH)-objcopy +OBJDUMP=$(GNU_BIN)/$(ARCH)-objdump +SIZE=$(GNU_BIN)/$(ARCH)-size +AR=$(GNU_BIN)/$(ARCH)-ar +RANLIB=$(GNU_BIN)/$(ARCH)-ranlib + + +CFLAGS+=-ffreestanding +CFLAGS+=-fno-pic +CFLAGS+=-march=rv32i -mabi=ilp32 +CFLAGS+= -g + + +LDFLAGS+=-nostdlib +LDFLAGS+=-Wl,-Ttext=0x80000000 + +# see: https://github.com/riscv/riscv-gcc/issues/120 +#LDFLAGS+=-Wl,--no-relax + + + +ASFLAGS+=$(CFLAGS) +CXXFLAGS+=$(CFLAGS) + +CLEAN_DIRS=$(SUBDIRS:%=clean-%) +ALL_DIRS=$(SUBDIRS:%=all-%) + +OBJDUMPFLAGS+=-Mnumeric,no-aliases + +.PHONY: all clean world $(CLEAN_DIRS) $(ALL_DIRS) + + +%.bin : % + $(OBJCOPY) $< -O binary $@ + +%.lst : % + $(OBJDUMP) $(OBJDUMPFLAGS) -dr --disassemble-all $< > $<.lst + +% : %.o + $(LINK.cc) $(LDFLAGS) -o $@ $^ $(LDLIBS) + $(SIZE) -x -A $@ + +%.s: %.c + $(COMPILE.c) -S -o $@ $< + +%.s: %.cc + $(COMPILE.cc) -S -o $@ $< + +%.o: %.c + $(COMPILE.c) -o $@ $< + +%.o: %.cc + $(COMPILE.cc) -o $@ $< + +%.srec: % + $(OBJCOPY) $< -O srec $@ + + + + +all:: $(ALL_DIRS) + +clean:: $(CLEAN_DIRS) + +$(ALL_DIRS):: + $(MAKE) -C $(@:all-%=%) all + +$(CLEAN_DIRS):: + $(MAKE) -C $(@:clean-%=%) clean + +world:: clean all diff --git a/Make.rules-kopia b/Make.rules-kopia new file mode 100644 index 0000000..2bd12e9 --- /dev/null +++ b/Make.rules-kopia @@ -0,0 +1,81 @@ + +ARCH=riscv64-unknown-elf +GNU_DIR=$(HOME)/riscv/riscv/ +GNU_BIN=$(GNU_DIR)/bin + + +CC=$(GNU_BIN)/$(ARCH)-gcc +CXX=$(GNU_BIN)/$(ARCH)-g++ +AS=$(GNU_BIN)/$(ARCH)-as +LD=$(GNU_BIN)/$(ARCH)-ld +OBJCOPY=$(GNU_BIN)/$(ARCH)-objcopy +OBJDUMP=$(GNU_BIN)/$(ARCH)-objdump +SIZE=$(GNU_BIN)/$(ARCH)-size +AR=$(GNU_BIN)/$(ARCH)-ar +RANLIB=$(GNU_BIN)/$(ARCH)-ranlib + + +CFLAGS+=-ffreestanding +CFLAGS+=-fno-pic +CFLAGS+=-march=rv32i -mabi=ilp32 +CFLAGS+= -g + + +LDFLAGS+=-nostdlib +LDFLAGS+=-Wl,-Ttext=0x00000000 + +# see: https://github.com/riscv/riscv-gcc/issues/120 +#LDFLAGS+=-Wl,--no-relax + + + +ASFLAGS+=$(CFLAGS) +CXXFLAGS+=$(CFLAGS) + +CLEAN_DIRS=$(SUBDIRS:%=clean-%) +ALL_DIRS=$(SUBDIRS:%=all-%) + +OBJDUMPFLAGS+=-Mnumeric,no-aliases + +.PHONY: all clean world $(CLEAN_DIRS) $(ALL_DIRS) + + +%.bin : % + $(OBJCOPY) $< -O binary $@ + +%.lst : % + $(OBJDUMP) $(OBJDUMPFLAGS) -dr --disassemble-all $< > $<.lst + +% : %.o + $(LINK.cc) $(LDFLAGS) -o $@ $^ $(LDLIBS) + $(SIZE) -x -A $@ + +%.s: %.c + $(COMPILE.c) -S -o $@ $< + +%.s: %.cc + $(COMPILE.cc) -S -o $@ $< + +%.o: %.c + $(COMPILE.c) -o $@ $< + +%.o: %.cc + $(COMPILE.cc) -o $@ $< + +%.srec: % + $(OBJCOPY) $< -O srec $@ + + + + +all:: $(ALL_DIRS) + +clean:: $(CLEAN_DIRS) + +$(ALL_DIRS):: + $(MAKE) -C $(@:all-%=%) all + +$(CLEAN_DIRS):: + $(MAKE) -C $(@:clean-%=%) clean + +world:: clean all diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1456d22 --- /dev/null +++ b/Makefile @@ -0,0 +1,27 @@ +TOP=./ +include $(TOP)/Make.rules + +LDLIBS= +#CFLAGS+=-O0 -g +# CFLAGS+=-Og -ggdb3 +CFLAGS+=-O0 -ggdb3 + +LDFLAGS+=-Wl,--no-relax +LDFLAGS+=-Wl,-Ttext=0x80000000,-Tdata=0x80010000 +# LDFLAGS+=-T murax_128k_ram.ld + +PROGS=prog prog.bin prog.lst + +all:: $(PROGS) + +prog: _crt0.o _rvmain.o myfunc.o + $(LINK.cc) -o $@ $^ $(LDLIBS) + $(SIZE) -A -x $@ + +clean:: + rm -f $(PROGS) *.o *.s *.lst *.bin *.srec *.dis + +.PHONY: run +run: prog.bin + ../../../src/rvddt -l0x3000 -f prog.bin + diff --git a/Murax.scala b/Murax.scala new file mode 100644 index 0000000..2260833 --- /dev/null +++ b/Murax.scala @@ -0,0 +1,543 @@ +package vexriscv.demo + +import spinal.core._ +import spinal.lib._ +import spinal.lib.bus.amba3.apb._ +import spinal.lib.bus.misc.SizeMapping +import spinal.lib.bus.simple.PipelinedMemoryBus +import spinal.lib.com.jtag.Jtag +import spinal.lib.com.spi.ddr.SpiXdrMaster +import spinal.lib.com.uart._ +import spinal.lib.io.{InOutWrapper, TriStateArray} +import spinal.lib.misc.{InterruptCtrl, Prescaler, Timer} +import spinal.lib.soc.pinsec.{PinsecTimerCtrl, PinsecTimerCtrlExternal} +import vexriscv.plugin._ +import vexriscv.{VexRiscv, VexRiscvConfig, plugin} +import spinal.lib.com.spi.ddr._ +import spinal.lib.bus.simple._ +import scala.collection.mutable.ArrayBuffer +import scala.collection.Seq + +/** + * Created by PIC32F_USER on 28/07/2017. + * + * Murax is a very light SoC which could work without any external component. + * - ICE40-hx8k + icestorm => 53 Mhz, 2142 LC + * - 0.37 DMIPS/Mhz + * - 8 kB of on-chip ram + * - JTAG debugger (eclipse/GDB/openocd ready) + * - Interrupt support + * - APB bus for peripherals + * - 32 GPIO pin + * - one 16 bits prescaler, two 16 bits timers + * - one UART with tx/rx fifo + */ + + +case class MuraxConfig(coreFrequency : HertzNumber, + onChipRamSize : BigInt, + onChipRamHexFile : String, + pipelineDBus : Boolean, + pipelineMainBus : Boolean, + pipelineApbBridge : Boolean, + gpioWidth : Int, + uartCtrlConfig : UartCtrlMemoryMappedConfig, + xipConfig : SpiXdrMasterCtrl.MemoryMappingParameters, + hardwareBreakpointCount : Int, + cpuPlugins : ArrayBuffer[Plugin[VexRiscv]]){ + require(pipelineApbBridge || pipelineMainBus, "At least pipelineMainBus or pipelineApbBridge should be enable to avoid wipe transactions") + val genXip = xipConfig != null + +} + + + +object MuraxConfig{ + def default : MuraxConfig = default(false, false) + def default(withXip : Boolean = false, bigEndian : Boolean = false) = MuraxConfig( + coreFrequency = 12 MHz, + onChipRamSize = 128 kB, + onChipRamHexFile = null, + pipelineDBus = true, + pipelineMainBus = false, + pipelineApbBridge = true, + gpioWidth = 32, + xipConfig = ifGen(withXip) (SpiXdrMasterCtrl.MemoryMappingParameters( + SpiXdrMasterCtrl.Parameters(8, 12, SpiXdrParameter(2, 2, 1)).addFullDuplex(0,1,false), + cmdFifoDepth = 32, + rspFifoDepth = 32, + xip = SpiXdrMasterCtrl.XipBusParameters(addressWidth = 24, lengthWidth = 2) + )), + hardwareBreakpointCount = if(withXip) 3 else 0, + cpuPlugins = ArrayBuffer( //DebugPlugin added by the toplevel + new IBusSimplePlugin( + resetVector = if(withXip) 0xF001E000l else 0x00000000l, + cmdForkOnSecondStage = true, + cmdForkPersistence = withXip, //Required by the Xip controller + prediction = NONE, + catchAccessFault = false, + compressedGen = false, + bigEndian = bigEndian + ), + new DBusSimplePlugin( + catchAddressMisaligned = false, + catchAccessFault = false, + earlyInjection = false, + bigEndian = bigEndian + ), + new CsrPlugin(CsrPluginConfig.smallest(mtvecInit = if(withXip) 0xE0040020l else 0x00000020l)), + new DecoderSimplePlugin( + catchIllegalInstruction = false + ), + new RegFilePlugin( + regFileReadyKind = plugin.SYNC, + zeroBoot = false + ), + new IntAluPlugin, + new SrcPlugin( + separatedAddSub = false, + executeInsertion = false + ), + new LightShifterPlugin, + new HazardSimplePlugin( + bypassExecute = false, + bypassMemory = false, + bypassWriteBack = false, + bypassWriteBackBuffer = false, + pessimisticUseSrc = false, + pessimisticWriteRegFile = false, + pessimisticAddressMatch = false + ), + new BranchPlugin( + earlyBranch = false, + catchAddressMisaligned = false + ), + new YamlPlugin("cpu0.yaml") + ), + uartCtrlConfig = UartCtrlMemoryMappedConfig( + uartCtrlConfig = UartCtrlGenerics( + dataWidthMax = 8, + clockDividerWidth = 20, + preSamplingSize = 1, + samplingSize = 3, + postSamplingSize = 1 + ), + initConfig = UartCtrlInitConfig( + baudrate = 115200, + dataLength = 7, //7 => 8 bits + parity = UartParityType.NONE, + stop = UartStopType.ONE + ), + busCanWriteClockDividerConfig = false, + busCanWriteFrameConfig = false, + txFifoDepth = 16, + rxFifoDepth = 16 + ) + + ) + + def fast = { + val config = default + + //Replace HazardSimplePlugin to get datapath bypass + config.cpuPlugins(config.cpuPlugins.indexWhere(_.isInstanceOf[HazardSimplePlugin])) = new HazardSimplePlugin( + bypassExecute = true, + bypassMemory = true, + bypassWriteBack = true, + bypassWriteBackBuffer = true + ) +// config.cpuPlugins(config.cpuPlugins.indexWhere(_.isInstanceOf[LightShifterPlugin])) = new FullBarrelShifterPlugin() + + config + } +} + + +case class Murax(config : MuraxConfig) extends Component{ + import config._ + + val io = new Bundle { + //Clocks / reset + val asyncReset = in Bool() + val mainClk = in Bool() + + //Main components IO + val jtag = slave(Jtag()) + + //Peripherals IO + val gpioA = master(TriStateArray(gpioWidth bits)) + val uart = master(Uart()) + + val xip = ifGen(genXip)(master(SpiXdrMaster(xipConfig.ctrl.spi))) + } + + + val resetCtrlClockDomain = ClockDomain( + clock = io.mainClk, + config = ClockDomainConfig( + resetKind = BOOT + ) + ) + + val resetCtrl = new ClockingArea(resetCtrlClockDomain) { + val mainClkResetUnbuffered = False + + //Implement an counter to keep the reset axiResetOrder high 64 cycles + // Also this counter will automatically do a reset when the system boot. + val systemClkResetCounter = Reg(UInt(6 bits)) init(0) + when(systemClkResetCounter =/= U(systemClkResetCounter.range -> true)){ + systemClkResetCounter := systemClkResetCounter + 1 + mainClkResetUnbuffered := True + } + when(BufferCC(io.asyncReset)){ + systemClkResetCounter := 0 + } + + //Create all reset used later in the design + val mainClkReset = RegNext(mainClkResetUnbuffered) + val systemReset = RegNext(mainClkResetUnbuffered) + } + + + val systemClockDomain = ClockDomain( + clock = io.mainClk, + reset = resetCtrl.systemReset, + frequency = FixedFrequency(coreFrequency) + ) + + val debugClockDomain = ClockDomain( + clock = io.mainClk, + reset = resetCtrl.mainClkReset, + frequency = FixedFrequency(coreFrequency) + ) + + val system = new ClockingArea(systemClockDomain) { + val pipelinedMemoryBusConfig = PipelinedMemoryBusConfig( + addressWidth = 32, + dataWidth = 32 + ) + + val bigEndianDBus = config.cpuPlugins.exists(_ match{ case plugin : DBusSimplePlugin => plugin.bigEndian case _ => false}) + + //Arbiter of the cpu dBus/iBus to drive the mainBus + //Priority to dBus, !! cmd transactions can change on the fly !! + val mainBusArbiter = new MuraxMasterArbiter(pipelinedMemoryBusConfig, bigEndianDBus) + + //Instanciate the CPU + val cpu = new VexRiscv( + config = VexRiscvConfig( + plugins = cpuPlugins += new DebugPlugin(debugClockDomain, hardwareBreakpointCount) + ) + ) + + //Checkout plugins used to instanciate the CPU to connect them to the SoC + val timerInterrupt = False + val externalInterrupt = False + for(plugin <- cpu.plugins) plugin match{ + case plugin : IBusSimplePlugin => + mainBusArbiter.io.iBus.cmd <> plugin.iBus.cmd + mainBusArbiter.io.iBus.rsp <> plugin.iBus.rsp + case plugin : DBusSimplePlugin => { + if(!pipelineDBus) + mainBusArbiter.io.dBus <> plugin.dBus + else { + mainBusArbiter.io.dBus.cmd << plugin.dBus.cmd.halfPipe() + mainBusArbiter.io.dBus.rsp <> plugin.dBus.rsp + } + } + case plugin : CsrPlugin => { + plugin.externalInterrupt := externalInterrupt + plugin.timerInterrupt := timerInterrupt + } + case plugin : DebugPlugin => plugin.debugClockDomain{ + resetCtrl.systemReset setWhen(RegNext(plugin.io.resetOut)) + io.jtag <> plugin.io.bus.fromJtag() + } + case _ => + } + + + + //****** MainBus slaves ******** + val mainBusMapping = ArrayBuffer[(PipelinedMemoryBus,SizeMapping)]() + val ram = new MuraxPipelinedMemoryBusRam( + onChipRamSize = onChipRamSize, + onChipRamHexFile = onChipRamHexFile, + pipelinedMemoryBusConfig = pipelinedMemoryBusConfig, + bigEndian = bigEndianDBus + ) + mainBusMapping += ram.io.bus -> (0x00000000l, onChipRamSize) + + val apbBridge = new PipelinedMemoryBusToApbBridge( + apb3Config = Apb3Config( + addressWidth = 20, + dataWidth = 32 + ), + pipelineBridge = pipelineApbBridge, + pipelinedMemoryBusConfig = pipelinedMemoryBusConfig + ) + mainBusMapping += apbBridge.io.pipelinedMemoryBus -> (0xF0000000l, 1 MB) + + + + //******** APB peripherals ********* + val apbMapping = ArrayBuffer[(Apb3, SizeMapping)]() + val gpioACtrl = Apb3Gpio(gpioWidth = gpioWidth, withReadSync = true) + io.gpioA <> gpioACtrl.io.gpio + apbMapping += gpioACtrl.io.apb -> (0x00000, 4 kB) + + val uartCtrl = Apb3UartCtrl(uartCtrlConfig) + uartCtrl.io.uart <> io.uart + externalInterrupt setWhen(uartCtrl.io.interrupt) + apbMapping += uartCtrl.io.apb -> (0x10000, 4 kB) + + val timer = new MuraxApb3Timer() + timerInterrupt setWhen(timer.io.interrupt) + apbMapping += timer.io.apb -> (0x20000, 4 kB) + + val xip = ifGen(genXip)(new Area{ + val ctrl = Apb3SpiXdrMasterCtrl(xipConfig) + ctrl.io.spi <> io.xip + externalInterrupt setWhen(ctrl.io.interrupt) + apbMapping += ctrl.io.apb -> (0x1F000, 4 kB) + + val accessBus = new PipelinedMemoryBus(PipelinedMemoryBusConfig(24,32)) + mainBusMapping += accessBus -> (0xE0000000l, 16 MB) + + ctrl.io.xip.fromPipelinedMemoryBus() << accessBus + val bootloader = Apb3Rom("src/main/c/murax/xipBootloader/crt.bin") + apbMapping += bootloader.io.apb -> (0x1E000, 4 kB) + }) + + + + //******** Memory mappings ********* + val apbDecoder = Apb3Decoder( + master = apbBridge.io.apb, + slaves = apbMapping.toSeq + ) + + val mainBusDecoder = new Area { + val logic = new MuraxPipelinedMemoryBusDecoder( + master = mainBusArbiter.io.masterBus, + specification = mainBusMapping.toSeq, + pipelineMaster = pipelineMainBus + ) + } + } +} + + + +object Murax{ + def main(args: Array[String]) { + SpinalVerilog(Murax(MuraxConfig.default)) + } +} + +object MuraxCfu{ + def main(args: Array[String]) { + SpinalVerilog{ + val config = MuraxConfig.default + config.cpuPlugins += new CfuPlugin( + stageCount = 1, + allowZeroLatency = true, + encodings = List( + CfuPluginEncoding ( + instruction = M"-------------------------0001011", + functionId = List(14 downto 12), + input2Kind = CfuPlugin.Input2Kind.RS + ) + ), + busParameter = CfuBusParameter( + CFU_VERSION = 0, + CFU_INTERFACE_ID_W = 0, + CFU_FUNCTION_ID_W = 3, + CFU_REORDER_ID_W = 0, + CFU_REQ_RESP_ID_W = 0, + CFU_INPUTS = 2, + CFU_INPUT_DATA_W = 32, + CFU_OUTPUTS = 1, + CFU_OUTPUT_DATA_W = 32, + CFU_FLOW_REQ_READY_ALWAYS = false, + CFU_FLOW_RESP_READY_ALWAYS = false, + CFU_WITH_STATUS = true, + CFU_RAW_INSN_W = 32, + CFU_CFU_ID_W = 4, + CFU_STATE_INDEX_NUM = 5 + ) + ) + + val toplevel = Murax(config) + + toplevel.rework { + for (plugin <- toplevel.system.cpu.plugins) plugin match { + case plugin: CfuPlugin => plugin.bus.toIo().setName("miaou") + case _ => + } + } + + toplevel + } + } +} + + +object Murax_iCE40_hx8k_breakout_board_xip{ + + case class SB_GB() extends BlackBox{ + val USER_SIGNAL_TO_GLOBAL_BUFFER = in Bool() + val GLOBAL_BUFFER_OUTPUT = out Bool() + } + + case class SB_IO_SCLK() extends BlackBox{ + addGeneric("PIN_TYPE", B"010000") + val PACKAGE_PIN = out Bool() + val OUTPUT_CLK = in Bool() + val CLOCK_ENABLE = in Bool() + val D_OUT_0 = in Bool() + val D_OUT_1 = in Bool() + setDefinitionName("SB_IO") + } + + case class SB_IO_DATA() extends BlackBox{ + addGeneric("PIN_TYPE", B"110000") + val PACKAGE_PIN = inout(Analog(Bool)) + val CLOCK_ENABLE = in Bool() + val INPUT_CLK = in Bool() + val OUTPUT_CLK = in Bool() + val OUTPUT_ENABLE = in Bool() + val D_OUT_0 = in Bool() + val D_OUT_1 = in Bool() + val D_IN_0 = out Bool() + val D_IN_1 = out Bool() + setDefinitionName("SB_IO") + } + + case class Murax_iCE40_hx8k_breakout_board_xip() extends Component{ + val io = new Bundle { + val mainClk = in Bool() + val jtag_tck = in Bool() + val jtag_tdi = in Bool() + val jtag_tdo = out Bool() + val jtag_tms = in Bool() + val uart_txd = out Bool() + val uart_rxd = in Bool() + + val mosi = inout(Analog(Bool)) + val miso = inout(Analog(Bool)) + val sclk = out Bool() + val spis = out Bool() + + val led = out Bits(8 bits) + } + val murax = Murax(MuraxConfig.default(withXip = true).copy(onChipRamSize = 8 kB)) + murax.io.asyncReset := False + + val mainClkBuffer = SB_GB() + mainClkBuffer.USER_SIGNAL_TO_GLOBAL_BUFFER <> io.mainClk + mainClkBuffer.GLOBAL_BUFFER_OUTPUT <> murax.io.mainClk + + val jtagClkBuffer = SB_GB() + jtagClkBuffer.USER_SIGNAL_TO_GLOBAL_BUFFER <> io.jtag_tck + jtagClkBuffer.GLOBAL_BUFFER_OUTPUT <> murax.io.jtag.tck + + io.led <> murax.io.gpioA.write(7 downto 0) + + murax.io.jtag.tdi <> io.jtag_tdi + murax.io.jtag.tdo <> io.jtag_tdo + murax.io.jtag.tms <> io.jtag_tms + murax.io.gpioA.read <> 0 + murax.io.uart.txd <> io.uart_txd + murax.io.uart.rxd <> io.uart_rxd + + + + val xip = new ClockingArea(murax.systemClockDomain) { + RegNext(murax.io.xip.ss.asBool) <> io.spis + + val sclkIo = SB_IO_SCLK() + sclkIo.PACKAGE_PIN <> io.sclk + sclkIo.CLOCK_ENABLE := True + + sclkIo.OUTPUT_CLK := ClockDomain.current.readClockWire + sclkIo.D_OUT_0 <> murax.io.xip.sclk.write(0) + sclkIo.D_OUT_1 <> RegNext(murax.io.xip.sclk.write(1)) + + val datas = for ((data, pin) <- (murax.io.xip.data, List(io.mosi, io.miso)).zipped) yield new Area { + val dataIo = SB_IO_DATA() + dataIo.PACKAGE_PIN := pin + dataIo.CLOCK_ENABLE := True + + dataIo.OUTPUT_CLK := ClockDomain.current.readClockWire + dataIo.OUTPUT_ENABLE <> data.writeEnable + dataIo.D_OUT_0 <> data.write(0) + dataIo.D_OUT_1 <> RegNext(data.write(1)) + + dataIo.INPUT_CLK := ClockDomain.current.readClockWire + data.read(0) := dataIo.D_IN_0 + data.read(1) := RegNext(dataIo.D_IN_1) + } + } + + } + + def main(args: Array[String]) { + SpinalVerilog(Murax_iCE40_hx8k_breakout_board_xip()) + } +} + +object MuraxDhrystoneReady{ + def main(args: Array[String]) { + SpinalVerilog(Murax(MuraxConfig.fast.copy(onChipRamSize = 256 kB))) + } +} + +object MuraxDhrystoneReadyMulDivStatic{ + def main(args: Array[String]) { + SpinalVerilog({ + val config = MuraxConfig.fast.copy(onChipRamSize = 256 kB) + config.cpuPlugins += new MulPlugin + config.cpuPlugins += new DivPlugin + config.cpuPlugins.remove(config.cpuPlugins.indexWhere(_.isInstanceOf[BranchPlugin])) + config.cpuPlugins +=new BranchPlugin( + earlyBranch = false, + catchAddressMisaligned = false + ) + config.cpuPlugins += new IBusSimplePlugin( + resetVector = 0x00000000l, + cmdForkOnSecondStage = true, + cmdForkPersistence = false, + prediction = STATIC, + catchAccessFault = false, + compressedGen = false + ) + config.cpuPlugins.remove(config.cpuPlugins.indexWhere(_.isInstanceOf[LightShifterPlugin])) + config.cpuPlugins += new FullBarrelShifterPlugin + Murax(config) + }) + } +} + +//Will blink led and echo UART RX to UART TX (in the verilator sim, type some text and press enter to send UART frame to the Murax RX pin) +object MuraxWithRamInit{ + def main(args: Array[String]) { + SpinalVerilog(Murax(MuraxConfig.default.copy(onChipRamSize = 4 kB, onChipRamHexFile = "src/main/ressource/hex/muraxDemo.hex"))) + } +} + +object Murax_arty{ + def main(args: Array[String]) { + val hex = "src/main/c/murax/hello_world/build/hello_world.hex" + SpinalVerilog(Murax(MuraxConfig.default(false).copy(coreFrequency = 100 MHz,onChipRamSize = 32 kB, onChipRamHexFile = hex))) + } +} + + +object MuraxAsicBlackBox extends App{ + println("Warning this soc do not has any rom to boot on.") + val config = SpinalConfig() + config.addStandardMemBlackboxing(blackboxAll) + config.generateVerilog(Murax(MuraxConfig.default())) +} + diff --git a/_crt0.S b/_crt0.S new file mode 100644 index 0000000..b36aa72 --- /dev/null +++ b/_crt0.S @@ -0,0 +1,38 @@ + .text + .global _start + .type _start, @function + +_start: + # Initialize global pointer + .option push + .option norelax + la gp, __global_pointer$ + .option pop + + li sp, 0x80020000 + + # Clear the bss segment + la a0, __bss_start + la a1, __BSS_END__ + +clear_bss: + + + nop //! + + call main + + nop //! + + # abort execution here + ebreak + + .section .rodata +alfabet: + .string "abcdefghijklmnopqrstuwxyz" +slowo: + + .section .data +wynik: + .string "mpabi" + .space 26 # rezerwuje 26 bajtów dla wyniku, zainicjowane na 0 diff --git a/_crt0.S-k0 b/_crt0.S-k0 new file mode 100644 index 0000000..dbe07d9 --- /dev/null +++ b/_crt0.S-k0 @@ -0,0 +1,42 @@ + .text + .global _start + .type _start, @function + +_start: + # Initialize global pointer + .option push + .option norelax + la gp, __global_pointer$ + .option pop + + li sp, 0x1fff0 + + # Clear the bss segment + la a0, __bss_start + la a1, __BSS_END__ + +clear_bss: + bgeu a0, a1, finish_bss + sb x0, 0(a0) + addi a0, a0, 1 + beq x0, x0, clear_bss +finish_bss: + + nop //! + + call main + + nop //! + + # abort execution here + ebreak + + .section .rodata +alfabet: + .string "abcdefghijklmnopqrstuwxyz" +slowo: + + .section .data +wynik: + .string "mpabi" + .space 26 # rezerwuje 26 bajtów dla wyniku, zainicjowane na 0 \ No newline at end of file diff --git a/_crt0.S-k1 b/_crt0.S-k1 new file mode 100644 index 0000000..09af34b --- /dev/null +++ b/_crt0.S-k1 @@ -0,0 +1,39 @@ + .text + .global _start + .type _start, @function + +_start: + # Initialize global pointer + .option push + .option norelax + la gp, __global_pointer$ + .option pop + + # Initialize stack pointer from linker script symbol + la sp, __stack_top + + # Clear the BSS segment + la a0, __bss_start + la a1, __bss_end + +clear_bss: + bgeu a0, a1, finish_bss + sb x0, 0(a0) + addi a0, a0, 1 + j clear_bss +finish_bss: + + call main + + ebreak + +.section .rodata + +alfabet: + .string "abcdefghijklmnopqrstuwxyz" +slowo: + + .section .data +wynik: + .string "mpabi" + .space 26 # rezerwuje 26 bajtów dla wyniku, zainicjowane na 0 diff --git a/_crt0.o b/_crt0.o new file mode 100644 index 0000000..9227eb3 Binary files /dev/null and b/_crt0.o differ diff --git a/_rvmain.cpp b/_rvmain.cpp new file mode 100644 index 0000000..c533986 --- /dev/null +++ b/_rvmain.cpp @@ -0,0 +1,117 @@ +#include + +int strlen(char *s) { + char *p = s; + while (*p != '\0') + p++; + return p - s; +} + +void strcpy(char *s, char *t) +{ + while (*s++ = *t++); +} +#define ALLOCSIZE 10000 + +static char allocbuf[ALLOCSIZE]; +static char *allocp = allocbuf; + +char *alloc(int n) +{ + + if (n % 4 != 0) { + n += 4 - (n % 4); + } + + + if (allocbuf + ALLOCSIZE - allocp >= n) { + allocp += n; + return allocp - n; + } else + return 0; +} + +// def. model danych + +//pre processor +#define LEN (8+2)*10 + +struct model { + char * str; + uint32_t len ; +} +; + +//alg +// prosta implementacji func. z bibl. std. strok przy uzyciu gpt3.5 +// + +#define NULL ((void*) 0) + +// +// Funkcja pomocnicza do sprawdzania, czy znak jest wśród delimiterów +bool is_delim(char c, const char *delims) { + while (*delims) { + if (c == *delims) { + return true; + } + delims++; + } + return false; +} + +// Najprostsza implementacja funkcji strtok +char *simple_strtok(char *str, const char *delims) { + static char *static_str = (char *) NULL; // Przechowuje wskaźnik do bieżącej pozycji w ciągu + + // Jeśli przekazano nowy ciąg, zaktualizuj static_str + if (str != NULL) { + static_str = str; + } + + // Jeśli static_str jest NULL, zwróć NULL + if (static_str == NULL) { + return (char *) NULL; + } + + // Pomiń początkowe delimitery + while (*static_str && is_delim(*static_str, delims)) { + static_str++; + } + + // Jeśli doszliśmy do końca ciągu, zwróć NULL + if (*static_str == '\0') { + return (char *) NULL; + } + + // Zapisz początek tokenu + char *token_start = static_str; + + // Znajdź koniec tokenu + while (*static_str && !is_delim(*static_str, delims)) { + static_str++; + } + + // Jeśli znaleziono delimitery, zamień je na '\0' i zaktualizuj static_str + if (*static_str) { + *static_str = '\0'; + static_str++; + } + + // Zwróć początek tokenu + return token_start; +} + +////func alg +//in: ptr to date +//return: count of words +int alg (const char * ptr) { + + return 1; +} + + +int main() { + char * str = "Oliwier"; + return 1; +} diff --git a/_rvmain.o b/_rvmain.o new file mode 100644 index 0000000..8159409 Binary files /dev/null and b/_rvmain.o differ diff --git a/conf.json b/conf.json new file mode 100644 index 0000000..5e351b8 --- /dev/null +++ b/conf.json @@ -0,0 +1,16 @@ +{ + "user": "Olixi11", + "email": "olixi11@gmail.com", + "remotes": [ + { + "name": "r", + "protocol": "http", + "domain": "qstack.pl", + "port": "3000", + "token_name": "t", + "token": "5dd2da03bd806bf2811ac8e5a6ebd981c78c0e7a", + "group": "1i-2023", + "project": "strlen-c" + } + ] +} \ No newline at end of file diff --git a/igit.py b/igit.py new file mode 100644 index 0000000..26ea529 --- /dev/null +++ b/igit.py @@ -0,0 +1,111 @@ +import argparse +import json +import sys +import subprocess +import os +from datetime import datetime + +DEFAULT_CONFIG = { + "user": "Olixi11", + "email": "olixi11@gmail.com", + "remotes": [{ + "name": "r", # Zaktualizowano z "default" na "mpabi" + "protocol": "http", + "domain": "qstack.pl", + "port": "3000", + "token_name": "t", + "token": "5dd2da03bd806bf2811ac8e5a6ebd981c78c0e7a", + "group": "1i-2023", + "project": "strlen-c" + }] +} + +def load_or_create_config(config_file, args): + config_exists = os.path.exists(config_file) and os.stat(config_file).st_size != 0 + if config_exists: + with open(config_file, 'r') as file: + config = json.load(file) + else: + config = DEFAULT_CONFIG.copy() + + # Znajdź istniejące zdalne repozytorium o podanej nazwie + remote = next((remote for remote in config['remotes'] if remote['name'] == args.remote), None) + + # Jeśli istnieje zdalne repozytorium i podano argumenty związane z konfiguracją zdalnego repozytorium + if remote: + for field in ['protocol', 'domain', 'port', 'token_name', 'token', 'group', 'project']: + # Aktualizuj tylko, jeśli argument został jawnie podany + if getattr(args, field, None) is not None: + remote[field] = getattr(args, field) + + # Jeśli zdalne repozytorium nie istnieje, ale podano nazwę, tworzymy nowe zdalne repozytorium + elif args.remote: + new_remote = {'name': args.remote} + for field in ['protocol', 'domain', 'port', 'token_name', 'token', 'group', 'project']: + new_remote[field] = getattr(args, field, DEFAULT_CONFIG['remotes'][0].get(field, '')) + if new_remote[field] == None: + new_remote[field] = DEFAULT_CONFIG['remotes'][0].get(field, '') + config['remotes'].append(new_remote) + + # Aktualizuj informacje o użytkowniku i email, tylko jeśli zostały podane + if getattr(args, 'user', None): + config['user'] = args.user + if getattr(args, 'email_domain', None): + config['email'] = f"{args.user}@{args.email_domain}" + + # Zapisz zmodyfikowaną konfigurację + with open(config_file, 'w') as file: + json.dump(config, file, indent=4) + + return config + + +def init_git_repo(config): + user_name = config['user'] + user_email = config['email'] + branch_name = f"{user_name}-{datetime.now().strftime('%Y-%m-%d')}" + + if subprocess.run(["git", "rev-parse", "--git-dir"], stderr=subprocess.DEVNULL).returncode != 0: + subprocess.run(["git", "init"]) + subprocess.run(["git", "config", "user.name", user_name]) + subprocess.run(["git", "config", "user.email", user_email]) + subprocess.run(["git", "checkout", "-b", branch_name]) + print("Git repository initialized.") + else: + print("Already inside a Git repository. Skipping initialization.") + + remotesFromList = str(subprocess.run(["git", "remote", "-v"], capture_output=True).stdout) + remotesFromList = remotesFromList.replace('b\'', "").replace('\'', "").split('\\n') + for rm in remotesFromList: + name = rm.split("\\t")[0] + subprocess.run(["git", "remote", "remove", name], stderr=subprocess.DEVNULL) + + for remote in config['remotes']: + remote_url = f"{remote['protocol']}://{remote['token_name']}:{remote['token']}@{remote['domain']}:{remote['port']}/{remote['group']}/{remote['project']}" + # Usunięcie i ponowne dodanie zdalnego repozytorium, jeśli jest zaktualizowane + #subprocess.run(["git", "remote", "remove", remote['name']], stderr=subprocess.DEVNULL) + subprocess.run(["git", "remote", "add", remote['name'], remote_url]) + print(f"Remote '{remote['name']}' added or updated.") + +def main(): + parser = argparse.ArgumentParser(description="Git repository initializer with custom configuration.") + parser.add_argument("--user", help="User name") + parser.add_argument("--email_domain", help="Email domain") + parser.add_argument("--config", help="Path to the JSON config file", default="conf.json") + parser.add_argument("--remote", help="Name of the remote to add or update") + parser.add_argument("--protocol", help="Remote protocol") + parser.add_argument("--domain", help="Remote domain") + parser.add_argument("--port", help="Remote port") + parser.add_argument("--token_name", help="Remote token name") + parser.add_argument("--token", help="Remote token") + parser.add_argument("--group", help="Group name") + parser.add_argument("--project", help="Project name") + + args = parser.parse_args() + + config = load_or_create_config(args.config, args) + init_git_repo(config) + print("Git repository initialized and configured based on the provided configuration.") + +if __name__ == "__main__": + main() diff --git a/murax_128k_ram-sp.ld b/murax_128k_ram-sp.ld new file mode 100644 index 0000000..b3ac278 --- /dev/null +++ b/murax_128k_ram-sp.ld @@ -0,0 +1,43 @@ +MEMORY +{ + RAM (wx) : ORIGIN = 0x0, LENGTH = 128K +} + +SECTIONS +{ + .text : + { + *(.text*) + *(.rodata*) + } > RAM + + .data : + { + *(.data*) + } > RAM + + .bss : + { + *(.bss*) + *(COMMON) + } > RAM + + /* Add stack at the end of RAM */ + . = ALIGN(4); + _end = .; + PROVIDE(end = .); + + /* Define stack size and location */ + _stack_size = 0x4000; /* Example stack size: 16KB */ + _stack_end = ORIGIN(RAM) + LENGTH(RAM); /* End of RAM */ + _stack_start = _stack_end - _stack_size; /* Calculate start of the stack */ + .stack (NOLOAD) : + { + . = ALIGN(4); + . = . + _stack_size; + . = ALIGN(4); + _sp = .; + } > RAM + + PROVIDE(__stack = _sp); +} diff --git a/murax_128k_ram.ld b/murax_128k_ram.ld new file mode 100644 index 0000000..244668e --- /dev/null +++ b/murax_128k_ram.ld @@ -0,0 +1,67 @@ +/* Linker script for a system with 128KB RAM starting at 0x10000 */ +MEMORY +{ + RAM (wx) : ORIGIN = 0x0000, LENGTH = 128K +} + +SECTIONS +{ + /* Place code and readonly data at the beginning of RAM */ + .text : + { + *(.text*) + *(.rodata*) + } > RAM + + /* Place initialized data right after the .text section */ + .data : + { + . = ALIGN(4); + *(.data*) + } > RAM + + /* Uninitialized data (BSS) follows initialized data */ + .bss : + { + . = ALIGN(4); + __bss_start = .; + *(.bss*) + *(COMMON) + . = ALIGN(4); + __bss_end = .; + } > RAM + + /* Define heap start right after bss */ + . = ALIGN(4); + __heap_start = .; + PROVIDE(heap_start = __heap_start); + + /* Leave space for the heap by not explicitly defining its end */ + /* The heap grows towards the stack */ + + /* Reserve space for the stack at the end of RAM */ + /* Let's say we want a 16KB stack */ + . = ALIGN(4); + __stack_size = 16K; /* Size of the stack */ + __stack_top = ORIGIN(RAM) + LENGTH(RAM); /* Top of the stack */ + __stack_start = __stack_top - __stack_size; /* Start of the stack */ + .stack (NOLOAD) : + { + . = __stack_start; + . += __stack_size; /* Allocate space for the stack */ + . = ALIGN(4); + } > RAM + + PROVIDE(__stack = __stack_top); + PROVIDE(stack_top = __stack_top); + PROVIDE(stack_start = __stack_start); + + /* Heap end is dynamically located at the start of the stack */ + __heap_end = __stack_start; + PROVIDE(heap_end = __heap_end); + + /* End of RAM usage */ + . = ALIGN(4); + _end = .; + PROVIDE(end = _end); +} diff --git a/murax_128k_ram.ld-kopia b/murax_128k_ram.ld-kopia new file mode 100644 index 0000000..6488ff3 --- /dev/null +++ b/murax_128k_ram.ld-kopia @@ -0,0 +1,13 @@ +MEMORY +{ + RAM (wx) : ORIGIN = 0x10000, LENGTH = 128K +} + +SECTIONS +{ + .text : { *(.text*) } > RAM + .rodata : { *(.rodata*) } > RAM + .data : { *(.data*) } > RAM + .bss : { *(.bss*) } > RAM + _end = .; /* Definiuje koniec sekcji danych, może być używane do określenia rozmiaru sterty */ +} diff --git a/myfunc.cpp b/myfunc.cpp new file mode 100644 index 0000000..b621842 --- /dev/null +++ b/myfunc.cpp @@ -0,0 +1,35 @@ +#include "myfunc.h" + +// Lokalna deklaracja funkcji my_strlen +static int my_strlen(const char *str) { + int length = 0; + while (str[length] != '\0') { + length++; + } + return length; +} + +void count_characters(const char* alfabet, const char* slowo, uint8_t* wynik) { + // Użycie my_strlen do obliczenia długości alfabetu + int alfabet_length = my_strlen(alfabet); + + for (int i = 0; i < alfabet_length; ++i) { + wynik[i] = 0; + } + + for (int i = 0; i < alfabet_length; ++i) { + for (int j = 0; slowo[j] != '\0'; ++j) { + if (alfabet[i] == slowo[j]) { + wynik[i]++; + } + } + } +} + +// #include "myfunc.h" + +// const char* alfabet = "abcdefghijklmnopqrstuwxyz"; +// const char* slowo = "mpabi"; +// int wynik[26] = {0}; // Inicjalizacja tablicy wyników na 0 + +// count_characters(alfabet, slowo, wynik); diff --git a/myfunc.h b/myfunc.h new file mode 100644 index 0000000..99a5984 --- /dev/null +++ b/myfunc.h @@ -0,0 +1,9 @@ +#ifndef myfunc_H +#define myfunc_H + +#include + + +void count_characters(const char* alfabet, const char* slowo, uint8_t* wynik); + +#endif diff --git a/myfunc.o b/myfunc.o new file mode 100644 index 0000000..8fc4f5a Binary files /dev/null and b/myfunc.o differ diff --git a/prog b/prog new file mode 100755 index 0000000..06c600b Binary files /dev/null and b/prog differ diff --git a/prog.bin b/prog.bin new file mode 100755 index 0000000..d97b702 Binary files /dev/null and b/prog.bin differ diff --git a/prog.lst b/prog.lst new file mode 100644 index 0000000..ff4095d --- /dev/null +++ b/prog.lst @@ -0,0 +1,7909 @@ + +prog: file format elf32-littleriscv + + +Disassembly of section .text: + +80000000 <_start>: +80000000: 00011197 auipc x3,0x11 +80000004: 82018193 addi x3,x3,-2016 # 80010820 <__global_pointer$> +80000008: 80020137 lui x2,0x80020 +8000000c: 00010517 auipc x10,0x10 +80000010: 01850513 addi x10,x10,24 # 80010024 <_ZL8allocbuf> +80000014: 00012597 auipc x11,0x12 +80000018: 72458593 addi x11,x11,1828 # 80012738 <__BSS_END__> + +8000001c : +8000001c: 00000013 addi x0,x0,0 +80000020: 00000097 auipc x1,0x0 +80000024: 354080e7 jalr x1,852(x1) # 80000374
+80000028: 00000013 addi x0,x0,0 +8000002c: 00100073 ebreak + +80000030 <_Z6strlenPc>: +80000030: fd010113 addi x2,x2,-48 # 8001ffd0 <__BSS_END__+0xd898> +80000034: 02812623 sw x8,44(x2) +80000038: 03010413 addi x8,x2,48 +8000003c: fca42e23 sw x10,-36(x8) +80000040: fdc42783 lw x15,-36(x8) +80000044: fef42623 sw x15,-20(x8) +80000048: 0100006f jal x0,80000058 <_Z6strlenPc+0x28> +8000004c: fec42783 lw x15,-20(x8) +80000050: 00178793 addi x15,x15,1 +80000054: fef42623 sw x15,-20(x8) +80000058: fec42783 lw x15,-20(x8) +8000005c: 0007c783 lbu x15,0(x15) +80000060: fe0796e3 bne x15,x0,8000004c <_Z6strlenPc+0x1c> +80000064: fec42703 lw x14,-20(x8) +80000068: fdc42783 lw x15,-36(x8) +8000006c: 40f707b3 sub x15,x14,x15 +80000070: 00078513 addi x10,x15,0 +80000074: 02c12403 lw x8,44(x2) +80000078: 03010113 addi x2,x2,48 +8000007c: 00008067 jalr x0,0(x1) + +80000080 <_Z6strcpyPcS_>: +80000080: fe010113 addi x2,x2,-32 +80000084: 00812e23 sw x8,28(x2) +80000088: 02010413 addi x8,x2,32 +8000008c: fea42623 sw x10,-20(x8) +80000090: feb42423 sw x11,-24(x8) +80000094: 00000013 addi x0,x0,0 +80000098: fe842783 lw x15,-24(x8) +8000009c: 00178713 addi x14,x15,1 +800000a0: fee42423 sw x14,-24(x8) +800000a4: 0007c703 lbu x14,0(x15) +800000a8: fec42783 lw x15,-20(x8) +800000ac: 00178693 addi x13,x15,1 +800000b0: fed42623 sw x13,-20(x8) +800000b4: 00e78023 sb x14,0(x15) +800000b8: 0007c783 lbu x15,0(x15) +800000bc: 00f037b3 sltu x15,x0,x15 +800000c0: 0ff7f793 andi x15,x15,255 +800000c4: fc079ae3 bne x15,x0,80000098 <_Z6strcpyPcS_+0x18> +800000c8: 00000013 addi x0,x0,0 +800000cc: 00000013 addi x0,x0,0 +800000d0: 01c12403 lw x8,28(x2) +800000d4: 02010113 addi x2,x2,32 +800000d8: 00008067 jalr x0,0(x1) + +800000dc <_Z5alloci>: +800000dc: fe010113 addi x2,x2,-32 +800000e0: 00812e23 sw x8,28(x2) +800000e4: 02010413 addi x8,x2,32 +800000e8: fea42623 sw x10,-20(x8) +800000ec: fec42783 lw x15,-20(x8) +800000f0: 0037f793 andi x15,x15,3 +800000f4: 02078a63 beq x15,x0,80000128 <_Z5alloci+0x4c> +800000f8: fec42703 lw x14,-20(x8) +800000fc: 41f75793 srai x15,x14,0x1f +80000100: 01e7d793 srli x15,x15,0x1e +80000104: 00f70733 add x14,x14,x15 +80000108: 00377713 andi x14,x14,3 +8000010c: 40f707b3 sub x15,x14,x15 +80000110: 00078713 addi x14,x15,0 +80000114: 00400793 addi x15,x0,4 +80000118: 40e787b3 sub x15,x15,x14 +8000011c: fec42703 lw x14,-20(x8) +80000120: 00f707b3 add x15,x14,x15 +80000124: fef42623 sw x15,-20(x8) +80000128: 800127b7 lui x15,0x80012 +8000012c: 73478713 addi x14,x15,1844 # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +80000130: 800107b7 lui x15,0x80010 +80000134: 0207a783 lw x15,32(x15) # 80010020 <_ZL6allocp> +80000138: 40f707b3 sub x15,x14,x15 +8000013c: fec42703 lw x14,-20(x8) +80000140: 02e7ca63 blt x15,x14,80000174 <_Z5alloci+0x98> +80000144: 800107b7 lui x15,0x80010 +80000148: 0207a703 lw x14,32(x15) # 80010020 <_ZL6allocp> +8000014c: fec42783 lw x15,-20(x8) +80000150: 00f70733 add x14,x14,x15 +80000154: 800107b7 lui x15,0x80010 +80000158: 02e7a023 sw x14,32(x15) # 80010020 <_ZL6allocp> +8000015c: 800107b7 lui x15,0x80010 +80000160: 0207a703 lw x14,32(x15) # 80010020 <_ZL6allocp> +80000164: fec42783 lw x15,-20(x8) +80000168: 40f007b3 sub x15,x0,x15 +8000016c: 00f707b3 add x15,x14,x15 +80000170: 0080006f jal x0,80000178 <_Z5alloci+0x9c> +80000174: 00000793 addi x15,x0,0 +80000178: 00078513 addi x10,x15,0 +8000017c: 01c12403 lw x8,28(x2) +80000180: 02010113 addi x2,x2,32 +80000184: 00008067 jalr x0,0(x1) + +80000188 <_Z8is_delimcPKc>: +80000188: fe010113 addi x2,x2,-32 +8000018c: 00812e23 sw x8,28(x2) +80000190: 02010413 addi x8,x2,32 +80000194: 00050793 addi x15,x10,0 +80000198: feb42423 sw x11,-24(x8) +8000019c: fef407a3 sb x15,-17(x8) +800001a0: 0280006f jal x0,800001c8 <_Z8is_delimcPKc+0x40> +800001a4: fe842783 lw x15,-24(x8) +800001a8: 0007c783 lbu x15,0(x15) +800001ac: fef44703 lbu x14,-17(x8) +800001b0: 00f71663 bne x14,x15,800001bc <_Z8is_delimcPKc+0x34> +800001b4: 00100793 addi x15,x0,1 +800001b8: 0200006f jal x0,800001d8 <_Z8is_delimcPKc+0x50> +800001bc: fe842783 lw x15,-24(x8) +800001c0: 00178793 addi x15,x15,1 +800001c4: fef42423 sw x15,-24(x8) +800001c8: fe842783 lw x15,-24(x8) +800001cc: 0007c783 lbu x15,0(x15) +800001d0: fc079ae3 bne x15,x0,800001a4 <_Z8is_delimcPKc+0x1c> +800001d4: 00000793 addi x15,x0,0 +800001d8: 00078513 addi x10,x15,0 +800001dc: 01c12403 lw x8,28(x2) +800001e0: 02010113 addi x2,x2,32 +800001e4: 00008067 jalr x0,0(x1) + +800001e8 <_Z13simple_strtokPcPKc>: +800001e8: fd010113 addi x2,x2,-48 +800001ec: 02112623 sw x1,44(x2) +800001f0: 02812423 sw x8,40(x2) +800001f4: 03010413 addi x8,x2,48 +800001f8: fca42e23 sw x10,-36(x8) +800001fc: fcb42c23 sw x11,-40(x8) +80000200: fdc42783 lw x15,-36(x8) +80000204: 00078863 beq x15,x0,80000214 <_Z13simple_strtokPcPKc+0x2c> +80000208: 800127b7 lui x15,0x80012 +8000020c: fdc42703 lw x14,-36(x8) +80000210: 72e7aa23 sw x14,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +80000214: 800127b7 lui x15,0x80012 +80000218: 7347a783 lw x15,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +8000021c: 02079063 bne x15,x0,8000023c <_Z13simple_strtokPcPKc+0x54> +80000220: 00000793 addi x15,x0,0 +80000224: 1180006f jal x0,8000033c <_Z13simple_strtokPcPKc+0x154> +80000228: 800127b7 lui x15,0x80012 +8000022c: 7347a783 lw x15,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +80000230: 00178713 addi x14,x15,1 +80000234: 800127b7 lui x15,0x80012 +80000238: 72e7aa23 sw x14,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +8000023c: 800127b7 lui x15,0x80012 +80000240: 7347a783 lw x15,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +80000244: 0007c783 lbu x15,0(x15) +80000248: 02078863 beq x15,x0,80000278 <_Z13simple_strtokPcPKc+0x90> +8000024c: 800127b7 lui x15,0x80012 +80000250: 7347a783 lw x15,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +80000254: 0007c783 lbu x15,0(x15) +80000258: fd842583 lw x11,-40(x8) +8000025c: 00078513 addi x10,x15,0 +80000260: 00000097 auipc x1,0x0 +80000264: f28080e7 jalr x1,-216(x1) # 80000188 <_Z8is_delimcPKc> +80000268: 00050793 addi x15,x10,0 +8000026c: 00078663 beq x15,x0,80000278 <_Z13simple_strtokPcPKc+0x90> +80000270: 00100793 addi x15,x0,1 +80000274: 0080006f jal x0,8000027c <_Z13simple_strtokPcPKc+0x94> +80000278: 00000793 addi x15,x0,0 +8000027c: fa0796e3 bne x15,x0,80000228 <_Z13simple_strtokPcPKc+0x40> +80000280: 800127b7 lui x15,0x80012 +80000284: 7347a783 lw x15,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +80000288: 0007c783 lbu x15,0(x15) +8000028c: 00079663 bne x15,x0,80000298 <_Z13simple_strtokPcPKc+0xb0> +80000290: 00000793 addi x15,x0,0 +80000294: 0a80006f jal x0,8000033c <_Z13simple_strtokPcPKc+0x154> +80000298: 800127b7 lui x15,0x80012 +8000029c: 7347a783 lw x15,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +800002a0: fef42623 sw x15,-20(x8) +800002a4: 0180006f jal x0,800002bc <_Z13simple_strtokPcPKc+0xd4> +800002a8: 800127b7 lui x15,0x80012 +800002ac: 7347a783 lw x15,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +800002b0: 00178713 addi x14,x15,1 +800002b4: 800127b7 lui x15,0x80012 +800002b8: 72e7aa23 sw x14,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +800002bc: 800127b7 lui x15,0x80012 +800002c0: 7347a783 lw x15,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +800002c4: 0007c783 lbu x15,0(x15) +800002c8: 02078c63 beq x15,x0,80000300 <_Z13simple_strtokPcPKc+0x118> +800002cc: 800127b7 lui x15,0x80012 +800002d0: 7347a783 lw x15,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +800002d4: 0007c783 lbu x15,0(x15) +800002d8: fd842583 lw x11,-40(x8) +800002dc: 00078513 addi x10,x15,0 +800002e0: 00000097 auipc x1,0x0 +800002e4: ea8080e7 jalr x1,-344(x1) # 80000188 <_Z8is_delimcPKc> +800002e8: 00050793 addi x15,x10,0 +800002ec: 0017c793 xori x15,x15,1 +800002f0: 0ff7f793 andi x15,x15,255 +800002f4: 00078663 beq x15,x0,80000300 <_Z13simple_strtokPcPKc+0x118> +800002f8: 00100793 addi x15,x0,1 +800002fc: 0080006f jal x0,80000304 <_Z13simple_strtokPcPKc+0x11c> +80000300: 00000793 addi x15,x0,0 +80000304: fa0792e3 bne x15,x0,800002a8 <_Z13simple_strtokPcPKc+0xc0> +80000308: 800127b7 lui x15,0x80012 +8000030c: 7347a783 lw x15,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +80000310: 0007c783 lbu x15,0(x15) +80000314: 02078263 beq x15,x0,80000338 <_Z13simple_strtokPcPKc+0x150> +80000318: 800127b7 lui x15,0x80012 +8000031c: 7347a783 lw x15,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +80000320: 00078023 sb x0,0(x15) +80000324: 800127b7 lui x15,0x80012 +80000328: 7347a783 lw x15,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +8000032c: 00178713 addi x14,x15,1 +80000330: 800127b7 lui x15,0x80012 +80000334: 72e7aa23 sw x14,1844(x15) # 80012734 <_ZZ13simple_strtokPcPKcE10static_str> +80000338: fec42783 lw x15,-20(x8) +8000033c: 00078513 addi x10,x15,0 +80000340: 02c12083 lw x1,44(x2) +80000344: 02812403 lw x8,40(x2) +80000348: 03010113 addi x2,x2,48 +8000034c: 00008067 jalr x0,0(x1) + +80000350 <_Z3algPKc>: +80000350: fe010113 addi x2,x2,-32 +80000354: 00812e23 sw x8,28(x2) +80000358: 02010413 addi x8,x2,32 +8000035c: fea42623 sw x10,-20(x8) +80000360: 00100793 addi x15,x0,1 +80000364: 00078513 addi x10,x15,0 +80000368: 01c12403 lw x8,28(x2) +8000036c: 02010113 addi x2,x2,32 +80000370: 00008067 jalr x0,0(x1) + +80000374
: +80000374: fe010113 addi x2,x2,-32 +80000378: 00812e23 sw x8,28(x2) +8000037c: 02010413 addi x8,x2,32 +80000380: 800007b7 lui x15,0x80000 +80000384: 50478793 addi x15,x15,1284 # 80000504 +80000388: fef42623 sw x15,-20(x8) +8000038c: 00100793 addi x15,x0,1 +80000390: 00078513 addi x10,x15,0 +80000394: 01c12403 lw x8,28(x2) +80000398: 02010113 addi x2,x2,32 +8000039c: 00008067 jalr x0,0(x1) + +800003a0 <_ZL9my_strlenPKc>: +800003a0: fd010113 addi x2,x2,-48 +800003a4: 02812623 sw x8,44(x2) +800003a8: 03010413 addi x8,x2,48 +800003ac: fca42e23 sw x10,-36(x8) +800003b0: fe042623 sw x0,-20(x8) +800003b4: 0100006f jal x0,800003c4 <_ZL9my_strlenPKc+0x24> +800003b8: fec42783 lw x15,-20(x8) +800003bc: 00178793 addi x15,x15,1 +800003c0: fef42623 sw x15,-20(x8) +800003c4: fec42783 lw x15,-20(x8) +800003c8: fdc42703 lw x14,-36(x8) +800003cc: 00f707b3 add x15,x14,x15 +800003d0: 0007c783 lbu x15,0(x15) +800003d4: fe0792e3 bne x15,x0,800003b8 <_ZL9my_strlenPKc+0x18> +800003d8: fec42783 lw x15,-20(x8) +800003dc: 00078513 addi x10,x15,0 +800003e0: 02c12403 lw x8,44(x2) +800003e4: 03010113 addi x2,x2,48 +800003e8: 00008067 jalr x0,0(x1) + +800003ec <_Z16count_charactersPKcS0_Ph>: +800003ec: fd010113 addi x2,x2,-48 +800003f0: 02112623 sw x1,44(x2) +800003f4: 02812423 sw x8,40(x2) +800003f8: 03010413 addi x8,x2,48 +800003fc: fca42e23 sw x10,-36(x8) +80000400: fcb42c23 sw x11,-40(x8) +80000404: fcc42a23 sw x12,-44(x8) +80000408: fdc42503 lw x10,-36(x8) +8000040c: 00000097 auipc x1,0x0 +80000410: f94080e7 jalr x1,-108(x1) # 800003a0 <_ZL9my_strlenPKc> +80000414: fea42023 sw x10,-32(x8) +80000418: fe042623 sw x0,-20(x8) +8000041c: 0200006f jal x0,8000043c <_Z16count_charactersPKcS0_Ph+0x50> +80000420: fec42783 lw x15,-20(x8) +80000424: fd442703 lw x14,-44(x8) +80000428: 00f707b3 add x15,x14,x15 +8000042c: 00078023 sb x0,0(x15) +80000430: fec42783 lw x15,-20(x8) +80000434: 00178793 addi x15,x15,1 +80000438: fef42623 sw x15,-20(x8) +8000043c: fec42703 lw x14,-20(x8) +80000440: fe042783 lw x15,-32(x8) +80000444: fcf74ee3 blt x14,x15,80000420 <_Z16count_charactersPKcS0_Ph+0x34> +80000448: fe042423 sw x0,-24(x8) +8000044c: 0780006f jal x0,800004c4 <_Z16count_charactersPKcS0_Ph+0xd8> +80000450: fe042223 sw x0,-28(x8) +80000454: 0500006f jal x0,800004a4 <_Z16count_charactersPKcS0_Ph+0xb8> +80000458: fe842783 lw x15,-24(x8) +8000045c: fdc42703 lw x14,-36(x8) +80000460: 00f707b3 add x15,x14,x15 +80000464: 0007c703 lbu x14,0(x15) +80000468: fe442783 lw x15,-28(x8) +8000046c: fd842683 lw x13,-40(x8) +80000470: 00f687b3 add x15,x13,x15 +80000474: 0007c783 lbu x15,0(x15) +80000478: 02f71063 bne x14,x15,80000498 <_Z16count_charactersPKcS0_Ph+0xac> +8000047c: fe842783 lw x15,-24(x8) +80000480: fd442703 lw x14,-44(x8) +80000484: 00f707b3 add x15,x14,x15 +80000488: 0007c703 lbu x14,0(x15) +8000048c: 00170713 addi x14,x14,1 +80000490: 0ff77713 andi x14,x14,255 +80000494: 00e78023 sb x14,0(x15) +80000498: fe442783 lw x15,-28(x8) +8000049c: 00178793 addi x15,x15,1 +800004a0: fef42223 sw x15,-28(x8) +800004a4: fe442783 lw x15,-28(x8) +800004a8: fd842703 lw x14,-40(x8) +800004ac: 00f707b3 add x15,x14,x15 +800004b0: 0007c783 lbu x15,0(x15) +800004b4: fa0792e3 bne x15,x0,80000458 <_Z16count_charactersPKcS0_Ph+0x6c> +800004b8: fe842783 lw x15,-24(x8) +800004bc: 00178793 addi x15,x15,1 +800004c0: fef42423 sw x15,-24(x8) +800004c4: fe842703 lw x14,-24(x8) +800004c8: fe042783 lw x15,-32(x8) +800004cc: f8f742e3 blt x14,x15,80000450 <_Z16count_charactersPKcS0_Ph+0x64> +800004d0: 00000013 addi x0,x0,0 +800004d4: 00000013 addi x0,x0,0 +800004d8: 02c12083 lw x1,44(x2) +800004dc: 02812403 lw x8,40(x2) +800004e0: 03010113 addi x2,x2,48 +800004e4: 00008067 jalr x0,0(x1) + +Disassembly of section .data: + +80010000 <__DATA_BEGIN__>: +80010000: 706d .2byte 0x706d +80010002: 6261 .2byte 0x6261 +80010004: 0069 .2byte 0x69 + ... + +Disassembly of section .rodata: + +800004e8 : +800004e8: 6261 .2byte 0x6261 +800004ea: 66656463 bltu x10,x6,80000b52 +800004ee: 6a696867 .4byte 0x6a696867 +800004f2: 6e6d6c6b .4byte 0x6e6d6c6b +800004f6: 7271706f jal x0,8001841c <__BSS_END__+0x5ce4> +800004fa: 77757473 .4byte 0x77757473 +800004fe: 7978 .2byte 0x7978 +80000500: 007a .2byte 0x7a + +80000502 : +80000502: 0000 .2byte 0x0 +80000504: 77696c4f .4byte 0x77696c4f +80000508: 6569 .2byte 0x6569 +8000050a: 0072 .2byte 0x72 + +Disassembly of section .eh_frame: + +8000050c <.eh_frame>: +8000050c: 0010 .2byte 0x10 +8000050e: 0000 .2byte 0x0 +80000510: 0000 .2byte 0x0 +80000512: 0000 .2byte 0x0 +80000514: 00527a03 .4byte 0x527a03 +80000518: 7c01 .2byte 0x7c01 +8000051a: 0101 .2byte 0x101 +8000051c: 00020d1b .4byte 0x20d1b +80000520: 0020 .2byte 0x20 +80000522: 0000 .2byte 0x0 +80000524: 0018 .2byte 0x18 +80000526: 0000 .2byte 0x0 +80000528: fb08 .2byte 0xfb08 +8000052a: ffff .2byte 0xffff +8000052c: 0050 .2byte 0x50 +8000052e: 0000 .2byte 0x0 +80000530: 4400 .2byte 0x4400 +80000532: 300e .2byte 0x300e +80000534: 8844 .2byte 0x8844 +80000536: 4401 .2byte 0x4401 +80000538: 080c .2byte 0x80c +8000053a: 7c00 .2byte 0x7c00 +8000053c: 0cc8 .2byte 0xcc8 +8000053e: 3002 .2byte 0x3002 +80000540: 0e44 .2byte 0xe44 +80000542: 0000 .2byte 0x0 +80000544: 0020 .2byte 0x20 +80000546: 0000 .2byte 0x0 +80000548: 003c .2byte 0x3c +8000054a: 0000 .2byte 0x0 +8000054c: fb34 .2byte 0xfb34 +8000054e: ffff .2byte 0xffff +80000550: 005c .2byte 0x5c +80000552: 0000 .2byte 0x0 +80000554: 4400 .2byte 0x4400 +80000556: 200e .2byte 0x200e +80000558: 8844 .2byte 0x8844 +8000055a: 4401 .2byte 0x4401 +8000055c: 080c .2byte 0x80c +8000055e: 0200 .2byte 0x200 +80000560: c848 .2byte 0xc848 +80000562: 020c .2byte 0x20c +80000564: 4420 .2byte 0x4420 +80000566: 000e .2byte 0xe +80000568: 0020 .2byte 0x20 +8000056a: 0000 .2byte 0x0 +8000056c: 0060 .2byte 0x60 +8000056e: 0000 .2byte 0x0 +80000570: fb6c .2byte 0xfb6c +80000572: ffff .2byte 0xffff +80000574: 00ac .2byte 0xac +80000576: 0000 .2byte 0x0 +80000578: 4400 .2byte 0x4400 +8000057a: 200e .2byte 0x200e +8000057c: 8844 .2byte 0x8844 +8000057e: 4401 .2byte 0x4401 +80000580: 080c .2byte 0x80c +80000582: 0200 .2byte 0x200 +80000584: c898 .2byte 0xc898 +80000586: 020c .2byte 0x20c +80000588: 4420 .2byte 0x4420 +8000058a: 000e .2byte 0xe +8000058c: 0020 .2byte 0x20 +8000058e: 0000 .2byte 0x0 +80000590: 0084 .2byte 0x84 +80000592: 0000 .2byte 0x0 +80000594: fbf4 .2byte 0xfbf4 +80000596: ffff .2byte 0xffff +80000598: 0060 .2byte 0x60 +8000059a: 0000 .2byte 0x0 +8000059c: 4400 .2byte 0x4400 +8000059e: 200e .2byte 0x200e +800005a0: 8844 .2byte 0x8844 +800005a2: 4401 .2byte 0x4401 +800005a4: 080c .2byte 0x80c +800005a6: 0200 .2byte 0x200 +800005a8: c84c .2byte 0xc84c +800005aa: 020c .2byte 0x20c +800005ac: 4420 .2byte 0x4420 +800005ae: 000e .2byte 0xe +800005b0: 0028 .2byte 0x28 +800005b2: 0000 .2byte 0x0 +800005b4: 00a8 .2byte 0xa8 +800005b6: 0000 .2byte 0x0 +800005b8: fc30 .2byte 0xfc30 +800005ba: ffff .2byte 0xffff +800005bc: 0168 .2byte 0x168 +800005be: 0000 .2byte 0x0 +800005c0: 4400 .2byte 0x4400 +800005c2: 300e .2byte 0x300e +800005c4: 8148 .2byte 0x8148 +800005c6: 8801 .2byte 0x8801 +800005c8: 4402 .2byte 0x4402 +800005ca: 080c .2byte 0x80c +800005cc: 0300 .2byte 0x300 +800005ce: 014c .2byte 0x14c +800005d0: 44c1 .2byte 0x44c1 +800005d2: 0cc8 .2byte 0xcc8 +800005d4: 3002 .2byte 0x3002 +800005d6: 0e44 .2byte 0xe44 +800005d8: 0000 .2byte 0x0 +800005da: 0000 .2byte 0x0 +800005dc: 0020 .2byte 0x20 +800005de: 0000 .2byte 0x0 +800005e0: 00d4 .2byte 0xd4 +800005e2: 0000 .2byte 0x0 +800005e4: fd6c .2byte 0xfd6c +800005e6: ffff .2byte 0xffff +800005e8: 0024 .2byte 0x24 +800005ea: 0000 .2byte 0x0 +800005ec: 4400 .2byte 0x4400 +800005ee: 200e .2byte 0x200e +800005f0: 8844 .2byte 0x8844 +800005f2: 4401 .2byte 0x4401 +800005f4: 080c .2byte 0x80c +800005f6: 5000 .2byte 0x5000 +800005f8: 0cc8 .2byte 0xcc8 +800005fa: 2002 .2byte 0x2002 +800005fc: 0e44 .2byte 0xe44 +800005fe: 0000 .2byte 0x0 +80000600: 0020 .2byte 0x20 +80000602: 0000 .2byte 0x0 +80000604: 00f8 .2byte 0xf8 +80000606: 0000 .2byte 0x0 +80000608: fd6c .2byte 0xfd6c +8000060a: ffff .2byte 0xffff +8000060c: 002c .2byte 0x2c +8000060e: 0000 .2byte 0x0 +80000610: 4400 .2byte 0x4400 +80000612: 200e .2byte 0x200e +80000614: 8844 .2byte 0x8844 +80000616: 4401 .2byte 0x4401 +80000618: 080c .2byte 0x80c +8000061a: 5800 .2byte 0x5800 +8000061c: 0cc8 .2byte 0xcc8 +8000061e: 2002 .2byte 0x2002 +80000620: 0e44 .2byte 0xe44 +80000622: 0000 .2byte 0x0 +80000624: 0020 .2byte 0x20 +80000626: 0000 .2byte 0x0 +80000628: 011c .2byte 0x11c +8000062a: 0000 .2byte 0x0 +8000062c: fd74 .2byte 0xfd74 +8000062e: ffff .2byte 0xffff +80000630: 004c .2byte 0x4c +80000632: 0000 .2byte 0x0 +80000634: 4400 .2byte 0x4400 +80000636: 300e .2byte 0x300e +80000638: 8844 .2byte 0x8844 +8000063a: 4401 .2byte 0x4401 +8000063c: 080c .2byte 0x80c +8000063e: 7800 .2byte 0x7800 +80000640: 0cc8 .2byte 0xcc8 +80000642: 3002 .2byte 0x3002 +80000644: 0e44 .2byte 0xe44 +80000646: 0000 .2byte 0x0 +80000648: 0024 .2byte 0x24 +8000064a: 0000 .2byte 0x0 +8000064c: 0140 .2byte 0x140 +8000064e: 0000 .2byte 0x0 +80000650: fd9c .2byte 0xfd9c +80000652: ffff .2byte 0xffff +80000654: 00fc .2byte 0xfc +80000656: 0000 .2byte 0x0 +80000658: 4400 .2byte 0x4400 +8000065a: 300e .2byte 0x300e +8000065c: 8148 .2byte 0x8148 +8000065e: 8801 .2byte 0x8801 +80000660: 4402 .2byte 0x4402 +80000662: 080c .2byte 0x80c +80000664: 0200 .2byte 0x200 +80000666: c1e0 .2byte 0xc1e0 +80000668: c844 .2byte 0xc844 +8000066a: 020c .2byte 0x20c +8000066c: 4430 .2byte 0x4430 +8000066e: 000e .2byte 0xe + +Disassembly of section .sdata: + +80010020 <_ZL6allocp>: +80010020: 0024 .2byte 0x24 +80010022: 8001 .2byte 0x8001 + +Disassembly of section .bss: + +80010024 <_ZL8allocbuf>: + ... + +80012734 <_ZZ13simple_strtokPcPKcE10static_str>: +80012734: 0000 .2byte 0x0 + ... + +Disassembly of section .comment: + +00000000 <.comment>: + 0: 3a434347 .4byte 0x3a434347 + 4: 2820 .2byte 0x2820 + 6: 2029 .2byte 0x2029 + 8: 3231 .2byte 0x3231 + a: 322e .2byte 0x322e + c: 302e .2byte 0x302e + ... + +Disassembly of section .riscv.attributes: + +00000000 <.riscv.attributes>: + 0: 1b41 .2byte 0x1b41 + 2: 0000 .2byte 0x0 + 4: 7200 .2byte 0x7200 + 6: 7369 .2byte 0x7369 + 8: 01007663 bgeu x0,x16,14 <_start-0x7fffffec> + c: 0011 .2byte 0x11 + e: 0000 .2byte 0x0 + 10: 1004 .2byte 0x1004 + 12: 7205 .2byte 0x7205 + 14: 3376 .2byte 0x3376 + 16: 6932 .2byte 0x6932 + 18: 7032 .2byte 0x7032 + 1a: 0031 .2byte 0x31 + +Disassembly of section .debug_aranges: + +00000000 <.debug_aranges>: + 0: 001c .2byte 0x1c + 2: 0000 .2byte 0x0 + 4: 0002 .2byte 0x2 + 6: 0000 .2byte 0x0 + 8: 0000 .2byte 0x0 + a: 0004 .2byte 0x4 + c: 0000 .2byte 0x0 + e: 0000 .2byte 0x0 + 10: 0000 .2byte 0x0 + 12: 8000 .2byte 0x8000 + 14: 0030 .2byte 0x30 + ... + 1e: 0000 .2byte 0x0 + 20: 001c .2byte 0x1c + 22: 0000 .2byte 0x0 + 24: 0002 .2byte 0x2 + 26: 0024 .2byte 0x24 + 28: 0000 .2byte 0x0 + 2a: 0004 .2byte 0x4 + 2c: 0000 .2byte 0x0 + 2e: 0000 .2byte 0x0 + 30: 0030 .2byte 0x30 + 32: 8000 .2byte 0x8000 + 34: 0370 .2byte 0x370 + ... + 3e: 0000 .2byte 0x0 + 40: 001c .2byte 0x1c + 42: 0000 .2byte 0x0 + 44: 0002 .2byte 0x2 + 46: 025d .2byte 0x25d + 48: 0000 .2byte 0x0 + 4a: 0004 .2byte 0x4 + 4c: 0000 .2byte 0x0 + 4e: 0000 .2byte 0x0 + 50: 03a0 .2byte 0x3a0 + 52: 8000 .2byte 0x8000 + 54: 0148 .2byte 0x148 + ... + +Disassembly of section .debug_info: + +00000000 <.debug_info>: + 0: 0020 .2byte 0x20 + 2: 0000 .2byte 0x0 + 4: 0005 .2byte 0x5 + 6: 0401 .2byte 0x401 + 8: 0000 .2byte 0x0 + a: 0000 .2byte 0x0 + c: 0001 .2byte 0x1 + e: 0000 .2byte 0x0 + 10: 0000 .2byte 0x0 + 12: 0000 .2byte 0x0 + 14: 3080 .2byte 0x3080 + 16: 0000 .2byte 0x0 + 18: 0000 .2byte 0x0 + 1a: 0008 .2byte 0x8 + 1c: 0000 .2byte 0x0 + 1e: 0020 .2byte 0x20 + 20: 0000 .2byte 0x0 + 22: 8001 .2byte 0x8001 + 24: 0235 .2byte 0x235 + 26: 0000 .2byte 0x0 + 28: 0005 .2byte 0x5 + 2a: 0401 .2byte 0x401 + 2c: 0014 .2byte 0x14 + 2e: 0000 .2byte 0x0 + 30: 2e08 .2byte 0x2e08 + 32: 001d .2byte 0x1d + 34: 2100 .2byte 0x2100 + 36: 0020 .2byte 0x20 + 38: 0000 .2byte 0x0 + 3a: 0000 .2byte 0x0 + 3c: 0000 .2byte 0x0 + 3e: 0030 .2byte 0x30 + 40: 8000 .2byte 0x8000 + 42: 0370 .2byte 0x370 + 44: 0000 .2byte 0x0 + 46: 006e .2byte 0x6e + 48: 0000 .2byte 0x0 + 4a: 0000 .2byte 0x0 + 4c: 0000 .2byte 0x0 + 4e: 0101 .2byte 0x101 + 50: d606 .2byte 0xd606 + 52: 0025 .2byte 0x25 + 54: 0100 .2byte 0x100 + 56: 0502 .2byte 0x502 + 58: 0632 .2byte 0x632 + 5a: 0000 .2byte 0x0 + 5c: 0401 .2byte 0x401 + 5e: 5d05 .2byte 0x5d05 + 60: 0024 .2byte 0x24 + 62: 0100 .2byte 0x100 + 64: 0508 .2byte 0x508 + 66: 12ad .2byte 0x12ad + 68: 0000 .2byte 0x0 + 6a: 0101 .2byte 0x101 + 6c: 8a08 .2byte 0x8a08 + 6e: 01000027 .4byte 0x1000027 + 72: 0702 .2byte 0x702 + 74: 04b5 .2byte 0x4b5 + 76: 0000 .2byte 0x0 + 78: 0401 .2byte 0x401 + 7a: 0020ca07 .4byte 0x20ca07 + 7e: 0100 .2byte 0x100 + 80: 0708 .2byte 0x708 + 82: 3010 .2byte 0x3010 + 84: 0000 .2byte 0x0 + 86: 0409 .2byte 0x409 + 88: 6905 .2byte 0x6905 + 8a: 746e .2byte 0x746e + 8c: 0100 .2byte 0x100 + 8e: 0704 .2byte 0x704 + 90: 2cd6 .2byte 0x2cd6 + 92: 0000 .2byte 0x0 + 94: 810a .2byte 0x810a + 96: 0000 .2byte 0x0 + 98: 8100 .2byte 0x8100 + 9a: 0000 .2byte 0x0 + 9c: 0b00 .2byte 0xb00 + 9e: 0069 .2byte 0x69 + a0: 0000 .2byte 0x0 + a2: 0100270f .4byte 0x100270f + a6: 0801 .2byte 0x801 + a8: 25dd .2byte 0x25dd + aa: 0000 .2byte 0x0 + ac: 810c .2byte 0x810c + ae: 0000 .2byte 0x0 + b0: 0300 .2byte 0x300 + b2: 109c .2byte 0x109c + b4: 0000 .2byte 0x0 + b6: 0d10 .2byte 0xd10 + b8: 0070 .2byte 0x70 + ba: 0000 .2byte 0x0 + bc: 0305 .2byte 0x305 + be: 0024 .2byte 0x24 + c0: 8001 .2byte 0x8001 + c2: 001cfd03 .4byte 0x1cfd03 + c6: 1100 .2byte 0x1100 + c8: af0e .2byte 0xaf0e + ca: 0000 .2byte 0x0 + cc: 0500 .2byte 0x500 + ce: 01002003 lw x0,16(x0) # 10 <_start-0x7ffffff0> + d2: 0480 .2byte 0x480 + d4: 0081 .2byte 0x81 + d6: 0000 .2byte 0x0 + d8: ac0d .2byte 0xac0d + da: 0029 .2byte 0x29 + dc: 0100 .2byte 0x100 + de: 0572 .2byte 0x572 + e0: 0062 .2byte 0x62 + e2: 0000 .2byte 0x0 + e4: 0374 .2byte 0x374 + e6: 8000 .2byte 0x8000 + e8: 002c .2byte 0x2c + ea: 0000 .2byte 0x0 + ec: 9c01 .2byte 0x9c01 + ee: 00dd .2byte 0xdd + f0: 0000 .2byte 0x0 + f2: 7305 .2byte 0x7305 + f4: 7274 .2byte 0x7274 + f6: 7300 .2byte 0x7300 + f8: af0c .2byte 0xaf0c + fa: 0000 .2byte 0x0 + fc: 0200 .2byte 0x200 + fe: 6c91 .2byte 0x6c91 + 100: 0e00 .2byte 0xe00 + 102: 6c61 .2byte 0x6c61 + 104: 6c010067 jalr x0,1728(x2) + 108: d905 .2byte 0xd905 + 10a: 0015 .2byte 0x15 + 10c: 6200 .2byte 0x6200 + 10e: 0000 .2byte 0x0 + 110: 5000 .2byte 0x5000 + 112: 24800003 lb x0,584(x0) # 248 <_start-0x7ffffdb8> + 116: 0000 .2byte 0x0 + 118: 0100 .2byte 0x100 + 11a: 0a9c .2byte 0xa9c + 11c: 0001 .2byte 0x1 + 11e: 0200 .2byte 0x200 + 120: 7470 .2byte 0x7470 + 122: 0072 .2byte 0x72 + 124: 176c .2byte 0x176c + 126: 010a .2byte 0x10a + 128: 0000 .2byte 0x0 + 12a: 9102 .2byte 0x9102 + 12c: 006c .2byte 0x6c + 12e: 8804 .2byte 0x8804 + 130: 0000 .2byte 0x0 + 132: 0f00 .2byte 0xf00 + 134: 000021f7 .4byte 0x21f7 + 138: 4001 .2byte 0x4001 + 13a: 002d4707 .4byte 0x2d4707 + 13e: af00 .2byte 0xaf00 + 140: 0000 .2byte 0x0 + 142: e800 .2byte 0xe800 + 144: 0001 .2byte 0x1 + 146: 6880 .2byte 0x6880 + 148: 0001 .2byte 0x1 + 14a: 0100 .2byte 0x100 + 14c: 699c .2byte 0x699c + 14e: 0001 .2byte 0x1 + 150: 0200 .2byte 0x200 + 152: 00727473 .4byte 0x727473 + 156: 1b40 .2byte 0x1b40 + 158: 000000af .4byte 0xaf + 15c: 9102 .2byte 0x9102 + 15e: 065c .2byte 0x65c + 160: 053d .2byte 0x53d + 162: 0000 .2byte 0x0 + 164: 2c40 .2byte 0x2c40 + 166: 010a .2byte 0x10a + 168: 0000 .2byte 0x0 + 16a: 9102 .2byte 0x9102 + 16c: 0358 .2byte 0x358 + 16e: 3059 .2byte 0x3059 + 170: 0000 .2byte 0x0 + 172: 1241 .2byte 0x1241 + 174: 000000af .4byte 0xaf + 178: 0305 .2byte 0x305 + 17a: 2734 .2byte 0x2734 + 17c: 8001 .2byte 0x8001 + 17e: 000ac703 lbu x14,0(x21) + 182: 5800 .2byte 0x5800 + 184: 0000af0b .4byte 0xaf0b + 188: 0200 .2byte 0x200 + 18a: 6c91 .2byte 0x6c91 + 18c: 0700 .2byte 0x700 + 18e: 17a2 .2byte 0x17a2 + 190: 0000 .2byte 0x0 + 192: 0635 .2byte 0x635 + 194: 1741 .2byte 0x1741 + 196: 0000 .2byte 0x0 + 198: 01a1 .2byte 0x1a1 + 19a: 0000 .2byte 0x0 + 19c: 0188 .2byte 0x188 + 19e: 8000 .2byte 0x8000 + 1a0: 0060 .2byte 0x60 + 1a2: 0000 .2byte 0x0 + 1a4: 9c01 .2byte 0x9c01 + 1a6: 01a1 .2byte 0x1a1 + 1a8: 0000 .2byte 0x0 + 1aa: 6302 .2byte 0x6302 + 1ac: 3500 .2byte 0x3500 + 1ae: 8114 .2byte 0x8114 + 1b0: 0000 .2byte 0x0 + 1b2: 0200 .2byte 0x200 + 1b4: 6f91 .2byte 0x6f91 + 1b6: 3d06 .2byte 0x3d06 + 1b8: 0005 .2byte 0x5 + 1ba: 3500 .2byte 0x3500 + 1bc: 00010a23 sb x0,20(x2) + 1c0: 0200 .2byte 0x200 + 1c2: 6891 .2byte 0x6891 + 1c4: 0100 .2byte 0x100 + 1c6: 0201 .2byte 0x201 + 1c8: 00001af3 .4byte 0x1af3 + 1cc: 00241b07 .4byte 0x241b07 + 1d0: 1300 .2byte 0x1300 + 1d2: 001bd207 .4byte 0x1bd207 + 1d6: af00 .2byte 0xaf00 + 1d8: 0000 .2byte 0x0 + 1da: dc00 .2byte 0xdc00 + 1dc: 0000 .2byte 0x0 + 1de: ac80 .2byte 0xac80 + 1e0: 0000 .2byte 0x0 + 1e2: 0100 .2byte 0x100 + 1e4: d29c .2byte 0xd29c + 1e6: 0001 .2byte 0x1 + 1e8: 0200 .2byte 0x200 + 1ea: 006e .2byte 0x6e + 1ec: 00621113 slli x2,x4,0x6 + 1f0: 0000 .2byte 0x0 + 1f2: 9102 .2byte 0x9102 + 1f4: 006c .2byte 0x6c + 1f6: 3e10 .2byte 0x3e10 + 1f8: 000a .2byte 0xa + 1fa: 0100 .2byte 0x100 + 1fc: 060a .2byte 0x60a + 1fe: 108e .2byte 0x108e + 200: 0000 .2byte 0x0 + 202: 0080 .2byte 0x80 + 204: 8000 .2byte 0x8000 + 206: 005c .2byte 0x5c + 208: 0000 .2byte 0x0 + 20a: 9c01 .2byte 0x9c01 + 20c: 0205 .2byte 0x205 + 20e: 0000 .2byte 0x0 + 210: 7302 .2byte 0x7302 + 212: 0a00 .2byte 0xa00 + 214: 0000af13 slti x30,x1,0 + 218: 0200 .2byte 0x200 + 21a: 6c91 .2byte 0x6c91 + 21c: 7402 .2byte 0x7402 + 21e: 0a00 .2byte 0xa00 + 220: af1c .2byte 0xaf1c + 222: 0000 .2byte 0x0 + 224: 0200 .2byte 0x200 + 226: 6891 .2byte 0x6891 + 228: 1100 .2byte 0x1100 + 22a: 35fa .2byte 0x35fa + 22c: 0000 .2byte 0x0 + 22e: 0301 .2byte 0x301 + 230: e505 .2byte 0xe505 + 232: 6200000b .4byte 0x6200000b + 236: 0000 .2byte 0x0 + 238: 3000 .2byte 0x3000 + 23a: 0000 .2byte 0x0 + 23c: 5080 .2byte 0x5080 + 23e: 0000 .2byte 0x0 + 240: 0100 .2byte 0x100 + 242: 029c .2byte 0x29c + 244: 12030073 sfence.vma x6,x0 + 248: 000000af .4byte 0xaf + 24c: 9102 .2byte 0x9102 + 24e: 055c .2byte 0x55c + 250: 0070 .2byte 0x70 + 252: 0b04 .2byte 0xb04 + 254: 000000af .4byte 0xaf + 258: 9102 .2byte 0x9102 + 25a: 006c .2byte 0x6c + 25c: 5700 .2byte 0x5700 + 25e: 0001 .2byte 0x1 + 260: 0500 .2byte 0x500 + 262: 0100 .2byte 0x100 + 264: 5404 .2byte 0x5404 + 266: 0001 .2byte 0x1 + 268: 0700 .2byte 0x700 + 26a: 1d2e .2byte 0x1d2e + 26c: 0000 .2byte 0x0 + 26e: 8421 .2byte 0x8421 + 270: 0000 .2byte 0x0 + 272: 0000 .2byte 0x0 + 274: 0000 .2byte 0x0 + 276: a000 .2byte 0xa000 + 278: 48800003 lb x0,1160(x0) # 488 <_start-0x7ffffb78> + 27c: 0001 .2byte 0x1 + 27e: 9c00 .2byte 0x9c00 + 280: 10000003 lb x0,256(x0) # 100 <_start-0x7fffff00> + 284: 000c .2byte 0xc + 286: 0100 .2byte 0x100 + 288: 0601 .2byte 0x601 + 28a: 25d6 .2byte 0x25d6 + 28c: 0000 .2byte 0x0 + 28e: 0201 .2byte 0x201 + 290: 3205 .2byte 0x3205 + 292: 0006 .2byte 0x6 + 294: 0100 .2byte 0x100 + 296: 0504 .2byte 0x504 + 298: 245d .2byte 0x245d + 29a: 0000 .2byte 0x0 + 29c: 0801 .2byte 0x801 + 29e: ad05 .2byte 0xad05 + 2a0: 0012 .2byte 0x12 + 2a2: 0800 .2byte 0x800 + 2a4: 35b2 .2byte 0x35b2 + 2a6: 0000 .2byte 0x0 + 2a8: 2e02 .2byte 0x2e02 + 2aa: 5218 .2byte 0x5218 + 2ac: 0000 .2byte 0x0 + 2ae: 0100 .2byte 0x100 + 2b0: 0801 .2byte 0x801 + 2b2: 278a .2byte 0x278a + 2b4: 0000 .2byte 0x0 + 2b6: 0201 .2byte 0x201 + 2b8: 0004b507 .4byte 0x4b507 + 2bc: 0100 .2byte 0x100 + 2be: 0704 .2byte 0x704 + 2c0: 20ca .2byte 0x20ca + 2c2: 0000 .2byte 0x0 + 2c4: 0801 .2byte 0x801 + 2c6: 00301007 .4byte 0x301007 + 2ca: 0900 .2byte 0x900 + 2cc: 0504 .2byte 0x504 + 2ce: 6e69 .2byte 0x6e69 + 2d0: 0074 .2byte 0x74 + 2d2: 0401 .2byte 0x401 + 2d4: 002cd607 .4byte 0x2cd607 + 2d8: 0a00 .2byte 0xa00 + 2da: 35e6 .2byte 0x35e6 + 2dc: 0000 .2byte 0x0 + 2de: 0c01 .2byte 0xc01 + 2e0: ba06 .2byte 0xba06 + 2e2: 0035 .2byte 0x35 + 2e4: ec00 .2byte 0xec00 + 2e6: fc800003 lb x0,-56(x0) # ffffffc8 <__BSS_END__+0x7ffed890> + 2ea: 0000 .2byte 0x0 + 2ec: 0100 .2byte 0x100 + 2ee: 119c .2byte 0x119c + 2f0: 0001 .2byte 0x1 + 2f2: 0200 .2byte 0x200 + 2f4: 00003607 .4byte 0x3607 + 2f8: 00011123 sh x0,2(x2) + 2fc: 0200 .2byte 0x200 + 2fe: 5c91 .2byte 0x5c91 + 300: a202 .2byte 0xa202 + 302: 0035 .2byte 0x35 + 304: 3800 .2byte 0x3800 + 306: 0111 .2byte 0x111 + 308: 0000 .2byte 0x0 + 30a: 9102 .2byte 0x9102 + 30c: 0258 .2byte 0x258 + 30e: 3601 .2byte 0x3601 + 310: 0000 .2byte 0x0 + 312: 2248 .2byte 0x2248 + 314: 0001 .2byte 0x1 + 316: 0200 .2byte 0x200 + 318: 5491 .2byte 0x5491 + 31a: d704 .2byte 0xd704 + 31c: 0035 .2byte 0x35 + 31e: 0e00 .2byte 0xe00 + 320: 006e .2byte 0x6e + 322: 0000 .2byte 0x0 + 324: 9102 .2byte 0x9102 + 326: 0b60 .2byte 0xb60 + 328: 0418 .2byte 0x418 + 32a: 8000 .2byte 0x8000 + 32c: 0030 .2byte 0x30 + 32e: 0000 .2byte 0x0 + 330: 00e4 .2byte 0xe4 + 332: 0000 .2byte 0x0 + 334: 10006903 .4byte 0x10006903 + 338: 6e0e .2byte 0x6e0e + 33a: 0000 .2byte 0x0 + 33c: 0200 .2byte 0x200 + 33e: 6c91 .2byte 0x6c91 + 340: 0500 .2byte 0x500 + 342: 0448 .2byte 0x448 + 344: 8000 .2byte 0x8000 + 346: 0088 .2byte 0x88 + 348: 0000 .2byte 0x0 + 34a: 14006903 .4byte 0x14006903 + 34e: 6e0e .2byte 0x6e0e + 350: 0000 .2byte 0x0 + 352: 0200 .2byte 0x200 + 354: 6891 .2byte 0x6891 + 356: 5005 .2byte 0x5005 + 358: 0004 .2byte 0x4 + 35a: 6880 .2byte 0x6880 + 35c: 0000 .2byte 0x0 + 35e: 0300 .2byte 0x300 + 360: 006a .2byte 0x6a + 362: 1215 .2byte 0x1215 + 364: 006e .2byte 0x6e + 366: 0000 .2byte 0x0 + 368: 9102 .2byte 0x9102 + 36a: 0064 .2byte 0x64 + 36c: 0000 .2byte 0x0 + 36e: 1d06 .2byte 0x1d06 + 370: 0001 .2byte 0x1 + 372: 0100 .2byte 0x100 + 374: 0801 .2byte 0x801 + 376: 25dd .2byte 0x25dd + 378: 0000 .2byte 0x0 + 37a: 160c .2byte 0x160c + 37c: 0001 .2byte 0x1 + 37e: 0600 .2byte 0x600 + 380: 0046 .2byte 0x46 + 382: 0000 .2byte 0x0 + 384: f70d .2byte 0xf70d + 386: 0035 .2byte 0x35 + 388: 0100 .2byte 0x100 + 38a: 0c04 .2byte 0xc04 + 38c: 006e .2byte 0x6e + 38e: 0000 .2byte 0x0 + 390: 03a0 .2byte 0x3a0 + 392: 8000 .2byte 0x8000 + 394: 004c .2byte 0x4c + 396: 0000 .2byte 0x0 + 398: 9c01 .2byte 0x9c01 + 39a: 730e .2byte 0x730e + 39c: 7274 .2byte 0x7274 + 39e: 0100 .2byte 0x100 + 3a0: 2204 .2byte 0x2204 + 3a2: 0111 .2byte 0x111 + 3a4: 0000 .2byte 0x0 + 3a6: 9102 .2byte 0x9102 + 3a8: 045c .2byte 0x45c + 3aa: 35df 0000 6e05 .byte 0xdf, 0x35, 0x00, 0x00, 0x05, 0x6e + 3b0: 0000 .2byte 0x0 + 3b2: 0200 .2byte 0x200 + 3b4: 6c91 .2byte 0x6c91 + ... + +Disassembly of section .debug_abbrev: + +00000000 <.debug_abbrev>: + 0: 1101 .2byte 0x1101 + 2: 1000 .2byte 0x1000 + 4: 12011117 auipc x2,0x12011 + 8: 1b0e030f .4byte 0x1b0e030f + c: 250e .2byte 0x250e + e: 130e .2byte 0x130e + 10: 0005 .2byte 0x5 + 12: 0000 .2byte 0x0 + 14: 2401 .2byte 0x2401 + 16: 0b00 .2byte 0xb00 + 18: 030b3e0b .4byte 0x30b3e0b + 1c: 000e .2byte 0xe + 1e: 0200 .2byte 0x200 + 20: 0005 .2byte 0x5 + 22: 213a0803 lb x16,531(x20) + 26: 3b01 .2byte 0x3b01 + 28: 490b390b .4byte 0x490b390b + 2c: 00180213 addi x4,x16,1 + 30: 0300 .2byte 0x300 + 32: 0034 .2byte 0x34 + 34: 213a0e03 lb x28,531(x20) + 38: 3b01 .2byte 0x3b01 + 3a: 490b390b .4byte 0x490b390b + 3e: 00180213 addi x4,x16,1 + 42: 0400 .2byte 0x400 + 44: 210b000f .4byte 0x210b000f + 48: 4904 .2byte 0x4904 + 4a: 05000013 addi x0,x0,80 + 4e: 0034 .2byte 0x34 + 50: 213a0803 lb x16,531(x20) + 54: 3b01 .2byte 0x3b01 + 56: 490b390b .4byte 0x490b390b + 5a: 00180213 addi x4,x16,1 + 5e: 0600 .2byte 0x600 + 60: 0005 .2byte 0x5 + 62: 213a0e03 lb x28,531(x20) + 66: 3b01 .2byte 0x3b01 + 68: 490b390b .4byte 0x490b390b + 6c: 00180213 addi x4,x16,1 + 70: 0700 .2byte 0x700 + 72: 012e .2byte 0x12e + 74: 0e03193f 3b01213a .8byte 0x3b01213a0e03193f + 7c: 6e0b390b .4byte 0x6e0b390b + 80: 490e .2byte 0x490e + 82: 12011113 .4byte 0x12011113 + 86: 4006 .2byte 0x4006 + 88: 7a18 .2byte 0x7a18 + 8a: 0119 .2byte 0x119 + 8c: 08000013 addi x0,x0,128 + 90: 0111 .2byte 0x111 + 92: 0e25 .2byte 0xe25 + 94: 1f030b13 addi x22,x6,496 + 98: 01111f1b .4byte 0x1111f1b + 9c: 0612 .2byte 0x612 + 9e: 1710 .2byte 0x1710 + a0: 1779 .2byte 0x1779 + a2: 0000 .2byte 0x0 + a4: 2409 .2byte 0x2409 + a6: 0b00 .2byte 0xb00 + a8: 030b3e0b .4byte 0x30b3e0b + ac: 0008 .2byte 0x8 + ae: 0a00 .2byte 0xa00 + b0: 0101 .2byte 0x101 + b2: 1349 .2byte 0x1349 + b4: 1301 .2byte 0x1301 + b6: 0000 .2byte 0x0 + b8: 4900210b .4byte 0x4900210b + bc: 00052f13 slti x30,x10,0 + c0: 0c00 .2byte 0xc00 + c2: 0026 .2byte 0x26 + c4: 1349 .2byte 0x1349 + c6: 0000 .2byte 0x0 + c8: 2e0d .2byte 0x2e0d + ca: 3f01 .2byte 0x3f01 + cc: 0319 .2byte 0x319 + ce: 3a0e .2byte 0x3a0e + d0: 390b3b0b .4byte 0x390b3b0b + d4: 1113490b .4byte 0x1113490b + d8: 1201 .2byte 0x1201 + da: 4006 .2byte 0x4006 + dc: 7a18 .2byte 0x7a18 + de: 0119 .2byte 0x119 + e0: 0e000013 addi x0,x0,224 + e4: 012e .2byte 0x12e + e6: 0803193f 0b3b0b3a .8byte 0xb3b0b3a0803193f + ee: 0b39 .2byte 0xb39 + f0: 0e6e .2byte 0xe6e + f2: 1349 .2byte 0x1349 + f4: 0111 .2byte 0x111 + f6: 0612 .2byte 0x612 + f8: 1840 .2byte 0x1840 + fa: 197a .2byte 0x197a + fc: 1301 .2byte 0x1301 + fe: 0000 .2byte 0x0 + 100: 3f012e0f .4byte 0x3f012e0f + 104: 0319 .2byte 0x319 + 106: 3a0e .2byte 0x3a0e + 108: 390b3b0b .4byte 0x390b3b0b + 10c: 490e6e0b .4byte 0x490e6e0b + 110: 12011113 .4byte 0x12011113 + 114: 4006 .2byte 0x4006 + 116: 7c18 .2byte 0x7c18 + 118: 0119 .2byte 0x119 + 11a: 10000013 addi x0,x0,256 + 11e: 012e .2byte 0x12e + 120: 0e03193f 0b3b0b3a .8byte 0xb3b0b3a0e03193f + 128: 0b39 .2byte 0xb39 + 12a: 0e6e .2byte 0xe6e + 12c: 0111 .2byte 0x111 + 12e: 0612 .2byte 0x612 + 130: 1840 .2byte 0x1840 + 132: 197a .2byte 0x197a + 134: 1301 .2byte 0x1301 + 136: 0000 .2byte 0x0 + 138: 2e11 .2byte 0x2e11 + 13a: 3f01 .2byte 0x3f01 + 13c: 0319 .2byte 0x319 + 13e: 3a0e .2byte 0x3a0e + 140: 390b3b0b .4byte 0x390b3b0b + 144: 490e6e0b .4byte 0x490e6e0b + 148: 12011113 .4byte 0x12011113 + 14c: 4006 .2byte 0x4006 + 14e: 7a18 .2byte 0x7a18 + 150: 0019 .2byte 0x19 + 152: 0000 .2byte 0x0 + 154: 2401 .2byte 0x2401 + 156: 0b00 .2byte 0xb00 + 158: 030b3e0b .4byte 0x30b3e0b + 15c: 000e .2byte 0xe + 15e: 0200 .2byte 0x200 + 160: 0005 .2byte 0x5 + 162: 213a0e03 lb x28,531(x20) + 166: 3b01 .2byte 0x3b01 + 168: 0c21 .2byte 0xc21 + 16a: 0b39 .2byte 0xb39 + 16c: 1349 .2byte 0x1349 + 16e: 1802 .2byte 0x1802 + 170: 0000 .2byte 0x0 + 172: 03003403 .4byte 0x3003403 + 176: 3a08 .2byte 0x3a08 + 178: 0121 .2byte 0x121 + 17a: 0b390b3b .4byte 0xb390b3b + 17e: 1349 .2byte 0x1349 + 180: 1802 .2byte 0x1802 + 182: 0000 .2byte 0x0 + 184: 3404 .2byte 0x3404 + 186: 0300 .2byte 0x300 + 188: 3a0e .2byte 0x3a0e + 18a: 0121 .2byte 0x121 + 18c: 21390b3b .4byte 0x21390b3b + 190: 4909 .2byte 0x4909 + 192: 00180213 addi x4,x16,1 + 196: 0500 .2byte 0x500 + 198: 0111010b .4byte 0x111010b + 19c: 0612 .2byte 0x612 + 19e: 0000 .2byte 0x0 + 1a0: 0f06 .2byte 0xf06 + 1a2: 0b00 .2byte 0xb00 + 1a4: 0421 .2byte 0x421 + 1a6: 1349 .2byte 0x1349 + 1a8: 0000 .2byte 0x0 + 1aa: 25011107 .4byte 0x25011107 + 1ae: 130e .2byte 0x130e + 1b0: 1b1f030b .4byte 0x1b1f030b + 1b4: 111f 1201 1006 .byte 0x1f, 0x11, 0x01, 0x12, 0x06, 0x10 + 1ba: 00177917 auipc x18,0x177 + 1be: 0800 .2byte 0x800 + 1c0: 0016 .2byte 0x16 + 1c2: 0b3a0e03 lb x28,179(x20) + 1c6: 0b390b3b .4byte 0xb390b3b + 1ca: 1349 .2byte 0x1349 + 1cc: 0000 .2byte 0x0 + 1ce: 2409 .2byte 0x2409 + 1d0: 0b00 .2byte 0xb00 + 1d2: 030b3e0b .4byte 0x30b3e0b + 1d6: 0008 .2byte 0x8 + 1d8: 0a00 .2byte 0xa00 + 1da: 012e .2byte 0x12e + 1dc: 0e03193f 0b3b0b3a .8byte 0xb3b0b3a0e03193f + 1e4: 0b39 .2byte 0xb39 + 1e6: 0e6e .2byte 0xe6e + 1e8: 0111 .2byte 0x111 + 1ea: 0612 .2byte 0x612 + 1ec: 1840 .2byte 0x1840 + 1ee: 197c .2byte 0x197c + 1f0: 1301 .2byte 0x1301 + 1f2: 0000 .2byte 0x0 + 1f4: 11010b0b .4byte 0x11010b0b + 1f8: 1201 .2byte 0x1201 + 1fa: 0106 .2byte 0x106 + 1fc: 0c000013 addi x0,x0,192 + 200: 0026 .2byte 0x26 + 202: 1349 .2byte 0x1349 + 204: 0000 .2byte 0x0 + 206: 2e0d .2byte 0x2e0d + 208: 0301 .2byte 0x301 + 20a: 3a0e .2byte 0x3a0e + 20c: 390b3b0b .4byte 0x390b3b0b + 210: 1113490b .4byte 0x1113490b + 214: 1201 .2byte 0x1201 + 216: 4006 .2byte 0x4006 + 218: 7a18 .2byte 0x7a18 + 21a: 0019 .2byte 0x19 + 21c: 0e00 .2byte 0xe00 + 21e: 0005 .2byte 0x5 + 220: 0b3a0803 lb x16,179(x20) + 224: 0b390b3b .4byte 0xb390b3b + 228: 1349 .2byte 0x1349 + 22a: 1802 .2byte 0x1802 + 22c: 0000 .2byte 0x0 + ... + +Disassembly of section .debug_line: + +00000000 <.debug_line>: + 0: 006a .2byte 0x6a + 2: 0000 .2byte 0x0 + 4: 0005 .2byte 0x5 + 6: 0004 .2byte 0x4 + 8: 002a .2byte 0x2a + a: 0000 .2byte 0x0 + c: 0101 .2byte 0x101 + e: fb01 .2byte 0xfb01 + 10: 0d0e .2byte 0xd0e + 12: 0100 .2byte 0x100 + 14: 0101 .2byte 0x101 + 16: 0001 .2byte 0x1 + 18: 0000 .2byte 0x0 + 1a: 0001 .2byte 0x1 + 1c: 0100 .2byte 0x100 + 1e: 0101 .2byte 0x101 + 20: 011f 0000 0000 .byte 0x1f, 0x01, 0x00, 0x00, 0x00, 0x00 + 26: 0102 .2byte 0x102 + 28: 021f 020f 0018 .byte 0x1f, 0x02, 0x0f, 0x02, 0x18, 0x00 + 2e: 0000 .2byte 0x0 + 30: 1800 .2byte 0x1800 + 32: 0000 .2byte 0x0 + 34: 0000 .2byte 0x0 + 36: 0500 .2byte 0x500 + 38: 0002 .2byte 0x2 + 3a: 0000 .2byte 0x0 + 3c: 1a80 .2byte 0x1a80 + 3e: 08090303 lb x6,128(x18) # 17723a <_start-0x7fe88dc6> + 42: 0100 .2byte 0x100 + 44: 04090303 lb x6,64(x18) + 48: 0100 .2byte 0x100 + 4a: 08090103 lb x2,128(x18) + 4e: 0100 .2byte 0x100 + 50: 08090503 lb x10,128(x18) + 54: 0100 .2byte 0x100 + 56: 04090203 lb x4,64(x18) + 5a: 0100 .2byte 0x100 + 5c: 08090203 lb x4,128(x18) + 60: 0100 .2byte 0x100 + 62: 04090303 lb x6,64(x18) + 66: 0100 .2byte 0x100 + 68: 0409 .2byte 0x409 + 6a: 0000 .2byte 0x0 + 6c: 0101 .2byte 0x101 + 6e: 032a .2byte 0x32a + 70: 0000 .2byte 0x0 + 72: 0005 .2byte 0x5 + 74: 0004 .2byte 0x4 + 76: 0038 .2byte 0x38 + 78: 0000 .2byte 0x0 + 7a: 0101 .2byte 0x101 + 7c: fb01 .2byte 0xfb01 + 7e: 0d0e .2byte 0xd0e + 80: 0100 .2byte 0x100 + 82: 0101 .2byte 0x101 + 84: 0001 .2byte 0x1 + 86: 0000 .2byte 0x0 + 88: 0001 .2byte 0x1 + 8a: 0100 .2byte 0x100 + 8c: 0101 .2byte 0x101 + 8e: 021f 0000 0000 .byte 0x1f, 0x02, 0x00, 0x00, 0x00, 0x00 + 94: 002c .2byte 0x2c + 96: 0000 .2byte 0x0 + 98: 0102 .2byte 0x102 + 9a: 021f 040f 0020 .byte 0x1f, 0x02, 0x0f, 0x04, 0x20, 0x00 + a0: 0000 .2byte 0x0 + a2: 2000 .2byte 0x2000 + a4: 0000 .2byte 0x0 + a6: 0000 .2byte 0x0 + a8: 006e .2byte 0x6e + aa: 0000 .2byte 0x0 + ac: 7701 .2byte 0x7701 + ae: 0000 .2byte 0x0 + b0: 0100 .2byte 0x100 + b2: 1505 .2byte 0x1505 + b4: 0500 .2byte 0x500 + b6: 3002 .2byte 0x3002 + b8: 0000 .2byte 0x0 + ba: 1480 .2byte 0x1480 + bc: 0b05 .2byte 0xb05 + be: 10090103 lb x2,256(x18) + c2: 0100 .2byte 0x100 + c4: 0505 .2byte 0x505 + c6: 08090103 lb x2,128(x18) + ca: 0100 .2byte 0x100 + cc: 0a05 .2byte 0xa05 + ce: 04090103 lb x2,64(x18) + d2: 0100 .2byte 0x100 + d4: 0c05 .2byte 0xc05 + d6: 0c097f03 .4byte 0xc097f03 + da: 0100 .2byte 0x100 + dc: 0f05 .2byte 0xf05 + de: 08090003 lb x0,128(x18) + e2: 0100 .2byte 0x100 + e4: 1005 .2byte 0x1005 + e6: 04090203 lb x4,64(x18) + ea: 0100 .2byte 0x100 + ec: 0105 .2byte 0x105 + ee: 0c090103 lb x2,192(x18) + f2: 0100 .2byte 0x100 + f4: 10090303 lb x6,256(x18) + f8: 0100 .2byte 0x100 + fa: 0605 .2byte 0x605 + fc: 14090103 lb x2,320(x18) + 100: 0100 .2byte 0x100 + 102: 1605 .2byte 0x1605 + 104: 0200 .2byte 0x200 + 106: 0104 .2byte 0x104 + 108: 04090003 lb x0,64(x18) + 10c: 0100 .2byte 0x100 + 10e: 1405 .2byte 0x1405 + 110: 0200 .2byte 0x200 + 112: 0104 .2byte 0x104 + 114: 0c090003 lb x0,192(x18) + 118: 0100 .2byte 0x100 + 11a: 0f05 .2byte 0xf05 + 11c: 0200 .2byte 0x200 + 11e: 0104 .2byte 0x104 + 120: 04090003 lb x0,64(x18) + 124: 0100 .2byte 0x100 + 126: 1205 .2byte 0x1205 + 128: 0200 .2byte 0x200 + 12a: 0104 .2byte 0x104 + 12c: 0c090003 lb x0,192(x18) + 130: 0100 .2byte 0x100 + 132: 0d05 .2byte 0xd05 + 134: 0200 .2byte 0x200 + 136: 0104 .2byte 0x104 + 138: 04090003 lb x0,64(x18) + 13c: 0100 .2byte 0x100 + 13e: 1205 .2byte 0x1205 + 140: 0200 .2byte 0x200 + 142: 0104 .2byte 0x104 + 144: 04090003 lb x0,64(x18) + 148: 0100 .2byte 0x100 + 14a: 0105 .2byte 0x105 + 14c: 0c090103 lb x2,192(x18) + 150: 0100 .2byte 0x100 + 152: 14090703 lb x14,320(x18) + 156: 0100 .2byte 0x100 + 158: 0f05 .2byte 0xf05 + 15a: 10090203 lb x4,256(x18) + 15e: 0100 .2byte 0x100 + 160: 0505 .2byte 0x505 + 162: 08090003 lb x0,128(x18) + 166: 0100 .2byte 0x100 + 168: 1505 .2byte 0x1505 + 16a: 04090103 lb x2,64(x18) + 16e: 0100 .2byte 0x100 + 170: 1005 .2byte 0x1005 + 172: 1c090003 lb x0,448(x18) + 176: 0100 .2byte 0x100 + 178: 0b05 .2byte 0xb05 + 17a: 08090003 lb x0,128(x18) + 17e: 0100 .2byte 0x100 + 180: 1305 .2byte 0x1305 + 182: 0c090403 lb x8,192(x18) + 186: 0100 .2byte 0x100 + 188: 1f05 .2byte 0x1f05 + 18a: 08090003 lb x0,128(x18) + 18e: 0100 .2byte 0x100 + 190: 0605 .2byte 0x605 + 192: 0c090003 lb x0,192(x18) + 196: 0100 .2byte 0x100 + 198: 0d05 .2byte 0xd05 + 19a: 08090103 lb x2,128(x18) + 19e: 0100 .2byte 0x100 + 1a0: 1005 .2byte 0x1005 + 1a2: 08090003 lb x0,128(x18) + 1a6: 0100 .2byte 0x100 + 1a8: 0d05 .2byte 0xd05 + 1aa: 04090003 lb x0,64(x18) + 1ae: 0100 .2byte 0x100 + 1b0: 1405 .2byte 0x1405 + 1b2: 0c090103 lb x2,192(x18) + 1b6: 0100 .2byte 0x100 + 1b8: 1605 .2byte 0x1605 + 1ba: 08090003 lb x0,128(x18) + 1be: 0100 .2byte 0x100 + 1c0: 1405 .2byte 0x1405 + 1c2: 04090003 lb x0,64(x18) + 1c6: 0100 .2byte 0x100 + 1c8: 1605 .2byte 0x1605 + 1ca: 04090003 lb x0,64(x18) + 1ce: 0100 .2byte 0x100 + 1d0: 0d05 .2byte 0xd05 + 1d2: 08090203 lb x4,128(x18) + 1d6: 0100 .2byte 0x100 + 1d8: 0105 .2byte 0x105 + 1da: 04090103 lb x2,64(x18) + 1de: 0100 .2byte 0x100 + 1e0: 2b05 .2byte 0x2b05 + 1e2: 10091503 lh x10,256(x18) + 1e6: 0100 .2byte 0x100 + 1e8: 0505 .2byte 0x505 + 1ea: 18090103 lb x2,384(x18) + 1ee: 0100 .2byte 0x100 + 1f0: 0f05 .2byte 0xf05 + 1f2: 04090103 lb x2,64(x18) + 1f6: 0100 .2byte 0x100 + 1f8: 0905 .2byte 0x905 + 1fa: 08090003 lb x0,128(x18) + 1fe: 0100 .2byte 0x100 + 200: 1405 .2byte 0x1405 + 202: 08090103 lb x2,128(x18) + 206: 0100 .2byte 0x100 + 208: 0f05 .2byte 0xf05 + 20a: 08090203 lb x4,128(x18) + 20e: 0100 .2byte 0x100 + 210: 0c05 .2byte 0xc05 + 212: 0c097c03 .4byte 0xc097c03 + 216: 0100 .2byte 0x100 + 218: 0c090603 lb x12,192(x18) + 21c: 0100 .2byte 0x100 + 21e: 0105 .2byte 0x105 + 220: 04090103 lb x2,64(x18) + 224: 0100 .2byte 0x100 + 226: 3405 .2byte 0x3405 + 228: 10090303 lb x6,256(x18) + 22c: 0100 .2byte 0x100 + 22e: 0505 .2byte 0x505 + 230: 18090403 lb x8,384(x18) + 234: 0100 .2byte 0x100 + 236: 1405 .2byte 0x1405 + 238: 08090103 lb x2,128(x18) + 23c: 0100 .2byte 0x100 + 23e: 0905 .2byte 0x905 + 240: 0c090403 lb x8,192(x18) + 244: 0100 .2byte 0x100 + 246: 0505 .2byte 0x505 + 248: 08090003 lb x0,128(x18) + 24c: 0100 .2byte 0x100 + 24e: 1905 .2byte 0x1905 + 250: 04090103 lb x2,64(x18) + 254: 0100 .2byte 0x100 + 256: 1305 .2byte 0x1305 + 258: 08090503 lb x10,128(x18) + 25c: 0100 .2byte 0x100 + 25e: 0c05 .2byte 0xc05 + 260: 14097f03 .4byte 0x14097f03 + 264: 0100 .2byte 0x100 + 266: 1805 .2byte 0x1805 + 268: 0c090003 lb x0,192(x18) + 26c: 0100 .2byte 0x100 + 26e: 2305 .2byte 0x2305 + 270: 0200 .2byte 0x200 + 272: 0104 .2byte 0x104 + 274: 04090003 lb x0,64(x18) + 278: 0100 .2byte 0x100 + 27a: 1805 .2byte 0x1805 + 27c: 0200 .2byte 0x200 + 27e: 0104 .2byte 0x104 + 280: 20090003 lb x0,512(x18) + 284: 0100 .2byte 0x100 + 286: 0200 .2byte 0x200 + 288: 0304 .2byte 0x304 + 28a: 0306 .2byte 0x306 + 28c: 0900 .2byte 0x900 + 28e: 0004 .2byte 0x4 + 290: 0001 .2byte 0x1 + 292: 0402 .2byte 0x402 + 294: 0304 .2byte 0x304 + 296: 0900 .2byte 0x900 + 298: 0008 .2byte 0x8 + 29a: 0001 .2byte 0x1 + 29c: 0402 .2byte 0x402 + 29e: 0306 .2byte 0x306 + 2a0: 0900 .2byte 0x900 + 2a2: 0004 .2byte 0x4 + 2a4: 0501 .2byte 0x501 + 2a6: 0609 .2byte 0x609 + 2a8: 04090503 lb x10,64(x18) + 2ac: 0100 .2byte 0x100 + 2ae: 0505 .2byte 0x505 + 2b0: 0c090003 lb x0,192(x18) + 2b4: 0100 .2byte 0x100 + 2b6: 1905 .2byte 0x1905 + 2b8: 04090103 lb x2,64(x18) + 2bc: 0100 .2byte 0x100 + 2be: 0b05 .2byte 0xb05 + 2c0: 08090403 lb x8,128(x18) + 2c4: 0100 .2byte 0x100 + 2c6: 0505 .2byte 0x505 + 2c8: 0c090303 lb x6,192(x18) + 2cc: 0100 .2byte 0x100 + 2ce: 1305 .2byte 0x1305 + 2d0: 04090103 lb x2,64(x18) + 2d4: 0100 .2byte 0x100 + 2d6: 0c05 .2byte 0xc05 + 2d8: 14097f03 .4byte 0x14097f03 + 2dc: 0100 .2byte 0x100 + 2de: 1805 .2byte 0x1805 + 2e0: 0c090003 lb x0,192(x18) + 2e4: 0100 .2byte 0x100 + 2e6: 2405 .2byte 0x2405 + 2e8: 0200 .2byte 0x200 + 2ea: 0104 .2byte 0x104 + 2ec: 04090003 lb x0,64(x18) + 2f0: 0100 .2byte 0x100 + 2f2: 1b05 .2byte 0x1b05 + 2f4: 0200 .2byte 0x200 + 2f6: 0104 .2byte 0x104 + 2f8: 20090003 lb x0,512(x18) + 2fc: 0100 .2byte 0x100 + 2fe: 1805 .2byte 0x1805 + 300: 0200 .2byte 0x200 + 302: 0104 .2byte 0x104 + 304: 08090003 lb x0,128(x18) + 308: 0100 .2byte 0x100 + 30a: 0200 .2byte 0x200 + 30c: 0304 .2byte 0x304 + 30e: 0306 .2byte 0x306 + 310: 0900 .2byte 0x900 + 312: 0004 .2byte 0x4 + 314: 0001 .2byte 0x1 + 316: 0402 .2byte 0x402 + 318: 0304 .2byte 0x304 + 31a: 0900 .2byte 0x900 + 31c: 0008 .2byte 0x8 + 31e: 0001 .2byte 0x1 + 320: 0402 .2byte 0x402 + 322: 0306 .2byte 0x306 + 324: 0900 .2byte 0x900 + 326: 0004 .2byte 0x4 + 328: 0501 .2byte 0x501 + 32a: 0609 .2byte 0x609 + 32c: 04090503 lb x10,64(x18) + 330: 0100 .2byte 0x100 + 332: 0505 .2byte 0x505 + 334: 0c090003 lb x0,192(x18) + 338: 0100 .2byte 0x100 + 33a: 0905 .2byte 0x905 + 33c: 04090103 lb x2,64(x18) + 340: 0100 .2byte 0x100 + 342: 1505 .2byte 0x1505 + 344: 08090003 lb x0,128(x18) + 348: 0100 .2byte 0x100 + 34a: 1305 .2byte 0x1305 + 34c: 04090103 lb x2,64(x18) + 350: 0100 .2byte 0x100 + 352: 0c05 .2byte 0xc05 + 354: 14090403 lb x8,320(x18) + 358: 0100 .2byte 0x100 + 35a: 0105 .2byte 0x105 + 35c: 04090103 lb x2,64(x18) + 360: 0100 .2byte 0x100 + 362: 1c05 .2byte 0x1c05 + 364: 14090503 lb x10,320(x18) + 368: 0100 .2byte 0x100 + 36a: 0c05 .2byte 0xc05 + 36c: 10090203 lb x4,256(x18) + 370: 0100 .2byte 0x100 + 372: 0105 .2byte 0x105 + 374: 04090103 lb x2,64(x18) + 378: 0100 .2byte 0x100 + 37a: 0c05 .2byte 0xc05 + 37c: 10090303 lb x6,256(x18) + 380: 0100 .2byte 0x100 + 382: 0c090103 lb x2,192(x18) + 386: 0100 .2byte 0x100 + 388: 0c090103 lb x2,192(x18) + 38c: 0100 .2byte 0x100 + 38e: 0105 .2byte 0x105 + 390: 04090103 lb x2,64(x18) + 394: 0100 .2byte 0x100 + 396: 1009 .2byte 0x1009 + 398: 0000 .2byte 0x0 + 39a: 0101 .2byte 0x101 + 39c: 01a1 .2byte 0x1a1 + 39e: 0000 .2byte 0x0 + 3a0: 0005 .2byte 0x5 + 3a2: 0004 .2byte 0x4 + 3a4: 003d .2byte 0x3d + 3a6: 0000 .2byte 0x0 + 3a8: 0101 .2byte 0x101 + 3aa: fb01 .2byte 0xfb01 + 3ac: 0d0e .2byte 0xd0e + 3ae: 0100 .2byte 0x100 + 3b0: 0101 .2byte 0x101 + 3b2: 0001 .2byte 0x1 + 3b4: 0000 .2byte 0x0 + 3b6: 0001 .2byte 0x1 + 3b8: 0100 .2byte 0x100 + 3ba: 0101 .2byte 0x101 + 3bc: 021f 0000 0000 .byte 0x1f, 0x02, 0x00, 0x00, 0x00, 0x00 + 3c2: 002c .2byte 0x2c + 3c4: 0000 .2byte 0x0 + 3c6: 0102 .2byte 0x102 + 3c8: 021f 050f 0084 .byte 0x1f, 0x02, 0x0f, 0x05, 0x84, 0x00 + 3ce: 0000 .2byte 0x0 + 3d0: 8400 .2byte 0x8400 + 3d2: 0000 .2byte 0x0 + 3d4: 0000 .2byte 0x0 + 3d6: 00000077 .4byte 0x77 + 3da: 8f01 .2byte 0x8f01 + 3dc: 0000 .2byte 0x0 + 3de: 0000 .2byte 0x0 + 3e0: 006e .2byte 0x6e + 3e2: 0000 .2byte 0x0 + 3e4: 0501 .2byte 0x501 + 3e6: 02050027 .4byte 0x2050027 + 3ea: 03a0 .2byte 0x3a0 + 3ec: 8000 .2byte 0x8000 + 3ee: 0515 .2byte 0x515 + 3f0: 0309 .2byte 0x309 + 3f2: 0901 .2byte 0x901 + 3f4: 0010 .2byte 0x10 + 3f6: 0501 .2byte 0x501 + 3f8: 0305 .2byte 0x305 + 3fa: 0901 .2byte 0x901 + 3fc: 0004 .2byte 0x4 + 3fe: 0501 .2byte 0x501 + 400: 0901030f .4byte 0x901030f + 404: 0004 .2byte 0x4 + 406: 0501 .2byte 0x501 + 408: 0310 .2byte 0x310 + 40a: 097f 000c 0501 0316 .byte 0x7f, 0x09, 0x0c, 0x00, 0x01, 0x05, 0x16, 0x03, 0x00, 0x09 + 412: 0900 + 414: 0004 .2byte 0x4 + 416: 0501 .2byte 0x501 + 418: 0318 .2byte 0x318 + 41a: 0900 .2byte 0x900 + 41c: 000c .2byte 0xc + 41e: 0501 .2byte 0x501 + 420: 030c .2byte 0x30c + 422: 00040903 lb x18,0(x8) + 426: 0501 .2byte 0x501 + 428: 0301 .2byte 0x301 + 42a: 0901 .2byte 0x901 + 42c: 0004 .2byte 0x4 + 42e: 0501 .2byte 0x501 + 430: 0902034f .4byte 0x902034f + 434: 0010 .2byte 0x10 + 436: 0501 .2byte 0x501 + 438: 09020323 sb x16,134(x4) # 86 <_start-0x7fffff7a> + 43c: 001c .2byte 0x1c + 43e: 0501 .2byte 0x501 + 440: 030e .2byte 0x30e + 442: 0902 .2byte 0x902 + 444: 0010 .2byte 0x10 + 446: 0501 .2byte 0x501 + 448: 0305 .2byte 0x305 + 44a: 0900 .2byte 0x900 + 44c: 0004 .2byte 0x4 + 44e: 0501 .2byte 0x501 + 450: 0402000f .4byte 0x402000f + 454: 09010303 lb x6,144(x2) # 12011094 <_start-0x6dfeef6c> + 458: 0004 .2byte 0x4 + 45a: 0501 .2byte 0x501 + 45c: 0010 .2byte 0x10 + 45e: 0402 .2byte 0x402 + 460: 09000303 lb x6,144(x0) # 90 <_start-0x7fffff70> + 464: 0004 .2byte 0x4 + 466: 0501 .2byte 0x501 + 468: 0012 .2byte 0x12 + 46a: 0402 .2byte 0x402 + 46c: 09000303 lb x6,144(x0) # 90 <_start-0x7fffff70> + 470: 0008 .2byte 0x8 + 472: 0501 .2byte 0x501 + 474: 0005 .2byte 0x5 + 476: 0402 .2byte 0x402 + 478: 097f0303 lb x6,151(x30) + 47c: 0004 .2byte 0x4 + 47e: 0501 .2byte 0x501 + 480: 04020017 auipc x0,0x4020 + 484: 0301 .2byte 0x301 + 486: 0900 .2byte 0x900 + 488: 000c .2byte 0xc + 48a: 0501 .2byte 0x501 + 48c: 030e .2byte 0x30e + 48e: 0904 .2byte 0x904 + 490: 000c .2byte 0xc + 492: 0501 .2byte 0x501 + 494: 0305 .2byte 0x305 + 496: 0900 .2byte 0x900 + 498: 0004 .2byte 0x4 + 49a: 0501 .2byte 0x501 + 49c: 0312 .2byte 0x312 + 49e: 0901 .2byte 0x901 + 4a0: 0004 .2byte 0x4 + 4a2: 0501 .2byte 0x501 + 4a4: 0309 .2byte 0x309 + 4a6: 0900 .2byte 0x900 + 4a8: 0004 .2byte 0x4 + 4aa: 0501 .2byte 0x501 + 4ac: 0319 .2byte 0x319 + 4ae: 0901 .2byte 0x901 + 4b0: 0004 .2byte 0x4 + 4b2: 0501 .2byte 0x501 + 4b4: 031a .2byte 0x31a + 4b6: 0900 .2byte 0x900 + 4b8: 0004 .2byte 0x4 + 4ba: 0501 .2byte 0x501 + 4bc: 0325 .2byte 0x325 + 4be: 0900 .2byte 0x900 + 4c0: 000c .2byte 0xc + 4c2: 0501 .2byte 0x501 + 4c4: 0326 .2byte 0x326 + 4c6: 0900 .2byte 0x900 + 4c8: 0004 .2byte 0x4 + 4ca: 0501 .2byte 0x501 + 4cc: 030d .2byte 0x30d + 4ce: 0900 .2byte 0x900 + 4d0: 000c .2byte 0xc + 4d2: 0501 .2byte 0x501 + 4d4: 09010317 auipc x6,0x9010 + 4d8: 0004 .2byte 0x4 + 4da: 0501 .2byte 0x501 + 4dc: 0318 .2byte 0x318 + 4de: 0900 .2byte 0x900 + 4e0: 0004 .2byte 0x4 + 4e2: 0501 .2byte 0x501 + 4e4: 0319 .2byte 0x319 + 4e6: 0900 .2byte 0x900 + 4e8: 000c .2byte 0xc + 4ea: 0501 .2byte 0x501 + 4ec: 0009 .2byte 0x9 + 4ee: 0402 .2byte 0x402 + 4f0: 0302 .2byte 0x302 + 4f2: 097e .2byte 0x97e + 4f4: 000c .2byte 0xc + 4f6: 0501 .2byte 0x501 + 4f8: 001f 0402 0301 .byte 0x1f, 0x00, 0x02, 0x04, 0x01, 0x03 + 4fe: 0900 .2byte 0x900 + 500: 000c .2byte 0xc + 502: 0501 .2byte 0x501 + 504: 0020 .2byte 0x20 + 506: 0402 .2byte 0x402 + 508: 0301 .2byte 0x301 + 50a: 0900 .2byte 0x900 + 50c: 0004 .2byte 0x4 + 50e: 0501 .2byte 0x501 + 510: 0022 .2byte 0x22 + 512: 0402 .2byte 0x402 + 514: 0301 .2byte 0x301 + 516: 0900 .2byte 0x900 + 518: 000c .2byte 0xc + 51a: 0501 .2byte 0x501 + 51c: 0005 .2byte 0x5 + 51e: 0402 .2byte 0x402 + 520: 0302 .2byte 0x302 + 522: 097f 0004 0501 0017 .byte 0x7f, 0x09, 0x04, 0x00, 0x01, 0x05, 0x17, 0x00, 0x02, 0x04 + 52a: 0402 + 52c: 0301 .2byte 0x301 + 52e: 0900 .2byte 0x900 + 530: 000c .2byte 0xc + 532: 0501 .2byte 0x501 + 534: 0301 .2byte 0x301 + 536: 000c0907 .4byte 0xc0907 + 53a: 0901 .2byte 0x901 + 53c: 0018 .2byte 0x18 + 53e: 0100 .2byte 0x100 + 540: 01 Address 0x540 is out of bounds. + + +Disassembly of section .debug_str: + +00000000 <.debug_str>: + 0: 635f 7472 2e30 .byte 0x5f, 0x63, 0x72, 0x74, 0x30, 0x2e + 6: 682f0053 .4byte 0x682f0053 + a: 2f656d6f jal x26,56300 <_start-0x7ffa9d00> + e: 7375 .2byte 0x7375 + 10: 7265 .2byte 0x7265 + 12: 726f772f .4byte 0x726f772f + 16: 70632f6b .4byte 0x70632f6b + 1a: 2f70 .2byte 0x2f70 + 1c: 00707063 bgeu x0,x7,1c <_start-0x7fffffe4> + 20: 20554e47 .4byte 0x20554e47 + 24: 5341 .2byte 0x5341 + 26: 3220 .2byte 0x3220 + 28: 342e .2byte 0x342e + 2a: 2e30 .2byte 0x2e30 + 2c: 0030 .2byte 0x30 + 2e: 5f5f 5845 4543 .byte 0x5f, 0x5f, 0x45, 0x58, 0x43, 0x45 + 34: 5450 .2byte 0x5450 + 36: 4f49 .2byte 0x4f49 + 38: 534e .2byte 0x534e + 3a: 3120 .2byte 0x3120 + 3c: 5f00 .2byte 0x5f00 + 3e: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 44: 485f 5341 515f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x51 + 4a: 4955 .2byte 0x4955 + 4c: 5445 .2byte 0x5445 + 4e: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f + 54: 3120 .2byte 0x3120 + 56: 5f00 .2byte 0x5f00 + 58: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 5e: 485f 5341 495f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x49 + 64: 464e .2byte 0x464e + 66: 4e49 .2byte 0x4e49 + 68: 5449 .2byte 0x5449 + 6a: 5f59 .2byte 0x5f59 + 6c: 205f 0031 4955 .byte 0x5f, 0x20, 0x31, 0x00, 0x55, 0x49 + 72: 544e .2byte 0x544e + 74: 5f38 .2byte 0x5f38 + 76: 414d .2byte 0x414d + 78: 0058 .2byte 0x58 + 7a: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 80: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 86: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 8c: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 92: 64656e67 .4byte 0x64656e67 + 96: 6920 .2byte 0x6920 + 98: 746e .2byte 0x746e + 9a: 5f00 .2byte 0x5f00 + 9c: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + a2: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 + a8: 5058 .2byte 0x5058 + aa: 5f5f 3120 3230 .byte 0x5f, 0x5f, 0x20, 0x31, 0x30, 0x32 + b0: 0034 .2byte 0x34 + b2: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + b8: 616e .2byte 0x616e + ba: 656d .2byte 0x656d + bc: 63617073 .4byte 0x63617073 + c0: 5f65 .2byte 0x5f65 + c2: 7461 .2byte 0x7461 + c4: 7274 .2byte 0x7274 + c6: 6269 .2byte 0x6269 + c8: 7475 .2byte 0x7475 + ca: 7365 .2byte 0x7365 + cc: 3220 .2byte 0x3220 + ce: 3130 .2byte 0x3130 + d0: 3134 .2byte 0x3134 + d2: 4c31 .2byte 0x4c31 + d4: 5f00 .2byte 0x5f00 + d6: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + dc: 5f58 .2byte 0x5f58 + de: 4544 .2byte 0x4544 + e0: 4f4e .2byte 0x4f4e + e2: 4d52 .2byte 0x4d52 + e4: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + ea: 3620 .2byte 0x3620 + ec: 342e .2byte 0x342e + ee: 37313537 lui x10,0x37313 + f2: 3135 .2byte 0x3135 + f4: 3931 .2byte 0x3931 + f6: 3334 .2byte 0x3334 + f8: 3038 .2byte 0x3038 + fa: 3532 .2byte 0x3532 + fc: 3131 .2byte 0x3131 + fe: 3930 .2byte 0x3930 + 100: 3432 .2byte 0x3432 + 102: 3334 .2byte 0x3334 + 104: 3938 .2byte 0x3938 + 106: 3835 .2byte 0x3835 + 108: 3232 .2byte 0x3232 + 10a: 36343637 lui x12,0x36343 + 10e: 3535 .2byte 0x3535 + 110: 2d65 .2byte 0x2d65 + 112: 3934 .2byte 0x3934 + 114: 3636 .2byte 0x3636 + 116: 3646 .2byte 0x3646 + 118: 7834 .2byte 0x7834 + 11a: 5f00 .2byte 0x5f00 + 11c: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 122: 5f58 .2byte 0x5f58 + 124: 414d .2byte 0x414d + 126: 5f58 .2byte 0x5f58 + 128: 5845 .2byte 0x5845 + 12a: 5f50 .2byte 0x5f50 + 12c: 205f 3031 3432 .byte 0x5f, 0x20, 0x31, 0x30, 0x32, 0x34 + 132: 5f00 .2byte 0x5f00 + 134: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 13a: 5341 .2byte 0x5341 + 13c: 3154 .2byte 0x3154 + 13e: 5f36 .2byte 0x5f36 + 140: 54444957 .4byte 0x54444957 + 144: 5f48 .2byte 0x5f48 + 146: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 14c: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 + 152: 5f32 .2byte 0x5f32 + 154: 29632843 .4byte 0x29632843 + 158: 6320 .2byte 0x6320 + 15a: 2320 .2byte 0x2320 + 15c: 4c552023 sw x5,1216(x10) # 373134c0 <_start-0x48cecb40> + 160: 4900 .2byte 0x4900 + 162: 544e .2byte 0x544e + 164: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 16a: 3631 .2byte 0x3631 + 16c: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 172: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 178: 5f58 .2byte 0x5f58 + 17a: 5045 .2byte 0x5045 + 17c: 4f4c4953 .4byte 0x4f4c4953 + 180: 5f4e .2byte 0x5f4e + 182: 205f 2e31 3239 .byte 0x5f, 0x20, 0x31, 0x2e, 0x39, 0x32 + 188: 3935 .2byte 0x3935 + 18a: 3932 .2byte 0x3932 + 18c: 3439 .2byte 0x3439 + 18e: 3334 .2byte 0x3334 + 190: 3738 .2byte 0x3738 + 192: 3332 .2byte 0x3332 + 194: 3835 .2byte 0x3835 + 196: 3335 .2byte 0x3335 + 198: 3530 .2byte 0x3530 + 19a: 3935 .2byte 0x3935 + 19c: 34393737 lui x14,0x34393 + 1a0: 3532 .2byte 0x3532 + 1a2: 3438 .2byte 0x3438 + 1a4: 3239 .2byte 0x3239 + 1a6: 65323337 lui x6,0x65323 + 1aa: 332d .2byte 0x332d + 1ac: 4634 .2byte 0x4634 + 1ae: 3436 .2byte 0x3436 + 1b0: 0078 .2byte 0x78 + 1b2: 4e49 .2byte 0x4e49 + 1b4: 5f54 .2byte 0x5f54 + 1b6: 454c .2byte 0x454c + 1b8: 5341 .2byte 0x5341 + 1ba: 3154 .2byte 0x3154 + 1bc: 5f36 .2byte 0x5f36 + 1be: 414d .2byte 0x414d + 1c0: 2058 .2byte 0x2058 + 1c2: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 1c8: 454c .2byte 0x454c + 1ca: 5341 .2byte 0x5341 + 1cc: 3154 .2byte 0x3154 + 1ce: 5f36 .2byte 0x5f36 + 1d0: 414d .2byte 0x414d + 1d2: 5f58 .2byte 0x5f58 + 1d4: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c + 1da: 3354 .2byte 0x3354 + 1dc: 5f32 .2byte 0x5f32 + 1de: 414d .2byte 0x414d + 1e0: 544e .2byte 0x544e + 1e2: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 1e8: 3220 .2byte 0x3220 + 1ea: 0034 .2byte 0x34 + 1ec: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 1f2: 3832 .2byte 0x3832 + 1f4: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f + 1fa: 4944 .2byte 0x4944 + 1fc: 205f5f47 .4byte 0x205f5f47 + 200: 3131 .2byte 0x3131 + 202: 5f5f0033 .4byte 0x5f5f0033 + 206: 444c .2byte 0x444c + 208: 4c42 .2byte 0x4c42 + 20a: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f + 210: 4944 .2byte 0x4944 + 212: 205f5f47 .4byte 0x205f5f47 + 216: 3131 .2byte 0x3131 + 218: 4e490033 .4byte 0x4e490033 + 21c: 3154 .2byte 0x3154 + 21e: 5f36 .2byte 0x5f36 + 220: 29632843 .4byte 0x29632843 + 224: 5f20 .2byte 0x5f20 + 226: 495f 544e 3631 .byte 0x5f, 0x49, 0x4e, 0x54, 0x31, 0x36 + 22c: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 + 232: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 238: 6564 .2byte 0x6564 + 23a: 7564 .2byte 0x7564 + 23c: 6f697463 bgeu x18,x22,924 <_start-0x7ffff6dc> + 240: 5f6e .2byte 0x5f6e + 242: 64697567 .4byte 0x64697567 + 246: 7365 .2byte 0x7365 + 248: 3220 .2byte 0x3220 + 24a: 3130 .2byte 0x3130 + 24c: 4c333037 lui x0,0x4c333 + 250: 5f00 .2byte 0x5f00 + 252: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 258: 5f58 .2byte 0x5f58 + 25a: 4544 .2byte 0x4544 + 25c: 414d4943 .4byte 0x414d4943 + 260: 5f4c .2byte 0x5f4c + 262: 4944 .2byte 0x4944 + 264: 205f5f47 .4byte 0x205f5f47 + 268: 3731 .2byte 0x3731 + 26a: 5f00 .2byte 0x5f00 + 26c: 725f 7369 7663 .byte 0x5f, 0x72, 0x69, 0x73, 0x63, 0x76 + 272: 635f 6f6d 6564 .byte 0x5f, 0x63, 0x6d, 0x6f, 0x64, 0x65 + 278: 5f6c .2byte 0x5f6c + 27a: 656d .2byte 0x656d + 27c: 6c64 .2byte 0x6c64 + 27e: 3120776f jal x14,7590 <_start-0x7fff8a70> + 282: 5f00 .2byte 0x5f00 + 284: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 28a: 4e49 .2byte 0x4e49 + 28c: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 292: 2820 .2byte 0x2820 + 294: 312d .2byte 0x312d + 296: 3230 .2byte 0x3230 + 298: 2931 .2byte 0x2931 + 29a: 5f00 .2byte 0x5f00 + 29c: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f + 2a2: 4f4c .2byte 0x4f4c + 2a4: 474e .2byte 0x474e + 2a6: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 2ac: 5f5f 3620 0034 .byte 0x5f, 0x5f, 0x20, 0x36, 0x34, 0x00 + 2b2: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + 2b8: 5441 .2byte 0x5441 + 2ba: 43494d4f .4byte 0x43494d4f + 2be: 435f 4148 3152 .byte 0x5f, 0x43, 0x48, 0x41, 0x52, 0x31 + 2c4: 5f36 .2byte 0x5f36 + 2c6: 5f54 .2byte 0x5f54 + 2c8: 4f4c .2byte 0x4f4c + 2ca: 465f4b43 .4byte 0x465f4b43 + 2ce: 4552 .2byte 0x4552 + 2d0: 2045 .2byte 0x2045 + 2d2: 0031 .2byte 0x31 + 2d4: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 2da: 5832 .2byte 0x5832 + 2dc: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2e2: 3120 .2byte 0x3120 + 2e4: 372e .2byte 0x372e + 2e6: 3739 .2byte 0x3739 + 2e8: 3936 .2byte 0x3936 + 2ea: 34333133 .4byte 0x34333133 + 2ee: 3638 .2byte 0x3638 + 2f0: 3332 .2byte 0x3332 + 2f2: 3531 .2byte 0x3531 + 2f4: 31383037 lui x0,0x31383 + 2f8: 3534 .2byte 0x3534 + 2fa: 3732 .2byte 0x3732 + 2fc: 3234 .2byte 0x3234 + 2fe: 31333733 .4byte 0x31333733 + 302: 33343037 lui x0,0x33343 + 306: 3735 .2byte 0x3735 + 308: 2b65 .2byte 0x2b65 + 30a: 46383033 .4byte 0x46383033 + 30e: 00783233 sltu x4,x16,x7 + 312: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 318: 3832 .2byte 0x3832 + 31a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 320: 3120 .2byte 0x3120 + 322: 312e .2byte 0x312e + 324: 3938 .2byte 0x3938 + 326: 34313337 lui x6,0x34313 + 32a: 3539 .2byte 0x3539 + 32c: 32373533 .4byte 0x32373533 + 330: 36373133 .4byte 0x36373133 + 334: 3035 .2byte 0x3035 + 336: 3538 .2byte 0x3538 + 338: 33393537 lui x10,0x33393 + 33c: 3632 .2byte 0x3632 + 33e: 3236 .2byte 0x3236 + 340: 3038 .2byte 0x3038 + 342: 3730 .2byte 0x3730 + 344: 3230 .2byte 0x3230 + 346: 2b65 .2byte 0x2b65 + 348: 3934 .2byte 0x3934 + 34a: 31463233 .4byte 0x31463233 + 34e: 3832 .2byte 0x3832 + 350: 5f00 .2byte 0x5f00 + 352: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 358: 5f46 .2byte 0x5f46 + 35a: 544e4957 .4byte 0x544e4957 + 35e: 545f 5f5f 3420 .byte 0x5f, 0x54, 0x5f, 0x5f, 0x20, 0x34 + 364: 5500 .2byte 0x5500 + 366: 4e49 .2byte 0x4e49 + 368: 3154 .2byte 0x3154 + 36a: 5f36 .2byte 0x5f36 + 36c: 29632843 .4byte 0x29632843 + 370: 5f20 .2byte 0x5f20 + 372: 555f 4e49 3154 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x31 + 378: 5f36 .2byte 0x5f36 + 37a: 29632843 .4byte 0x29632843 + 37e: 5f00 .2byte 0x5f00 + 380: 5f434347 .4byte 0x5f434347 + 384: 50415257 .4byte 0x50415257 + 388: 535f 4454 4e49 .byte 0x5f, 0x53, 0x54, 0x44, 0x49, 0x4e + 38e: 5f54 .2byte 0x5f54 + 390: 2048 .2byte 0x2048 + 392: 4900 .2byte 0x4900 + 394: 544e .2byte 0x544e + 396: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + 39c: 5f36 .2byte 0x5f36 + 39e: 414d .2byte 0x414d + 3a0: 2058 .2byte 0x2058 + 3a2: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 3a8: 4146 .2byte 0x4146 + 3aa: 36315453 .4byte 0x36315453 + 3ae: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 3b4: 5f00 .2byte 0x5f00 + 3b6: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f + 3bc: 494d .2byte 0x494d + 3be: 4f4e .2byte 0x4f4e + 3c0: 5f52 .2byte 0x5f52 + 3c2: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + 3c8: 4c46 .2byte 0x4c46 + 3ca: 3354 .2byte 0x3354 + 3cc: 5f32 .2byte 0x5f32 + 3ce: 4f4e .2byte 0x4f4e + 3d0: 4d52 .2byte 0x4d52 + 3d2: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 3d8: 3320 .2byte 0x3320 + 3da: 342e .2byte 0x342e + 3dc: 3230 .2byte 0x3230 + 3de: 3238 .2byte 0x3238 + 3e0: 36363433 .4byte 0x36363433 + 3e4: 32353833 .4byte 0x32353833 + 3e8: 3838 .2byte 0x3838 + 3ea: 3935 .2byte 0x3935 + 3ec: 3138 .2byte 0x3138 + 3ee: 3731 .2byte 0x3731 + 3f0: 3430 .2byte 0x3430 + 3f2: 3831 .2byte 0x3831 + 3f4: 34383433 .4byte 0x34383433 + 3f8: 3135 .2byte 0x3135 + 3fa: 3936 .2byte 0x3936 + 3fc: 3532 .2byte 0x3532 + 3fe: 2b65 .2byte 0x2b65 + 400: 33463833 .4byte 0x33463833 + 404: 0032 .2byte 0x32 + 406: 4955 .2byte 0x4955 + 408: 544e .2byte 0x544e + 40a: 3631 .2byte 0x3631 + 40c: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 412: 635f 7070 685f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x68 + 418: 7865 .2byte 0x7865 + 41a: 665f 6f6c 7461 .byte 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74 + 420: 3220 .2byte 0x3220 + 422: 3130 .2byte 0x3130 + 424: 3036 .2byte 0x3036 + 426: 55004c33 .4byte 0x55004c33 + 42a: 4e49 .2byte 0x4e49 + 42c: 4d54 .2byte 0x4d54 + 42e: 5841 .2byte 0x5841 + 430: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 436: 555f 4e49 4d54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x4d + 43c: 5841 .2byte 0x5841 + 43e: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 444: 5f00 .2byte 0x5f00 + 446: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 44c: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 452: 3220 .2byte 0x3220 + 454: 322e .2byte 0x322e + 456: 3532 .2byte 0x3532 + 458: 3730 .2byte 0x3730 + 45a: 38353833 .4byte 0x38353833 + 45e: 3035 .2byte 0x3035 + 460: 31303237 lui x4,0x31303 + 464: 30333833 .4byte 0x30333833 + 468: 3039 .2byte 0x3039 + 46a: 3332 .2byte 0x3332 + 46c: 3732 .2byte 0x3732 + 46e: 3731 .2byte 0x3731 + 470: 34323333 .4byte 0x34323333 + 474: 3430 .2byte 0x3430 + 476: 3630 .2byte 0x3630 + 478: 2d65 .2byte 0x2d65 + 47a: 46383033 .4byte 0x46383033 + 47e: 3436 .2byte 0x3436 + 480: 5f00 .2byte 0x5f00 + 482: 555f 4e49 3154 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x31 + 488: 5f36 .2byte 0x5f36 + 48a: 29632843 .4byte 0x29632843 + 48e: 6320 .2byte 0x6320 + 490: 5f00 .2byte 0x5f00 + 492: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 498: 5f46 .2byte 0x5f46 + 49a: 455a4953 .4byte 0x455a4953 + 49e: 545f 5f5f 3420 .byte 0x5f, 0x54, 0x5f, 0x5f, 0x20, 0x34 + 4a4: 5f00 .2byte 0x5f00 + 4a6: 435f 4148 3152 .byte 0x5f, 0x43, 0x48, 0x41, 0x52, 0x31 + 4ac: 5f36 .2byte 0x5f36 + 4ae: 5954 .2byte 0x5954 + 4b0: 4550 .2byte 0x4550 + 4b2: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f + 4b8: 7472 .2byte 0x7472 + 4ba: 7520 .2byte 0x7520 + 4bc: 736e .2byte 0x736e + 4be: 6769 .2byte 0x6769 + 4c0: 656e .2byte 0x656e + 4c2: 2064 .2byte 0x2064 + 4c4: 6e69 .2byte 0x6e69 + 4c6: 0074 .2byte 0x74 + 4c8: 4955 .2byte 0x4955 + 4ca: 544e .2byte 0x544e + 4cc: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 4d2: 4d5f3233 .4byte 0x4d5f3233 + 4d6: 5841 .2byte 0x5841 + 4d8: 5f20 .2byte 0x5f20 + 4da: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 4e0: 454c .2byte 0x454c + 4e2: 5341 .2byte 0x5341 + 4e4: 3354 .2byte 0x3354 + 4e6: 5f32 .2byte 0x5f32 + 4e8: 414d .2byte 0x414d + 4ea: 5f58 .2byte 0x5f58 + 4ec: 005f 4955 544e .byte 0x5f, 0x00, 0x55, 0x49, 0x4e, 0x54 + 4f2: 5f38 .2byte 0x5f38 + 4f4: 414d .2byte 0x414d + 4f6: 2058 .2byte 0x2058 + 4f8: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 4fe: 5f38 .2byte 0x5f38 + 500: 414d .2byte 0x414d + 502: 5f58 .2byte 0x5f58 + 504: 005f 5f5f 4e49 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x49, 0x4e + 50a: 5f54 .2byte 0x5f54 + 50c: 4146 .2byte 0x4146 + 50e: 5f385453 .4byte 0x5f385453 + 512: 414d .2byte 0x414d + 514: 5f58 .2byte 0x5f58 + 516: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 51c: 6666 .2byte 0x6666 + 51e: 6666 .2byte 0x6666 + 520: 6666 .2byte 0x6666 + 522: 5f00 .2byte 0x5f00 + 524: 4f5f 4452 5245 .byte 0x5f, 0x4f, 0x52, 0x44, 0x45, 0x52 + 52a: 425f 4749 455f .byte 0x5f, 0x42, 0x49, 0x47, 0x5f, 0x45 + 530: 444e .2byte 0x444e + 532: 4149 .2byte 0x4149 + 534: 5f4e .2byte 0x5f4e + 536: 205f 3334 3132 .byte 0x5f, 0x20, 0x34, 0x33, 0x32, 0x31 + 53c: 6400 .2byte 0x6400 + 53e: 6c65 .2byte 0x6c65 + 540: 6d69 .2byte 0x6d69 + 542: 5f5f0073 .4byte 0x5f5f0073 + 546: 5450 .2byte 0x5450 + 548: 4452 .2byte 0x4452 + 54a: 4649 .2byte 0x4649 + 54c: 5f46 .2byte 0x5f46 + 54e: 54444957 .4byte 0x54444957 + 552: 5f48 .2byte 0x5f48 + 554: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 55a: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 560: 4e41 .2byte 0x4e41 + 562: 5f54 .2byte 0x5f54 + 564: 4944 .2byte 0x4944 + 566: 205f5f47 .4byte 0x205f5f47 + 56a: 3335 .2byte 0x3335 + 56c: 5f00 .2byte 0x5f00 + 56e: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 574: 454c .2byte 0x454c + 576: 5341 .2byte 0x5341 + 578: 3654 .2byte 0x3654 + 57a: 5f34 .2byte 0x5f34 + 57c: 5954 .2byte 0x5954 + 57e: 4550 .2byte 0x4550 + 580: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 586: 6f6c2067 .4byte 0x6f6c2067 + 58a: 676e .2byte 0x676e + 58c: 7520 .2byte 0x7520 + 58e: 736e .2byte 0x736e + 590: 6769 .2byte 0x6769 + 592: 656e .2byte 0x656e + 594: 2064 .2byte 0x2064 + 596: 6e69 .2byte 0x6e69 + 598: 0074 .2byte 0x74 + 59a: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 5a0: 6964 .2byte 0x6964 + 5a2: 5f746967 .4byte 0x5f746967 + 5a6: 61706573 .4byte 0x61706573 + 5aa: 6172 .2byte 0x6172 + 5ac: 6f74 .2byte 0x6f74 + 5ae: 7372 .2byte 0x7372 + 5b0: 3220 .2byte 0x3220 + 5b2: 3130 .2byte 0x3130 + 5b4: 4c393033 .4byte 0x4c393033 + 5b8: 5f00 .2byte 0x5f00 + 5ba: 495f 544e 4d5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4d + 5c0: 5841 .2byte 0x5841 + 5c2: 5f5f 3020 3778 .byte 0x5f, 0x5f, 0x20, 0x30, 0x78, 0x37 + 5c8: 6666 .2byte 0x6666 + 5ca: 6666 .2byte 0x6666 + 5cc: 6666 .2byte 0x6666 + 5ce: 0066 .2byte 0x66 + 5d0: 5f5f 5441 4d4f .byte 0x5f, 0x5f, 0x41, 0x54, 0x4f, 0x4d + 5d6: 4349 .2byte 0x4349 + 5d8: 525f 4c45 4145 .byte 0x5f, 0x52, 0x45, 0x4c, 0x45, 0x41 + 5de: 33204553 .4byte 0x33204553 + 5e2: 5f00 .2byte 0x5f00 + 5e4: 465f 544c 495f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x49 + 5ea: 45495f53 .4byte 0x45495f53 + 5ee: 30365f43 .4byte 0x30365f43 + 5f2: 3535 .2byte 0x3535 + 5f4: 5f39 .2byte 0x5f39 + 5f6: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + 5fc: 5450 .2byte 0x5450 + 5fe: 4452 .2byte 0x4452 + 600: 4649 .2byte 0x4649 + 602: 5f46 .2byte 0x5f46 + 604: 5954 .2byte 0x5954 + 606: 4550 .2byte 0x4550 + 608: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 + 60e: 5f00 .2byte 0x5f00 + 610: 435f 4148 5f52 .byte 0x5f, 0x43, 0x48, 0x41, 0x52, 0x5f + 616: 4e55 .2byte 0x4e55 + 618: 4e474953 .4byte 0x4e474953 + 61c: 4445 .2byte 0x4445 + 61e: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 624: 495f 544e 3631 .byte 0x5f, 0x49, 0x4e, 0x54, 0x31, 0x36 + 62a: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 630: 205f 6873 726f .byte 0x5f, 0x20, 0x73, 0x68, 0x6f, 0x72 + 636: 2074 .2byte 0x2074 + 638: 6e69 .2byte 0x6e69 + 63a: 0074 .2byte 0x74 + 63c: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + 642: 5441 .2byte 0x5441 + 644: 43494d4f .4byte 0x43494d4f + 648: 435f 4148 5f52 .byte 0x5f, 0x43, 0x48, 0x41, 0x52, 0x5f + 64e: 4f4c .2byte 0x4f4c + 650: 465f4b43 .4byte 0x465f4b43 + 654: 4552 .2byte 0x4552 + 656: 2045 .2byte 0x2045 + 658: 0031 .2byte 0x31 + 65a: 4e49 .2byte 0x4e49 + 65c: 4d54 .2byte 0x4d54 + 65e: 5841 .2byte 0x5841 + 660: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 666: 495f 544e 414d .byte 0x5f, 0x49, 0x4e, 0x54, 0x4d, 0x41 + 66c: 5f58 .2byte 0x5f58 + 66e: 414d .2byte 0x414d + 670: 5f58 .2byte 0x5f58 + 672: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c + 678: 3654 .2byte 0x3654 + 67a: 5834 .2byte 0x5834 + 67c: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 + 682: 5058 .2byte 0x5058 + 684: 5f5f 3120 3336 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x33 + 68a: 3438 .2byte 0x3438 + 68c: 5f00 .2byte 0x5f00 + 68e: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 694: 45535f43 .4byte 0x45535f43 + 698: 5f51 .2byte 0x5f51 + 69a: 20545343 .4byte 0x20545343 + 69e: 0035 .2byte 0x35 + 6a0: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 6a6: 535f464f .4byte 0x535f464f + 6aa: 4f48 .2byte 0x4f48 + 6ac: 5452 .2byte 0x5452 + 6ae: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + 6b4: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 6ba: 4145 .2byte 0x4145 + 6bc: 5f385453 .4byte 0x5f385453 + 6c0: 414d .2byte 0x414d + 6c2: 5f58 .2byte 0x5f58 + 6c4: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 6ca: 5f00 .2byte 0x5f00 + 6cc: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 6d2: 4145 .2byte 0x4145 + 6d4: 5f385453 .4byte 0x5f385453 + 6d8: 5954 .2byte 0x5954 + 6da: 4550 .2byte 0x4550 + 6dc: 5f5f 7320 6769 .byte 0x5f, 0x5f, 0x20, 0x73, 0x69, 0x67 + 6e2: 656e .2byte 0x656e + 6e4: 2064 .2byte 0x2064 + 6e6: 72616863 bltu x2,x6,e16 <_start-0x7ffff1ea> + 6ea: 5f00 .2byte 0x5f00 + 6ec: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 6f2: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f + 6f8: 4944 .2byte 0x4944 + 6fa: 205f5f47 .4byte 0x205f5f47 + 6fe: 3335 .2byte 0x3335 + 700: 5500 .2byte 0x5500 + 702: 4e49 .2byte 0x4e49 + 704: 5f54 .2byte 0x5f54 + 706: 454c .2byte 0x454c + 708: 5341 .2byte 0x5341 + 70a: 3854 .2byte 0x3854 + 70c: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 712: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 718: 454c .2byte 0x454c + 71a: 5341 .2byte 0x5341 + 71c: 3854 .2byte 0x3854 + 71e: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 724: 5f00 .2byte 0x5f00 + 726: 555f 4e49 4d54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x4d + 72c: 5841 .2byte 0x5841 + 72e: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 734: 23232063 .4byte 0x23232063 + 738: 5520 .2byte 0x5520 + 73a: 4c4c .2byte 0x4c4c + 73c: 5f00 .2byte 0x5f00 + 73e: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 + 744: 6665 .2byte 0x6665 + 746: 715f 6175 696c .byte 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69 + 74c: 6966 .2byte 0x6966 + 74e: 7265 .2byte 0x7265 + 750: 30322073 .4byte 0x30322073 + 754: 3730 .2byte 0x3730 + 756: 3031 .2byte 0x3031 + 758: 004c .2byte 0x4c + 75a: 5f5f 5942 4554 .byte 0x5f, 0x5f, 0x42, 0x59, 0x54, 0x45 + 760: 4f5f 4452 5245 .byte 0x5f, 0x4f, 0x52, 0x44, 0x45, 0x52 + 766: 5f5f 5f20 4f5f .byte 0x5f, 0x5f, 0x20, 0x5f, 0x5f, 0x4f + 76c: 4452 .2byte 0x4452 + 76e: 5245 .2byte 0x5245 + 770: 4c5f 5449 4c54 .byte 0x5f, 0x4c, 0x49, 0x54, 0x54, 0x4c + 776: 5f45 .2byte 0x5f45 + 778: 4e45 .2byte 0x4e45 + 77a: 4944 .2byte 0x4944 + 77c: 4e41 .2byte 0x4e41 + 77e: 5f5f 5f00 4c5f .byte 0x5f, 0x5f, 0x00, 0x5f, 0x5f, 0x4c + 784: 4244 .2byte 0x4244 + 786: 5f4c .2byte 0x5f4c + 788: 494d .2byte 0x494d + 78a: 5f4e .2byte 0x5f4e + 78c: 205f 2e33 3633 .byte 0x5f, 0x20, 0x33, 0x2e, 0x33, 0x36 + 792: 3132 .2byte 0x3132 + 794: 3330 .2byte 0x3330 + 796: 3431 .2byte 0x3431 + 798: 32313133 .4byte 0x32313133 + 79c: 3930 .2byte 0x3930 + 79e: 36303533 .4byte 0x36303533 + 7a2: 3632 .2byte 0x3632 + 7a4: 3632 .2byte 0x3632 + 7a6: 31383737 lui x14,0x31383 + 7aa: 31323337 lui x6,0x31323 + 7ae: 36323537 lui x10,0x36323 + 7b2: 6530 .2byte 0x6530 + 7b4: 342d .2byte 0x342d + 7b6: 3339 .2byte 0x3339 + 7b8: 4c32 .2byte 0x4c32 + 7ba: 5f00 .2byte 0x5f00 + 7bc: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 7c2: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 + 7c8: 5f30 .2byte 0x5f30 + 7ca: 5845 .2byte 0x5845 + 7cc: 5f50 .2byte 0x5f50 + 7ce: 205f 2d28 3733 .byte 0x5f, 0x20, 0x28, 0x2d, 0x33, 0x37 + 7d4: 0029 .2byte 0x29 + 7d6: 5f474953 .4byte 0x5f474953 + 7da: 5441 .2byte 0x5441 + 7dc: 43494d4f .4byte 0x43494d4f + 7e0: 4d5f 4e49 5f20 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x5f + 7e6: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 + 7ec: 4f54 .2byte 0x4f54 + 7ee: 494d .2byte 0x494d + 7f0: 494d5f43 .4byte 0x494d5f43 + 7f4: 5f4e .2byte 0x5f4e + 7f6: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 + 7fc: 5f70 .2byte 0x5f70 + 7fe: 6572 .2byte 0x6572 + 800: 7574 .2byte 0x7574 + 802: 6e72 .2byte 0x6e72 + 804: 745f 7079 5f65 .byte 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f + 80a: 6564 .2byte 0x6564 + 80c: 7564 .2byte 0x7564 + 80e: 6f697463 bgeu x18,x22,ef6 <_start-0x7ffff10a> + 812: 206e .2byte 0x206e + 814: 3032 .2byte 0x3032 + 816: 3331 .2byte 0x3331 + 818: 3430 .2byte 0x3430 + 81a: 004c .2byte 0x4c + 81c: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 + 822: 5f52 .2byte 0x5f52 + 824: 494d .2byte 0x494d + 826: 5f4e .2byte 0x5f4e + 828: 205f 2d28 5f5f .byte 0x5f, 0x20, 0x28, 0x2d, 0x5f, 0x5f + 82e: 41484357 .4byte 0x41484357 + 832: 5f52 .2byte 0x5f52 + 834: 414d .2byte 0x414d + 836: 5f58 .2byte 0x5f58 + 838: 205f 202d 2931 .byte 0x5f, 0x20, 0x2d, 0x20, 0x31, 0x29 + 83e: 4900 .2byte 0x4900 + 840: 544e .2byte 0x544e + 842: 414d .2byte 0x414d + 844: 5f58 .2byte 0x5f58 + 846: 494d .2byte 0x494d + 848: 204e .2byte 0x204e + 84a: 2d28 .2byte 0x2d28 + 84c: 4e49 .2byte 0x4e49 + 84e: 4d54 .2byte 0x4d54 + 850: 5841 .2byte 0x5841 + 852: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 858: 3120 .2byte 0x3120 + 85a: 0029 .2byte 0x29 + 85c: 5f5f 5453 4344 .byte 0x5f, 0x5f, 0x53, 0x54, 0x44, 0x43 + 862: 555f 4654 335f .byte 0x5f, 0x55, 0x54, 0x46, 0x5f, 0x33 + 868: 5f32 .2byte 0x5f32 + 86a: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 870: 4e49 .2byte 0x4e49 + 872: 5f54 .2byte 0x5f54 + 874: 454c .2byte 0x454c + 876: 5341 .2byte 0x5341 + 878: 3154 .2byte 0x3154 + 87a: 5f36 .2byte 0x5f36 + 87c: 414d .2byte 0x414d + 87e: 5f58 .2byte 0x5f58 + 880: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 886: 6666 .2byte 0x6666 + 888: 5f00 .2byte 0x5f00 + 88a: 535f 4843 5241 .byte 0x5f, 0x53, 0x43, 0x48, 0x41, 0x52 + 890: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 896: 3020 .2byte 0x3020 + 898: 3778 .2byte 0x3778 + 89a: 0066 .2byte 0x66 + 89c: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 8a2: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + 8a8: 5f4d .2byte 0x5f4d + 8aa: 494d .2byte 0x494d + 8ac: 5f4e .2byte 0x5f4e + 8ae: 205f 2e36 3734 .byte 0x5f, 0x20, 0x36, 0x2e, 0x34, 0x37 + 8b4: 3135 .2byte 0x3135 + 8b6: 31313537 lui x10,0x31313 + 8ba: 3439 .2byte 0x3439 + 8bc: 32303833 .4byte 0x32303833 + 8c0: 3135 .2byte 0x3135 + 8c2: 3031 .2byte 0x3031 + 8c4: 3239 .2byte 0x3239 + 8c6: 3434 .2byte 0x3434 + 8c8: 35393833 .4byte 0x35393833 + 8cc: 3238 .2byte 0x3238 + 8ce: 3732 .2byte 0x3732 + 8d0: 3436 .2byte 0x3436 + 8d2: 3536 .2byte 0x3536 + 8d4: 6535 .2byte 0x6535 + 8d6: 342d .2byte 0x342d + 8d8: 3639 .2byte 0x3639 + 8da: 4c36 .2byte 0x4c36 + 8dc: 5f00 .2byte 0x5f00 + 8de: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f + 8e4: 5845 .2byte 0x5845 + 8e6: 4345 .2byte 0x4345 + 8e8: 5455 .2byte 0x5455 + 8ea: 4f49 .2byte 0x4f49 + 8ec: 5f4e .2byte 0x5f4e + 8ee: 52414843 .4byte 0x52414843 + 8f2: 5f544553 .4byte 0x5f544553 + 8f6: 414e .2byte 0x414e + 8f8: 454d .2byte 0x454d + 8fa: 2220 .2byte 0x2220 + 8fc: 5455 .2byte 0x5455 + 8fe: 2d46 .2byte 0x2d46 + 900: 2238 .2byte 0x2238 + 902: 5f00 .2byte 0x5f00 + 904: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 90a: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 910: 3120 .2byte 0x3120 + 912: 0035 .2byte 0x35 + 914: 4e49 .2byte 0x4e49 + 916: 5f54 .2byte 0x5f54 + 918: 454c .2byte 0x454c + 91a: 5341 .2byte 0x5341 + 91c: 3154 .2byte 0x3154 + 91e: 5f36 .2byte 0x5f36 + 920: 494d .2byte 0x494d + 922: 204e .2byte 0x204e + 924: 2d28 .2byte 0x2d28 + 926: 4e49 .2byte 0x4e49 + 928: 5f54 .2byte 0x5f54 + 92a: 454c .2byte 0x454c + 92c: 5341 .2byte 0x5341 + 92e: 3154 .2byte 0x3154 + 930: 5f36 .2byte 0x5f36 + 932: 414d .2byte 0x414d + 934: 2058 .2byte 0x2058 + 936: 202d .2byte 0x202d + 938: 2931 .2byte 0x2931 + 93a: 5f00 .2byte 0x5f00 + 93c: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 942: 45525f43 .4byte 0x45525f43 + 946: 414c .2byte 0x414c + 948: 4558 .2byte 0x4558 + 94a: 2044 .2byte 0x2044 + 94c: 0030 .2byte 0x30 + 94e: 4e49 .2byte 0x4e49 + 950: 5054 .2byte 0x5054 + 952: 5254 .2byte 0x5254 + 954: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 95a: 495f 544e 5450 .byte 0x5f, 0x49, 0x4e, 0x54, 0x50, 0x54 + 960: 5f52 .2byte 0x5f52 + 962: 414d .2byte 0x414d + 964: 5f58 .2byte 0x5f58 + 966: 005f 5f5f 4953 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x53, 0x49 + 96c: 455a .2byte 0x455a + 96e: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 974: 3020 .2byte 0x3020 + 976: 6678 .2byte 0x6678 + 978: 6666 .2byte 0x6666 + 97a: 6666 .2byte 0x6666 + 97c: 6666 .2byte 0x6666 + 97e: 5566 .2byte 0x5566 + 980: 5f00 .2byte 0x5f00 + 982: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 988: 5349 .2byte 0x5349 + 98a: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 + 990: 3530 .2byte 0x3530 + 992: 3935 .2byte 0x3935 + 994: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + 99a: 635f 7070 695f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x69 + 9a0: 696e .2byte 0x696e + 9a2: 5f74 .2byte 0x5f74 + 9a4: 74706163 bltu x0,x7,10e6 <_start-0x7fffef1a> + 9a8: 7275 .2byte 0x7275 + 9aa: 7365 .2byte 0x7365 + 9ac: 3220 .2byte 0x3220 + 9ae: 3130 .2byte 0x3130 + 9b0: 4c343033 .4byte 0x4c343033 + 9b4: 5f00 .2byte 0x5f00 + 9b6: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 9bc: 5f58 .2byte 0x5f58 + 9be: 4148 .2byte 0x4148 + 9c0: 4e495f53 .4byte 0x4e495f53 + 9c4: 4946 .2byte 0x4946 + 9c6: 494e .2byte 0x494e + 9c8: 5954 .2byte 0x5954 + 9ca: 5f5f 3120 4900 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x49 + 9d0: 544e .2byte 0x544e + 9d2: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 9d8: 3436 .2byte 0x3436 + 9da: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 9e0: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 9e6: 5341 .2byte 0x5341 + 9e8: 3654 .2byte 0x3654 + 9ea: 5f34 .2byte 0x5f34 + 9ec: 5954 .2byte 0x5954 + 9ee: 4550 .2byte 0x4550 + 9f0: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 9f6: 6f6c2067 .4byte 0x6f6c2067 + 9fa: 676e .2byte 0x676e + 9fc: 6920 .2byte 0x6920 + 9fe: 746e .2byte 0x746e + a00: 4900 .2byte 0x4900 + a02: 544e .2byte 0x544e + a04: 5f38 .2byte 0x5f38 + a06: 494d .2byte 0x494d + a08: 004e .2byte 0x4e + a0a: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + a10: 3832 .2byte 0x3832 + a12: 485f 5341 515f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x51 + a18: 4955 .2byte 0x4955 + a1a: 5445 .2byte 0x5445 + a1c: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f + a22: 3120 .2byte 0x3120 + a24: 5f00 .2byte 0x5f00 + a26: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + a2c: 4145 .2byte 0x4145 + a2e: 36315453 .4byte 0x36315453 + a32: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + a38: 5f5f 3120 0036 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x00 + a3e: 63727473 .4byte 0x63727473 + a42: 7970 .2byte 0x7970 + a44: 4900 .2byte 0x4900 + a46: 544e .2byte 0x544e + a48: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + a4e: 5f36 .2byte 0x5f36 + a50: 494d .2byte 0x494d + a52: 004e .2byte 0x4e + a54: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + a5a: 6f6e .2byte 0x6f6e + a5c: 7865 .2byte 0x7865 + a5e: 74706563 bltu x0,x7,11a8 <_start-0x7fffee58> + a62: 665f 6e75 7463 .byte 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74 + a68: 6f69 .2byte 0x6f69 + a6a: 5f6e .2byte 0x5f6e + a6c: 7974 .2byte 0x7974 + a6e: 6570 .2byte 0x6570 + a70: 3220 .2byte 0x3220 + a72: 3130 .2byte 0x3130 + a74: 3135 .2byte 0x3135 + a76: 4c30 .2byte 0x4c30 + a78: 5f00 .2byte 0x5f00 + a7a: 555f 4e49 5054 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x50 + a80: 5254 .2byte 0x5254 + a82: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + a88: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + a8e: 64656e67 .4byte 0x64656e67 + a92: 6920 .2byte 0x6920 + a94: 746e .2byte 0x746e + a96: 5f00 .2byte 0x5f00 + a98: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + a9e: 495f 5f53 4549 .byte 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x45 + aa4: 30365f43 .4byte 0x30365f43 + aa8: 3535 .2byte 0x3535 + aaa: 5f39 .2byte 0x5f39 + aac: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + ab2: 4c46 .2byte 0x4c46 + ab4: 3354 .2byte 0x3354 + ab6: 5f32 .2byte 0x5f32 + ab8: 4148 .2byte 0x4148 + aba: 45445f53 .4byte 0x45445f53 + abe: 4f4e .2byte 0x4f4e + ac0: 4d52 .2byte 0x4d52 + ac2: 5f5f 3120 7400 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x74 + ac8: 6e656b6f jal x22,571ae <_start-0x7ffa8e52> + acc: 735f 6174 7472 .byte 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74 + ad2: 5f00 .2byte 0x5f00 + ad4: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + ada: 5f58 .2byte 0x5f58 + adc: 494d .2byte 0x494d + ade: 5f4e .2byte 0x5f4e + ae0: 5845 .2byte 0x5845 + ae2: 5f50 .2byte 0x5f50 + ae4: 205f 2d28 3631 .byte 0x5f, 0x20, 0x28, 0x2d, 0x31, 0x36 + aea: 29313833 .4byte 0x29313833 + aee: 5f00 .2byte 0x5f00 + af0: 635f 7070 615f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x61 + af6: 696c .2byte 0x696c + af8: 7361 .2byte 0x7361 + afa: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + b00: 7461 .2byte 0x7461 + b02: 7365 .2byte 0x7365 + b04: 3220 .2byte 0x3220 + b06: 3030 .2byte 0x3030 + b08: 4c343037 lui x0,0x4c343 + b0c: 5f00 .2byte 0x5f00 + b0e: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + b14: 5341 .2byte 0x5341 + b16: 3654 .2byte 0x3654 + b18: 5f34 .2byte 0x5f34 + b1a: 414d .2byte 0x414d + b1c: 5f58 .2byte 0x5f58 + b1e: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + b24: 6666 .2byte 0x6666 + b26: 6666 .2byte 0x6666 + b28: 6666 .2byte 0x6666 + b2a: 6666 .2byte 0x6666 + b2c: 6666 .2byte 0x6666 + b2e: 6666 .2byte 0x6666 + b30: 6666 .2byte 0x6666 + b32: 4c4c .2byte 0x4c4c + b34: 5f00 .2byte 0x5f00 + b36: 465f 544c 445f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x44 + b3c: 4749 .2byte 0x4749 + b3e: 5f5f 3620 5f00 .byte 0x5f, 0x5f, 0x20, 0x36, 0x00, 0x5f + b44: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + b4a: 5341 .2byte 0x5341 + b4c: 3154 .2byte 0x3154 + b4e: 5f36 .2byte 0x5f36 + b50: 414d .2byte 0x414d + b52: 5f58 .2byte 0x5f58 + b54: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + b5a: 6666 .2byte 0x6666 + b5c: 6666 .2byte 0x6666 + b5e: 6666 .2byte 0x6666 + b60: 5700 .2byte 0x5700 + b62: 4e49 .2byte 0x4e49 + b64: 5f54 .2byte 0x5f54 + b66: 414d .2byte 0x414d + b68: 2058 .2byte 0x2058 + b6a: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 + b70: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + b76: 5300 .2byte 0x5300 + b78: 4749 .2byte 0x4749 + b7a: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + b80: 414d5f43 .4byte 0x414d5f43 + b84: 0058 .2byte 0x58 + b86: 4e49 .2byte 0x4e49 + b88: 5f54 .2byte 0x5f54 + b8a: 4146 .2byte 0x4146 + b8c: 5f385453 .4byte 0x5f385453 + b90: 414d .2byte 0x414d + b92: 2058 .2byte 0x2058 + b94: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + b9a: 4146 .2byte 0x4146 + b9c: 5f385453 .4byte 0x5f385453 + ba0: 414d .2byte 0x414d + ba2: 5f58 .2byte 0x5f58 + ba4: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c + baa: 3654 .2byte 0x3654 + bac: 5f34 .2byte 0x5f34 + bae: 5045 .2byte 0x5045 + bb0: 4f4c4953 .4byte 0x4f4c4953 + bb4: 5f4e .2byte 0x5f4e + bb6: 205f 2e32 3232 .byte 0x5f, 0x20, 0x32, 0x2e, 0x32, 0x32 + bbc: 3430 .2byte 0x3430 + bbe: 3634 .2byte 0x3634 + bc0: 3430 .2byte 0x3430 + bc2: 3239 .2byte 0x3239 + bc4: 3035 .2byte 0x3035 + bc6: 30333133 .4byte 0x30333133 + bca: 3038 .2byte 0x3038 + bcc: 3438 .2byte 0x3438 + bce: 33363237 lui x4,0x33363 + bd2: 31363333 .4byte 0x31363333 + bd6: 3138 .2byte 0x3138 + bd8: 3436 .2byte 0x3436 + bda: 3630 .2byte 0x3630 + bdc: 6532 .2byte 0x6532 + bde: 312d .2byte 0x312d + be0: 4636 .2byte 0x4636 + be2: 3436 .2byte 0x3436 + be4: 5f00 .2byte 0x5f00 + be6: 365a .2byte 0x365a + be8: 6c727473 .4byte 0x6c727473 + bec: 6e65 .2byte 0x6e65 + bee: 6350 .2byte 0x6350 + bf0: 5f00 .2byte 0x5f00 + bf2: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + bf8: 5f38 .2byte 0x5f38 + bfa: 494d .2byte 0x494d + bfc: 5f4e .2byte 0x5f4e + bfe: 5845 .2byte 0x5845 + c00: 5f50 .2byte 0x5f50 + c02: 205f 2d28 3631 .byte 0x5f, 0x20, 0x28, 0x2d, 0x31, 0x36 + c08: 29313833 .4byte 0x29313833 + c0c: 5f00 .2byte 0x5f00 + c0e: 505f 5254 4944 .byte 0x5f, 0x50, 0x54, 0x52, 0x44, 0x49 + c14: 4646 .2byte 0x4646 + c16: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + c1c: 3020 .2byte 0x3020 + c1e: 3778 .2byte 0x3778 + c20: 6666 .2byte 0x6666 + c22: 6666 .2byte 0x6666 + c24: 6666 .2byte 0x6666 + c26: 0066 .2byte 0x66 + c28: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + c2e: 5f32 .2byte 0x5f32 + c30: 4148 .2byte 0x4148 + c32: 55515f53 .4byte 0x55515f53 + c36: 4549 .2byte 0x4549 + c38: 5f54 .2byte 0x5f54 + c3a: 414e .2byte 0x414e + c3c: 5f4e .2byte 0x5f4e + c3e: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + c44: 4955 .2byte 0x4955 + c46: 544e .2byte 0x544e + c48: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + c4e: 3631 .2byte 0x3631 + c50: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + c56: 3020 .2byte 0x3020 + c58: 6678 .2byte 0x6678 + c5a: 6666 .2byte 0x6666 + c5c: 0066 .2byte 0x66 + c5e: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + c64: 5f32 .2byte 0x5f32 + c66: 4544 .2byte 0x4544 + c68: 414d4943 .4byte 0x414d4943 + c6c: 5f4c .2byte 0x5f4c + c6e: 4944 .2byte 0x4944 + c70: 205f5f47 .4byte 0x205f5f47 + c74: 0039 .2byte 0x39 + c76: 5f5f 4e47 4355 .byte 0x5f, 0x5f, 0x47, 0x4e, 0x55, 0x43 + c7c: 5f5f 3120 0032 .byte 0x5f, 0x5f, 0x20, 0x31, 0x32, 0x00 + c82: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + c88: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + c8e: 3320 .2byte 0x3320 + c90: 5f5f0033 .4byte 0x5f5f0033 + c94: 4955 .2byte 0x4955 + c96: 544e .2byte 0x544e + c98: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + c9e: 5f38 .2byte 0x5f38 + ca0: 414d .2byte 0x414d + ca2: 5f58 .2byte 0x5f58 + ca4: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + caa: 5f00 .2byte 0x5f00 + cac: 495f 544e 3436 .byte 0x5f, 0x49, 0x4e, 0x54, 0x36, 0x34 + cb2: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + cb8: 3020 .2byte 0x3020 + cba: 3778 .2byte 0x3778 + cbc: 6666 .2byte 0x6666 + cbe: 6666 .2byte 0x6666 + cc0: 6666 .2byte 0x6666 + cc2: 6666 .2byte 0x6666 + cc4: 6666 .2byte 0x6666 + cc6: 6666 .2byte 0x6666 + cc8: 6666 .2byte 0x6666 + cca: 4c66 .2byte 0x4c66 + ccc: 004c .2byte 0x4c + cce: 4e49 .2byte 0x4e49 + cd0: 3854 .2byte 0x3854 + cd2: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + cd8: 492d .2byte 0x492d + cda: 544e .2byte 0x544e + cdc: 5f38 .2byte 0x5f38 + cde: 414d .2byte 0x414d + ce0: 2058 .2byte 0x2058 + ce2: 202d .2byte 0x202d + ce4: 2931 .2byte 0x2931 + ce6: 5f00 .2byte 0x5f00 + ce8: 575f 4843 5241 .byte 0x5f, 0x57, 0x43, 0x48, 0x41, 0x52 + cee: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + cf4: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + cfa: 5f5f 4e49 3854 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x38 + d00: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + d06: 3020 .2byte 0x3020 + d08: 3778 .2byte 0x3778 + d0a: 0066 .2byte 0x66 + d0c: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + d12: 454c .2byte 0x454c + d14: 5341 .2byte 0x5341 + d16: 3354 .2byte 0x3354 + d18: 5f32 .2byte 0x5f32 + d1a: 5954 .2byte 0x5954 + d1c: 4550 .2byte 0x4550 + d1e: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + d24: 6e692067 .4byte 0x6e692067 + d28: 0074 .2byte 0x74 + d2a: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + d30: 736e6f63 bltu x28,x22,146e <_start-0x7fffeb92> + d34: 6574 .2byte 0x6574 + d36: 7078 .2byte 0x7078 + d38: 2072 .2byte 0x2072 + d3a: 3032 .2byte 0x3032 + d3c: 3631 .2byte 0x3631 + d3e: 3330 .2byte 0x3330 + d40: 004c .2byte 0x4c + d42: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + d48: 3832 .2byte 0x3832 + d4a: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 + d50: 5058 .2byte 0x5058 + d52: 5f5f 3120 3336 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x33 + d58: 3438 .2byte 0x3438 + d5a: 5f00 .2byte 0x5f00 + d5c: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + d62: 454c .2byte 0x454c + d64: 5341 .2byte 0x5341 + d66: 3654 .2byte 0x3654 + d68: 5f34 .2byte 0x5f34 + d6a: 414d .2byte 0x414d + d6c: 5f58 .2byte 0x5f58 + d6e: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + d74: 6666 .2byte 0x6666 + d76: 6666 .2byte 0x6666 + d78: 6666 .2byte 0x6666 + d7a: 6666 .2byte 0x6666 + d7c: 6666 .2byte 0x6666 + d7e: 6666 .2byte 0x6666 + d80: 6666 .2byte 0x6666 + d82: 4c55 .2byte 0x4c55 + d84: 004c .2byte 0x4c + d86: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + d8c: 4152 .2byte 0x4152 + d8e: 4944 .2byte 0x4944 + d90: 5f58 .2byte 0x5f58 + d92: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + d98: 4c46 .2byte 0x4c46 + d9a: 3354 .2byte 0x3354 + d9c: 5832 .2byte 0x5832 + d9e: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + da4: 5f4d .2byte 0x5f4d + da6: 494d .2byte 0x494d + da8: 5f4e .2byte 0x5f4e + daa: 205f 2e34 3439 .byte 0x5f, 0x20, 0x34, 0x2e, 0x39, 0x34 + db0: 3630 .2byte 0x3630 + db2: 3635 .2byte 0x3635 + db4: 3534 .2byte 0x3534 + db6: 3438 .2byte 0x3438 + db8: 3231 .2byte 0x3231 + dba: 3634 .2byte 0x3634 + dbc: 3435 .2byte 0x3435 + dbe: 3134 .2byte 0x3134 + dc0: 36353637 lui x12,0x36353 + dc4: 3738 .2byte 0x3738 + dc6: 3239 .2byte 0x3239 + dc8: 3638 .2byte 0x3638 + dca: 3238 .2byte 0x3238 + dcc: 3132 .2byte 0x3132 + dce: 65323733 .4byte 0x65323733 + dd2: 332d .2byte 0x332d + dd4: 3432 .2byte 0x3432 + dd6: 3346 .2byte 0x3346 + dd8: 7832 .2byte 0x7832 + dda: 5f00 .2byte 0x5f00 + ddc: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 + de2: 6e61 .2byte 0x6e61 + de4: 625f6567 .4byte 0x625f6567 + de8: 7361 .2byte 0x7361 + dea: 6465 .2byte 0x6465 + dec: 665f 726f 3220 .byte 0x5f, 0x66, 0x6f, 0x72, 0x20, 0x32 + df2: 3130 .2byte 0x3130 + df4: 3036 .2byte 0x3036 + df6: 5f004c33 .4byte 0x5f004c33 + dfa: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + e00: 5f46 .2byte 0x5f46 + e02: 4f4c .2byte 0x4f4c + e04: 474e .2byte 0x474e + e06: 445f 554f 4c42 .byte 0x5f, 0x44, 0x4f, 0x55, 0x42, 0x4c + e0c: 5f45 .2byte 0x5f45 + e0e: 205f 3631 5f00 .byte 0x5f, 0x20, 0x31, 0x36, 0x00, 0x5f + e14: 445f 4c42 485f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x48 + e1a: 5341 .2byte 0x5341 + e1c: 515f 4955 5445 .byte 0x5f, 0x51, 0x55, 0x49, 0x45, 0x54 + e22: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f + e28: 3120 .2byte 0x3120 + e2a: 5f00 .2byte 0x5f00 + e2c: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + e32: 5f58 .2byte 0x5f58 + e34: 5349 .2byte 0x5349 + e36: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 + e3c: 3530 .2byte 0x3530 + e3e: 3935 .2byte 0x3935 + e40: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + e46: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + e4c: 5341 .2byte 0x5341 + e4e: 3854 .2byte 0x3854 + e50: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + e56: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + e5c: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + e62: 6e65 .2byte 0x6e65 + e64: 6d75 .2byte 0x6d75 + e66: 7265 .2byte 0x7265 + e68: 7461 .2byte 0x7461 + e6a: 615f726f jal x4,f8c7e <_start-0x7ff07382> + e6e: 7474 .2byte 0x7474 + e70: 6972 .2byte 0x6972 + e72: 7562 .2byte 0x7562 + e74: 6574 .2byte 0x6574 + e76: 30322073 .4byte 0x30322073 + e7a: 3431 .2byte 0x3431 + e7c: 3131 .2byte 0x3131 + e7e: 004c .2byte 0x4c + e80: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + e86: 5f34 .2byte 0x5f34 + e88: 4148 .2byte 0x4148 + e8a: 4e495f53 .4byte 0x4e495f53 + e8e: 4946 .2byte 0x4946 + e90: 494e .2byte 0x494e + e92: 5954 .2byte 0x5954 + e94: 5f5f 3120 5700 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x57 + e9a: 4e49 .2byte 0x4e49 + e9c: 5f54 .2byte 0x5f54 + e9e: 494d .2byte 0x494d + ea0: 204e .2byte 0x204e + ea2: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 + ea8: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + eae: 5f00 .2byte 0x5f00 + eb0: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + eb6: 414d .2byte 0x414d + eb8: 5f58 .2byte 0x5f58 + eba: 5845 .2byte 0x5845 + ebc: 5f50 .2byte 0x5f50 + ebe: 205f 3631 3833 .byte 0x5f, 0x20, 0x31, 0x36, 0x33, 0x38 + ec4: 0034 .2byte 0x34 + ec6: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + ecc: 494d .2byte 0x494d + ece: 5f4e .2byte 0x5f4e + ed0: 3031 .2byte 0x3031 + ed2: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + ed8: 2820 .2byte 0x2820 + eda: 332d .2byte 0x332d + edc: 5f002937 lui x18,0x5f002 + ee0: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + ee6: 4f54 .2byte 0x4f54 + ee8: 494d .2byte 0x494d + eea: 4e495f43 .4byte 0x4e495f43 + eee: 5f54 .2byte 0x5f54 + ef0: 4f4c .2byte 0x4f4c + ef2: 465f4b43 .4byte 0x465f4b43 + ef6: 4552 .2byte 0x4552 + ef8: 2045 .2byte 0x2045 + efa: 0031 .2byte 0x31 + efc: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + f02: 6962 .2byte 0x6962 + f04: 616e .2byte 0x616e + f06: 7972 .2byte 0x7972 + f08: 6c5f 7469 7265 .byte 0x5f, 0x6c, 0x69, 0x74, 0x65, 0x72 + f0e: 6c61 .2byte 0x6c61 + f10: 30322073 .4byte 0x30322073 + f14: 3331 .2byte 0x3331 + f16: 3430 .2byte 0x3430 + f18: 004c .2byte 0x4c + f1a: 5f5f 4e49 4d54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x4d + f20: 5841 .2byte 0x5841 + f22: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + f28: 3020 .2byte 0x3020 + f2a: 3778 .2byte 0x3778 + f2c: 6666 .2byte 0x6666 + f2e: 6666 .2byte 0x6666 + f30: 6666 .2byte 0x6666 + f32: 6666 .2byte 0x6666 + f34: 6666 .2byte 0x6666 + f36: 6666 .2byte 0x6666 + f38: 6666 .2byte 0x6666 + f3a: 4c66 .2byte 0x4c66 + f3c: 004c .2byte 0x4c + f3e: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + f44: 454c .2byte 0x454c + f46: 5341 .2byte 0x5341 + f48: 3654 .2byte 0x3654 + f4a: 5f34 .2byte 0x5f34 + f4c: 54444957 .4byte 0x54444957 + f50: 5f48 .2byte 0x5f48 + f52: 205f 3436 4900 .byte 0x5f, 0x20, 0x36, 0x34, 0x00, 0x49 + f58: 544e .2byte 0x544e + f5a: 435f3233 .4byte 0x435f3233 + f5e: 6328 .2byte 0x6328 + f60: 2029 .2byte 0x2029 + f62: 5f5f 4e49 3354 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x33 + f68: 5f32 .2byte 0x5f32 + f6a: 29632843 .4byte 0x29632843 + f6e: 5f00 .2byte 0x5f00 + f70: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + f76: 4d5f 5841 315f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x31 + f7c: 5f30 .2byte 0x5f30 + f7e: 5845 .2byte 0x5845 + f80: 5f50 .2byte 0x5f50 + f82: 205f 3033 0038 .byte 0x5f, 0x20, 0x33, 0x30, 0x38, 0x00 + f88: 5f5f 524f 4544 .byte 0x5f, 0x5f, 0x4f, 0x52, 0x44, 0x45 + f8e: 5f52 .2byte 0x5f52 + f90: 494c .2byte 0x494c + f92: 5454 .2byte 0x5454 + f94: 454c .2byte 0x454c + f96: 455f 444e 4149 .byte 0x5f, 0x45, 0x4e, 0x44, 0x49, 0x41 + f9c: 5f4e .2byte 0x5f4e + f9e: 205f 3231 3433 .byte 0x5f, 0x20, 0x31, 0x32, 0x33, 0x34 + fa4: 5f00 .2byte 0x5f00 + fa6: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + fac: 5f46 .2byte 0x5f46 + fae: 5450 .2byte 0x5450 + fb0: 4452 .2byte 0x4452 + fb2: 4649 .2byte 0x4649 + fb4: 5f46 .2byte 0x5f46 + fb6: 5f54 .2byte 0x5f54 + fb8: 205f 0034 5f5f .byte 0x5f, 0x20, 0x34, 0x00, 0x5f, 0x5f + fbe: 5f707063 bgeu x0,x23,159e <_start-0x7fffea62> + fc2: 6e75 .2byte 0x6e75 + fc4: 6369 .2byte 0x6369 + fc6: 5f65646f jal x8,575bc <_start-0x7ffa8a44> + fca: 696c .2byte 0x696c + fcc: 6574 .2byte 0x6574 + fce: 6172 .2byte 0x6172 + fd0: 736c .2byte 0x736c + fd2: 3220 .2byte 0x3220 + fd4: 3030 .2byte 0x3030 + fd6: 4c303137 lui x2,0x4c303 + fda: 5500 .2byte 0x5500 + fdc: 4e49 .2byte 0x4e49 + fde: 5f54 .2byte 0x5f54 + fe0: 454c .2byte 0x454c + fe2: 5341 .2byte 0x5341 + fe4: 3354 .2byte 0x3354 + fe6: 5f32 .2byte 0x5f32 + fe8: 414d .2byte 0x414d + fea: 0058 .2byte 0x58 + fec: 4e49 .2byte 0x4e49 + fee: 5f54 .2byte 0x5f54 + ff0: 4146 .2byte 0x4146 + ff2: 34365453 .4byte 0x34365453 + ff6: 4d5f 4e49 5000 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x50 + ffc: 5254 .2byte 0x5254 + ffe: 4944 .2byte 0x4944 + 1000: 4646 .2byte 0x4646 + 1002: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 1008: 502d .2byte 0x502d + 100a: 5254 .2byte 0x5254 + 100c: 4944 .2byte 0x4944 + 100e: 4646 .2byte 0x4646 + 1010: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 1016: 3120 .2byte 0x3120 + 1018: 0029 .2byte 0x29 + 101a: 4955 .2byte 0x4955 + 101c: 544e .2byte 0x544e + 101e: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + 1024: 5f34 .2byte 0x5f34 + 1026: 414d .2byte 0x414d + 1028: 2058 .2byte 0x2058 + 102a: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 1030: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + 1036: 5f34 .2byte 0x5f34 + 1038: 414d .2byte 0x414d + 103a: 5f58 .2byte 0x5f58 + 103c: 005f 5450 4452 .byte 0x5f, 0x00, 0x50, 0x54, 0x52, 0x44 + 1042: 4649 .2byte 0x4649 + 1044: 5f46 .2byte 0x5f46 + 1046: 494d .2byte 0x494d + 1048: 004e .2byte 0x4e + 104a: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 1050: 5834 .2byte 0x5834 + 1052: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 1058: 3320 .2byte 0x3320 + 105a: 5f5f0033 .4byte 0x5f5f0033 + 105e: 4c46 .2byte 0x4c46 + 1060: 3654 .2byte 0x3654 + 1062: 5834 .2byte 0x5834 + 1064: 485f 5341 445f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x44 + 106a: 4e45 .2byte 0x4e45 + 106c: 5f4d524f .4byte 0x5f4d524f + 1070: 205f 0031 4e49 .byte 0x5f, 0x20, 0x31, 0x00, 0x49, 0x4e + 1076: 4d54 .2byte 0x4d54 + 1078: 5841 .2byte 0x5841 + 107a: 4d5f 4e49 5500 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x55 + 1080: 4e49 .2byte 0x4e49 + 1082: 5f54 .2byte 0x5f54 + 1084: 4146 .2byte 0x4146 + 1086: 5f385453 .4byte 0x5f385453 + 108a: 414d .2byte 0x414d + 108c: 0058 .2byte 0x58 + 108e: 5a5f 7336 7274 .byte 0x5f, 0x5a, 0x36, 0x73, 0x74, 0x72 + 1094: 50797063 bgeu x18,x7,1594 <_start-0x7fffea6c> + 1098: 005f5363 bge x30,x5,109e <_start-0x7fffef62> + 109c: 6c61 .2byte 0x6c61 + 109e: 6f6c .2byte 0x6f6c + 10a0: 66756263 bltu x10,x7,1704 <_start-0x7fffe8fc> + 10a4: 5f00 .2byte 0x5f00 + 10a6: 475f 5858 575f .byte 0x5f, 0x47, 0x58, 0x58, 0x5f, 0x57 + 10ac: 4145 .2byte 0x4145 + 10ae: 205f5f4b .4byte 0x205f5f4b + 10b2: 0031 .2byte 0x31 + 10b4: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 10ba: 5834 .2byte 0x5834 + 10bc: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 + 10c2: 5f30 .2byte 0x5f30 + 10c4: 5845 .2byte 0x5845 + 10c6: 5f50 .2byte 0x5f50 + 10c8: 205f 2d28 3934 .byte 0x5f, 0x20, 0x28, 0x2d, 0x34, 0x39 + 10ce: 00293133 sltu x2,x18,x2 + 10d2: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 10d8: 4f4e .2byte 0x4f4e + 10da: 4d52 .2byte 0x4d52 + 10dc: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 10e2: 6420 .2byte 0x6420 + 10e4: 6c62756f jal x10,287aa <_start-0x7ffd7856> + 10e8: 2865 .2byte 0x2865 + 10ea: 2e31 .2byte 0x2e31 + 10ec: 36373937 lui x18,0x36373 + 10f0: 3339 .2byte 0x3339 + 10f2: 3331 .2byte 0x3331 + 10f4: 3834 .2byte 0x3834 + 10f6: 3236 .2byte 0x3236 + 10f8: 37353133 .4byte 0x37353133 + 10fc: 3830 .2byte 0x3830 + 10fe: 3431 .2byte 0x3431 + 1100: 3235 .2byte 0x3235 + 1102: 33323437 lui x8,0x33323 + 1106: 37313337 lui x6,0x37313 + 110a: 3430 .2byte 0x3430 + 110c: 65373533 .4byte 0x65373533 + 1110: 3830332b .4byte 0x3830332b + 1114: 294c .2byte 0x294c + 1116: 5f00 .2byte 0x5f00 + 1118: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 + 111e: 4f54 .2byte 0x4f54 + 1120: 494d .2byte 0x494d + 1122: 414d5f43 .4byte 0x414d5f43 + 1126: 5f58 .2byte 0x5f58 + 1128: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 112e: 6666 .2byte 0x6666 + 1130: 6666 .2byte 0x6666 + 1132: 6666 .2byte 0x6666 + 1134: 5f00 .2byte 0x5f00 + 1136: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 113c: 4146 .2byte 0x4146 + 113e: 5f385453 .4byte 0x5f385453 + 1142: 414d .2byte 0x414d + 1144: 5f58 .2byte 0x5f58 + 1146: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 114c: 6666 .2byte 0x6666 + 114e: 6666 .2byte 0x6666 + 1150: 6666 .2byte 0x6666 + 1152: 0055 .2byte 0x55 + 1154: 4955 .2byte 0x4955 + 1156: 544e .2byte 0x544e + 1158: 3436 .2byte 0x3436 + 115a: 435f 5f00 465f .byte 0x5f, 0x43, 0x00, 0x5f, 0x5f, 0x46 + 1160: 544c .2byte 0x544c + 1162: 3231 .2byte 0x3231 + 1164: 5f38 .2byte 0x5f38 + 1166: 414d .2byte 0x414d + 1168: 5f58 .2byte 0x5f58 + 116a: 3031 .2byte 0x3031 + 116c: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 1172: 3420 .2byte 0x3420 + 1174: 3339 .2byte 0x3339 + 1176: 0032 .2byte 0x32 + 1178: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 117e: 5f34 .2byte 0x5f34 + 1180: 494d .2byte 0x494d + 1182: 5f4e .2byte 0x5f4e + 1184: 3031 .2byte 0x3031 + 1186: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 118c: 2820 .2byte 0x2820 + 118e: 332d .2byte 0x332d + 1190: 3730 .2byte 0x3730 + 1192: 0029 .2byte 0x29 + 1194: 4955 .2byte 0x4955 + 1196: 544e .2byte 0x544e + 1198: 5f38 .2byte 0x5f38 + 119a: 29632843 .4byte 0x29632843 + 119e: 5f20 .2byte 0x5f20 + 11a0: 555f 4e49 3854 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x38 + 11a6: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 + 11ac: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 11b2: 4146 .2byte 0x4146 + 11b4: 36315453 .4byte 0x36315453 + 11b8: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 11be: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + 11c4: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 11ca: 3832 .2byte 0x3832 + 11cc: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 11d2: 3320 .2byte 0x3320 + 11d4: 5f5f0033 .4byte 0x5f5f0033 + 11d8: 4955 .2byte 0x4955 + 11da: 544e .2byte 0x544e + 11dc: 3631 .2byte 0x3631 + 11de: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 11e4: 205f 6873 726f .byte 0x5f, 0x20, 0x73, 0x68, 0x6f, 0x72 + 11ea: 2074 .2byte 0x2074 + 11ec: 6e75 .2byte 0x6e75 + 11ee: 6e676973 .4byte 0x6e676973 + 11f2: 6465 .2byte 0x6465 + 11f4: 6920 .2byte 0x6920 + 11f6: 746e .2byte 0x746e + 11f8: 5f00 .2byte 0x5f00 + 11fa: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 1200: 414d .2byte 0x414d + 1202: 5f58 .2byte 0x5f58 + 1204: 205f 2e31 3831 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x38 + 120a: 3739 .2byte 0x3739 + 120c: 39343133 .4byte 0x39343133 + 1210: 3335 .2byte 0x3335 + 1212: 3735 .2byte 0x3735 + 1214: 3332 .2byte 0x3332 + 1216: 3731 .2byte 0x3731 + 1218: 3536 .2byte 0x3536 + 121a: 3830 .2byte 0x3830 + 121c: 3735 .2byte 0x3735 + 121e: 3935 .2byte 0x3935 + 1220: 36363233 .4byte 0x36363233 + 1224: 3832 .2byte 0x3832 + 1226: 3030 .2byte 0x3030 + 1228: 65323037 lui x0,0x65323 + 122c: 3339342b .4byte 0x3339342b + 1230: 4c32 .2byte 0x4c32 + 1232: 5f00 .2byte 0x5f00 + 1234: 575f 4843 5241 .byte 0x5f, 0x57, 0x43, 0x48, 0x41, 0x52 + 123a: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 1240: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 1246: 5f5f 4e47 4355 .byte 0x5f, 0x5f, 0x47, 0x4e, 0x55, 0x43 + 124c: 535f 4454 5f43 .byte 0x5f, 0x53, 0x54, 0x44, 0x43, 0x5f + 1252: 4e49 .2byte 0x4e49 + 1254: 494c .2byte 0x494c + 1256: 454e .2byte 0x454e + 1258: 5f5f 3120 4900 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x49 + 125e: 544e .2byte 0x544e + 1260: 414d .2byte 0x414d + 1262: 5f58 .2byte 0x5f58 + 1264: 29632843 .4byte 0x29632843 + 1268: 5f20 .2byte 0x5f20 + 126a: 495f 544e 414d .byte 0x5f, 0x49, 0x4e, 0x54, 0x4d, 0x41 + 1270: 5f58 .2byte 0x5f58 + 1272: 29632843 .4byte 0x29632843 + 1276: 5f00 .2byte 0x5f00 + 1278: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f + 127e: 4f4c .2byte 0x4f4c + 1280: 474e .2byte 0x474e + 1282: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1288: 3020 .2byte 0x3020 + 128a: 3778 .2byte 0x3778 + 128c: 6666 .2byte 0x6666 + 128e: 6666 .2byte 0x6666 + 1290: 6666 .2byte 0x6666 + 1292: 6666 .2byte 0x6666 + 1294: 6666 .2byte 0x6666 + 1296: 6666 .2byte 0x6666 + 1298: 6666 .2byte 0x6666 + 129a: 4c66 .2byte 0x4c66 + 129c: 004c .2byte 0x4c + 129e: 5f5f 4e49 3654 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x36 + 12a4: 5f34 .2byte 0x5f34 + 12a6: 5954 .2byte 0x5954 + 12a8: 4550 .2byte 0x4550 + 12aa: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 12b0: 6f6c2067 .4byte 0x6f6c2067 + 12b4: 676e .2byte 0x676e + 12b6: 6920 .2byte 0x6920 + 12b8: 746e .2byte 0x746e + 12ba: 5f00 .2byte 0x5f00 + 12bc: 465f 544c 4d5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4d + 12c2: 5841 .2byte 0x5841 + 12c4: 315f 5f30 5845 .byte 0x5f, 0x31, 0x30, 0x5f, 0x45, 0x58 + 12ca: 5f50 .2byte 0x5f50 + 12cc: 205f 3833 5f00 .byte 0x5f, 0x20, 0x33, 0x38, 0x00, 0x5f + 12d2: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 12d8: 5045 .2byte 0x5045 + 12da: 4f4c4953 .4byte 0x4f4c4953 + 12de: 5f4e .2byte 0x5f4e + 12e0: 205f 2e31 3239 .byte 0x5f, 0x20, 0x31, 0x2e, 0x39, 0x32 + 12e6: 3935 .2byte 0x3935 + 12e8: 3932 .2byte 0x3932 + 12ea: 3439 .2byte 0x3439 + 12ec: 3334 .2byte 0x3334 + 12ee: 3738 .2byte 0x3738 + 12f0: 3332 .2byte 0x3332 + 12f2: 3835 .2byte 0x3835 + 12f4: 3335 .2byte 0x3335 + 12f6: 3530 .2byte 0x3530 + 12f8: 3935 .2byte 0x3935 + 12fa: 34393737 lui x14,0x34393 + 12fe: 3532 .2byte 0x3532 + 1300: 3438 .2byte 0x3438 + 1302: 3239 .2byte 0x3239 + 1304: 65323337 lui x6,0x65323 + 1308: 332d .2byte 0x332d + 130a: 4c34 .2byte 0x4c34 + 130c: 5f00 .2byte 0x5f00 + 130e: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 1314: 5f58 .2byte 0x5f58 + 1316: 5045 .2byte 0x5045 + 1318: 4f4c4953 .4byte 0x4f4c4953 + 131c: 5f4e .2byte 0x5f4e + 131e: 205f 2e32 3232 .byte 0x5f, 0x20, 0x32, 0x2e, 0x32, 0x32 + 1324: 3430 .2byte 0x3430 + 1326: 3634 .2byte 0x3634 + 1328: 3430 .2byte 0x3430 + 132a: 3239 .2byte 0x3239 + 132c: 3035 .2byte 0x3035 + 132e: 30333133 .4byte 0x30333133 + 1332: 3038 .2byte 0x3038 + 1334: 3438 .2byte 0x3438 + 1336: 33363237 lui x4,0x33363 + 133a: 31363333 .4byte 0x31363333 + 133e: 3138 .2byte 0x3138 + 1340: 3436 .2byte 0x3436 + 1342: 3630 .2byte 0x3630 + 1344: 6532 .2byte 0x6532 + 1346: 312d .2byte 0x312d + 1348: 4636 .2byte 0x4636 + 134a: 00783233 sltu x4,x16,x7 + 134e: 5f5f 4f4e 495f .byte 0x5f, 0x5f, 0x4e, 0x4f, 0x5f, 0x49 + 1354: 4c4e .2byte 0x4c4e + 1356: 4e49 .2byte 0x4e49 + 1358: 5f45 .2byte 0x5f45 + 135a: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1360: 6972 .2byte 0x6972 + 1362: 5f766373 .4byte 0x5f766373 + 1366: 6c78 .2byte 0x6c78 + 1368: 6e65 .2byte 0x6e65 + 136a: 3320 .2byte 0x3320 + 136c: 0032 .2byte 0x32 + 136e: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 1374: 656e .2byte 0x656e + 1376: 64657473 .4byte 0x64657473 + 137a: 6e5f 6d61 7365 .byte 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73 + 1380: 6170 .2byte 0x6170 + 1382: 645f6563 bltu x30,x5,19cc <_start-0x7fffe634> + 1386: 6665 .2byte 0x6665 + 1388: 6e69 .2byte 0x6e69 + 138a: 7469 .2byte 0x7469 + 138c: 6f69 .2byte 0x6f69 + 138e: 736e .2byte 0x736e + 1390: 3220 .2byte 0x3220 + 1392: 3130 .2byte 0x3130 + 1394: 3134 .2byte 0x3134 + 1396: 4c31 .2byte 0x4c31 + 1398: 5f00 .2byte 0x5f00 + 139a: 465f 544c 4d5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4d + 13a0: 4e41 .2byte 0x4e41 + 13a2: 5f54 .2byte 0x5f54 + 13a4: 4944 .2byte 0x4944 + 13a6: 205f5f47 .4byte 0x205f5f47 + 13aa: 3432 .2byte 0x3432 + 13ac: 5f00 .2byte 0x5f00 + 13ae: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 13b4: 445f 4345 4d49 .byte 0x5f, 0x44, 0x45, 0x43, 0x49, 0x4d + 13ba: 4c41 .2byte 0x4c41 + 13bc: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 13c2: 3120 .2byte 0x3120 + 13c4: 5f5f0037 lui x0,0x5f5f0 + 13c8: 4552 .2byte 0x4552 + 13ca: 54534947 .4byte 0x54534947 + 13ce: 5245 .2byte 0x5245 + 13d0: 505f 4552 4946 .byte 0x5f, 0x50, 0x52, 0x45, 0x46, 0x49 + 13d6: 5f58 .2byte 0x5f58 + 13d8: 205f 5f00 465f .byte 0x5f, 0x20, 0x00, 0x5f, 0x5f, 0x46 + 13de: 544c .2byte 0x544c + 13e0: 4d5f3233 .4byte 0x4d5f3233 + 13e4: 4e49 .2byte 0x4e49 + 13e6: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 13ec: 2820 .2byte 0x2820 + 13ee: 312d .2byte 0x312d + 13f0: 3532 .2byte 0x3532 + 13f2: 0029 .2byte 0x29 + 13f4: 544e4957 .4byte 0x544e4957 + 13f8: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 13fe: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 1404: 5f58 .2byte 0x5f58 + 1406: 4f4e .2byte 0x4f4e + 1408: 4d52 .2byte 0x4d52 + 140a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1410: 3120 .2byte 0x3120 + 1412: 312e .2byte 0x312e + 1414: 3938 .2byte 0x3938 + 1416: 34313337 lui x6,0x34313 + 141a: 3539 .2byte 0x3539 + 141c: 32373533 .4byte 0x32373533 + 1420: 36373133 .4byte 0x36373133 + 1424: 3035 .2byte 0x3035 + 1426: 3538 .2byte 0x3538 + 1428: 33393537 lui x10,0x33393 + 142c: 3632 .2byte 0x3632 + 142e: 3236 .2byte 0x3236 + 1430: 3038 .2byte 0x3038 + 1432: 3730 .2byte 0x3730 + 1434: 3230 .2byte 0x3230 + 1436: 2b65 .2byte 0x2b65 + 1438: 3934 .2byte 0x3934 + 143a: 36463233 .4byte 0x36463233 + 143e: 7834 .2byte 0x7834 + 1440: 5f00 .2byte 0x5f00 + 1442: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 1448: 4146 .2byte 0x4146 + 144a: 36315453 .4byte 0x36315453 + 144e: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1454: 3020 .2byte 0x3020 + 1456: 6678 .2byte 0x6678 + 1458: 6666 .2byte 0x6666 + 145a: 6666 .2byte 0x6666 + 145c: 6666 .2byte 0x6666 + 145e: 5566 .2byte 0x5566 + 1460: 5f00 .2byte 0x5f00 + 1462: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 1468: 4146 .2byte 0x4146 + 146a: 36315453 .4byte 0x36315453 + 146e: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 1474: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 147a: 64656e67 .4byte 0x64656e67 + 147e: 6920 .2byte 0x6920 + 1480: 746e .2byte 0x746e + 1482: 5f00 .2byte 0x5f00 + 1484: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 148a: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 + 1490: 5058 .2byte 0x5058 + 1492: 5f5f 3120 3832 .byte 0x5f, 0x5f, 0x20, 0x31, 0x32, 0x38 + 1498: 5f00 .2byte 0x5f00 + 149a: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 14a0: 4e49 .2byte 0x4e49 + 14a2: 315f 5f30 5845 .byte 0x5f, 0x31, 0x30, 0x5f, 0x45, 0x58 + 14a8: 5f50 .2byte 0x5f50 + 14aa: 205f 2d28 3033 .byte 0x5f, 0x20, 0x28, 0x2d, 0x33, 0x30 + 14b0: 49002937 lui x18,0x49002 + 14b4: 544e .2byte 0x544e + 14b6: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 14bc: 5f32 .2byte 0x5f32 + 14be: 414d .2byte 0x414d + 14c0: 2058 .2byte 0x2058 + 14c2: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 14c8: 4146 .2byte 0x4146 + 14ca: 32335453 .4byte 0x32335453 + 14ce: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 14d4: 5f00 .2byte 0x5f00 + 14d6: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 14dc: 5f38 .2byte 0x5f38 + 14de: 4148 .2byte 0x4148 + 14e0: 4e495f53 .4byte 0x4e495f53 + 14e4: 4946 .2byte 0x4946 + 14e6: 494e .2byte 0x494e + 14e8: 5954 .2byte 0x5954 + 14ea: 5f5f 3120 5500 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x55 + 14f0: 4e49 .2byte 0x4e49 + 14f2: 5f54 .2byte 0x5f54 + 14f4: 454c .2byte 0x454c + 14f6: 5341 .2byte 0x5341 + 14f8: 3654 .2byte 0x3654 + 14fa: 5f34 .2byte 0x5f34 + 14fc: 414d .2byte 0x414d + 14fe: 0058 .2byte 0x58 + 1500: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 1506: 5f32 .2byte 0x5f32 + 1508: 4944 .2byte 0x4944 + 150a: 205f5f47 .4byte 0x205f5f47 + 150e: 0036 .2byte 0x36 + 1510: 475f 4343 535f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x53 + 1516: 4454 .2byte 0x4454 + 1518: 4e49 .2byte 0x4e49 + 151a: 5f54 .2byte 0x5f54 + 151c: 2048 .2byte 0x2048 + 151e: 5f00 .2byte 0x5f00 + 1520: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 1526: 485f 5341 445f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x44 + 152c: 4e45 .2byte 0x4e45 + 152e: 5f4d524f .4byte 0x5f4d524f + 1532: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1538: 5f707063 bgeu x0,x23,1b18 <_start-0x7fffe4e8> + 153c: 6176 .2byte 0x6176 + 153e: 6972 .2byte 0x6972 + 1540: 6261 .2byte 0x6261 + 1542: 656c .2byte 0x656c + 1544: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + 154a: 7461 .2byte 0x7461 + 154c: 7365 .2byte 0x7365 + 154e: 3220 .2byte 0x3220 + 1550: 3130 .2byte 0x3130 + 1552: 4c343033 .4byte 0x4c343033 + 1556: 5f00 .2byte 0x5f00 + 1558: 465f 544c 455f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x45 + 155e: 4156 .2byte 0x4156 + 1560: 5f4c .2byte 0x5f4c + 1562: 454d .2byte 0x454d + 1564: 4854 .2byte 0x4854 + 1566: 5f5f444f .4byte 0x5f5f444f + 156a: 3020 .2byte 0x3020 + 156c: 5f00 .2byte 0x5f00 + 156e: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 + 1574: 6176 .2byte 0x6176 + 1576: 756c .2byte 0x756c + 1578: 5f65 .2byte 0x5f65 + 157a: 6572 .2byte 0x6572 + 157c: 6566 .2byte 0x6566 + 157e: 6572 .2byte 0x6572 + 1580: 636e .2byte 0x636e + 1582: 2065 .2byte 0x2065 + 1584: 3032 .2byte 0x3032 + 1586: 3630 .2byte 0x3630 + 1588: 3031 .2byte 0x3031 + 158a: 004c .2byte 0x4c + 158c: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 1592: 5832 .2byte 0x5832 + 1594: 485f 5341 445f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x44 + 159a: 4e45 .2byte 0x4e45 + 159c: 5f4d524f .4byte 0x5f4d524f + 15a0: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 15a6: 5f707063 bgeu x0,x23,1b86 <_start-0x7fffe47a> + 15aa: 7865 .2byte 0x7865 + 15ac: 74706563 bltu x0,x7,1cf6 <_start-0x7fffe30a> + 15b0: 6f69 .2byte 0x6f69 + 15b2: 736e .2byte 0x736e + 15b4: 3120 .2byte 0x3120 + 15b6: 3939 .2byte 0x3939 + 15b8: 4c313137 lui x2,0x4c313 + 15bc: 5f00 .2byte 0x5f00 + 15be: 555f 4e49 5054 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x50 + 15c4: 5254 .2byte 0x5254 + 15c6: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 15cc: 3020 .2byte 0x3020 + 15ce: 6678 .2byte 0x6678 + 15d0: 6666 .2byte 0x6666 + 15d2: 6666 .2byte 0x6666 + 15d4: 6666 .2byte 0x6666 + 15d6: 5566 .2byte 0x5566 + 15d8: 5f00 .2byte 0x5f00 + 15da: 335a .2byte 0x335a + 15dc: 6c61 .2byte 0x6c61 + 15de: 634b5067 .4byte 0x634b5067 + 15e2: 5f00 .2byte 0x5f00 + 15e4: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 15ea: 4f54 .2byte 0x4f54 + 15ec: 494d .2byte 0x494d + 15ee: 43575f43 .4byte 0x43575f43 + 15f2: 4148 .2byte 0x4148 + 15f4: 5f52 .2byte 0x5f52 + 15f6: 5f54 .2byte 0x5f54 + 15f8: 4f4c .2byte 0x4f4c + 15fa: 465f4b43 .4byte 0x465f4b43 + 15fe: 4552 .2byte 0x4552 + 1600: 2045 .2byte 0x2045 + 1602: 0031 .2byte 0x31 + 1604: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 160a: 3832 .2byte 0x3832 + 160c: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 1612: 3320 .2byte 0x3320 + 1614: 332e .2byte 0x332e + 1616: 3236 .2byte 0x3236 + 1618: 3031 .2byte 0x3031 + 161a: 33343133 .4byte 0x33343133 + 161e: 3131 .2byte 0x3131 + 1620: 3032 .2byte 0x3032 + 1622: 3339 .2byte 0x3339 + 1624: 3035 .2byte 0x3035 + 1626: 3236 .2byte 0x3236 + 1628: 3236 .2byte 0x3236 + 162a: 3736 .2byte 0x3736 + 162c: 37313837 lui x16,0x37313 + 1630: 37313233 .4byte 0x37313233 + 1634: 3235 .2byte 0x3235 + 1636: 3036 .2byte 0x3036 + 1638: 2d65 .2byte 0x2d65 + 163a: 3934 .2byte 0x3934 + 163c: 31463233 .4byte 0x31463233 + 1640: 3832 .2byte 0x3832 + 1642: 5f00 .2byte 0x5f00 + 1644: 725f 7369 7663 .byte 0x5f, 0x72, 0x69, 0x73, 0x63, 0x76 + 164a: 615f 6372 5f68 .byte 0x5f, 0x61, 0x72, 0x63, 0x68, 0x5f + 1650: 6574 .2byte 0x6574 + 1652: 31207473 .4byte 0x31207473 + 1656: 5f00 .2byte 0x5f00 + 1658: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 165e: 5341 .2byte 0x5341 + 1660: 3354 .2byte 0x3354 + 1662: 5f32 .2byte 0x5f32 + 1664: 54444957 .4byte 0x54444957 + 1668: 5f48 .2byte 0x5f48 + 166a: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 1670: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 1676: 4145 .2byte 0x4145 + 1678: 5f385453 .4byte 0x5f385453 + 167c: 54444957 .4byte 0x54444957 + 1680: 5f48 .2byte 0x5f48 + 1682: 205f 0038 5f5f .byte 0x5f, 0x20, 0x38, 0x00, 0x5f, 0x5f + 1688: 4955 .2byte 0x4955 + 168a: 544e .2byte 0x544e + 168c: 5f38 .2byte 0x5f38 + 168e: 414d .2byte 0x414d + 1690: 5f58 .2byte 0x5f58 + 1692: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 1698: 5f00 .2byte 0x5f00 + 169a: 555f 4e49 3154 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x31 + 16a0: 5f36 .2byte 0x5f36 + 16a2: 414d .2byte 0x414d + 16a4: 5f58 .2byte 0x5f58 + 16a6: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 16ac: 6666 .2byte 0x6666 + 16ae: 4900 .2byte 0x4900 + 16b0: 544e .2byte 0x544e + 16b2: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 16b8: 5f38 .2byte 0x5f38 + 16ba: 414d .2byte 0x414d + 16bc: 2058 .2byte 0x2058 + 16be: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 16c4: 454c .2byte 0x454c + 16c6: 5341 .2byte 0x5341 + 16c8: 3854 .2byte 0x3854 + 16ca: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 16d0: 5300 .2byte 0x5300 + 16d2: 5a49 .2byte 0x5a49 + 16d4: 5f45 .2byte 0x5f45 + 16d6: 414d .2byte 0x414d + 16d8: 2058 .2byte 0x2058 + 16da: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 16e0: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 16e6: 5f00 .2byte 0x5f00 + 16e8: 495f 544e 414d .byte 0x5f, 0x49, 0x4e, 0x54, 0x4d, 0x41 + 16ee: 5f58 .2byte 0x5f58 + 16f0: 54444957 .4byte 0x54444957 + 16f4: 5f48 .2byte 0x5f48 + 16f6: 205f 3436 5f00 .byte 0x5f, 0x20, 0x36, 0x34, 0x00, 0x5f + 16fc: 475f 4343 495f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x49 + 1702: 4345 .2byte 0x4345 + 1704: 355f 3935 3020 .byte 0x5f, 0x35, 0x35, 0x39, 0x20, 0x30 + 170a: 5f00 .2byte 0x5f00 + 170c: 445f 4c42 495f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x49 + 1712: 45495f53 .4byte 0x45495f53 + 1716: 30365f43 .4byte 0x30365f43 + 171a: 3535 .2byte 0x3535 + 171c: 5f39 .2byte 0x5f39 + 171e: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + 1724: 4e49 .2byte 0x4e49 + 1726: 5f54 .2byte 0x5f54 + 1728: 454c .2byte 0x454c + 172a: 5341 .2byte 0x5341 + 172c: 3154 .2byte 0x3154 + 172e: 5f36 .2byte 0x5f36 + 1730: 5954 .2byte 0x5954 + 1732: 4550 .2byte 0x4550 + 1734: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f + 173a: 7472 .2byte 0x7472 + 173c: 6920 .2byte 0x6920 + 173e: 746e .2byte 0x746e + 1740: 5f00 .2byte 0x5f00 + 1742: 385a .2byte 0x385a + 1744: 7369 .2byte 0x7369 + 1746: 645f 6c65 6d69 .byte 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d + 174c: 634b5063 bge x22,x20,1d6c <_start-0x7fffe294> + 1750: 5f00 .2byte 0x5f00 + 1752: 535f 4454 5043 .byte 0x5f, 0x53, 0x54, 0x44, 0x43, 0x50 + 1758: 5f50 .2byte 0x5f50 + 175a: 4544 .2byte 0x4544 + 175c: 4146 .2byte 0x4146 + 175e: 4c55 .2byte 0x4c55 + 1760: 5f54 .2byte 0x5f54 + 1762: 454e .2byte 0x454e + 1764: 4c415f57 .4byte 0x4c415f57 + 1768: 4749 .2byte 0x4749 + 176a: 4d4e .2byte 0x4d4e + 176c: 4e45 .2byte 0x4e45 + 176e: 5f54 .2byte 0x5f54 + 1770: 205f 3631 5700 .byte 0x5f, 0x20, 0x31, 0x36, 0x00, 0x57 + 1776: 52414843 .4byte 0x52414843 + 177a: 4d5f 4e49 4900 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x49 + 1780: 544e .2byte 0x544e + 1782: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 1788: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 178e: 492d .2byte 0x492d + 1790: 544e .2byte 0x544e + 1792: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 1798: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 179e: 3120 .2byte 0x3120 + 17a0: 0029 .2byte 0x29 + 17a2: 7369 .2byte 0x7369 + 17a4: 645f 6c65 6d69 .byte 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d + 17aa: 4100 .2byte 0x4100 + 17ac: 4c4c .2byte 0x4c4c + 17ae: 4953434f .4byte 0x4953434f + 17b2: 455a .2byte 0x455a + 17b4: 3120 .2byte 0x3120 + 17b6: 3030 .2byte 0x3030 + 17b8: 3030 .2byte 0x3030 + 17ba: 5000 .2byte 0x5000 + 17bc: 5254 .2byte 0x5254 + 17be: 4944 .2byte 0x4944 + 17c0: 4646 .2byte 0x4646 + 17c2: 4d5f 5841 5300 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x53 + 17c8: 5a49 .2byte 0x5a49 + 17ca: 5f45 .2byte 0x5f45 + 17cc: 414d .2byte 0x414d + 17ce: 0058 .2byte 0x58 + 17d0: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + 17d6: 5441 .2byte 0x5441 + 17d8: 43494d4f .4byte 0x43494d4f + 17dc: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f + 17e2: 4f4c .2byte 0x4f4c + 17e4: 465f4b43 .4byte 0x465f4b43 + 17e8: 4552 .2byte 0x4552 + 17ea: 2045 .2byte 0x2045 + 17ec: 0031 .2byte 0x31 + 17ee: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 17f4: 5832 .2byte 0x5832 + 17f6: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 17fc: 3120 .2byte 0x3120 + 17fe: 0035 .2byte 0x35 + 1800: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 1806: 6564 .2byte 0x6564 + 1808: 79746c63 bltu x8,x23,1fa0 <_start-0x7fffe060> + 180c: 6570 .2byte 0x6570 + 180e: 3220 .2byte 0x3220 + 1810: 3030 .2byte 0x3030 + 1812: 4c373037 lui x0,0x4c373 + 1816: 5f00 .2byte 0x5f00 + 1818: 635f 7070 615f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x61 + 181e: 7474 .2byte 0x7474 + 1820: 6972 .2byte 0x6972 + 1822: 7562 .2byte 0x7562 + 1824: 6574 .2byte 0x6574 + 1826: 30322073 .4byte 0x30322073 + 182a: 3830 .2byte 0x3830 + 182c: 3930 .2byte 0x3930 + 182e: 004c .2byte 0x4c + 1830: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 1836: 5832 .2byte 0x5832 + 1838: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f + 183e: 4944 .2byte 0x4944 + 1840: 205f5f47 .4byte 0x205f5f47 + 1844: 3335 .2byte 0x3335 + 1846: 5f00 .2byte 0x5f00 + 1848: 445f 5045 4552 .byte 0x5f, 0x44, 0x45, 0x50, 0x52, 0x45 + 184e: 45544143 .4byte 0x45544143 + 1852: 2044 .2byte 0x2044 + 1854: 0031 .2byte 0x31 + 1856: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 185c: 656e6567 .4byte 0x656e6567 + 1860: 6972 .2byte 0x6972 + 1862: 616c5f63 bge x24,x22,1e80 <_start-0x7fffe180> + 1866: 626d .2byte 0x626d + 1868: 6164 .2byte 0x6164 + 186a: 30322073 .4byte 0x30322073 + 186e: 3331 .2byte 0x3331 + 1870: 3430 .2byte 0x3430 + 1872: 004c .2byte 0x4c + 1874: 4955 .2byte 0x4955 + 1876: 544e .2byte 0x544e + 1878: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 187e: 5f32 .2byte 0x5f32 + 1880: 414d .2byte 0x414d + 1882: 2058 .2byte 0x2058 + 1884: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 188a: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 1890: 5f32 .2byte 0x5f32 + 1892: 414d .2byte 0x414d + 1894: 5f58 .2byte 0x5f58 + 1896: 005f 5f5f 4843 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x43, 0x48 + 189c: 5241 .2byte 0x5241 + 189e: 425f 5449 5f5f .byte 0x5f, 0x42, 0x49, 0x54, 0x5f, 0x5f + 18a4: 3820 .2byte 0x3820 + 18a6: 5f00 .2byte 0x5f00 + 18a8: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e + 18ae: 696d6473 .4byte 0x696d6473 + 18b2: 3220 .2byte 0x3220 + 18b4: 3030 .2byte 0x3030 + 18b6: 3038 .2byte 0x3038 + 18b8: 4c39 .2byte 0x4c39 + 18ba: 5f00 .2byte 0x5f00 + 18bc: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 18c2: 5f58 .2byte 0x5f58 + 18c4: 5349 .2byte 0x5349 + 18c6: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 + 18cc: 3530 .2byte 0x3530 + 18ce: 3935 .2byte 0x3935 + 18d0: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + 18d6: 495f 544e 5450 .byte 0x5f, 0x49, 0x4e, 0x54, 0x50, 0x54 + 18dc: 5f52 .2byte 0x5f52 + 18de: 54444957 .4byte 0x54444957 + 18e2: 5f48 .2byte 0x5f48 + 18e4: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 18ea: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 18f0: 454c .2byte 0x454c + 18f2: 5341 .2byte 0x5341 + 18f4: 3854 .2byte 0x3854 + 18f6: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 18fc: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 1902: 64656e67 .4byte 0x64656e67 + 1906: 6320 .2byte 0x6320 + 1908: 6168 .2byte 0x6168 + 190a: 0072 .2byte 0x72 + 190c: 5f5f 4946 494e .byte 0x5f, 0x5f, 0x46, 0x49, 0x4e, 0x49 + 1912: 4554 .2byte 0x4554 + 1914: 4d5f 5441 5f48 .byte 0x5f, 0x4d, 0x41, 0x54, 0x48, 0x5f + 191a: 594c4e4f .4byte 0x594c4e4f + 191e: 5f5f 3020 4900 .byte 0x5f, 0x5f, 0x20, 0x30, 0x00, 0x49 + 1924: 544e .2byte 0x544e + 1926: 3436 .2byte 0x3436 + 1928: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 192e: 495f 544e 3436 .byte 0x5f, 0x49, 0x4e, 0x54, 0x36, 0x34 + 1934: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 193a: 5f00 .2byte 0x5f00 + 193c: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 1942: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1948: 3120 .2byte 0x3120 + 194a: 372e .2byte 0x372e + 194c: 3739 .2byte 0x3739 + 194e: 3936 .2byte 0x3936 + 1950: 34333133 .4byte 0x34333133 + 1954: 3638 .2byte 0x3638 + 1956: 3332 .2byte 0x3332 + 1958: 3531 .2byte 0x3531 + 195a: 31383037 lui x0,0x31383 + 195e: 3534 .2byte 0x3534 + 1960: 3732 .2byte 0x3732 + 1962: 3234 .2byte 0x3234 + 1964: 31333733 .4byte 0x31333733 + 1968: 33343037 lui x0,0x33343 + 196c: 3735 .2byte 0x3735 + 196e: 2b65 .2byte 0x2b65 + 1970: 46383033 .4byte 0x46383033 + 1974: 3436 .2byte 0x3436 + 1976: 5f00 .2byte 0x5f00 + 1978: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 197e: 5841 .2byte 0x5841 + 1980: 5f5f 6420 756f .byte 0x5f, 0x5f, 0x20, 0x64, 0x6f, 0x75 + 1986: 6c62 .2byte 0x6c62 + 1988: 2865 .2byte 0x2865 + 198a: 2e31 .2byte 0x2e31 + 198c: 36373937 lui x18,0x36373 + 1990: 3339 .2byte 0x3339 + 1992: 3331 .2byte 0x3331 + 1994: 3834 .2byte 0x3834 + 1996: 3236 .2byte 0x3236 + 1998: 37353133 .4byte 0x37353133 + 199c: 3830 .2byte 0x3830 + 199e: 3431 .2byte 0x3431 + 19a0: 3235 .2byte 0x3235 + 19a2: 33323437 lui x8,0x33323 + 19a6: 37313337 lui x6,0x37313 + 19aa: 3430 .2byte 0x3430 + 19ac: 65373533 .4byte 0x65373533 + 19b0: 3830332b .4byte 0x3830332b + 19b4: 294c .2byte 0x294c + 19b6: 4900 .2byte 0x4900 + 19b8: 544e .2byte 0x544e + 19ba: 3631 .2byte 0x3631 + 19bc: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 19c2: 492d .2byte 0x492d + 19c4: 544e .2byte 0x544e + 19c6: 3631 .2byte 0x3631 + 19c8: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 19ce: 3120 .2byte 0x3120 + 19d0: 0029 .2byte 0x29 + 19d2: 4e49 .2byte 0x4e49 + 19d4: 5f54 .2byte 0x5f54 + 19d6: 4146 .2byte 0x4146 + 19d8: 36315453 .4byte 0x36315453 + 19dc: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 19e2: 492d .2byte 0x492d + 19e4: 544e .2byte 0x544e + 19e6: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + 19ec: 5f36 .2byte 0x5f36 + 19ee: 414d .2byte 0x414d + 19f0: 2058 .2byte 0x2058 + 19f2: 202d .2byte 0x202d + 19f4: 2931 .2byte 0x2931 + 19f6: 4900 .2byte 0x4900 + 19f8: 544e .2byte 0x544e + 19fa: 5450 .2byte 0x5450 + 19fc: 5f52 .2byte 0x5f52 + 19fe: 494d .2byte 0x494d + 1a00: 204e .2byte 0x204e + 1a02: 2d28 .2byte 0x2d28 + 1a04: 4e49 .2byte 0x4e49 + 1a06: 5054 .2byte 0x5054 + 1a08: 5254 .2byte 0x5254 + 1a0a: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 1a10: 3120 .2byte 0x3120 + 1a12: 0029 .2byte 0x29 + 1a14: 4e49 .2byte 0x4e49 + 1a16: 5f54 .2byte 0x5f54 + 1a18: 454c .2byte 0x454c + 1a1a: 5341 .2byte 0x5341 + 1a1c: 3854 .2byte 0x3854 + 1a1e: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 1a24: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 1a2a: 4f54 .2byte 0x4f54 + 1a2c: 494d .2byte 0x494d + 1a2e: 45545f43 .4byte 0x45545f43 + 1a32: 415f5453 .4byte 0x415f5453 + 1a36: 444e .2byte 0x444e + 1a38: 535f 5445 545f .byte 0x5f, 0x53, 0x45, 0x54, 0x5f, 0x54 + 1a3e: 5552 .2byte 0x5552 + 1a40: 5645 .2byte 0x5645 + 1a42: 4c41 .2byte 0x4c41 + 1a44: 3120 .2byte 0x3120 + 1a46: 5f00 .2byte 0x5f00 + 1a48: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 1a4e: 4f435f43 .4byte 0x4f435f43 + 1a52: 534e .2byte 0x534e + 1a54: 4d55 .2byte 0x4d55 + 1a56: 2045 .2byte 0x2045 + 1a58: 0031 .2byte 0x31 + 1a5a: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 1a60: 6574 .2byte 0x6574 + 1a62: 706d .2byte 0x706d + 1a64: 616c .2byte 0x616c + 1a66: 6574 .2byte 0x6574 + 1a68: 615f 7475 206f .byte 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x20 + 1a6e: 3032 .2byte 0x3032 + 1a70: 3631 .2byte 0x3631 + 1a72: 3630 .2byte 0x3630 + 1a74: 004c .2byte 0x4c + 1a76: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 1a7c: 5834 .2byte 0x5834 + 1a7e: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1a84: 3120 .2byte 0x3120 + 1a86: 312e .2byte 0x312e + 1a88: 3938 .2byte 0x3938 + 1a8a: 34313337 lui x6,0x34313 + 1a8e: 3539 .2byte 0x3539 + 1a90: 32373533 .4byte 0x32373533 + 1a94: 36373133 .4byte 0x36373133 + 1a98: 3035 .2byte 0x3035 + 1a9a: 3538 .2byte 0x3538 + 1a9c: 33393537 lui x10,0x33393 + 1aa0: 3632 .2byte 0x3632 + 1aa2: 3236 .2byte 0x3236 + 1aa4: 3038 .2byte 0x3038 + 1aa6: 3730 .2byte 0x3730 + 1aa8: 3230 .2byte 0x3230 + 1aaa: 2b65 .2byte 0x2b65 + 1aac: 3934 .2byte 0x3934 + 1aae: 36463233 .4byte 0x36463233 + 1ab2: 7834 .2byte 0x7834 + 1ab4: 5f00 .2byte 0x5f00 + 1ab6: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 1abc: 5f58 .2byte 0x5f58 + 1abe: 494d .2byte 0x494d + 1ac0: 5f4e .2byte 0x5f4e + 1ac2: 205f 2e32 3232 .byte 0x5f, 0x20, 0x32, 0x2e, 0x32, 0x32 + 1ac8: 3035 .2byte 0x3035 + 1aca: 35383337 lui x6,0x35383 + 1ace: 3538 .2byte 0x3538 + 1ad0: 3730 .2byte 0x3730 + 1ad2: 3032 .2byte 0x3032 + 1ad4: 3331 .2byte 0x3331 + 1ad6: 3338 .2byte 0x3338 + 1ad8: 3930 .2byte 0x3930 + 1ada: 3230 .2byte 0x3230 + 1adc: 31373233 .4byte 0x31373233 + 1ae0: 32333337 lui x6,0x32333 + 1ae4: 3034 .2byte 0x3034 + 1ae6: 3034 .2byte 0x3034 + 1ae8: 6536 .2byte 0x6536 + 1aea: 332d .2byte 0x332d + 1aec: 3830 .2byte 0x3830 + 1aee: 3346 .2byte 0x3346 + 1af0: 7832 .2byte 0x7832 + 1af2: 6200 .2byte 0x6200 + 1af4: 006c6f6f jal x30,c7afa <_start-0x7ff38506> + 1af8: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 1afe: 5834 .2byte 0x5834 + 1b00: 485f 5341 495f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x49 + 1b06: 464e .2byte 0x464e + 1b08: 4e49 .2byte 0x4e49 + 1b0a: 5449 .2byte 0x5449 + 1b0c: 5f59 .2byte 0x5f59 + 1b0e: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1b14: 4e49 .2byte 0x4e49 + 1b16: 3154 .2byte 0x3154 + 1b18: 5f36 .2byte 0x5f36 + 1b1a: 29632843 .4byte 0x29632843 + 1b1e: 6320 .2byte 0x6320 + 1b20: 5f00 .2byte 0x5f00 + 1b22: 475f 4343 485f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x48 + 1b28: 5641 .2byte 0x5641 + 1b2a: 5f45 .2byte 0x5f45 + 1b2c: 5744 .2byte 0x5744 + 1b2e: 5241 .2byte 0x5241 + 1b30: 3246 .2byte 0x3246 + 1b32: 435f 4946 415f .byte 0x5f, 0x43, 0x46, 0x49, 0x5f, 0x41 + 1b38: 31204d53 .4byte 0x31204d53 + 1b3c: 5f00 .2byte 0x5f00 + 1b3e: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 1b44: 5f46 .2byte 0x5f46 + 1b46: 4c46 .2byte 0x4c46 + 1b48: 5f54414f .4byte 0x5f54414f + 1b4c: 205f 0034 5f5f .byte 0x5f, 0x20, 0x34, 0x00, 0x5f, 0x5f + 1b52: 4e49 .2byte 0x4e49 + 1b54: 5f54 .2byte 0x5f54 + 1b56: 4146 .2byte 0x4146 + 1b58: 32335453 .4byte 0x32335453 + 1b5c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1b62: 3020 .2byte 0x3020 + 1b64: 3778 .2byte 0x3778 + 1b66: 6666 .2byte 0x6666 + 1b68: 6666 .2byte 0x6666 + 1b6a: 6666 .2byte 0x6666 + 1b6c: 0066 .2byte 0x66 + 1b6e: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 1b74: 5834 .2byte 0x5834 + 1b76: 485f 5341 515f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x51 + 1b7c: 4955 .2byte 0x4955 + 1b7e: 5445 .2byte 0x5445 + 1b80: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f + 1b86: 3120 .2byte 0x3120 + 1b88: 5f00 .2byte 0x5f00 + 1b8a: 465f 544c 485f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x48 + 1b90: 5341 .2byte 0x5341 + 1b92: 495f 464e 4e49 .byte 0x5f, 0x49, 0x4e, 0x46, 0x49, 0x4e + 1b98: 5449 .2byte 0x5449 + 1b9a: 5f59 .2byte 0x5f59 + 1b9c: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1ba2: 43445453 .4byte 0x43445453 + 1ba6: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 1bac: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 1bb2: 5f46 .2byte 0x5f46 + 1bb4: 4f4c .2byte 0x4f4c + 1bb6: 474e .2byte 0x474e + 1bb8: 5f5f 3420 5f00 .byte 0x5f, 0x5f, 0x20, 0x34, 0x00, 0x5f + 1bbe: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 1bc4: 5841 .2byte 0x5841 + 1bc6: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 1bcc: 3120 .2byte 0x3120 + 1bce: 3230 .2byte 0x3230 + 1bd0: 0034 .2byte 0x34 + 1bd2: 5a5f 6135 6c6c .byte 0x5f, 0x5a, 0x35, 0x61, 0x6c, 0x6c + 1bd8: 0069636f jal x6,97bde <_start-0x7ff68422> + 1bdc: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 1be2: 5f32 .2byte 0x5f32 + 1be4: 494d .2byte 0x494d + 1be6: 5f4e .2byte 0x5f4e + 1be8: 205f 2e31 3731 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x37 + 1bee: 3435 .2byte 0x3435 + 1bf0: 3439 .2byte 0x3439 + 1bf2: 38303533 .4byte 0x38303533 + 1bf6: 3232 .2byte 0x3232 + 1bf8: 3832 .2byte 0x3832 + 1bfa: 37303537 lui x10,0x37303 + 1bfe: 3639 .2byte 0x3639 + 1c00: 3738 .2byte 0x3738 + 1c02: 33353633 .4byte 0x33353633 + 1c06: 32323237 lui x4,0x32323 + 1c0a: 3432 .2byte 0x3432 + 1c0c: 3635 .2byte 0x3635 + 1c0e: 6538 .2byte 0x6538 + 1c10: 332d .2byte 0x332d + 1c12: 4638 .2byte 0x4638 + 1c14: 55003233 .4byte 0x55003233 + 1c18: 4e49 .2byte 0x4e49 + 1c1a: 5054 .2byte 0x5054 + 1c1c: 5254 .2byte 0x5254 + 1c1e: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 1c24: 555f 4e49 5054 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x50 + 1c2a: 5254 .2byte 0x5254 + 1c2c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1c32: 5f00 .2byte 0x5f00 + 1c34: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 1c3a: 5f58 .2byte 0x5f58 + 1c3c: 414d .2byte 0x414d + 1c3e: 544e .2byte 0x544e + 1c40: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 1c46: 3120 .2byte 0x3120 + 1c48: 3331 .2byte 0x3331 + 1c4a: 5f00 .2byte 0x5f00 + 1c4c: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 + 1c52: 6176 .2byte 0x6176 + 1c54: 756c .2byte 0x756c + 1c56: 5f65 .2byte 0x5f65 + 1c58: 6572 .2byte 0x6572 + 1c5a: 6566 .2byte 0x6566 + 1c5c: 6572 .2byte 0x6572 + 1c5e: 636e .2byte 0x636e + 1c60: 7365 .2byte 0x7365 + 1c62: 3220 .2byte 0x3220 + 1c64: 3030 .2byte 0x3030 + 1c66: 3136 .2byte 0x3136 + 1c68: 4c30 .2byte 0x4c30 + 1c6a: 5f00 .2byte 0x5f00 + 1c6c: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f + 1c72: 414d .2byte 0x414d + 1c74: 5f58 .2byte 0x5f58 + 1c76: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 1c7c: 6666 .2byte 0x6666 + 1c7e: 6666 .2byte 0x6666 + 1c80: 6666 .2byte 0x6666 + 1c82: 004c .2byte 0x4c + 1c84: 5f5f 4e49 3154 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x31 + 1c8a: 5f36 .2byte 0x5f36 + 1c8c: 414d .2byte 0x414d + 1c8e: 5f58 .2byte 0x5f58 + 1c90: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 1c96: 6666 .2byte 0x6666 + 1c98: 5f00 .2byte 0x5f00 + 1c9a: 535f 4843 5241 .byte 0x5f, 0x53, 0x43, 0x48, 0x41, 0x52 + 1ca0: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 1ca6: 5f5f 3820 5f00 .byte 0x5f, 0x5f, 0x20, 0x38, 0x00, 0x5f + 1cac: 635f 7070 645f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x64 + 1cb2: 6365 .2byte 0x6365 + 1cb4: 746c .2byte 0x746c + 1cb6: 7079 .2byte 0x7079 + 1cb8: 5f65 .2byte 0x5f65 + 1cba: 7561 .2byte 0x7561 + 1cbc: 6f74 .2byte 0x6f74 + 1cbe: 3220 .2byte 0x3220 + 1cc0: 3130 .2byte 0x3130 + 1cc2: 4c343033 .4byte 0x4c343033 + 1cc6: 5f00 .2byte 0x5f00 + 1cc8: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 1cce: 494d .2byte 0x494d + 1cd0: 5f4e .2byte 0x5f4e + 1cd2: 3031 .2byte 0x3031 + 1cd4: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 1cda: 2820 .2byte 0x2820 + 1cdc: 342d .2byte 0x342d + 1cde: 3339 .2byte 0x3339 + 1ce0: 2931 .2byte 0x2931 + 1ce2: 5f00 .2byte 0x5f00 + 1ce4: 635f 7070 615f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x61 + 1cea: 696c .2byte 0x696c + 1cec: 64656e67 .4byte 0x64656e67 + 1cf0: 6e5f 7765 3220 .byte 0x5f, 0x6e, 0x65, 0x77, 0x20, 0x32 + 1cf6: 3130 .2byte 0x3130 + 1cf8: 3036 .2byte 0x3036 + 1cfa: 4c36 .2byte 0x4c36 + 1cfc: 6100 .2byte 0x6100 + 1cfe: 6c6c .2byte 0x6c6c + 1d00: 0070636f jal x6,8506 <_start-0x7fff7afa> + 1d04: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 1d0a: 445f464f .4byte 0x445f464f + 1d0e: 4c42554f .4byte 0x4c42554f + 1d12: 5f45 .2byte 0x5f45 + 1d14: 205f 0038 5f5f .byte 0x5f, 0x20, 0x38, 0x00, 0x5f, 0x5f + 1d1a: 43554e47 .4byte 0x43554e47 + 1d1e: 505f 5441 4843 .byte 0x5f, 0x50, 0x41, 0x54, 0x43, 0x48 + 1d24: 454c .2byte 0x454c + 1d26: 4556 .2byte 0x4556 + 1d28: 5f4c .2byte 0x5f4c + 1d2a: 205f 0030 4e47 .byte 0x5f, 0x20, 0x30, 0x00, 0x47, 0x4e + 1d30: 2055 .2byte 0x2055 + 1d32: 312b2b43 .4byte 0x312b2b43 + 1d36: 32312037 lui x0,0x32312 + 1d3a: 322e .2byte 0x322e + 1d3c: 302e .2byte 0x302e + 1d3e: 2d20 .2byte 0x2d20 + 1d40: 616d .2byte 0x616d + 1d42: 6962 .2byte 0x6962 + 1d44: 693d .2byte 0x693d + 1d46: 706c .2byte 0x706c + 1d48: 2d203233 .4byte 0x2d203233 + 1d4c: 746d .2byte 0x746d + 1d4e: 6e75 .2byte 0x6e75 + 1d50: 3d65 .2byte 0x3d65 + 1d52: 6f72 .2byte 0x6f72 + 1d54: 74656b63 bltu x10,x6,24aa <_start-0x7fffdb56> + 1d58: 2d20 .2byte 0x2d20 + 1d5a: 696d .2byte 0x696d + 1d5c: 732d6173 .4byte 0x732d6173 + 1d60: 6570 .2byte 0x6570 + 1d62: 30323d63 .4byte 0x30323d63 + 1d66: 3931 .2byte 0x3931 + 1d68: 3231 .2byte 0x3231 + 1d6a: 3331 .2byte 0x3331 + 1d6c: 2d20 .2byte 0x2d20 + 1d6e: 616d .2byte 0x616d + 1d70: 6372 .2byte 0x6372 + 1d72: 3d68 .2byte 0x3d68 + 1d74: 7672 .2byte 0x7672 + 1d76: 20693233 .4byte 0x20693233 + 1d7a: 672d .2byte 0x672d + 1d7c: 2d20 .2byte 0x2d20 + 1d7e: 62646767 .4byte 0x62646767 + 1d82: 4f2d2033 .4byte 0x4f2d2033 + 1d86: 2030 .2byte 0x2030 + 1d88: 662d .2byte 0x662d + 1d8a: 7266 .2byte 0x7266 + 1d8c: 6565 .2byte 0x6565 + 1d8e: 6e617473 .4byte 0x6e617473 + 1d92: 6964 .2byte 0x6964 + 1d94: 676e .2byte 0x676e + 1d96: 2d20 .2byte 0x2d20 + 1d98: 6e66 .2byte 0x6e66 + 1d9a: 69702d6f jal x26,4c30 <_start-0x7fffb3d0> + 1d9e: 49550063 beq x10,x21,221e <_start-0x7fffdde2> + 1da2: 544e .2byte 0x544e + 1da4: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 1daa: 3436 .2byte 0x3436 + 1dac: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 1db2: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 1db8: 454c .2byte 0x454c + 1dba: 5341 .2byte 0x5341 + 1dbc: 3654 .2byte 0x3654 + 1dbe: 5f34 .2byte 0x5f34 + 1dc0: 414d .2byte 0x414d + 1dc2: 5f58 .2byte 0x5f58 + 1dc4: 005f 5f5f 5847 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x47, 0x58 + 1dca: 5f58 .2byte 0x5f58 + 1dcc: 5845 .2byte 0x5845 + 1dce: 4550 .2byte 0x4550 + 1dd0: 4952 .2byte 0x4952 + 1dd2: 454d .2byte 0x454d + 1dd4: 544e .2byte 0x544e + 1dd6: 4c41 .2byte 0x4c41 + 1dd8: 435f 5858 5830 .byte 0x5f, 0x43, 0x58, 0x58, 0x30, 0x58 + 1dde: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 1de4: 575f 4e49 5f54 .byte 0x5f, 0x57, 0x49, 0x4e, 0x54, 0x5f + 1dea: 494d .2byte 0x494d + 1dec: 5f4e .2byte 0x5f4e + 1dee: 205f 5530 5f00 .byte 0x5f, 0x20, 0x30, 0x55, 0x00, 0x5f + 1df4: 635f 7070 765f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x76 + 1dfa: 7261 .2byte 0x7261 + 1dfc: 6169 .2byte 0x6169 + 1dfe: 6964 .2byte 0x6964 + 1e00: 65745f63 bge x8,x23,245e <_start-0x7fffdba2> + 1e04: 706d .2byte 0x706d + 1e06: 616c .2byte 0x616c + 1e08: 6574 .2byte 0x6574 + 1e0a: 30322073 .4byte 0x30322073 + 1e0e: 3730 .2byte 0x3730 + 1e10: 3430 .2byte 0x3430 + 1e12: 004c .2byte 0x4c + 1e14: 4e49 .2byte 0x4e49 + 1e16: 5f54 .2byte 0x5f54 + 1e18: 4146 .2byte 0x4146 + 1e1a: 32335453 .4byte 0x32335453 + 1e1e: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 1e24: 465f 544c 4e5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4e + 1e2a: 5f4d524f .4byte 0x5f4d524f + 1e2e: 414d .2byte 0x414d + 1e30: 5f58 .2byte 0x5f58 + 1e32: 205f 2e33 3034 .byte 0x5f, 0x20, 0x33, 0x2e, 0x34, 0x30 + 1e38: 3832 .2byte 0x3832 + 1e3a: 3332 .2byte 0x3332 + 1e3c: 3634 .2byte 0x3634 + 1e3e: 3336 .2byte 0x3336 + 1e40: 3538 .2byte 0x3538 + 1e42: 3832 .2byte 0x3832 + 1e44: 3538 .2byte 0x3538 + 1e46: 3839 .2byte 0x3839 + 1e48: 3131 .2byte 0x3131 + 1e4a: 31343037 lui x0,0x31343 + 1e4e: 3338 .2byte 0x3338 + 1e50: 3834 .2byte 0x3834 + 1e52: 3534 .2byte 0x3534 + 1e54: 3631 .2byte 0x3631 + 1e56: 3239 .2byte 0x3239 + 1e58: 6535 .2byte 0x6535 + 1e5a: 4638332b .4byte 0x4638332b + 1e5e: 5f00 .2byte 0x5f00 + 1e60: 535f 4454 5f43 .byte 0x5f, 0x53, 0x54, 0x44, 0x43, 0x5f + 1e66: 5455 .2byte 0x5455 + 1e68: 5f46 .2byte 0x5f46 + 1e6a: 3631 .2byte 0x3631 + 1e6c: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 1e72: 635f 7070 695f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x69 + 1e78: 6c6e .2byte 0x6c6e + 1e7a: 6e69 .2byte 0x6e69 + 1e7c: 5f65 .2byte 0x5f65 + 1e7e: 6176 .2byte 0x6176 + 1e80: 6972 .2byte 0x6972 + 1e82: 6261 .2byte 0x6261 + 1e84: 656c .2byte 0x656c + 1e86: 30322073 .4byte 0x30322073 + 1e8a: 3631 .2byte 0x3631 + 1e8c: 3630 .2byte 0x3630 + 1e8e: 004c .2byte 0x4c + 1e90: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 1e96: 5f32 .2byte 0x5f32 + 1e98: 5349 .2byte 0x5349 + 1e9a: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 + 1ea0: 3530 .2byte 0x3530 + 1ea2: 3935 .2byte 0x3935 + 1ea4: 5f5f 3220 5500 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x55 + 1eaa: 4e49 .2byte 0x4e49 + 1eac: 5f54 .2byte 0x5f54 + 1eae: 4146 .2byte 0x4146 + 1eb0: 32335453 .4byte 0x32335453 + 1eb4: 4d5f 5841 5500 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x55 + 1eba: 4e49 .2byte 0x4e49 + 1ebc: 3354 .2byte 0x3354 + 1ebe: 5f32 .2byte 0x5f32 + 1ec0: 29632843 .4byte 0x29632843 + 1ec4: 5f20 .2byte 0x5f20 + 1ec6: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 + 1ecc: 5f32 .2byte 0x5f32 + 1ece: 29632843 .4byte 0x29632843 + 1ed2: 4900 .2byte 0x4900 + 1ed4: 544e .2byte 0x544e + 1ed6: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 1edc: 4d5f3233 .4byte 0x4d5f3233 + 1ee0: 4e49 .2byte 0x4e49 + 1ee2: 5f00 .2byte 0x5f00 + 1ee4: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 1eea: 4148 .2byte 0x4148 + 1eec: 4e495f53 .4byte 0x4e495f53 + 1ef0: 4946 .2byte 0x4946 + 1ef2: 494e .2byte 0x494e + 1ef4: 5954 .2byte 0x5954 + 1ef6: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 1efc: 475f 4343 495f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x49 + 1f02: 4345 .2byte 0x4345 + 1f04: 355f 3935 435f .byte 0x5f, 0x35, 0x35, 0x39, 0x5f, 0x43 + 1f0a: 4c504d4f .4byte 0x4c504d4f + 1f0e: 5845 .2byte 0x5845 + 1f10: 3020 .2byte 0x3020 + 1f12: 5f00 .2byte 0x5f00 + 1f14: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 + 1f1a: 5f32 .2byte 0x5f32 + 1f1c: 414d .2byte 0x414d + 1f1e: 5f58 .2byte 0x5f58 + 1f20: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 1f26: 6666 .2byte 0x6666 + 1f28: 6666 .2byte 0x6666 + 1f2a: 6666 .2byte 0x6666 + 1f2c: 4c55 .2byte 0x4c55 + 1f2e: 5f00 .2byte 0x5f00 + 1f30: 635f 7070 675f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x67 + 1f36: 6175 .2byte 0x6175 + 1f38: 6172 .2byte 0x6172 + 1f3a: 746e .2byte 0x746e + 1f3c: 6565 .2byte 0x6565 + 1f3e: 5f64 .2byte 0x5f64 + 1f40: 79706f63 bltu x0,x23,26de <_start-0x7fffd922> + 1f44: 655f 696c 6973 .byte 0x5f, 0x65, 0x6c, 0x69, 0x73, 0x69 + 1f4a: 32206e6f jal x28,826c <_start-0x7fff7d94> + 1f4e: 3130 .2byte 0x3130 + 1f50: 3036 .2byte 0x3036 + 1f52: 4c36 .2byte 0x4c36 + 1f54: 5f00 .2byte 0x5f00 + 1f56: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 1f5c: 4f4e .2byte 0x4f4e + 1f5e: 4d52 .2byte 0x4d52 + 1f60: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1f66: 3120 .2byte 0x3120 + 1f68: 312e .2byte 0x312e + 1f6a: 3938 .2byte 0x3938 + 1f6c: 34313337 lui x6,0x34313 + 1f70: 3539 .2byte 0x3539 + 1f72: 32373533 .4byte 0x32373533 + 1f76: 36373133 .4byte 0x36373133 + 1f7a: 3035 .2byte 0x3035 + 1f7c: 3538 .2byte 0x3538 + 1f7e: 33393537 lui x10,0x33393 + 1f82: 3632 .2byte 0x3632 + 1f84: 3236 .2byte 0x3236 + 1f86: 3038 .2byte 0x3038 + 1f88: 3730 .2byte 0x3730 + 1f8a: 3230 .2byte 0x3230 + 1f8c: 2b65 .2byte 0x2b65 + 1f8e: 3934 .2byte 0x3934 + 1f90: 004c3233 sltu x4,x24,x4 + 1f94: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 1f9a: 575f464f .4byte 0x575f464f + 1f9e: 52414843 .4byte 0x52414843 + 1fa2: 545f 5f5f 3420 .byte 0x5f, 0x54, 0x5f, 0x5f, 0x20, 0x34 + 1fa8: 4900 .2byte 0x4900 + 1faa: 544e .2byte 0x544e + 1fac: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 1fb2: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 1fb8: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 1fbe: 5f38 .2byte 0x5f38 + 1fc0: 494d .2byte 0x494d + 1fc2: 5f4e .2byte 0x5f4e + 1fc4: 3031 .2byte 0x3031 + 1fc6: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 1fcc: 2820 .2byte 0x2820 + 1fce: 342d .2byte 0x342d + 1fd0: 3339 .2byte 0x3339 + 1fd2: 2931 .2byte 0x2931 + 1fd4: 5f00 .2byte 0x5f00 + 1fd6: 465f 4f4c 5441 .byte 0x5f, 0x46, 0x4c, 0x4f, 0x41, 0x54 + 1fdc: 575f 524f 5f44 .byte 0x5f, 0x57, 0x4f, 0x52, 0x44, 0x5f + 1fe2: 4544524f .4byte 0x4544524f + 1fe6: 5f52 .2byte 0x5f52 + 1fe8: 205f 5f5f 524f .byte 0x5f, 0x20, 0x5f, 0x5f, 0x4f, 0x52 + 1fee: 4544 .2byte 0x4544 + 1ff0: 5f52 .2byte 0x5f52 + 1ff2: 494c .2byte 0x494c + 1ff4: 5454 .2byte 0x5454 + 1ff6: 454c .2byte 0x454c + 1ff8: 455f 444e 4149 .byte 0x5f, 0x45, 0x4e, 0x44, 0x49, 0x41 + 1ffe: 5f4e .2byte 0x5f4e + 2000: 005f 5f5f 4953 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x53, 0x49 + 2006: 455a .2byte 0x455a + 2008: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 200e: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 2014: 4e49 .2byte 0x4e49 + 2016: 5054 .2byte 0x5054 + 2018: 5254 .2byte 0x5254 + 201a: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 2020: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 2026: 4145 .2byte 0x4145 + 2028: 34365453 .4byte 0x34365453 + 202c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2032: 3020 .2byte 0x3020 + 2034: 3778 .2byte 0x3778 + 2036: 6666 .2byte 0x6666 + 2038: 6666 .2byte 0x6666 + 203a: 6666 .2byte 0x6666 + 203c: 6666 .2byte 0x6666 + 203e: 6666 .2byte 0x6666 + 2040: 6666 .2byte 0x6666 + 2042: 6666 .2byte 0x6666 + 2044: 4c66 .2byte 0x4c66 + 2046: 004c .2byte 0x4c + 2048: 5f5f 4953 5f47 .byte 0x5f, 0x5f, 0x53, 0x49, 0x47, 0x5f + 204e: 5441 .2byte 0x5441 + 2050: 43494d4f .4byte 0x43494d4f + 2054: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 205a: 2820 .2byte 0x2820 + 205c: 5f2d .2byte 0x5f2d + 205e: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 + 2064: 4f54 .2byte 0x4f54 + 2066: 494d .2byte 0x494d + 2068: 414d5f43 .4byte 0x414d5f43 + 206c: 5f58 .2byte 0x5f58 + 206e: 205f 202d 2931 .byte 0x5f, 0x20, 0x2d, 0x20, 0x31, 0x29 + 2074: 5500 .2byte 0x5500 + 2076: 4e49 .2byte 0x4e49 + 2078: 3354 .2byte 0x3354 + 207a: 5f32 .2byte 0x5f32 + 207c: 454c0043 .4byte 0x454c0043 + 2080: 204e .2byte 0x204e + 2082: 3828 .2byte 0x3828 + 2084: 2a29322b .4byte 0x2a29322b + 2088: 3031 .2byte 0x3031 + 208a: 5500 .2byte 0x5500 + 208c: 4e49 .2byte 0x4e49 + 208e: 4d54 .2byte 0x4d54 + 2090: 5841 .2byte 0x5841 + 2092: 435f 5f00 4c5f .byte 0x5f, 0x43, 0x00, 0x5f, 0x5f, 0x4c + 2098: 5f474e4f .4byte 0x5f474e4f + 209c: 54444957 .4byte 0x54444957 + 20a0: 5f48 .2byte 0x5f48 + 20a2: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 20a8: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 20ae: 43415f43 .4byte 0x43415f43 + 20b2: 5551 .2byte 0x5551 + 20b4: 5249 .2byte 0x5249 + 20b6: 2045 .2byte 0x2045 + 20b8: 0032 .2byte 0x32 + 20ba: 5f5f 4843 5241 .byte 0x5f, 0x5f, 0x43, 0x48, 0x41, 0x52 + 20c0: 545f3233 .4byte 0x545f3233 + 20c4: 5059 .2byte 0x5059 + 20c6: 5f45 .2byte 0x5f45 + 20c8: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 20ce: 7520 .2byte 0x7520 + 20d0: 736e .2byte 0x736e + 20d2: 6769 .2byte 0x6769 + 20d4: 656e .2byte 0x656e + 20d6: 2064 .2byte 0x2064 + 20d8: 6e69 .2byte 0x6e69 + 20da: 0074 .2byte 0x74 + 20dc: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 20e2: 3436 .2byte 0x3436 + 20e4: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 20ea: 3020 .2byte 0x3020 + 20ec: 6678 .2byte 0x6678 + 20ee: 6666 .2byte 0x6666 + 20f0: 6666 .2byte 0x6666 + 20f2: 6666 .2byte 0x6666 + 20f4: 6666 .2byte 0x6666 + 20f6: 6666 .2byte 0x6666 + 20f8: 6666 .2byte 0x6666 + 20fa: 6666 .2byte 0x6666 + 20fc: 5566 .2byte 0x5566 + 20fe: 4c4c .2byte 0x4c4c + 2100: 5f00 .2byte 0x5f00 + 2102: 565f 5245 4953 .byte 0x5f, 0x56, 0x45, 0x52, 0x53, 0x49 + 2108: 5f5f4e4f .4byte 0x5f5f4e4f + 210c: 2220 .2byte 0x2220 + 210e: 3231 .2byte 0x3231 + 2110: 322e .2byte 0x322e + 2112: 302e .2byte 0x302e + 2114: 0022 .2byte 0x22 + 2116: 4955 .2byte 0x4955 + 2118: 544e .2byte 0x544e + 211a: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 2120: 3631 .2byte 0x3631 + 2122: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 2128: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 212e: 454c .2byte 0x454c + 2130: 5341 .2byte 0x5341 + 2132: 3154 .2byte 0x3154 + 2134: 5f36 .2byte 0x5f36 + 2136: 414d .2byte 0x414d + 2138: 5f58 .2byte 0x5f58 + 213a: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 + 2140: 5f70 .2byte 0x5f70 + 2142: 6f66 .2byte 0x6f66 + 2144: 646c .2byte 0x646c + 2146: 655f 7078 6572 .byte 0x5f, 0x65, 0x78, 0x70, 0x72, 0x65 + 214c: 6f697373 .4byte 0x6f697373 + 2150: 736e .2byte 0x736e + 2152: 3220 .2byte 0x3220 + 2154: 3130 .2byte 0x3130 + 2156: 3036 .2byte 0x3036 + 2158: 49004c33 .4byte 0x49004c33 + 215c: 544e .2byte 0x544e + 215e: 3436 .2byte 0x3436 + 2160: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 2166: 492d .2byte 0x492d + 2168: 544e .2byte 0x544e + 216a: 3436 .2byte 0x3436 + 216c: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 2172: 3120 .2byte 0x3120 + 2174: 0029 .2byte 0x29 + 2176: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 217c: 5f38 .2byte 0x5f38 + 217e: 29632843 .4byte 0x29632843 + 2182: 6320 .2byte 0x6320 + 2184: 5f00 .2byte 0x5f00 + 2186: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 218c: 454c .2byte 0x454c + 218e: 5341 .2byte 0x5341 + 2190: 3354 .2byte 0x3354 + 2192: 5f32 .2byte 0x5f32 + 2194: 5954 .2byte 0x5954 + 2196: 4550 .2byte 0x4550 + 2198: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 219e: 6e752067 .4byte 0x6e752067 + 21a2: 6e676973 .4byte 0x6e676973 + 21a6: 6465 .2byte 0x6465 + 21a8: 6920 .2byte 0x6920 + 21aa: 746e .2byte 0x746e + 21ac: 5f00 .2byte 0x5f00 + 21ae: 555f 4e49 4d54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x4d + 21b4: 5841 .2byte 0x5841 + 21b6: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 21bc: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 21c2: 6c20 .2byte 0x6c20 + 21c4: 20676e6f jal x28,783ca <_start-0x7ff87c36> + 21c8: 6e75 .2byte 0x6e75 + 21ca: 6e676973 .4byte 0x6e676973 + 21ce: 6465 .2byte 0x6465 + 21d0: 6920 .2byte 0x6920 + 21d2: 746e .2byte 0x746e + 21d4: 4900 .2byte 0x4900 + 21d6: 544e .2byte 0x544e + 21d8: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + 21de: 5f34 .2byte 0x5f34 + 21e0: 414d .2byte 0x414d + 21e2: 2058 .2byte 0x2058 + 21e4: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 21ea: 4146 .2byte 0x4146 + 21ec: 34365453 .4byte 0x34365453 + 21f0: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 21f6: 7300 .2byte 0x7300 + 21f8: 6d69 .2byte 0x6d69 + 21fa: 6c70 .2byte 0x6c70 + 21fc: 5f65 .2byte 0x5f65 + 21fe: 74727473 .4byte 0x74727473 + 2202: 5f006b6f jal x22,87f2 <_start-0x7fff780e> + 2206: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 + 220c: 4f54 .2byte 0x4f54 + 220e: 494d .2byte 0x494d + 2210: 49575f43 .4byte 0x49575f43 + 2214: 5444 .2byte 0x5444 + 2216: 5f48 .2byte 0x5f48 + 2218: 205f 3233 5500 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x55 + 221e: 4e49 .2byte 0x4e49 + 2220: 3654 .2byte 0x3654 + 2222: 5f34 .2byte 0x5f34 + 2224: 29632843 .4byte 0x29632843 + 2228: 5f20 .2byte 0x5f20 + 222a: 555f 4e49 3654 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x36 + 2230: 5f34 .2byte 0x5f34 + 2232: 29632843 .4byte 0x29632843 + 2236: 5f00 .2byte 0x5f00 + 2238: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 + 223e: 6e75 .2byte 0x6e75 + 2240: 6974 .2byte 0x6974 + 2242: 656d .2byte 0x656d + 2244: 615f 7272 7961 .byte 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79 + 224a: 39312073 .4byte 0x39312073 + 224e: 3738 .2byte 0x3738 + 2250: 3231 .2byte 0x3231 + 2252: 004c .2byte 0x4c + 2254: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 225a: 7472 .2byte 0x7472 + 225c: 6974 .2byte 0x6974 + 225e: 3120 .2byte 0x3120 + 2260: 3939 .2byte 0x3939 + 2262: 4c313137 lui x2,0x4c313 + 2266: 5f00 .2byte 0x5f00 + 2268: 535f 5248 5f54 .byte 0x5f, 0x53, 0x48, 0x52, 0x54, 0x5f + 226e: 414d .2byte 0x414d + 2270: 5f58 .2byte 0x5f58 + 2272: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 2278: 6666 .2byte 0x6666 + 227a: 5f00 .2byte 0x5f00 + 227c: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e + 2282: 79746e6f jal x28,49218 <_start-0x7ffb6de8> + 2286: 6570 .2byte 0x6570 + 2288: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + 228e: 7461 .2byte 0x7461 + 2290: 5f65 .2byte 0x5f65 + 2292: 6170 .2byte 0x6170 + 2294: 6172 .2byte 0x6172 + 2296: 656d .2byte 0x656d + 2298: 6574 .2byte 0x6574 + 229a: 5f72 .2byte 0x5f72 + 229c: 7561 .2byte 0x7561 + 229e: 6f74 .2byte 0x6f74 + 22a0: 3220 .2byte 0x3220 + 22a2: 3130 .2byte 0x3130 + 22a4: 3036 .2byte 0x3036 + 22a6: 4c36 .2byte 0x4c36 + 22a8: 5f00 .2byte 0x5f00 + 22aa: 4f5f 4452 5245 .byte 0x5f, 0x4f, 0x52, 0x44, 0x45, 0x52 + 22b0: 505f 5044 455f .byte 0x5f, 0x50, 0x44, 0x50, 0x5f, 0x45 + 22b6: 444e .2byte 0x444e + 22b8: 4149 .2byte 0x4149 + 22ba: 5f4e .2byte 0x5f4e + 22bc: 205f 3433 3231 .byte 0x5f, 0x20, 0x33, 0x34, 0x31, 0x32 + 22c2: 5f00 .2byte 0x5f00 + 22c4: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 22ca: 454c .2byte 0x454c + 22cc: 5341 .2byte 0x5341 + 22ce: 3154 .2byte 0x3154 + 22d0: 5f36 .2byte 0x5f36 + 22d2: 5954 .2byte 0x5954 + 22d4: 4550 .2byte 0x4550 + 22d6: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f + 22dc: 7472 .2byte 0x7472 + 22de: 7520 .2byte 0x7520 + 22e0: 736e .2byte 0x736e + 22e2: 6769 .2byte 0x6769 + 22e4: 656e .2byte 0x656e + 22e6: 2064 .2byte 0x2064 + 22e8: 6e69 .2byte 0x6e69 + 22ea: 0074 .2byte 0x74 + 22ec: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 22f2: 4544 .2byte 0x4544 + 22f4: 414d4943 .4byte 0x414d4943 + 22f8: 5f4c .2byte 0x5f4c + 22fa: 4944 .2byte 0x4944 + 22fc: 205f5f47 .4byte 0x205f5f47 + 2300: 0039 .2byte 0x39 + 2302: 5f5f 4e49 3354 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x33 + 2308: 5f32 .2byte 0x5f32 + 230a: 414d .2byte 0x414d + 230c: 5f58 .2byte 0x5f58 + 230e: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 2314: 6666 .2byte 0x6666 + 2316: 6666 .2byte 0x6666 + 2318: 6666 .2byte 0x6666 + 231a: 004c .2byte 0x4c + 231c: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 2322: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 + 2328: 5058 .2byte 0x5058 + 232a: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 + 2330: 3336 .2byte 0x3336 + 2332: 3138 .2byte 0x3138 + 2334: 0029 .2byte 0x29 + 2336: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 + 233c: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 2342: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 2348: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 234e: 5834 .2byte 0x5834 + 2350: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 2356: 3320 .2byte 0x3320 + 2358: 332e .2byte 0x332e + 235a: 3236 .2byte 0x3236 + 235c: 3031 .2byte 0x3031 + 235e: 33343133 .4byte 0x33343133 + 2362: 3131 .2byte 0x3131 + 2364: 3032 .2byte 0x3032 + 2366: 3339 .2byte 0x3339 + 2368: 3035 .2byte 0x3035 + 236a: 3236 .2byte 0x3236 + 236c: 3236 .2byte 0x3236 + 236e: 3736 .2byte 0x3736 + 2370: 37313837 lui x16,0x37313 + 2374: 37313233 .4byte 0x37313233 + 2378: 3235 .2byte 0x3235 + 237a: 3036 .2byte 0x3036 + 237c: 2d65 .2byte 0x2d65 + 237e: 3934 .2byte 0x3934 + 2380: 36463233 .4byte 0x36463233 + 2384: 7834 .2byte 0x7834 + 2386: 4900 .2byte 0x4900 + 2388: 544e .2byte 0x544e + 238a: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 2390: 3436 .2byte 0x3436 + 2392: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 2398: 492d .2byte 0x492d + 239a: 544e .2byte 0x544e + 239c: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 23a2: 3436 .2byte 0x3436 + 23a4: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 23aa: 3120 .2byte 0x3120 + 23ac: 0029 .2byte 0x29 + 23ae: 4e49 .2byte 0x4e49 + 23b0: 3154 .2byte 0x3154 + 23b2: 5f36 .2byte 0x5f36 + 23b4: 494d .2byte 0x494d + 23b6: 004e .2byte 0x4e + 23b8: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 23be: 5f32 .2byte 0x5f32 + 23c0: 5045 .2byte 0x5045 + 23c2: 4f4c4953 .4byte 0x4f4c4953 + 23c6: 5f4e .2byte 0x5f4e + 23c8: 205f 2e31 3931 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x39 + 23ce: 3032 .2byte 0x3032 + 23d0: 3239 .2byte 0x3239 + 23d2: 3938 .2byte 0x3938 + 23d4: 3535 .2byte 0x3535 + 23d6: 3730 .2byte 0x3730 + 23d8: 3138 .2byte 0x3138 + 23da: 3532 .2byte 0x3532 + 23dc: 3030 .2byte 0x3030 + 23de: 3030 .2byte 0x3030 + 23e0: 3030 .2byte 0x3030 + 23e2: 3030 .2byte 0x3030 + 23e4: 3030 .2byte 0x3030 + 23e6: 3030 .2byte 0x3030 + 23e8: 3030 .2byte 0x3030 + 23ea: 3030 .2byte 0x3030 + 23ec: 3030 .2byte 0x3030 + 23ee: 6530 .2byte 0x6530 + 23f0: 372d .2byte 0x372d + 23f2: 3346 .2byte 0x3346 + 23f4: 0032 .2byte 0x32 + 23f6: 4e49 .2byte 0x4e49 + 23f8: 5f54 .2byte 0x5f54 + 23fa: 4146 .2byte 0x4146 + 23fc: 34365453 .4byte 0x34365453 + 2400: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 2406: 492d .2byte 0x492d + 2408: 544e .2byte 0x544e + 240a: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + 2410: 5f34 .2byte 0x5f34 + 2412: 414d .2byte 0x414d + 2414: 2058 .2byte 0x2058 + 2416: 202d .2byte 0x202d + 2418: 2931 .2byte 0x2931 + 241a: 6100 .2byte 0x6100 + 241c: 6c6c .2byte 0x6c6c + 241e: 5f00636f jal x6,8a0e <_start-0x7fff75f2> + 2422: 475f 5858 415f .byte 0x5f, 0x47, 0x58, 0x58, 0x5f, 0x41 + 2428: 4942 .2byte 0x4942 + 242a: 565f 5245 4953 .byte 0x5f, 0x56, 0x45, 0x52, 0x53, 0x49 + 2430: 31204e4f .4byte 0x31204e4f + 2434: 3130 .2byte 0x3130 + 2436: 4e490037 lui x0,0x4e490 + 243a: 3854 .2byte 0x3854 + 243c: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 2442: 5f5f 4e49 3854 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x38 + 2448: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 + 244e: 5f5f 4e49 3354 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x33 + 2454: 5f32 .2byte 0x5f32 + 2456: 5954 .2byte 0x5954 + 2458: 4550 .2byte 0x4550 + 245a: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 2460: 6e692067 .4byte 0x6e692067 + 2464: 0074 .2byte 0x74 + 2466: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 246c: 5832 .2byte 0x5832 + 246e: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 + 2474: 5f30 .2byte 0x5f30 + 2476: 5845 .2byte 0x5845 + 2478: 5f50 .2byte 0x5f50 + 247a: 205f 2d28 3033 .byte 0x5f, 0x20, 0x28, 0x2d, 0x33, 0x30 + 2480: 49002937 lui x18,0x49002 + 2484: 544e .2byte 0x544e + 2486: 3436 .2byte 0x3436 + 2488: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 248e: 5f5f 4e49 3654 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x36 + 2494: 5f34 .2byte 0x5f34 + 2496: 29632843 .4byte 0x29632843 + 249a: 5f00 .2byte 0x5f00 + 249c: 635f 7070 615f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x61 + 24a2: 65726767 .4byte 0x65726767 + 24a6: 65746167 .4byte 0x65746167 + 24aa: 625f 7361 7365 .byte 0x5f, 0x62, 0x61, 0x73, 0x65, 0x73 + 24b0: 3220 .2byte 0x3220 + 24b2: 3130 .2byte 0x3130 + 24b4: 3036 .2byte 0x3036 + 24b6: 5f004c33 .4byte 0x5f004c33 + 24ba: 475f 554e 5f47 .byte 0x5f, 0x47, 0x4e, 0x55, 0x47, 0x5f + 24c0: 205f 3231 5f00 .byte 0x5f, 0x20, 0x31, 0x32, 0x00, 0x5f + 24c6: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 24cc: 5f58 .2byte 0x5f58 + 24ce: 414d .2byte 0x414d + 24d0: 5f58 .2byte 0x5f58 + 24d2: 3031 .2byte 0x3031 + 24d4: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 24da: 3420 .2byte 0x3420 + 24dc: 3339 .2byte 0x3339 + 24de: 0032 .2byte 0x32 + 24e0: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 24e6: 5832 .2byte 0x5832 + 24e8: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 + 24ee: 5058 .2byte 0x5058 + 24f0: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 + 24f6: 3230 .2byte 0x3230 + 24f8: 2931 .2byte 0x2931 + 24fa: 5500 .2byte 0x5500 + 24fc: 4e49 .2byte 0x4e49 + 24fe: 5f54 .2byte 0x5f54 + 2500: 4146 .2byte 0x4146 + 2502: 34365453 .4byte 0x34365453 + 2506: 4d5f 5841 4900 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x49 + 250c: 544e .2byte 0x544e + 250e: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 2514: 3436 .2byte 0x3436 + 2516: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 251c: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 2522: 4145 .2byte 0x4145 + 2524: 34365453 .4byte 0x34365453 + 2528: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 252e: 5f00 .2byte 0x5f00 + 2530: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2536: 454c .2byte 0x454c + 2538: 5341 .2byte 0x5341 + 253a: 3354 .2byte 0x3354 + 253c: 5f32 .2byte 0x5f32 + 253e: 414d .2byte 0x414d + 2540: 5f58 .2byte 0x5f58 + 2542: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 2548: 6666 .2byte 0x6666 + 254a: 6666 .2byte 0x6666 + 254c: 6666 .2byte 0x6666 + 254e: 4c55 .2byte 0x4c55 + 2550: 5000 .2byte 0x5000 + 2552: 5254 .2byte 0x5254 + 2554: 4944 .2byte 0x4944 + 2556: 4646 .2byte 0x4646 + 2558: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 255e: 505f 5254 4944 .byte 0x5f, 0x50, 0x54, 0x52, 0x44, 0x49 + 2564: 4646 .2byte 0x4646 + 2566: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 256c: 5f00 .2byte 0x5f00 + 256e: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 2574: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + 257a: 5f4d .2byte 0x5f4d + 257c: 494d .2byte 0x494d + 257e: 5f4e .2byte 0x5f4e + 2580: 205f 2e31 3034 .byte 0x5f, 0x20, 0x31, 0x2e, 0x34, 0x30 + 2586: 3231 .2byte 0x3231 + 2588: 3839 .2byte 0x3839 + 258a: 3634 .2byte 0x3634 + 258c: 3334 .2byte 0x3334 + 258e: 3432 .2byte 0x3432 + 2590: 3138 .2byte 0x3138 + 2592: 30373037 lui x0,0x30373 + 2596: 3239 .2byte 0x3239 + 2598: 39323733 .4byte 0x39323733 + 259c: 3835 .2byte 0x3835 + 259e: 39383233 .4byte 0x39383233 + 25a2: 3139 .2byte 0x3139 + 25a4: 3136 .2byte 0x3136 + 25a6: 342d6533 .4byte 0x342d6533 + 25aa: 4635 .2byte 0x4635 + 25ac: 5f003233 .4byte 0x5f003233 + 25b0: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 25b6: 4148 .2byte 0x4148 + 25b8: 55515f53 .4byte 0x55515f53 + 25bc: 4549 .2byte 0x4549 + 25be: 5f54 .2byte 0x5f54 + 25c0: 414e .2byte 0x414e + 25c2: 5f4e .2byte 0x5f4e + 25c4: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 25ca: 4e49 .2byte 0x4e49 + 25cc: 3854 .2byte 0x3854 + 25ce: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 25d4: 205f 6973 6e67 .byte 0x5f, 0x20, 0x73, 0x69, 0x67, 0x6e + 25da: 6465 .2byte 0x6465 + 25dc: 6320 .2byte 0x6320 + 25de: 6168 .2byte 0x6168 + 25e0: 0072 .2byte 0x72 + 25e2: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 + 25e8: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 25ee: 3020 .2byte 0x3020 + 25f0: 6678 .2byte 0x6678 + 25f2: 6666 .2byte 0x6666 + 25f4: 6666 .2byte 0x6666 + 25f6: 6666 .2byte 0x6666 + 25f8: 5566 .2byte 0x5566 + 25fa: 5500 .2byte 0x5500 + 25fc: 4e49 .2byte 0x4e49 + 25fe: 4d54 .2byte 0x4d54 + 2600: 5841 .2byte 0x5841 + 2602: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 2608: 445f 4345 455f .byte 0x5f, 0x44, 0x45, 0x43, 0x5f, 0x45 + 260e: 4156 .2byte 0x4156 + 2610: 5f4c .2byte 0x5f4c + 2612: 454d .2byte 0x454d + 2614: 4854 .2byte 0x4854 + 2616: 5f5f444f .4byte 0x5f5f444f + 261a: 3220 .2byte 0x3220 + 261c: 5500 .2byte 0x5500 + 261e: 4e49 .2byte 0x4e49 + 2620: 3354 .2byte 0x3354 + 2622: 5f32 .2byte 0x5f32 + 2624: 414d .2byte 0x414d + 2626: 2058 .2byte 0x2058 + 2628: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 262e: 4d5f3233 .4byte 0x4d5f3233 + 2632: 5841 .2byte 0x5841 + 2634: 5f5f 5f00 555f .byte 0x5f, 0x5f, 0x00, 0x5f, 0x5f, 0x55 + 263a: 4e49 .2byte 0x4e49 + 263c: 5f54 .2byte 0x5f54 + 263e: 4146 .2byte 0x4146 + 2640: 34365453 .4byte 0x34365453 + 2644: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 264a: 3020 .2byte 0x3020 + 264c: 6678 .2byte 0x6678 + 264e: 6666 .2byte 0x6666 + 2650: 6666 .2byte 0x6666 + 2652: 6666 .2byte 0x6666 + 2654: 6666 .2byte 0x6666 + 2656: 6666 .2byte 0x6666 + 2658: 6666 .2byte 0x6666 + 265a: 6666 .2byte 0x6666 + 265c: 5566 .2byte 0x5566 + 265e: 4c4c .2byte 0x4c4c + 2660: 5f00 .2byte 0x5f00 + 2662: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2668: 4146 .2byte 0x4146 + 266a: 32335453 .4byte 0x32335453 + 266e: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2674: 3020 .2byte 0x3020 + 2676: 6678 .2byte 0x6678 + 2678: 6666 .2byte 0x6666 + 267a: 6666 .2byte 0x6666 + 267c: 6666 .2byte 0x6666 + 267e: 5566 .2byte 0x5566 + 2680: 5f00 .2byte 0x5f00 + 2682: 635f 7070 695f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x69 + 2688: 5f66 .2byte 0x5f66 + 268a: 736e6f63 bltu x28,x22,2dc8 <_start-0x7fffd238> + 268e: 6574 .2byte 0x6574 + 2690: 7078 .2byte 0x7078 + 2692: 2072 .2byte 0x2072 + 2694: 3032 .2byte 0x3032 + 2696: 3631 .2byte 0x3631 + 2698: 3630 .2byte 0x3630 + 269a: 004c .2byte 0x4c + 269c: 5f5f 4e49 3654 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x36 + 26a2: 5f34 .2byte 0x5f34 + 26a4: 29632843 .4byte 0x29632843 + 26a8: 6320 .2byte 0x6320 + 26aa: 2320 .2byte 0x2320 + 26ac: 4c4c2023 sw x4,1216(x24) + 26b0: 5f00 .2byte 0x5f00 + 26b2: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 26b8: 5f38 .2byte 0x5f38 + 26ba: 5045 .2byte 0x5045 + 26bc: 4f4c4953 .4byte 0x4f4c4953 + 26c0: 5f4e .2byte 0x5f4e + 26c2: 205f 2e31 3239 .byte 0x5f, 0x20, 0x31, 0x2e, 0x39, 0x32 + 26c8: 3935 .2byte 0x3935 + 26ca: 3932 .2byte 0x3932 + 26cc: 3439 .2byte 0x3439 + 26ce: 3334 .2byte 0x3334 + 26d0: 3738 .2byte 0x3738 + 26d2: 3332 .2byte 0x3332 + 26d4: 3835 .2byte 0x3835 + 26d6: 3335 .2byte 0x3335 + 26d8: 3530 .2byte 0x3530 + 26da: 3935 .2byte 0x3935 + 26dc: 34393737 lui x14,0x34393 + 26e0: 3532 .2byte 0x3532 + 26e2: 3438 .2byte 0x3438 + 26e4: 3239 .2byte 0x3239 + 26e6: 65323337 lui x6,0x65323 + 26ea: 332d .2byte 0x332d + 26ec: 4634 .2byte 0x4634 + 26ee: 3231 .2byte 0x3231 + 26f0: 0038 .2byte 0x38 + 26f2: 5f5f 6972 6373 .byte 0x5f, 0x5f, 0x72, 0x69, 0x73, 0x63 + 26f8: 5f76 .2byte 0x5f76 + 26fa: 2069 .2byte 0x2069 + 26fc: 3032 .2byte 0x3032 + 26fe: 3130 .2byte 0x3130 + 2700: 3030 .2byte 0x3030 + 2702: 0030 .2byte 0x30 + 2704: 4955 .2byte 0x4955 + 2706: 544e .2byte 0x544e + 2708: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 270e: 3631 .2byte 0x3631 + 2710: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 2716: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 271c: 4e49 .2byte 0x4e49 + 271e: 5f5f 6420 756f .byte 0x5f, 0x5f, 0x20, 0x64, 0x6f, 0x75 + 2724: 6c62 .2byte 0x6c62 + 2726: 2865 .2byte 0x2865 + 2728: 2e32 .2byte 0x2e32 + 272a: 3232 .2byte 0x3232 + 272c: 3035 .2byte 0x3035 + 272e: 35383337 lui x6,0x35383 + 2732: 3538 .2byte 0x3538 + 2734: 3730 .2byte 0x3730 + 2736: 3032 .2byte 0x3032 + 2738: 3331 .2byte 0x3331 + 273a: 3338 .2byte 0x3338 + 273c: 3930 .2byte 0x3930 + 273e: 3230 .2byte 0x3230 + 2740: 31373233 .4byte 0x31373233 + 2744: 32333337 lui x6,0x32333 + 2748: 3034 .2byte 0x3034 + 274a: 3034 .2byte 0x3034 + 274c: 6536 .2byte 0x6536 + 274e: 332d .2byte 0x332d + 2750: 3830 .2byte 0x3830 + 2752: 294c .2byte 0x294c + 2754: 5f00 .2byte 0x5f00 + 2756: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 275c: 5f46 .2byte 0x5f46 + 275e: 4f4c .2byte 0x4f4c + 2760: 474e .2byte 0x474e + 2762: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f + 2768: 205f 0038 4953 .byte 0x5f, 0x20, 0x38, 0x00, 0x53, 0x49 + 276e: 54415f47 .4byte 0x54415f47 + 2772: 43494d4f .4byte 0x43494d4f + 2776: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 277c: 555f 4e49 3854 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x38 + 2782: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2788: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 278e: 64656e67 .4byte 0x64656e67 + 2792: 6320 .2byte 0x6320 + 2794: 6168 .2byte 0x6168 + 2796: 0072 .2byte 0x72 + 2798: 5f5f 4853 5452 .byte 0x5f, 0x5f, 0x53, 0x48, 0x52, 0x54 + 279e: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 27a4: 5f5f 3120 0036 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x00 + 27aa: 4955 .2byte 0x4955 + 27ac: 544e .2byte 0x544e + 27ae: 4d5f3233 .4byte 0x4d5f3233 + 27b2: 5841 .2byte 0x5841 + 27b4: 4900 .2byte 0x4900 + 27b6: 544e .2byte 0x544e + 27b8: 4d5f3233 .4byte 0x4d5f3233 + 27bc: 5841 .2byte 0x5841 + 27be: 5f20 .2byte 0x5f20 + 27c0: 495f 544e 3233 .byte 0x5f, 0x49, 0x4e, 0x54, 0x33, 0x32 + 27c6: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 27cc: 5f00 .2byte 0x5f00 + 27ce: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 27d4: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f + 27da: 414d .2byte 0x414d + 27dc: 5f58 .2byte 0x5f58 + 27de: 205f 2e31 3937 .byte 0x5f, 0x20, 0x31, 0x2e, 0x37, 0x39 + 27e4: 33393637 lui x12,0x33393 + 27e8: 3331 .2byte 0x3331 + 27ea: 3834 .2byte 0x3834 + 27ec: 3236 .2byte 0x3236 + 27ee: 37353133 .4byte 0x37353133 + 27f2: 3830 .2byte 0x3830 + 27f4: 3431 .2byte 0x3431 + 27f6: 3235 .2byte 0x3235 + 27f8: 33323437 lui x8,0x33323 + 27fc: 37313337 lui x6,0x37313 + 2800: 3430 .2byte 0x3430 + 2802: 65373533 .4byte 0x65373533 + 2806: 3830332b .4byte 0x3830332b + 280a: 3646 .2byte 0x3646 + 280c: 0034 .2byte 0x34 + 280e: 554e .2byte 0x554e + 2810: 4c4c .2byte 0x4c4c + 2812: 2820 .2byte 0x2820 + 2814: 7628 .2byte 0x7628 + 2816: 2a64696f jal x18,48abc <_start-0x7ffb7544> + 281a: 2029 .2byte 0x2029 + 281c: 2930 .2byte 0x2930 + 281e: 5f00 .2byte 0x5f00 + 2820: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 2826: 4145 .2byte 0x4145 + 2828: 34365453 .4byte 0x34365453 + 282c: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2832: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 2838: 6c20 .2byte 0x6c20 + 283a: 20676e6f jal x28,78a40 <_start-0x7ff875c0> + 283e: 6e69 .2byte 0x6e69 + 2840: 0074 .2byte 0x74 + 2842: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2848: 545f3233 .4byte 0x545f3233 + 284c: 5059 .2byte 0x5059 + 284e: 5f45 .2byte 0x5f45 + 2850: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 2856: 7520 .2byte 0x7520 + 2858: 736e .2byte 0x736e + 285a: 6769 .2byte 0x6769 + 285c: 656e .2byte 0x656e + 285e: 2064 .2byte 0x2064 + 2860: 6e69 .2byte 0x6e69 + 2862: 0074 .2byte 0x74 + 2864: 4e49 .2byte 0x4e49 + 2866: 5f54 .2byte 0x5f54 + 2868: 454c .2byte 0x454c + 286a: 5341 .2byte 0x5341 + 286c: 3354 .2byte 0x3354 + 286e: 5f32 .2byte 0x5f32 + 2870: 494d .2byte 0x494d + 2872: 204e .2byte 0x204e + 2874: 2d28 .2byte 0x2d28 + 2876: 4e49 .2byte 0x4e49 + 2878: 5f54 .2byte 0x5f54 + 287a: 454c .2byte 0x454c + 287c: 5341 .2byte 0x5341 + 287e: 3354 .2byte 0x3354 + 2880: 5f32 .2byte 0x5f32 + 2882: 414d .2byte 0x414d + 2884: 2058 .2byte 0x2058 + 2886: 202d .2byte 0x202d + 2888: 2931 .2byte 0x2931 + 288a: 5f00 .2byte 0x5f00 + 288c: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 2892: 5f46 .2byte 0x5f46 + 2894: 4f50 .2byte 0x4f50 + 2896: 4e49 .2byte 0x4e49 + 2898: 4554 .2byte 0x4554 + 289a: 5f52 .2byte 0x5f52 + 289c: 205f 0034 5f5f .byte 0x5f, 0x20, 0x34, 0x00, 0x5f, 0x5f + 28a2: 4e49 .2byte 0x4e49 + 28a4: 3854 .2byte 0x3854 + 28a6: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 28ac: 43570063 beq x14,x21,2ccc <_start-0x7fffd334> + 28b0: 4148 .2byte 0x4148 + 28b2: 5f52 .2byte 0x5f52 + 28b4: 414d .2byte 0x414d + 28b6: 2058 .2byte 0x2058 + 28b8: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 + 28be: 5f52 .2byte 0x5f52 + 28c0: 414d .2byte 0x414d + 28c2: 5f58 .2byte 0x5f58 + 28c4: 005f 4955 544e .byte 0x5f, 0x00, 0x55, 0x49, 0x4e, 0x54 + 28ca: 3631 .2byte 0x3631 + 28cc: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 28d2: 555f 4e49 3154 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x31 + 28d8: 5f36 .2byte 0x5f36 + 28da: 414d .2byte 0x414d + 28dc: 5f58 .2byte 0x5f58 + 28de: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 + 28e4: 5f70 .2byte 0x5f70 + 28e6: 6e69 .2byte 0x6e69 + 28e8: 7469 .2byte 0x7469 + 28ea: 6169 .2byte 0x6169 + 28ec: 696c .2byte 0x696c + 28ee: 657a .2byte 0x657a + 28f0: 5f72 .2byte 0x5f72 + 28f2: 696c .2byte 0x696c + 28f4: 20737473 .4byte 0x20737473 + 28f8: 3032 .2byte 0x3032 + 28fa: 3830 .2byte 0x3830 + 28fc: 3630 .2byte 0x3630 + 28fe: 004c .2byte 0x4c + 2900: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 + 2906: 5f52 .2byte 0x5f52 + 2908: 414d .2byte 0x414d + 290a: 5f58 .2byte 0x5f58 + 290c: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 2912: 6666 .2byte 0x6666 + 2914: 6666 .2byte 0x6666 + 2916: 6666 .2byte 0x6666 + 2918: 5f00 .2byte 0x5f00 + 291a: 465f 544c 445f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x44 + 2920: 4e45 .2byte 0x4e45 + 2922: 5f4d524f .4byte 0x5f4d524f + 2926: 494d .2byte 0x494d + 2928: 5f4e .2byte 0x5f4e + 292a: 205f 2e31 3034 .byte 0x5f, 0x20, 0x31, 0x2e, 0x34, 0x30 + 2930: 3231 .2byte 0x3231 + 2932: 3839 .2byte 0x3839 + 2934: 3634 .2byte 0x3634 + 2936: 3334 .2byte 0x3334 + 2938: 3432 .2byte 0x3432 + 293a: 3138 .2byte 0x3138 + 293c: 30373037 lui x0,0x30373 + 2940: 3239 .2byte 0x3239 + 2942: 39323733 .4byte 0x39323733 + 2946: 3835 .2byte 0x3835 + 2948: 39383233 .4byte 0x39383233 + 294c: 3139 .2byte 0x3139 + 294e: 3136 .2byte 0x3136 + 2950: 342d6533 .4byte 0x342d6533 + 2954: 4635 .2byte 0x4635 + 2956: 5f00 .2byte 0x5f00 + 2958: 495f 544e 575f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x57 + 295e: 4449 .2byte 0x4449 + 2960: 4854 .2byte 0x4854 + 2962: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 2968: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 296e: 3832 .2byte 0x3832 + 2970: 445f 4345 4d49 .byte 0x5f, 0x44, 0x45, 0x43, 0x49, 0x4d + 2976: 4c41 .2byte 0x4c41 + 2978: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 297e: 3320 .2byte 0x3320 + 2980: 0036 .2byte 0x36 + 2982: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2988: 3436 .2byte 0x3436 + 298a: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 2990: 23232063 .4byte 0x23232063 + 2994: 5520 .2byte 0x5520 + 2996: 4c4c .2byte 0x4c4c + 2998: 5f00 .2byte 0x5f00 + 299a: 445f 4345 4d49 .byte 0x5f, 0x44, 0x45, 0x43, 0x49, 0x4d + 29a0: 4c41 .2byte 0x4c41 + 29a2: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 29a8: 3320 .2byte 0x3320 + 29aa: 0036 .2byte 0x36 + 29ac: 616d .2byte 0x616d + 29ae: 6e69 .2byte 0x6e69 + 29b0: 5f00 .2byte 0x5f00 + 29b2: 475f 4343 435f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x43 + 29b8: 54534e4f .4byte 0x54534e4f + 29bc: 5552 .2byte 0x5552 + 29be: 56495443 .4byte 0x56495443 + 29c2: 5f45 .2byte 0x5f45 + 29c4: 455a4953 .4byte 0x455a4953 + 29c8: 3320 .2byte 0x3320 + 29ca: 0032 .2byte 0x32 + 29cc: 5f5f 6972 6373 .byte 0x5f, 0x5f, 0x72, 0x69, 0x73, 0x63 + 29d2: 5f76 .2byte 0x5f76 + 29d4: 6c66 .2byte 0x6c66 + 29d6: 5f74616f jal x2,497cc <_start-0x7ffb6834> + 29da: 6261 .2byte 0x6261 + 29dc: 5f69 .2byte 0x5f69 + 29de: 74666f73 .4byte 0x74666f73 + 29e2: 3120 .2byte 0x3120 + 29e4: 5f00 .2byte 0x5f00 + 29e6: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 29ec: 4f54 .2byte 0x4f54 + 29ee: 494d .2byte 0x494d + 29f0: 4f505f43 .4byte 0x4f505f43 + 29f4: 4e49 .2byte 0x4e49 + 29f6: 4554 .2byte 0x4554 + 29f8: 5f52 .2byte 0x5f52 + 29fa: 4f4c .2byte 0x4f4c + 29fc: 465f4b43 .4byte 0x465f4b43 + 2a00: 4552 .2byte 0x4552 + 2a02: 2045 .2byte 0x2045 + 2a04: 0031 .2byte 0x31 + 2a06: 5f5f 5355 5245 .byte 0x5f, 0x5f, 0x55, 0x53, 0x45, 0x52 + 2a0c: 4c5f 4241 4c45 .byte 0x5f, 0x4c, 0x41, 0x42, 0x45, 0x4c + 2a12: 505f 4552 4946 .byte 0x5f, 0x50, 0x52, 0x45, 0x46, 0x49 + 2a18: 5f58 .2byte 0x5f58 + 2a1a: 205f 5f00 475f .byte 0x5f, 0x20, 0x00, 0x5f, 0x5f, 0x47 + 2a20: 415f4343 .4byte 0x415f4343 + 2a24: 4f54 .2byte 0x4f54 + 2a26: 494d .2byte 0x494d + 2a28: 48435f43 .4byte 0x48435f43 + 2a2c: 5241 .2byte 0x5241 + 2a2e: 545f3233 .4byte 0x545f3233 + 2a32: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f + 2a38: 5246 .2byte 0x5246 + 2a3a: 4545 .2byte 0x4545 + 2a3c: 3120 .2byte 0x3120 + 2a3e: 5500 .2byte 0x5500 + 2a40: 4e49 .2byte 0x4e49 + 2a42: 4d54 .2byte 0x4d54 + 2a44: 5841 .2byte 0x5841 + 2a46: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 2a4c: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2a52: 414d .2byte 0x414d + 2a54: 5f58 .2byte 0x5f58 + 2a56: 29632843 .4byte 0x29632843 + 2a5a: 5f00 .2byte 0x5f00 + 2a5c: 495f 544e 414d .byte 0x5f, 0x49, 0x4e, 0x54, 0x4d, 0x41 + 2a62: 5f58 .2byte 0x5f58 + 2a64: 29632843 .4byte 0x29632843 + 2a68: 6320 .2byte 0x6320 + 2a6a: 2320 .2byte 0x2320 + 2a6c: 4c4c2023 sw x4,1216(x24) + 2a70: 5f00 .2byte 0x5f00 + 2a72: 535f 4454 5f43 .byte 0x5f, 0x53, 0x54, 0x44, 0x43, 0x5f + 2a78: 4f48 .2byte 0x4f48 + 2a7a: 44455453 .4byte 0x44455453 + 2a7e: 5f5f 3020 5500 .byte 0x5f, 0x5f, 0x20, 0x30, 0x00, 0x55 + 2a84: 4e49 .2byte 0x4e49 + 2a86: 5f54 .2byte 0x5f54 + 2a88: 454c .2byte 0x454c + 2a8a: 5341 .2byte 0x5341 + 2a8c: 3854 .2byte 0x3854 + 2a8e: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 2a94: 495f 544e 5450 .byte 0x5f, 0x49, 0x4e, 0x54, 0x50, 0x54 + 2a9a: 5f52 .2byte 0x5f52 + 2a9c: 414d .2byte 0x414d + 2a9e: 5f58 .2byte 0x5f58 + 2aa0: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 2aa6: 6666 .2byte 0x6666 + 2aa8: 6666 .2byte 0x6666 + 2aaa: 6666 .2byte 0x6666 + 2aac: 5f00 .2byte 0x5f00 + 2aae: 635f 7070 745f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x74 + 2ab4: 7268 .2byte 0x7268 + 2ab6: 6165 .2byte 0x6165 + 2ab8: 7364 .2byte 0x7364 + 2aba: 6661 .2byte 0x6661 + 2abc: 5f65 .2byte 0x5f65 + 2abe: 74617473 .4byte 0x74617473 + 2ac2: 6369 .2byte 0x6369 + 2ac4: 695f 696e 2074 .byte 0x5f, 0x69, 0x6e, 0x69, 0x74, 0x20 + 2aca: 3032 .2byte 0x3032 + 2acc: 3830 .2byte 0x3830 + 2ace: 3630 .2byte 0x3630 + 2ad0: 004c .2byte 0x4c + 2ad2: 4e49 .2byte 0x4e49 + 2ad4: 5f54 .2byte 0x5f54 + 2ad6: 454c .2byte 0x454c + 2ad8: 5341 .2byte 0x5341 + 2ada: 3854 .2byte 0x3854 + 2adc: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 2ae2: 492d .2byte 0x492d + 2ae4: 544e .2byte 0x544e + 2ae6: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 2aec: 5f38 .2byte 0x5f38 + 2aee: 414d .2byte 0x414d + 2af0: 2058 .2byte 0x2058 + 2af2: 202d .2byte 0x202d + 2af4: 2931 .2byte 0x2931 + 2af6: 5f00 .2byte 0x5f00 + 2af8: 505f 4152 4d47 .byte 0x5f, 0x50, 0x52, 0x41, 0x47, 0x4d + 2afe: 5f41 .2byte 0x5f41 + 2b00: 4552 .2byte 0x4552 + 2b02: 4544 .2byte 0x4544 + 2b04: 4946 .2byte 0x4946 + 2b06: 454e .2byte 0x454e + 2b08: 455f 5458 414e .byte 0x5f, 0x45, 0x58, 0x54, 0x4e, 0x41 + 2b0e: 454d .2byte 0x454d + 2b10: 3120 .2byte 0x3120 + 2b12: 5f00 .2byte 0x5f00 + 2b14: 635f 7070 735f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x73 + 2b1a: 7274 .2byte 0x7274 + 2b1c: 6375 .2byte 0x6375 + 2b1e: 7574 .2byte 0x7574 + 2b20: 6572 .2byte 0x6572 + 2b22: 5f64 .2byte 0x5f64 + 2b24: 6962 .2byte 0x6962 + 2b26: 646e .2byte 0x646e + 2b28: 6e69 .2byte 0x6e69 + 2b2a: 32207367 .4byte 0x32207367 + 2b2e: 3130 .2byte 0x3130 + 2b30: 3036 .2byte 0x3036 + 2b32: 4c36 .2byte 0x4c36 + 2b34: 5f00 .2byte 0x5f00 + 2b36: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 2b3c: 4f54 .2byte 0x4f54 + 2b3e: 494d .2byte 0x494d + 2b40: 4c4c5f43 .4byte 0x4c4c5f43 + 2b44: 5f474e4f .4byte 0x5f474e4f + 2b48: 4f4c .2byte 0x4f4c + 2b4a: 465f4b43 .4byte 0x465f4b43 + 2b4e: 4552 .2byte 0x4552 + 2b50: 2045 .2byte 0x2045 + 2b52: 0031 .2byte 0x31 + 2b54: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 2b5a: 414d .2byte 0x414d + 2b5c: 5f58 .2byte 0x5f58 + 2b5e: 5845 .2byte 0x5845 + 2b60: 5f50 .2byte 0x5f50 + 2b62: 205f 3231 0038 .byte 0x5f, 0x20, 0x31, 0x32, 0x38, 0x00 + 2b68: 5f5f 5441 4d4f .byte 0x5f, 0x5f, 0x41, 0x54, 0x4f, 0x4d + 2b6e: 4349 .2byte 0x4349 + 2b70: 415f 5143 525f .byte 0x5f, 0x41, 0x43, 0x51, 0x5f, 0x52 + 2b76: 4c45 .2byte 0x4c45 + 2b78: 3420 .2byte 0x3420 + 2b7a: 5f00 .2byte 0x5f00 + 2b7c: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2b82: 4146 .2byte 0x4146 + 2b84: 34365453 .4byte 0x34365453 + 2b88: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2b8e: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 2b94: 6c20 .2byte 0x6c20 + 2b96: 20676e6f jal x28,78d9c <_start-0x7ff87264> + 2b9a: 6e75 .2byte 0x6e75 + 2b9c: 6e676973 .4byte 0x6e676973 + 2ba0: 6465 .2byte 0x6465 + 2ba2: 6920 .2byte 0x6920 + 2ba4: 746e .2byte 0x746e + 2ba6: 5700 .2byte 0x5700 + 2ba8: 52414843 .4byte 0x52414843 + 2bac: 4d5f 5841 4900 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x49 + 2bb2: 544e .2byte 0x544e + 2bb4: 4d5f3233 .4byte 0x4d5f3233 + 2bb8: 4e49 .2byte 0x4e49 + 2bba: 5f00 .2byte 0x5f00 + 2bbc: 465f 544c 4d5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4d + 2bc2: 4e49 .2byte 0x4e49 + 2bc4: 5f5f 3120 312e .byte 0x5f, 0x5f, 0x20, 0x31, 0x2e, 0x31 + 2bca: 39343537 lui x10,0x39343 + 2bce: 3334 .2byte 0x3334 + 2bd0: 3035 .2byte 0x3035 + 2bd2: 3238 .2byte 0x3238 + 2bd4: 3232 .2byte 0x3232 + 2bd6: 3738 .2byte 0x3738 + 2bd8: 3035 .2byte 0x3035 + 2bda: 38363937 lui x18,0x38363 + 2bde: 35363337 lui x6,0x35363 + 2be2: 32323733 .4byte 0x32323733 + 2be6: 3232 .2byte 0x3232 + 2be8: 3534 .2byte 0x3534 + 2bea: 3836 .2byte 0x3836 + 2bec: 2d65 .2byte 0x2d65 + 2bee: 00463833 sltu x16,x12,x4 + 2bf2: 4955 .2byte 0x4955 + 2bf4: 544e .2byte 0x544e + 2bf6: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 2bfc: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 2c02: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2c08: 4146 .2byte 0x4146 + 2c0a: 5f385453 .4byte 0x5f385453 + 2c0e: 414d .2byte 0x414d + 2c10: 5f58 .2byte 0x5f58 + 2c12: 005f 5f5f 4e49 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x49, 0x4e + 2c18: 5054 .2byte 0x5054 + 2c1a: 5254 .2byte 0x5254 + 2c1c: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2c22: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + 2c28: 5f5f 7063 756c .byte 0x5f, 0x5f, 0x63, 0x70, 0x6c, 0x75 + 2c2e: 756c7073 .4byte 0x756c7073 + 2c32: 30322073 .4byte 0x30322073 + 2c36: 3731 .2byte 0x3731 + 2c38: 3330 .2byte 0x3330 + 2c3a: 004c .2byte 0x4c + 2c3c: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 2c42: 445f 4345 4d49 .byte 0x5f, 0x44, 0x45, 0x43, 0x49, 0x4d + 2c48: 4c41 .2byte 0x4c41 + 2c4a: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 2c50: 3320 .2byte 0x3320 + 2c52: 0036 .2byte 0x36 + 2c54: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2c5a: 6e69 .2byte 0x6e69 + 2c5c: 6568 .2byte 0x6568 + 2c5e: 6972 .2byte 0x6972 + 2c60: 6974 .2byte 0x6974 + 2c62: 676e .2byte 0x676e + 2c64: 635f 6e6f 7473 .byte 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74 + 2c6a: 7572 .2byte 0x7572 + 2c6c: 726f7463 bgeu x30,x6,3394 <_start-0x7fffcc6c> + 2c70: 30322073 .4byte 0x30322073 + 2c74: 3531 .2byte 0x3531 + 2c76: 3131 .2byte 0x3131 + 2c78: 004c .2byte 0x4c + 2c7a: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 2c80: 454c .2byte 0x454c + 2c82: 5341 .2byte 0x5341 + 2c84: 3354 .2byte 0x3354 + 2c86: 5f32 .2byte 0x5f32 + 2c88: 54444957 .4byte 0x54444957 + 2c8c: 5f48 .2byte 0x5f48 + 2c8e: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 2c94: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f + 2c9a: 45444957 .4byte 0x45444957 + 2c9e: 455f 4558 5543 .byte 0x5f, 0x45, 0x58, 0x45, 0x43, 0x55 + 2ca4: 4954 .2byte 0x4954 + 2ca6: 435f4e4f .4byte 0x435f4e4f + 2caa: 4148 .2byte 0x4148 + 2cac: 5352 .2byte 0x5352 + 2cae: 5445 .2byte 0x5445 + 2cb0: 4e5f 4d41 2045 .byte 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x20 + 2cb6: 5522 .2byte 0x5522 + 2cb8: 4654 .2byte 0x4654 + 2cba: 332d .2byte 0x332d + 2cbc: 4c32 .2byte 0x4c32 + 2cbe: 2245 .2byte 0x2245 + 2cc0: 5f00 .2byte 0x5f00 + 2cc2: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2cc8: 4146 .2byte 0x4146 + 2cca: 32335453 .4byte 0x32335453 + 2cce: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2cd4: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 2cda: 64656e67 .4byte 0x64656e67 + 2cde: 6920 .2byte 0x6920 + 2ce0: 746e .2byte 0x746e + 2ce2: 5f00 .2byte 0x5f00 + 2ce4: 575f 4e49 5f54 .byte 0x5f, 0x57, 0x49, 0x4e, 0x54, 0x5f + 2cea: 5954 .2byte 0x5954 + 2cec: 4550 .2byte 0x4550 + 2cee: 5f5f 7520 736e .byte 0x5f, 0x5f, 0x20, 0x75, 0x6e, 0x73 + 2cf4: 6769 .2byte 0x6769 + 2cf6: 656e .2byte 0x656e + 2cf8: 2064 .2byte 0x2064 + 2cfa: 6e69 .2byte 0x6e69 + 2cfc: 0074 .2byte 0x74 + 2cfe: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 2d04: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2d0a: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 2d10: 64656e67 .4byte 0x64656e67 + 2d14: 6920 .2byte 0x6920 + 2d16: 746e .2byte 0x746e + 2d18: 5700 .2byte 0x5700 + 2d1a: 52414843 .4byte 0x52414843 + 2d1e: 4d5f 4e49 5f20 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x5f + 2d24: 575f 4843 5241 .byte 0x5f, 0x57, 0x43, 0x48, 0x41, 0x52 + 2d2a: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 2d30: 5f00 .2byte 0x5f00 + 2d32: 635f 7070 6c5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6c + 2d38: 6d61 .2byte 0x6d61 + 2d3a: 6462 .2byte 0x6462 + 2d3c: 7361 .2byte 0x7361 + 2d3e: 3220 .2byte 0x3220 + 2d40: 3030 .2byte 0x3030 + 2d42: 3039 .2byte 0x3039 + 2d44: 5f004c37 lui x24,0x5f004 + 2d48: 315a .2byte 0x315a + 2d4a: 6d697333 .4byte 0x6d697333 + 2d4e: 6c70 .2byte 0x6c70 + 2d50: 5f65 .2byte 0x5f65 + 2d52: 74727473 .4byte 0x74727473 + 2d56: 63506b6f jal x22,9b8a <_start-0x7fff6476> + 2d5a: 4b50 .2byte 0x4b50 + 2d5c: 5f5f0063 beq x30,x21,333c <_start-0x7fffccc4> + 2d60: 5f434347 .4byte 0x5f434347 + 2d64: 5441 .2byte 0x5441 + 2d66: 43494d4f .4byte 0x43494d4f + 2d6a: 535f 4f48 5452 .byte 0x5f, 0x53, 0x48, 0x4f, 0x52, 0x54 + 2d70: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f + 2d76: 5246 .2byte 0x5246 + 2d78: 4545 .2byte 0x4545 + 2d7a: 3120 .2byte 0x3120 + 2d7c: 5f00 .2byte 0x5f00 + 2d7e: 445f 4c42 455f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x45 + 2d84: 5350 .2byte 0x5350 + 2d86: 4c49 .2byte 0x4c49 + 2d88: 5f5f4e4f .4byte 0x5f5f4e4f + 2d8c: 6420 .2byte 0x6420 + 2d8e: 6c62756f jal x10,2a454 <_start-0x7ffd5bac> + 2d92: 2865 .2byte 0x2865 + 2d94: 2e32 .2byte 0x2e32 + 2d96: 3232 .2byte 0x3232 + 2d98: 3430 .2byte 0x3430 + 2d9a: 3634 .2byte 0x3634 + 2d9c: 3430 .2byte 0x3430 + 2d9e: 3239 .2byte 0x3239 + 2da0: 3035 .2byte 0x3035 + 2da2: 30333133 .4byte 0x30333133 + 2da6: 3038 .2byte 0x3038 + 2da8: 3438 .2byte 0x3438 + 2daa: 33363237 lui x4,0x33363 + 2dae: 31363333 .4byte 0x31363333 + 2db2: 3138 .2byte 0x3138 + 2db4: 3436 .2byte 0x3436 + 2db6: 3630 .2byte 0x3630 + 2db8: 6532 .2byte 0x6532 + 2dba: 312d .2byte 0x312d + 2dbc: 4c36 .2byte 0x4c36 + 2dbe: 0029 .2byte 0x29 + 2dc0: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2dc6: 6574 .2byte 0x6574 + 2dc8: 706d .2byte 0x706d + 2dca: 616c .2byte 0x616c + 2dcc: 6574 .2byte 0x6574 + 2dce: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + 2dd4: 7461 .2byte 0x7461 + 2dd6: 5f65 .2byte 0x5f65 + 2dd8: 7261 .2byte 0x7261 + 2dda: 32207367 .4byte 0x32207367 + 2dde: 3130 .2byte 0x3130 + 2de0: 3136 .2byte 0x3136 + 2de2: 4c31 .2byte 0x4c31 + 2de4: 5f00 .2byte 0x5f00 + 2de6: 465f 544c 455f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x45 + 2dec: 5350 .2byte 0x5350 + 2dee: 4c49 .2byte 0x4c49 + 2df0: 5f5f4e4f .4byte 0x5f5f4e4f + 2df4: 3120 .2byte 0x3120 + 2df6: 312e .2byte 0x312e + 2df8: 3239 .2byte 0x3239 + 2dfa: 3930 .2byte 0x3930 + 2dfc: 3832 .2byte 0x3832 + 2dfe: 3539 .2byte 0x3539 + 2e00: 3035 .2byte 0x3035 + 2e02: 32313837 lui x16,0x32313 + 2e06: 3035 .2byte 0x3035 + 2e08: 3030 .2byte 0x3030 + 2e0a: 3030 .2byte 0x3030 + 2e0c: 3030 .2byte 0x3030 + 2e0e: 3030 .2byte 0x3030 + 2e10: 3030 .2byte 0x3030 + 2e12: 3030 .2byte 0x3030 + 2e14: 3030 .2byte 0x3030 + 2e16: 3030 .2byte 0x3030 + 2e18: 3030 .2byte 0x3030 + 2e1a: 2d65 .2byte 0x2d65 + 2e1c: 5f004637 lui x12,0x5f004 + 2e20: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 2e26: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 + 2e2c: 5058 .2byte 0x5058 + 2e2e: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 + 2e34: 3230 .2byte 0x3230 + 2e36: 2931 .2byte 0x2931 + 2e38: 5500 .2byte 0x5500 + 2e3a: 4e49 .2byte 0x4e49 + 2e3c: 3854 .2byte 0x3854 + 2e3e: 435f 5f00 465f .byte 0x5f, 0x43, 0x00, 0x5f, 0x5f, 0x46 + 2e44: 544c .2byte 0x544c + 2e46: 455f 4156 5f4c .byte 0x5f, 0x45, 0x56, 0x41, 0x4c, 0x5f + 2e4c: 454d .2byte 0x454d + 2e4e: 4854 .2byte 0x4854 + 2e50: 545f444f .4byte 0x545f444f + 2e54: 38315f53 .4byte 0x38315f53 + 2e58: 3636 .2byte 0x3636 + 2e5a: 5f31 .2byte 0x5f31 + 2e5c: 205f5f33 .4byte 0x205f5f33 + 2e60: 0030 .2byte 0x30 + 2e62: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 2e68: 4148 .2byte 0x4148 + 2e6a: 4e495f53 .4byte 0x4e495f53 + 2e6e: 4946 .2byte 0x4946 + 2e70: 494e .2byte 0x494e + 2e72: 5954 .2byte 0x5954 + 2e74: 5f5f 3120 5300 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x53 + 2e7a: 4749 .2byte 0x4749 + 2e7c: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 2e82: 414d5f43 .4byte 0x414d5f43 + 2e86: 2058 .2byte 0x2058 + 2e88: 5f5f 4953 5f47 .byte 0x5f, 0x5f, 0x53, 0x49, 0x47, 0x5f + 2e8e: 5441 .2byte 0x5441 + 2e90: 43494d4f .4byte 0x43494d4f + 2e94: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2e9a: 5f00 .2byte 0x5f00 + 2e9c: 475f 5858 525f .byte 0x5f, 0x47, 0x58, 0x58, 0x5f, 0x52 + 2ea2: 5454 .2byte 0x5454 + 2ea4: 2049 .2byte 0x2049 + 2ea6: 0031 .2byte 0x31 + 2ea8: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 2eae: 414d .2byte 0x414d + 2eb0: 5f58 .2byte 0x5f58 + 2eb2: 205f 2e33 3034 .byte 0x5f, 0x20, 0x33, 0x2e, 0x34, 0x30 + 2eb8: 3832 .2byte 0x3832 + 2eba: 3332 .2byte 0x3332 + 2ebc: 3634 .2byte 0x3634 + 2ebe: 3336 .2byte 0x3336 + 2ec0: 3538 .2byte 0x3538 + 2ec2: 3832 .2byte 0x3832 + 2ec4: 3538 .2byte 0x3538 + 2ec6: 3839 .2byte 0x3839 + 2ec8: 3131 .2byte 0x3131 + 2eca: 31343037 lui x0,0x31343 + 2ece: 3338 .2byte 0x3338 + 2ed0: 3834 .2byte 0x3834 + 2ed2: 3534 .2byte 0x3534 + 2ed4: 3631 .2byte 0x3631 + 2ed6: 3239 .2byte 0x3239 + 2ed8: 6535 .2byte 0x6535 + 2eda: 4638332b .4byte 0x4638332b + 2ede: 5f00 .2byte 0x5f00 + 2ee0: 465f 544c 485f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x48 + 2ee6: 5341 .2byte 0x5341 + 2ee8: 515f 4955 5445 .byte 0x5f, 0x51, 0x55, 0x49, 0x45, 0x54 + 2eee: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f + 2ef4: 3120 .2byte 0x3120 + 2ef6: 5f00 .2byte 0x5f00 + 2ef8: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 2efe: 5f46 .2byte 0x5f46 + 2f00: 4e49 .2byte 0x4e49 + 2f02: 5f54 .2byte 0x5f54 + 2f04: 205f 0034 5f5f .byte 0x5f, 0x20, 0x34, 0x00, 0x5f, 0x5f + 2f0a: 5f707063 bgeu x0,x23,34ea <_start-0x7fffcb16> + 2f0e: 6761 .2byte 0x6761 + 2f10: 67657267 .4byte 0x67657267 + 2f14: 7461 .2byte 0x7461 + 2f16: 5f65 .2byte 0x5f65 + 2f18: 736e .2byte 0x736e + 2f1a: 6d64 .2byte 0x6d64 + 2f1c: 2069 .2byte 0x2069 + 2f1e: 3032 .2byte 0x3032 + 2f20: 3331 .2byte 0x3331 + 2f22: 3430 .2byte 0x3430 + 2f24: 004c .2byte 0x4c + 2f26: 5f5f 4e49 4d54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x4d + 2f2c: 5841 .2byte 0x5841 + 2f2e: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2f34: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 2f3a: 6c20 .2byte 0x6c20 + 2f3c: 20676e6f jal x28,79142 <_start-0x7ff86ebe> + 2f40: 6e69 .2byte 0x6e69 + 2f42: 0074 .2byte 0x74 + 2f44: 5f5f 6972 6373 .byte 0x5f, 0x5f, 0x72, 0x69, 0x73, 0x63 + 2f4a: 2076 .2byte 0x2076 + 2f4c: 0031 .2byte 0x31 + 2f4e: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2f54: 6564 .2byte 0x6564 + 2f56: 656c .2byte 0x656c + 2f58: 69746167 .4byte 0x69746167 + 2f5c: 676e .2byte 0x676e + 2f5e: 635f 6e6f 7473 .byte 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74 + 2f64: 7572 .2byte 0x7572 + 2f66: 726f7463 bgeu x30,x6,368e <_start-0x7fffc972> + 2f6a: 30322073 .4byte 0x30322073 + 2f6e: 3630 .2byte 0x3630 + 2f70: 3430 .2byte 0x3430 + 2f72: 004c .2byte 0x4c + 2f74: 4e49 .2byte 0x4e49 + 2f76: 5f54 .2byte 0x5f54 + 2f78: 4146 .2byte 0x4146 + 2f7a: 32335453 .4byte 0x32335453 + 2f7e: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 2f84: 492d .2byte 0x492d + 2f86: 544e .2byte 0x544e + 2f88: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 2f8e: 5f32 .2byte 0x5f32 + 2f90: 414d .2byte 0x414d + 2f92: 2058 .2byte 0x2058 + 2f94: 202d .2byte 0x202d + 2f96: 2931 .2byte 0x2931 + 2f98: 5700 .2byte 0x5700 + 2f9a: 4e49 .2byte 0x4e49 + 2f9c: 5f54 .2byte 0x5f54 + 2f9e: 494d .2byte 0x494d + 2fa0: 004e .2byte 0x4e + 2fa2: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2fa8: 7375 .2byte 0x7375 + 2faa: 7265 .2byte 0x7265 + 2fac: 645f 6665 6e69 .byte 0x5f, 0x64, 0x65, 0x66, 0x69, 0x6e + 2fb2: 6465 .2byte 0x6465 + 2fb4: 6c5f 7469 7265 .byte 0x5f, 0x6c, 0x69, 0x74, 0x65, 0x72 + 2fba: 6c61 .2byte 0x6c61 + 2fbc: 30322073 .4byte 0x30322073 + 2fc0: 3830 .2byte 0x3830 + 2fc2: 3930 .2byte 0x3930 + 2fc4: 004c .2byte 0x4c + 2fc6: 4955 .2byte 0x4955 + 2fc8: 544e .2byte 0x544e + 2fca: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + 2fd0: 5f36 .2byte 0x5f36 + 2fd2: 414d .2byte 0x414d + 2fd4: 2058 .2byte 0x2058 + 2fd6: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2fdc: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + 2fe2: 5f36 .2byte 0x5f36 + 2fe4: 414d .2byte 0x414d + 2fe6: 5f58 .2byte 0x5f58 + 2fe8: 005f 4e49 3854 .byte 0x5f, 0x00, 0x49, 0x4e, 0x54, 0x38 + 2fee: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 2ff4: 495f 544e 5f38 .byte 0x5f, 0x49, 0x4e, 0x54, 0x38, 0x5f + 2ffa: 414d .2byte 0x414d + 2ffc: 5f58 .2byte 0x5f58 + 2ffe: 005f 5f5f 4955 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x55, 0x49 + 3004: 544e .2byte 0x544e + 3006: 3436 .2byte 0x3436 + 3008: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 300e: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 3014: 6c20 .2byte 0x6c20 + 3016: 20676e6f jal x28,7921c <_start-0x7ff86de4> + 301a: 6e75 .2byte 0x6e75 + 301c: 6e676973 .4byte 0x6e676973 + 3020: 6465 .2byte 0x6465 + 3022: 6920 .2byte 0x6920 + 3024: 746e .2byte 0x746e + 3026: 5f00 .2byte 0x5f00 + 3028: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 302e: 5f58 .2byte 0x5f58 + 3030: 4148 .2byte 0x4148 + 3032: 55515f53 .4byte 0x55515f53 + 3036: 4549 .2byte 0x4549 + 3038: 5f54 .2byte 0x5f54 + 303a: 414e .2byte 0x414e + 303c: 5f4e .2byte 0x5f4e + 303e: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 3044: 4244 .2byte 0x4244 + 3046: 5f4c .2byte 0x5f4c + 3048: 414d .2byte 0x414d + 304a: 5f58 .2byte 0x5f58 + 304c: 3031 .2byte 0x3031 + 304e: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 3054: 3320 .2byte 0x3320 + 3056: 3830 .2byte 0x3830 + 3058: 7300 .2byte 0x7300 + 305a: 6174 .2byte 0x6174 + 305c: 6974 .2byte 0x6974 + 305e: 74735f63 bge x6,x7,37bc <_start-0x7fffc844> + 3062: 0072 .2byte 0x72 + 3064: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 306a: 4146 .2byte 0x4146 + 306c: 32335453 .4byte 0x32335453 + 3070: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 3076: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + 307c: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 3082: 74706163 bltu x0,x7,37c4 <_start-0x7fffc83c> + 3086: 7275 .2byte 0x7275 + 3088: 5f65 .2byte 0x5f65 + 308a: 72617473 .4byte 0x72617473 + 308e: 745f 6968 2073 .byte 0x5f, 0x74, 0x68, 0x69, 0x73, 0x20 + 3094: 3032 .2byte 0x3032 + 3096: 3631 .2byte 0x3631 + 3098: 3330 .2byte 0x3330 + 309a: 004c .2byte 0x4c + 309c: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 30a2: 6e75 .2byte 0x6e75 + 30a4: 6369 .2byte 0x6369 + 30a6: 5f65646f jal x8,5969c <_start-0x7ffa6964> + 30aa: 72616863 bltu x2,x6,37da <_start-0x7fffc826> + 30ae: 6361 .2byte 0x6361 + 30b0: 6574 .2byte 0x6574 + 30b2: 7372 .2byte 0x7372 + 30b4: 3220 .2byte 0x3220 + 30b6: 3130 .2byte 0x3130 + 30b8: 3134 .2byte 0x3134 + 30ba: 4c31 .2byte 0x4c31 + 30bc: 5f00 .2byte 0x5f00 + 30be: 425f 4749 4547 .byte 0x5f, 0x42, 0x49, 0x47, 0x47, 0x45 + 30c4: 415f5453 .4byte 0x415f5453 + 30c8: 494c .2byte 0x494c + 30ca: 454d4e47 .4byte 0x454d4e47 + 30ce: 544e .2byte 0x544e + 30d0: 5f5f 3120 0036 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x00 + 30d6: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 30dc: 3832 .2byte 0x3832 + 30de: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + 30e4: 5f4d .2byte 0x5f4d + 30e6: 494d .2byte 0x494d + 30e8: 5f4e .2byte 0x5f4e + 30ea: 205f 2e36 3734 .byte 0x5f, 0x20, 0x36, 0x2e, 0x34, 0x37 + 30f0: 3135 .2byte 0x3135 + 30f2: 31313537 lui x10,0x31313 + 30f6: 3439 .2byte 0x3439 + 30f8: 32303833 .4byte 0x32303833 + 30fc: 3135 .2byte 0x3135 + 30fe: 3031 .2byte 0x3031 + 3100: 3239 .2byte 0x3239 + 3102: 3434 .2byte 0x3434 + 3104: 35393833 .4byte 0x35393833 + 3108: 3238 .2byte 0x3238 + 310a: 3732 .2byte 0x3732 + 310c: 3436 .2byte 0x3436 + 310e: 3536 .2byte 0x3536 + 3110: 6535 .2byte 0x6535 + 3112: 342d .2byte 0x342d + 3114: 3639 .2byte 0x3639 + 3116: 4636 .2byte 0x4636 + 3118: 3231 .2byte 0x3231 + 311a: 0038 .2byte 0x38 + 311c: 4e49 .2byte 0x4e49 + 311e: 3154 .2byte 0x3154 + 3120: 5f36 .2byte 0x5f36 + 3122: 414d .2byte 0x414d + 3124: 2058 .2byte 0x2058 + 3126: 5f5f 4e49 3154 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x31 + 312c: 5f36 .2byte 0x5f36 + 312e: 414d .2byte 0x414d + 3130: 5f58 .2byte 0x5f58 + 3132: 005f 5f5f 4e49 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x49, 0x4e + 3138: 5f54 .2byte 0x5f54 + 313a: 4146 .2byte 0x4146 + 313c: 5f385453 .4byte 0x5f385453 + 3140: 54444957 .4byte 0x54444957 + 3144: 5f48 .2byte 0x5f48 + 3146: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 314c: 475f 4343 445f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x44 + 3152: 5345 .2byte 0x5345 + 3154: 5254 .2byte 0x5254 + 3156: 4355 .2byte 0x4355 + 3158: 4954 .2byte 0x4954 + 315a: 4556 .2byte 0x4556 + 315c: 535f 5a49 2045 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x20 + 3162: 5f003233 .4byte 0x5f003233 + 3166: 465f 544c 4d5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4d + 316c: 4e49 .2byte 0x4e49 + 316e: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 3174: 2820 .2byte 0x2820 + 3176: 312d .2byte 0x312d + 3178: 3532 .2byte 0x3532 + 317a: 0029 .2byte 0x29 + 317c: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + 3182: 5441 .2byte 0x5441 + 3184: 43494d4f .4byte 0x43494d4f + 3188: 425f 4f4f 5f4c .byte 0x5f, 0x42, 0x4f, 0x4f, 0x4c, 0x5f + 318e: 4f4c .2byte 0x4f4c + 3190: 465f4b43 .4byte 0x465f4b43 + 3194: 4552 .2byte 0x4552 + 3196: 2045 .2byte 0x2045 + 3198: 0031 .2byte 0x31 + 319a: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 31a0: 3832 .2byte 0x3832 + 31a2: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f + 31a8: 414d .2byte 0x414d + 31aa: 5f58 .2byte 0x5f58 + 31ac: 205f 2e31 3831 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x38 + 31b2: 3739 .2byte 0x3739 + 31b4: 39343133 .4byte 0x39343133 + 31b8: 3335 .2byte 0x3335 + 31ba: 3735 .2byte 0x3735 + 31bc: 3332 .2byte 0x3332 + 31be: 3731 .2byte 0x3731 + 31c0: 3536 .2byte 0x3536 + 31c2: 3830 .2byte 0x3830 + 31c4: 3735 .2byte 0x3735 + 31c6: 3935 .2byte 0x3935 + 31c8: 36363233 .4byte 0x36363233 + 31cc: 3832 .2byte 0x3832 + 31ce: 3030 .2byte 0x3030 + 31d0: 65323037 lui x0,0x65323 + 31d4: 3339342b .4byte 0x3339342b + 31d8: 4632 .2byte 0x4632 + 31da: 3231 .2byte 0x3231 + 31dc: 0038 .2byte 0x38 + 31de: 5f5f 4c45 5f46 .byte 0x5f, 0x5f, 0x45, 0x4c, 0x46, 0x5f + 31e4: 205f 0031 4955 .byte 0x5f, 0x20, 0x31, 0x00, 0x55, 0x49 + 31ea: 544e .2byte 0x544e + 31ec: 3631 .2byte 0x3631 + 31ee: 435f 5f00 495f .byte 0x5f, 0x43, 0x00, 0x5f, 0x5f, 0x49 + 31f4: 544e .2byte 0x544e + 31f6: 435f3233 .4byte 0x435f3233 + 31fa: 6328 .2byte 0x6328 + 31fc: 2029 .2byte 0x2029 + 31fe: 23232063 .4byte 0x23232063 + 3202: 4c20 .2byte 0x4c20 + 3204: 4900 .2byte 0x4900 + 3206: 544e .2byte 0x544e + 3208: 3436 .2byte 0x3436 + 320a: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 3210: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 3216: 5f58 .2byte 0x5f58 + 3218: 4544 .2byte 0x4544 + 321a: 414d4943 .4byte 0x414d4943 + 321e: 5f4c .2byte 0x5f4c + 3220: 4944 .2byte 0x4944 + 3222: 205f5f47 .4byte 0x205f5f47 + 3226: 5f003633 .4byte 0x5f003633 + 322a: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 3230: 5f58 .2byte 0x5f58 + 3232: 414d .2byte 0x414d + 3234: 5f58 .2byte 0x5f58 + 3236: 3031 .2byte 0x3031 + 3238: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 323e: 3320 .2byte 0x3320 + 3240: 3830 .2byte 0x3830 + 3242: 5f00 .2byte 0x5f00 + 3244: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e + 324a: 79746e6f jal x28,4a1e0 <_start-0x7ffb5e20> + 324e: 6570 .2byte 0x6570 + 3250: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + 3256: 7461 .2byte 0x7461 + 3258: 5f65 .2byte 0x5f65 + 325a: 7261 .2byte 0x7261 + 325c: 32207367 .4byte 0x32207367 + 3260: 3130 .2byte 0x3130 + 3262: 3134 .2byte 0x3134 + 3264: 4c31 .2byte 0x4c31 + 3266: 5f00 .2byte 0x5f00 + 3268: 445f 4c42 485f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x48 + 326e: 5341 .2byte 0x5341 + 3270: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + 3276: 5f4d .2byte 0x5f4d + 3278: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 327e: 4c46 .2byte 0x4c46 + 3280: 3354 .2byte 0x3354 + 3282: 5832 .2byte 0x5832 + 3284: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f + 328a: 414d .2byte 0x414d + 328c: 5f58 .2byte 0x5f58 + 328e: 205f 2e31 3937 .byte 0x5f, 0x20, 0x31, 0x2e, 0x37, 0x39 + 3294: 33393637 lui x12,0x33393 + 3298: 3331 .2byte 0x3331 + 329a: 3834 .2byte 0x3834 + 329c: 3236 .2byte 0x3236 + 329e: 37353133 .4byte 0x37353133 + 32a2: 3830 .2byte 0x3830 + 32a4: 3431 .2byte 0x3431 + 32a6: 3235 .2byte 0x3235 + 32a8: 33323437 lui x8,0x33323 + 32ac: 37313337 lui x6,0x37313 + 32b0: 3430 .2byte 0x3430 + 32b2: 65373533 .4byte 0x65373533 + 32b6: 3830332b .4byte 0x3830332b + 32ba: 3346 .2byte 0x3346 + 32bc: 7832 .2byte 0x7832 + 32be: 5500 .2byte 0x5500 + 32c0: 4e49 .2byte 0x4e49 + 32c2: 3654 .2byte 0x3654 + 32c4: 5f34 .2byte 0x5f34 + 32c6: 414d .2byte 0x414d + 32c8: 2058 .2byte 0x2058 + 32ca: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 32d0: 3436 .2byte 0x3436 + 32d2: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 32d8: 5f00 .2byte 0x5f00 + 32da: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 + 32e0: 7761 .2byte 0x7761 + 32e2: 735f 7274 6e69 .byte 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e + 32e8: 32207367 .4byte 0x32207367 + 32ec: 3030 .2byte 0x3030 + 32ee: 4c303137 lui x2,0x4c303 + 32f2: 5f00 .2byte 0x5f00 + 32f4: 445f 4c42 445f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x44 + 32fa: 4e45 .2byte 0x4e45 + 32fc: 5f4d524f .4byte 0x5f4d524f + 3300: 494d .2byte 0x494d + 3302: 5f4e .2byte 0x5f4e + 3304: 205f 6f64 6275 .byte 0x5f, 0x20, 0x64, 0x6f, 0x75, 0x62 + 330a: 656c .2byte 0x656c + 330c: 3428 .2byte 0x3428 + 330e: 392e .2byte 0x392e + 3310: 3034 .2byte 0x3034 + 3312: 3536 .2byte 0x3536 + 3314: 3436 .2byte 0x3436 + 3316: 3835 .2byte 0x3835 + 3318: 3134 .2byte 0x3134 + 331a: 3432 .2byte 0x3432 + 331c: 3536 .2byte 0x3536 + 331e: 3434 .2byte 0x3434 + 3320: 3731 .2byte 0x3731 + 3322: 3536 .2byte 0x3536 + 3324: 3836 .2byte 0x3836 + 3326: 38323937 lui x18,0x38323 + 332a: 3836 .2byte 0x3836 + 332c: 3232 .2byte 0x3232 + 332e: 3331 .2byte 0x3331 + 3330: 2d653237 lui x4,0x2d653 + 3334: 4c343233 .4byte 0x4c343233 + 3338: 0029 .2byte 0x29 + 333a: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 3340: 5f32 .2byte 0x5f32 + 3342: 414d .2byte 0x414d + 3344: 5f58 .2byte 0x5f58 + 3346: 3031 .2byte 0x3031 + 3348: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 334e: 3320 .2byte 0x3320 + 3350: 0038 .2byte 0x38 + 3352: 4955 .2byte 0x4955 + 3354: 544e .2byte 0x544e + 3356: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + 335c: 5f36 .2byte 0x5f36 + 335e: 414d .2byte 0x414d + 3360: 0058 .2byte 0x58 + 3362: 4955 .2byte 0x4955 + 3364: 544e .2byte 0x544e + 3366: 3436 .2byte 0x3436 + 3368: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 336e: 635f 7070 735f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x73 + 3374: 6174 .2byte 0x6174 + 3376: 6974 .2byte 0x6974 + 3378: 73615f63 bge x2,x22,3ab6 <_start-0x7fffc54a> + 337c: 74726573 .4byte 0x74726573 + 3380: 3220 .2byte 0x3220 + 3382: 3130 .2byte 0x3130 + 3384: 3134 .2byte 0x3134 + 3386: 4c31 .2byte 0x4c31 + 3388: 5f00 .2byte 0x5f00 + 338a: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 3390: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + 3396: 5f4d .2byte 0x5f4d + 3398: 494d .2byte 0x494d + 339a: 5f4e .2byte 0x5f4e + 339c: 205f 2e34 3439 .byte 0x5f, 0x20, 0x34, 0x2e, 0x39, 0x34 + 33a2: 3630 .2byte 0x3630 + 33a4: 3635 .2byte 0x3635 + 33a6: 3534 .2byte 0x3534 + 33a8: 3438 .2byte 0x3438 + 33aa: 3231 .2byte 0x3231 + 33ac: 3634 .2byte 0x3634 + 33ae: 3435 .2byte 0x3435 + 33b0: 3134 .2byte 0x3134 + 33b2: 36353637 lui x12,0x36353 + 33b6: 3738 .2byte 0x3738 + 33b8: 3239 .2byte 0x3239 + 33ba: 3638 .2byte 0x3638 + 33bc: 3238 .2byte 0x3238 + 33be: 3132 .2byte 0x3132 + 33c0: 65323733 .4byte 0x65323733 + 33c4: 332d .2byte 0x332d + 33c6: 3432 .2byte 0x3432 + 33c8: 3646 .2byte 0x3646 + 33ca: 0034 .2byte 0x34 + 33cc: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 33d2: 454c .2byte 0x454c + 33d4: 5341 .2byte 0x5341 + 33d6: 3354 .2byte 0x3354 + 33d8: 5f32 .2byte 0x5f32 + 33da: 414d .2byte 0x414d + 33dc: 5f58 .2byte 0x5f58 + 33de: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 33e4: 6666 .2byte 0x6666 + 33e6: 6666 .2byte 0x6666 + 33e8: 6666 .2byte 0x6666 + 33ea: 004c .2byte 0x4c + 33ec: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 33f2: 4d5f 5841 315f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x31 + 33f8: 5f30 .2byte 0x5f30 + 33fa: 5845 .2byte 0x5845 + 33fc: 5f50 .2byte 0x5f50 + 33fe: 205f 3934 3233 .byte 0x5f, 0x20, 0x34, 0x39, 0x33, 0x32 + 3404: 5f00 .2byte 0x5f00 + 3406: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 340c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 3412: 3320 .2byte 0x3320 + 3414: 342e .2byte 0x342e + 3416: 3230 .2byte 0x3230 + 3418: 3238 .2byte 0x3238 + 341a: 36363433 .4byte 0x36363433 + 341e: 32353833 .4byte 0x32353833 + 3422: 3838 .2byte 0x3838 + 3424: 3935 .2byte 0x3935 + 3426: 3138 .2byte 0x3138 + 3428: 3731 .2byte 0x3731 + 342a: 3430 .2byte 0x3430 + 342c: 3831 .2byte 0x3831 + 342e: 34383433 .4byte 0x34383433 + 3432: 3135 .2byte 0x3135 + 3434: 3936 .2byte 0x3936 + 3436: 3532 .2byte 0x3532 + 3438: 2b65 .2byte 0x2b65 + 343a: 33463833 .4byte 0x33463833 + 343e: 0032 .2byte 0x32 + 3440: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 3446: 414d .2byte 0x414d + 3448: 5f58 .2byte 0x5f58 + 344a: 414d .2byte 0x414d + 344c: 5f58 .2byte 0x5f58 + 344e: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 3454: 6666 .2byte 0x6666 + 3456: 6666 .2byte 0x6666 + 3458: 6666 .2byte 0x6666 + 345a: 6666 .2byte 0x6666 + 345c: 6666 .2byte 0x6666 + 345e: 6666 .2byte 0x6666 + 3460: 6666 .2byte 0x6666 + 3462: 4c55 .2byte 0x4c55 + 3464: 004c .2byte 0x4c + 3466: 5f5f 4953 5f47 .byte 0x5f, 0x5f, 0x53, 0x49, 0x47, 0x5f + 346c: 5441 .2byte 0x5441 + 346e: 43494d4f .4byte 0x43494d4f + 3472: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 3478: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + 347e: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 3484: 657a6973 .4byte 0x657a6973 + 3488: 5f64 .2byte 0x5f64 + 348a: 6564 .2byte 0x6564 + 348c: 6c61 .2byte 0x6c61 + 348e: 6f6c .2byte 0x6f6c + 3490: 69746163 bltu x8,x23,3b12 <_start-0x7fffc4ee> + 3494: 32206e6f jal x28,97b6 <_start-0x7fff684a> + 3498: 3130 .2byte 0x3130 + 349a: 4c393033 .4byte 0x4c393033 + 349e: 5f00 .2byte 0x5f00 + 34a0: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 34a6: 5f38 .2byte 0x5f38 + 34a8: 4148 .2byte 0x4148 + 34aa: 45445f53 .4byte 0x45445f53 + 34ae: 4f4e .2byte 0x4f4e + 34b0: 4d52 .2byte 0x4d52 + 34b2: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 34b8: 635f 7070 765f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x76 + 34be: 7261 .2byte 0x7261 + 34c0: 6169 .2byte 0x6169 + 34c2: 6964 .2byte 0x6964 + 34c4: 73755f63 bge x10,x23,3c02 <_start-0x7fffc3fe> + 34c8: 6e69 .2byte 0x6e69 + 34ca: 30322067 .4byte 0x30322067 + 34ce: 3631 .2byte 0x3631 + 34d0: 3131 .2byte 0x3131 + 34d2: 004c .2byte 0x4c + 34d4: 4e49 .2byte 0x4e49 + 34d6: 5f54 .2byte 0x5f54 + 34d8: 454c .2byte 0x454c + 34da: 5341 .2byte 0x5341 + 34dc: 3354 .2byte 0x3354 + 34de: 5f32 .2byte 0x5f32 + 34e0: 414d .2byte 0x414d + 34e2: 2058 .2byte 0x2058 + 34e4: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 34ea: 454c .2byte 0x454c + 34ec: 5341 .2byte 0x5341 + 34ee: 3354 .2byte 0x3354 + 34f0: 5f32 .2byte 0x5f32 + 34f2: 414d .2byte 0x414d + 34f4: 5f58 .2byte 0x5f58 + 34f6: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c + 34fc: 3154 .2byte 0x3154 + 34fe: 3832 .2byte 0x3832 + 3500: 495f 5f53 4549 .byte 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x45 + 3506: 30365f43 .4byte 0x30365f43 + 350a: 3535 .2byte 0x3535 + 350c: 5f39 .2byte 0x5f39 + 350e: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + 3514: 444c .2byte 0x444c + 3516: 4c42 .2byte 0x4c42 + 3518: 485f 5341 445f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x44 + 351e: 4e45 .2byte 0x4e45 + 3520: 5f4d524f .4byte 0x5f4d524f + 3524: 205f 0031 4955 .byte 0x5f, 0x20, 0x31, 0x00, 0x55, 0x49 + 352a: 544e .2byte 0x544e + 352c: 5450 .2byte 0x5450 + 352e: 5f52 .2byte 0x5f52 + 3530: 414d .2byte 0x414d + 3532: 0058 .2byte 0x58 + 3534: 4e49 .2byte 0x4e49 + 3536: 3354 .2byte 0x3354 + 3538: 5f32 .2byte 0x5f32 + 353a: 494d .2byte 0x494d + 353c: 204e .2byte 0x204e + 353e: 2d28 .2byte 0x2d28 + 3540: 4e49 .2byte 0x4e49 + 3542: 3354 .2byte 0x3354 + 3544: 5f32 .2byte 0x5f32 + 3546: 414d .2byte 0x414d + 3548: 2058 .2byte 0x2058 + 354a: 202d .2byte 0x202d + 354c: 2931 .2byte 0x2931 + 354e: 5f00 .2byte 0x5f00 + 3550: 445f 4c42 445f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x44 + 3556: 4749 .2byte 0x4749 + 3558: 5f5f 3120 0035 .byte 0x5f, 0x5f, 0x20, 0x31, 0x35, 0x00 + 355e: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 3564: 4148 .2byte 0x4148 + 3566: 45445f53 .4byte 0x45445f53 + 356a: 4f4e .2byte 0x4f4e + 356c: 4d52 .2byte 0x4d52 + 356e: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 3574: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 357a: 5341 .2byte 0x5341 + 357c: 3654 .2byte 0x3654 + 357e: 5f34 .2byte 0x5f34 + 3580: 54444957 .4byte 0x54444957 + 3584: 5f48 .2byte 0x5f48 + 3586: 205f 3436 5f00 .byte 0x5f, 0x20, 0x36, 0x34, 0x00, 0x5f + 358c: 445f 4c42 445f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x44 + 3592: 4345 .2byte 0x4345 + 3594: 4d49 .2byte 0x4d49 + 3596: 4c41 .2byte 0x4c41 + 3598: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 359e: 3120 .2byte 0x3120 + 35a0: 6c730037 lui x0,0x6c730 + 35a4: 006f776f jal x14,fa5aa <_start-0x7ff05a56> + 35a8: 796d .2byte 0x796d + 35aa: 7566 .2byte 0x7566 + 35ac: 636e .2byte 0x636e + 35ae: 485f 0020 6975 .byte 0x5f, 0x48, 0x20, 0x00, 0x75, 0x69 + 35b4: 746e .2byte 0x746e + 35b6: 5f38 .2byte 0x5f38 + 35b8: 0074 .2byte 0x74 + 35ba: 5a5f 3631 6f63 .byte 0x5f, 0x5a, 0x31, 0x36, 0x63, 0x6f + 35c0: 6e75 .2byte 0x6e75 + 35c2: 5f74 .2byte 0x5f74 + 35c4: 72616863 bltu x2,x6,3cf4 <_start-0x7fffc30c> + 35c8: 6361 .2byte 0x6361 + 35ca: 6574 .2byte 0x6574 + 35cc: 7372 .2byte 0x7372 + 35ce: 4b50 .2byte 0x4b50 + 35d0: 5f305363 bge x0,x19,3bb6 <_start-0x7fffc44a> + 35d4: 6850 .2byte 0x6850 + 35d6: 6100 .2byte 0x6100 + 35d8: 666c .2byte 0x666c + 35da: 6261 .2byte 0x6261 + 35dc: 7465 .2byte 0x7465 + 35de: 6c5f 6e65 7467 .byte 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74 + 35e4: 0068 .2byte 0x68 + 35e6: 6e756f63 bltu x10,x7,3ce4 <_start-0x7fffc31c> + 35ea: 5f74 .2byte 0x5f74 + 35ec: 72616863 bltu x2,x6,3d1c <_start-0x7fffc2e4> + 35f0: 6361 .2byte 0x6361 + 35f2: 6574 .2byte 0x6574 + 35f4: 7372 .2byte 0x7372 + 35f6: 6d00 .2byte 0x6d00 + 35f8: 5f79 .2byte 0x5f79 + 35fa: 6c727473 .4byte 0x6c727473 + 35fe: 6e65 .2byte 0x6e65 + 3600: 7700 .2byte 0x7700 + 3602: 6e79 .2byte 0x6e79 + 3604: 6b69 .2byte 0x6b69 + 3606: 6100 .2byte 0x6100 + 3608: 666c .2byte 0x666c + 360a: 6261 .2byte 0x6261 + 360c: 7465 .2byte 0x7465 + ... + +Disassembly of section .debug_line_str: + +00000000 <.debug_line_str>: + 0: 6d6f682f .4byte 0x6d6f682f + 4: 2f65 .2byte 0x2f65 + 6: 7375 .2byte 0x7375 + 8: 7265 .2byte 0x7265 + a: 726f772f .4byte 0x726f772f + e: 70632f6b .4byte 0x70632f6b + 12: 2f70 .2byte 0x2f70 + 14: 00707063 bgeu x0,x7,14 <_start-0x7fffffec> + 18: 635f 7472 2e30 .byte 0x5f, 0x63, 0x72, 0x74, 0x30, 0x2e + 1e: 725f0053 .4byte 0x725f0053 + 22: 6d76 .2byte 0x6d76 + 24: 6961 .2byte 0x6961 + 26: 2e6e .2byte 0x2e6e + 28: 00707063 bgeu x0,x7,28 <_start-0x7fffffd8> + 2c: 6d6f682f .4byte 0x6d6f682f + 30: 2f65 .2byte 0x2f65 + 32: 7375 .2byte 0x7375 + 34: 7265 .2byte 0x7265 + 36: 7369722f .4byte 0x7369722f + 3a: 722f7663 bgeu x30,x2,766 <_start-0x7ffff89a> + 3e: 7369 .2byte 0x7369 + 40: 6c2f7663 bgeu x30,x2,70c <_start-0x7ffff8f4> + 44: 6269 .2byte 0x6269 + 46: 6363672f .4byte 0x6363672f + 4a: 7369722f .4byte 0x7369722f + 4e: 34367663 bgeu x12,x3,39a <_start-0x7ffffc66> + 52: 752d .2byte 0x752d + 54: 6b6e .2byte 0x6b6e + 56: 6f6e .2byte 0x6f6e + 58: 652d6e77 .4byte 0x652d6e77 + 5c: 666c .2byte 0x666c + 5e: 2e32312f .4byte 0x2e32312f + 62: 2e32 .2byte 0x2e32 + 64: 2f30 .2byte 0x2f30 + 66: 6e69 .2byte 0x6e69 + 68: 64756c63 bltu x10,x7,6c0 <_start-0x7ffff940> + 6c: 0065 .2byte 0x65 + 6e: 69647473 .4byte 0x69647473 + 72: 746e .2byte 0x746e + 74: 682e .2byte 0x682e + 76: 7300 .2byte 0x7300 + 78: 6474 .2byte 0x6474 + 7a: 6e69 .2byte 0x6e69 + 7c: 2d74 .2byte 0x2d74 + 7e: 2e636367 .4byte 0x2e636367 + 82: 0068 .2byte 0x68 + 84: 796d .2byte 0x796d + 86: 7566 .2byte 0x7566 + 88: 636e .2byte 0x636e + 8a: 632e .2byte 0x632e + 8c: 7070 .2byte 0x7070 + 8e: 6d00 .2byte 0x6d00 + 90: 6679 .2byte 0x6679 + 92: 6e75 .2byte 0x6e75 + 94: 00682e63 .4byte 0x682e63 + +Disassembly of section .debug_macro: + +00000000 <.debug_macro>: + 0: 0005 .2byte 0x5 + 2: 6e02 .2byte 0x6e02 + 4: 0000 .2byte 0x0 + 6: 0700 .2byte 0x700 + 8: 0036 .2byte 0x36 + a: 0000 .2byte 0x0 + c: 03010003 lb x0,48(x2) # 4c303030 <_start-0x33cfcfd0> + 10: 0201 .2byte 0x201 + 12: 07030b03 lb x22,112(x6) # 37313070 <_start-0x48cecf90> + 16: 08c2 .2byte 0x8c2 + 18: 0000 .2byte 0x0 + 1a: 0504 .2byte 0x504 + 1c: 7f0d .2byte 0x7f0d + 1e: 04000003 lb x0,64(x0) # 40 <_start-0x7fffffc0> + 22: 0e05 .2byte 0xe05 + 24: 000017ab .4byte 0x17ab + 28: 2505 .2byte 0x2505 + 2a: 207e .2byte 0x207e + 2c: 0000 .2byte 0x0 + 2e: 3105 .2byte 0x3105 + 30: 280e .2byte 0x280e + 32: 0000 .2byte 0x0 + 34: 0004 .2byte 0x4 + 36: 0005 .2byte 0x5 + 38: 0500 .2byte 0x500 + 3a: a000 .2byte 0xa000 + 3c: 0500001b .4byte 0x500001b + 40: 2800 .2byte 0x2800 + 42: 002c .2byte 0x2c + 44: 0500 .2byte 0x500 + 46: 5f00 .2byte 0x5f00 + 48: 001e .2byte 0x1e + 4a: 0500 .2byte 0x500 + 4c: 5c00 .2byte 0x5c00 + 4e: 0008 .2byte 0x8 + 50: 0500 .2byte 0x500 + 52: 7100 .2byte 0x7100 + 54: 002a .2byte 0x2a + 56: 0500 .2byte 0x500 + 58: 7600 .2byte 0x7600 + 5a: 000c .2byte 0xc + 5c: 0500 .2byte 0x500 + 5e: b500 .2byte 0xb500 + 60: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> + 64: 1800 .2byte 0x1800 + 66: 001d .2byte 0x1d + 68: 0500 .2byte 0x500 + 6a: 0100 .2byte 0x100 + 6c: 0021 .2byte 0x21 + 6e: 0500 .2byte 0x500 + 70: 3b00 .2byte 0x3b00 + 72: 0009 .2byte 0x9 + 74: 0500 .2byte 0x500 + 76: 8d00 .2byte 0x8d00 + 78: 0006 .2byte 0x6 + 7a: 0500 .2byte 0x500 + 7c: a700 .2byte 0xa700 + 7e: 0020 .2byte 0x20 + 80: 0500 .2byte 0x500 + 82: d000 .2byte 0xd000 + 84: 0005 .2byte 0x5 + 86: 0500 .2byte 0x500 + 88: 6800 .2byte 0x6800 + 8a: 0500002b .4byte 0x500002b + 8e: 4700 .2byte 0x4700 + 90: 001a .2byte 0x1a + 92: 0500 .2byte 0x500 + 94: 0c00 .2byte 0xc00 + 96: 0019 .2byte 0x19 + 98: 0500 .2byte 0x500 + 9a: f700 .2byte 0xf700 + 9c: 002e .2byte 0x2e + 9e: 0500 .2byte 0x500 + a0: ab00 .2byte 0xab00 + a2: 0500001b .4byte 0x500001b + a6: 5500 .2byte 0x5500 + a8: 05000027 .4byte 0x5000027 + ac: a000 .2byte 0xa000 + ae: 0006 .2byte 0x6 + b0: 0500 .2byte 0x500 + b2: 3d00 .2byte 0x3d00 + b4: 0500001b .4byte 0x500001b + b8: 0400 .2byte 0x400 + ba: 001d .2byte 0x1d + bc: 0500 .2byte 0x500 + be: f900 .2byte 0xf900 + c0: 000d .2byte 0xd + c2: 0500 .2byte 0x500 + c4: 9100 .2byte 0x9100 + c6: 0004 .2byte 0x4 + c8: 0500 .2byte 0x500 + ca: 9800 .2byte 0x9800 + cc: 0018 .2byte 0x18 + ce: 0500 .2byte 0x500 + d0: bd00 .2byte 0xbd00 + d2: 0030 .2byte 0x30 + d4: 0500 .2byte 0x500 + d6: 8800 .2byte 0x8800 + d8: 0500000f fence ow,unknown + dc: 2300 .2byte 0x2300 + de: 0005 .2byte 0x5 + e0: 0500 .2byte 0x500 + e2: a900 .2byte 0xa900 + e4: 0022 .2byte 0x22 + e6: 0500 .2byte 0x500 + e8: 5a00 .2byte 0x5a00 + ea: 05000007 .4byte 0x5000007 + ee: d500 .2byte 0xd500 + f0: 001f 0500 8b00 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x8b + f6: 0028 .2byte 0x28 + f8: 0500 .2byte 0x500 + fa: dd00 .2byte 0xdd00 + fc: 0008 .2byte 0x8 + fe: 0500 .2byte 0x500 + 100: 9300 .2byte 0x9300 + 102: 002c .2byte 0x2c + 104: 0500 .2byte 0x500 + 106: b900 .2byte 0xb900 + 108: 0024 .2byte 0x24 + 10a: 0500 .2byte 0x500 + 10c: fe00 .2byte 0xfe00 + 10e: 002c .2byte 0x2c + 110: 0500 .2byte 0x500 + 112: fa00 .2byte 0xfa00 + 114: 0005 .2byte 0x5 + 116: 0500 .2byte 0x500 + 118: e700 .2byte 0xe700 + 11a: 000c .2byte 0xc + 11c: 0500 .2byte 0x500 + 11e: e300 .2byte 0xe300 + 120: 002c .2byte 0x2c + 122: 0500 .2byte 0x500 + 124: 2600 .2byte 0x2600 + 126: 0500002f .4byte 0x500002f + 12a: ad00 .2byte 0xad00 + 12c: 0021 .2byte 0x21 + 12e: 0500 .2byte 0x500 + 130: a500 .2byte 0xa500 + 132: 0004 .2byte 0x4 + 134: 0500 .2byte 0x500 + 136: ba00 .2byte 0xba00 + 138: 0020 .2byte 0x20 + 13a: 0500 .2byte 0x500 + 13c: 6600 .2byte 0x6600 + 13e: 0034 .2byte 0x34 + 140: 0500 .2byte 0x500 + 142: c800 .2byte 0xc800 + 144: 0025 .2byte 0x25 + 146: 0500 .2byte 0x500 + 148: 2300 .2byte 0x2300 + 14a: 0006 .2byte 0x6 + 14c: 0500 .2byte 0x500 + 14e: 4e00 .2byte 0x4e00 + 150: 0024 .2byte 0x24 + 152: 0500 .2byte 0x500 + 154: 9e00 .2byte 0x9e00 + 156: 0012 .2byte 0x12 + 158: 0500 .2byte 0x500 + 15a: 7b00 .2byte 0x7b00 + 15c: 05000027 .4byte 0x5000027 + 160: d600 .2byte 0xd600 + 162: 0011 .2byte 0x11 + 164: 0500 .2byte 0x500 + 166: 4200 .2byte 0x4200 + 168: 0028 .2byte 0x28 + 16a: 0500 .2byte 0x500 + 16c: 0000 .2byte 0x0 + 16e: 0030 .2byte 0x30 + 170: 0500 .2byte 0x500 + 172: cb00 .2byte 0xcb00 + 174: 0006 .2byte 0x6 + 176: 0500 .2byte 0x500 + 178: 2200 .2byte 0x2200 + 17a: 05000017 auipc x0,0x5000 + 17e: 0c00 .2byte 0xc00 + 180: 000d .2byte 0xd + 182: 0500 .2byte 0x500 + 184: 1f00 .2byte 0x1f00 + 186: 0028 .2byte 0x28 + 188: 0500 .2byte 0x500 + 18a: e900 .2byte 0xe900 + 18c: 0018 .2byte 0x18 + 18e: 0500 .2byte 0x500 + 190: c300 .2byte 0xc300 + 192: 0022 .2byte 0x22 + 194: 0500 .2byte 0x500 + 196: 8500 .2byte 0x8500 + 198: 0021 .2byte 0x21 + 19a: 0500 .2byte 0x500 + 19c: 6d00 .2byte 0x6d00 + 19e: 0005 .2byte 0x5 + 1a0: 0500 .2byte 0x500 + 1a2: 4500 .2byte 0x4500 + 1a4: 000e .2byte 0xe + 1a6: 0500 .2byte 0x500 + 1a8: ac00 .2byte 0xac00 + 1aa: 0011 .2byte 0x11 + 1ac: 0500 .2byte 0x500 + 1ae: 6400 .2byte 0x6400 + 1b0: 0030 .2byte 0x30 + 1b2: 0500 .2byte 0x500 + 1b4: df00 .2byte 0xdf00 + 1b6: 0009 .2byte 0x9 + 1b8: 0500 .2byte 0x500 + 1ba: 7a00 .2byte 0x7a00 + 1bc: 0000 .2byte 0x0 + 1be: 0500 .2byte 0x500 + 1c0: 6100 .2byte 0x6100 + 1c2: 0014 .2byte 0x14 + 1c4: 0500 .2byte 0x500 + 1c6: c100 .2byte 0xc100 + 1c8: 002c .2byte 0x2c + 1ca: 0500 .2byte 0x500 + 1cc: 7b00 .2byte 0x7b00 + 1ce: 0500002b .4byte 0x500002b + 1d2: 1400 .2byte 0x1400 + 1d4: 002c .2byte 0x2c + 1d6: 0500 .2byte 0x500 + 1d8: 7900 .2byte 0x7900 + 1da: 000a .2byte 0xa + 1dc: 0500 .2byte 0x500 + 1de: a500 .2byte 0xa500 + 1e0: 0010 .2byte 0x10 + 1e2: 0500 .2byte 0x500 + 1e4: 4700 .2byte 0x4700 + 1e6: 0018 .2byte 0x18 + 1e8: 0500 .2byte 0x500 + 1ea: 9b00 .2byte 0x9b00 + 1ec: 002e .2byte 0x2e + 1ee: 0500 .2byte 0x500 + 1f0: 5400 .2byte 0x5400 + 1f2: 0022 .2byte 0x22 + 1f4: 0500 .2byte 0x500 + 1f6: c600 .2byte 0xc600 + 1f8: 001d .2byte 0x1d + 1fa: 0500 .2byte 0x500 + 1fc: fc00 .2byte 0xfc00 + 1fe: 000e .2byte 0xe + 200: 0500 .2byte 0x500 + 202: 1100 .2byte 0x1100 + 204: 0004 .2byte 0x4 + 206: 0500 .2byte 0x500 + 208: 3700 .2byte 0x3700 + 20a: 0022 .2byte 0x22 + 20c: 0500 .2byte 0x500 + 20e: d900 .2byte 0xd900 + 210: 0032 .2byte 0x32 + 212: 0500 .2byte 0x500 + 214: bc00 .2byte 0xbc00 + 216: 0500000f fence ow,unknown + 21a: a200 .2byte 0xa200 + 21c: 0500002f .4byte 0x500002f + 220: 3100 .2byte 0x3100 + 222: 002d .2byte 0x2d + 224: 0500 .2byte 0x500 + 226: 0000 .2byte 0x0 + 228: 0018 .2byte 0x18 + 22a: 0500 .2byte 0x500 + 22c: 1700 .2byte 0x1700 + 22e: 0018 .2byte 0x18 + 230: 0500 .2byte 0x500 + 232: 6d00 .2byte 0x6d00 + 234: 0015 .2byte 0x15 + 236: 0500 .2byte 0x500 + 238: 4b00 .2byte 0x4b00 + 23a: 001c .2byte 0x1c + 23c: 0500 .2byte 0x500 + 23e: f300 .2byte 0xf300 + 240: 001d .2byte 0x1d + 242: 0500 .2byte 0x500 + 244: e000 .2byte 0xe000 + 246: 0028 .2byte 0x28 + 248: 0500 .2byte 0x500 + 24a: 4e00 .2byte 0x4e00 + 24c: 0500002f .4byte 0x500002f + 250: a700 .2byte 0xa700 + 252: 0018 .2byte 0x18 + 254: 0500 .2byte 0x500 + 256: 5400 .2byte 0x5400 + 258: 002c .2byte 0x2c + 25a: 0500 .2byte 0x500 + 25c: 3d00 .2byte 0x3d00 + 25e: 05000007 .4byte 0x5000007 + 262: ef00 .2byte 0xef00 + 264: 000a .2byte 0xa + 266: 0500 .2byte 0x500 + 268: f800 .2byte 0xf800 + 26a: 05000007 .4byte 0x5000007 + 26e: 9900 .2byte 0x9900 + 270: 0009 .2byte 0x9 + 272: 0500 .2byte 0x500 + 274: 5600 .2byte 0x5600 + 276: 0018 .2byte 0x18 + 278: 0500 .2byte 0x500 + 27a: ab00 .2byte 0xab00 + 27c: 001c .2byte 0x1c + 27e: 0500 .2byte 0x500 + 280: 0800 .2byte 0x800 + 282: 0500002f .4byte 0x500002f + 286: 3600 .2byte 0x3600 + 288: 0015 .2byte 0x15 + 28a: 0500 .2byte 0x500 + 28c: 9a00 .2byte 0x9a00 + 28e: 0005 .2byte 0x5 + 290: 0500 .2byte 0x500 + 292: 9c00 .2byte 0x9c00 + 294: 0030 .2byte 0x30 + 296: 0500 .2byte 0x500 + 298: 6d00 .2byte 0x6d00 + 29a: 05000033 .4byte 0x5000033 + 29e: b200 .2byte 0xb200 + 2a0: 0000 .2byte 0x0 + 2a2: 0500 .2byte 0x500 + 2a4: 5c00 .2byte 0x5c00 + 2a6: 000e .2byte 0xe + 2a8: 0500 .2byte 0x500 + 2aa: 6e00 .2byte 0x6e00 + 2ac: 05000013 addi x0,x0,80 + 2b0: 3c00 .2byte 0x3c00 + 2b2: 0021 .2byte 0x21 + 2b4: 0500 .2byte 0x500 + 2b6: 4300 .2byte 0x4300 + 2b8: 0032 .2byte 0x32 + 2ba: 0500 .2byte 0x500 + 2bc: db00 .2byte 0xdb00 + 2be: 000d .2byte 0xd + 2c0: 0500 .2byte 0x500 + 2c2: 2a00 .2byte 0x2a00 + 2c4: 000d .2byte 0xd + 2c6: 0500 .2byte 0x500 + 2c8: 8100 .2byte 0x8100 + 2ca: 0026 .2byte 0x26 + 2cc: 0500 .2byte 0x500 + 2ce: 7c00 .2byte 0x7c00 + 2d0: 0030 .2byte 0x30 + 2d2: 0500 .2byte 0x500 + 2d4: 7100 .2byte 0x7100 + 2d6: 001e .2byte 0x1e + 2d8: 0500 .2byte 0x500 + 2da: 9b00 .2byte 0x9b00 + 2dc: 0024 .2byte 0x24 + 2de: 0500 .2byte 0x500 + 2e0: 3200 .2byte 0x3200 + 2e2: 0002 .2byte 0x2 + 2e4: 0500 .2byte 0x500 + 2e6: 5400 .2byte 0x5400 + 2e8: 000a .2byte 0xa + 2ea: 0500 .2byte 0x500 + 2ec: 5a00 .2byte 0x5a00 + 2ee: 001a .2byte 0x1a + 2f0: 0500 .2byte 0x500 + 2f2: 1300 .2byte 0x1300 + 2f4: 0500002b .4byte 0x500002b + 2f8: b700 .2byte 0xb700 + 2fa: 0034 .2byte 0x34 + 2fc: 0500 .2byte 0x500 + 2fe: 2f00 .2byte 0x2f00 + 300: 001f 0500 7b00 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x7b + 306: 0022 .2byte 0x22 + 308: 0500 .2byte 0x500 + 30a: 7e00 .2byte 0x7e00 + 30c: 0034 .2byte 0x34 + 30e: 0500 .2byte 0x500 + 310: e300 .2byte 0xe300 + 312: 001c .2byte 0x1c + 314: 0500 .2byte 0x500 + 316: 5100 .2byte 0x5100 + 318: 05000017 auipc x0,0x5000 + 31c: c000 .2byte 0xc000 + 31e: 002d .2byte 0x2d + 320: 0500 .2byte 0x500 + 322: ad00 .2byte 0xad00 + 324: 002a .2byte 0x2a + 326: 0500 .2byte 0x500 + 328: 2e00 .2byte 0x2e00 + 32a: 0000 .2byte 0x0 + 32c: 0500 .2byte 0x500 + 32e: a400 .2byte 0xa400 + 330: 0015 .2byte 0x15 + 332: 0500 .2byte 0x500 + 334: 2100 .2byte 0x2100 + 336: 0024 .2byte 0x24 + 338: 0500 .2byte 0x500 + 33a: 8900 .2byte 0x8900 + 33c: 0008 .2byte 0x8 + 33e: 0500 .2byte 0x500 + 340: 6700 .2byte 0x6700 + 342: 0022 .2byte 0x22 + 344: 0500 .2byte 0x500 + 346: b900 .2byte 0xb900 + 348: 0005 .2byte 0x5 + 34a: 0500 .2byte 0x500 + 34c: 6b00 .2byte 0x6b00 + 34e: 001c .2byte 0x1c + 350: 0500 .2byte 0x500 + 352: 7700 .2byte 0x7700 + 354: 0012 .2byte 0x12 + 356: 0500 .2byte 0x500 + 358: 0000 .2byte 0x0 + 35a: 0029 .2byte 0x29 + 35c: 0500 .2byte 0x500 + 35e: 1c00 .2byte 0x1c00 + 360: 0008 .2byte 0x8 + 362: 0500 .2byte 0x500 + 364: e200 .2byte 0xe200 + 366: 0025 .2byte 0x25 + 368: 0500 .2byte 0x500 + 36a: e300 .2byte 0xe300 + 36c: 001d .2byte 0x1d + 36e: 0500 .2byte 0x500 + 370: 0d00 .2byte 0xd00 + 372: 000c .2byte 0xc + 374: 0500 .2byte 0x500 + 376: 6800 .2byte 0x6800 + 378: 0009 .2byte 0x9 + 37a: 0500 .2byte 0x500 + 37c: 9900 .2byte 0x9900 + 37e: 001c .2byte 0x1c + 380: 0500 .2byte 0x500 + 382: 9800 .2byte 0x9800 + 384: 05000027 .4byte 0x5000027 + 388: 5700 .2byte 0x5700 + 38a: 0029 .2byte 0x29 + 38c: 0500 .2byte 0x500 + 38e: 9500 .2byte 0x9500 + 390: 0020 .2byte 0x20 + 392: 0500 .2byte 0x500 + 394: 9b00 .2byte 0x9b00 + 396: 0002 .2byte 0x2 + 398: 0500 .2byte 0x500 + 39a: 3300 .2byte 0x3300 + 39c: 0012 .2byte 0x12 + 39e: 0500 .2byte 0x500 + 3a0: 3600 .2byte 0x3600 + 3a2: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> + 3a6: 4400 .2byte 0x4400 + 3a8: 0005 .2byte 0x5 + 3aa: 0500 .2byte 0x500 + 3ac: 0200 .2byte 0x200 + 3ae: 0020 .2byte 0x20 + 3b0: 0500 .2byte 0x500 + 3b2: 1a00 .2byte 0x1a00 + 3b4: 0500000f fence ow,unknown + 3b8: 5b00 .2byte 0x5b00 + 3ba: 002a .2byte 0x2a + 3bc: 0500 .2byte 0x500 + 3be: 4000 .2byte 0x4000 + 3c0: 0034 .2byte 0x34 + 3c2: 0500 .2byte 0x500 + 3c4: 2500 .2byte 0x2500 + 3c6: 05000007 .4byte 0x5000007 + 3ca: e700 .2byte 0xe700 + 3cc: 0016 .2byte 0x16 + 3ce: 0500 .2byte 0x500 + 3d0: 1700 .2byte 0x1700 + 3d2: 0011 .2byte 0x11 + 3d4: 0500 .2byte 0x500 + 3d6: 4800 .2byte 0x4800 + 3d8: 0020 .2byte 0x20 + 3da: 0500 .2byte 0x500 + 3dc: 0500 .2byte 0x500 + 3de: 0022 .2byte 0x22 + 3e0: 0500 .2byte 0x500 + 3e2: fa00 .2byte 0xfa00 + 3e4: 000c .2byte 0xc + 3e6: 0500 .2byte 0x500 + 3e8: 8400 .2byte 0x8400 + 3ea: 001c .2byte 0x1c + 3ec: 0500 .2byte 0x500 + 3ee: 0200 .2byte 0x200 + 3f0: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> + 3f4: ab00 .2byte 0xab00 + 3f6: 000c .2byte 0xc + 3f8: 0500 .2byte 0x500 + 3fa: 8600 .2byte 0x8600 + 3fc: 0016 .2byte 0x16 + 3fe: 0500 .2byte 0x500 + 400: 9900 .2byte 0x9900 + 402: 0016 .2byte 0x16 + 404: 0500 .2byte 0x500 + 406: 1300 .2byte 0x1300 + 408: 001f 0500 dc00 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0xdc + 40e: 0020 .2byte 0x20 + 410: 0500 .2byte 0x500 + 412: b300 .2byte 0xb300 + 414: 0006 .2byte 0x6 + 416: 0500 .2byte 0x500 + 418: a000 .2byte 0xa000 + 41a: 0028 .2byte 0x28 + 41c: 0500 .2byte 0x500 + 41e: 6f00 .2byte 0x6f00 + 420: 0016 .2byte 0x16 + 422: 0500 .2byte 0x500 + 424: 6e00 .2byte 0x6e00 + 426: 0008 .2byte 0x8 + 428: 0500 .2byte 0x500 + 42a: 1200 .2byte 0x1200 + 42c: 0500001b .4byte 0x500001b + 430: 2500 .2byte 0x2500 + 432: 000a .2byte 0xa + 434: 0500 .2byte 0x500 + 436: cc00 .2byte 0xcc00 + 438: 05000033 .4byte 0x5000033 + 43c: f100 .2byte 0xf100 + 43e: 0031 .2byte 0x31 + 440: 0500 .2byte 0x500 + 442: 7a00 .2byte 0x7a00 + 444: 002c .2byte 0x2c + 446: 0500 .2byte 0x500 + 448: 1f00 .2byte 0x1f00 + 44a: 0020 .2byte 0x20 + 44c: 0500 .2byte 0x500 + 44e: 9c00 .2byte 0x9c00 + 450: 0026 .2byte 0x26 + 452: 0500 .2byte 0x500 + 454: 3e00 .2byte 0x3e00 + 456: 0500000f fence ow,unknown + 45a: 9200 .2byte 0x9200 + 45c: 000c .2byte 0xc + 45e: 0500 .2byte 0x500 + 460: 7600 .2byte 0x7600 + 462: 0021 .2byte 0x21 + 464: 0500 .2byte 0x500 + 466: 4200 .2byte 0x4200 + 468: 000c .2byte 0xc + 46a: 0500 .2byte 0x500 + 46c: 8100 .2byte 0x8100 + 46e: 0004 .2byte 0x4 + 470: 0500 .2byte 0x500 + 472: 2f00 .2byte 0x2f00 + 474: 0025 .2byte 0x25 + 476: 0500 .2byte 0x500 + 478: 4b00 .2byte 0x4b00 + 47a: 0001 .2byte 0x1 + 47c: 0500 .2byte 0x500 + 47e: 5b00 .2byte 0x5b00 + 480: 000d .2byte 0xd + 482: 0500 .2byte 0x500 + 484: 8200 .2byte 0x8200 + 486: 0029 .2byte 0x29 + 488: 0500 .2byte 0x500 + 48a: 0600 .2byte 0x600 + 48c: 0005 .2byte 0x5 + 48e: 0500 .2byte 0x500 + 490: 3400 .2byte 0x3400 + 492: 0031 .2byte 0x31 + 494: 0500 .2byte 0x500 + 496: 4300 .2byte 0x4300 + 498: 0500000b .4byte 0x500000b + 49c: 3300 .2byte 0x3300 + 49e: 0001 .2byte 0x1 + 4a0: 0500 .2byte 0x500 + 4a2: 5000 .2byte 0x5000 + 4a4: 0500001b .4byte 0x500001b + 4a8: 5700 .2byte 0x5700 + 4aa: 0016 .2byte 0x16 + 4ac: 0500 .2byte 0x500 + 4ae: 0d00 .2byte 0xd00 + 4b0: 0500000b .4byte 0x500000b + 4b4: 7300 .2byte 0x7300 + 4b6: 0035 .2byte 0x35 + 4b8: 0500 .2byte 0x500 + 4ba: 3500 .2byte 0x3500 + 4bc: 0011 .2byte 0x11 + 4be: 0500 .2byte 0x500 + 4c0: 4100 .2byte 0x4100 + 4c2: 0014 .2byte 0x14 + 4c4: 0500 .2byte 0x500 + 4c6: 6100 .2byte 0x6100 + 4c8: 0026 .2byte 0x26 + 4ca: 0500 .2byte 0x500 + 4cc: 3700 .2byte 0x3700 + 4ce: 0026 .2byte 0x26 + 4d0: 0500 .2byte 0x500 + 4d2: 9300 .2byte 0x9300 + 4d4: 002a .2byte 0x2a + 4d6: 0500 .2byte 0x500 + 4d8: d500 .2byte 0xd500 + 4da: 0018 .2byte 0x18 + 4dc: 0500 .2byte 0x500 + 4de: bd00 .2byte 0xbd00 + 4e0: 0015 .2byte 0x15 + 4e2: 0500 .2byte 0x500 + 4e4: fb00 .2byte 0xfb00 + 4e6: 0016 .2byte 0x16 + 4e8: 0500 .2byte 0x500 + 4ea: fb00 .2byte 0xfb00 + 4ec: 001e .2byte 0x1e + 4ee: 0500 .2byte 0x500 + 4f0: 5700 .2byte 0x5700 + 4f2: 0015 .2byte 0x15 + 4f4: 0500 .2byte 0x500 + 4f6: 4100 .2byte 0x4100 + 4f8: 002e .2byte 0x2e + 4fa: 0500 .2byte 0x500 + 4fc: 0700 .2byte 0x700 + 4fe: 0026 .2byte 0x26 + 500: 0500 .2byte 0x500 + 502: 8600 .2byte 0x8600 + 504: 000d .2byte 0xd + 506: 0500 .2byte 0x500 + 508: 9900 .2byte 0x9900 + 50a: 05000013 addi x0,x0,80 + 50e: 3500 .2byte 0x3500 + 510: 0500000b .4byte 0x500000b + 514: 6500 .2byte 0x6500 + 516: 0031 .2byte 0x31 + 518: 0500 .2byte 0x500 + 51a: c600 .2byte 0xc600 + 51c: 000e .2byte 0xe + 51e: 0500 .2byte 0x500 + 520: 5400 .2byte 0x5400 + 522: 0500002b .4byte 0x500002b + 526: bb00 .2byte 0xbb00 + 528: 0012 .2byte 0x12 + 52a: 0500 .2byte 0x500 + 52c: ec00 .2byte 0xec00 + 52e: 0022 .2byte 0x22 + 530: 0500 .2byte 0x500 + 532: a800 .2byte 0xa800 + 534: 002e .2byte 0x2e + 536: 0500 .2byte 0x500 + 538: 2300 .2byte 0x2300 + 53a: 001e .2byte 0x1e + 53c: 0500 .2byte 0x500 + 53e: bb00 .2byte 0xbb00 + 540: 0500002b .4byte 0x500002b + 544: e500 .2byte 0xe500 + 546: 002d .2byte 0x2d + 548: 0500 .2byte 0x500 + 54a: 1900 .2byte 0x1900 + 54c: 0029 .2byte 0x29 + 54e: 0500 .2byte 0x500 + 550: 5e00 .2byte 0x5e00 + 552: 0035 .2byte 0x35 + 554: 0500 .2byte 0x500 + 556: 8900 .2byte 0x8900 + 558: 0500001b .4byte 0x500001b + 55c: df00 .2byte 0xdf00 + 55e: 002e .2byte 0x2e + 560: 0500 .2byte 0x500 + 562: e300 .2byte 0xe300 + 564: 0005 .2byte 0x5 + 566: 0500 .2byte 0x500 + 568: 5900 .2byte 0x5900 + 56a: 0005 .2byte 0x5 + 56c: 0500 .2byte 0x500 + 56e: 4f00 .2byte 0x4f00 + 570: 0035 .2byte 0x35 + 572: 0500 .2byte 0x500 + 574: 8300 .2byte 0x8300 + 576: 0002 .2byte 0x2 + 578: 0500 .2byte 0x500 + 57a: 9900 .2byte 0x9900 + 57c: 0014 .2byte 0x14 + 57e: 0500 .2byte 0x500 + 580: bd00 .2byte 0xbd00 + 582: 0500001b .4byte 0x500001b + 586: 4200 .2byte 0x4200 + 588: 0030 .2byte 0x30 + 58a: 0500 .2byte 0x500 + 58c: 8b00 .2byte 0x8b00 + 58e: 0035 .2byte 0x35 + 590: 0500 .2byte 0x500 + 592: 7700 .2byte 0x7700 + 594: 0019 .2byte 0x19 + 596: 0500 .2byte 0x500 + 598: d200 .2byte 0xd200 + 59a: 0010 .2byte 0x10 + 59c: 0500 .2byte 0x500 + 59e: 1500 .2byte 0x1500 + 5a0: 05000027 .4byte 0x5000027 + 5a4: 7d00 .2byte 0x7d00 + 5a6: 002d .2byte 0x2d + 5a8: 0500 .2byte 0x500 + 5aa: f300 .2byte 0xf300 + 5ac: 0032 .2byte 0x32 + 5ae: 0500 .2byte 0x500 + 5b0: 6700 .2byte 0x6700 + 5b2: 0032 .2byte 0x32 + 5b4: 0500 .2byte 0x500 + 5b6: 6200 .2byte 0x6200 + 5b8: 002e .2byte 0x2e + 5ba: 0500 .2byte 0x500 + 5bc: 1300 .2byte 0x1300 + 5be: 000e .2byte 0xe + 5c0: 0500 .2byte 0x500 + 5c2: 0b00 .2byte 0xb00 + 5c4: 05000017 auipc x0,0x5000 + 5c8: 0400 .2byte 0x400 + 5ca: 0002 .2byte 0x2 + 5cc: 0500 .2byte 0x500 + 5ce: 8200 .2byte 0x8200 + 5d0: 000c .2byte 0xc + 5d2: 0500 .2byte 0x500 + 5d4: 1c00 .2byte 0x1c00 + 5d6: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> + 5da: c700 .2byte 0xc700 + 5dc: 001c .2byte 0x1c + 5de: 0500 .2byte 0x500 + 5e0: af00 .2byte 0xaf00 + 5e2: 000e .2byte 0xe + 5e4: 0500 .2byte 0x500 + 5e6: ec00 .2byte 0xec00 + 5e8: 05000033 .4byte 0x5000033 + 5ec: 9900 .2byte 0x9900 + 5ee: 0029 .2byte 0x29 + 5f0: 0500 .2byte 0x500 + 5f2: 3c00 .2byte 0x3c00 + 5f4: 002c .2byte 0x2c + 5f6: 0500 .2byte 0x500 + 5f8: f900 .2byte 0xf900 + 5fa: 0011 .2byte 0x11 + 5fc: 0500 .2byte 0x500 + 5fe: 5500 .2byte 0x5500 + 600: 001f 0500 8100 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x81 + 606: 05000007 .4byte 0x5000007 + 60a: d100 .2byte 0xd100 + 60c: 0012 .2byte 0x12 + 60e: 0500 .2byte 0x500 + 610: 9c00 .2byte 0x9c00 + 612: 0008 .2byte 0x8 + 614: 0500 .2byte 0x500 + 616: 1200 .2byte 0x1200 + 618: 0035 .2byte 0x35 + 61a: 0500 .2byte 0x500 + 61c: e300 .2byte 0xe300 + 61e: 001e .2byte 0x1e + 620: 0500 .2byte 0x500 + 622: af00 .2byte 0xaf00 + 624: 0025 .2byte 0x25 + 626: 0500 .2byte 0x500 + 628: 8100 .2byte 0x8100 + 62a: 0009 .2byte 0x9 + 62c: 0500 .2byte 0x500 + 62e: d600 .2byte 0xd600 + 630: 0001 .2byte 0x1 + 632: 0500 .2byte 0x500 + 634: 0000 .2byte 0x0 + 636: 0015 .2byte 0x15 + 638: 0500 .2byte 0x500 + 63a: db00 .2byte 0xdb00 + 63c: 05000013 addi x0,x0,80 + 640: bb00 .2byte 0xbb00 + 642: 05000007 .4byte 0x5000007 + 646: 8300 .2byte 0x8300 + 648: 0014 .2byte 0x14 + 64a: 0500 .2byte 0x500 + 64c: 3a00 .2byte 0x3a00 + 64e: 05000033 .4byte 0x5000033 + 652: 5e00 .2byte 0x5e00 + 654: 000c .2byte 0xc + 656: 0500 .2byte 0x500 + 658: 0500 .2byte 0x500 + 65a: 0034 .2byte 0x34 + 65c: 0500 .2byte 0x500 + 65e: c600 .2byte 0xc600 + 660: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> + 664: dc00 .2byte 0xdc00 + 666: 0500001b .4byte 0x500001b + 66a: b800 .2byte 0xb800 + 66c: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> + 670: 6d00 .2byte 0x6d00 + 672: 0025 .2byte 0x25 + 674: 0500 .2byte 0x500 + 676: b000 .2byte 0xb000 + 678: 000a .2byte 0xa + 67a: 0500 .2byte 0x500 + 67c: 5700 .2byte 0x5700 + 67e: 0000 .2byte 0x0 + 680: 0500 .2byte 0x500 + 682: 2800 .2byte 0x2800 + 684: 000c .2byte 0xc + 686: 0500 .2byte 0x500 + 688: 9000 .2byte 0x9000 + 68a: 001e .2byte 0x1e + 68c: 0500 .2byte 0x500 + 68e: eb00 .2byte 0xeb00 + 690: 0006 .2byte 0x6 + 692: 0500 .2byte 0x500 + 694: 0300 .2byte 0x300 + 696: 0009 .2byte 0x9 + 698: 0500 .2byte 0x500 + 69a: 1f00 .2byte 0x1f00 + 69c: 002e .2byte 0x2e + 69e: 0500 .2byte 0x500 + 6a0: 7800 .2byte 0x7800 + 6a2: 0011 .2byte 0x11 + 6a4: 0500 .2byte 0x500 + 6a6: 9b00 .2byte 0x9b00 + 6a8: 0000 .2byte 0x0 + 6aa: 0500 .2byte 0x500 + 6ac: 6f00 .2byte 0x6f00 + 6ae: 0500000f fence ow,unknown + 6b2: ad00 .2byte 0xad00 + 6b4: 05000013 addi x0,x0,80 + 6b8: 3b00 .2byte 0x3b00 + 6ba: 0019 .2byte 0x19 + 6bc: 0500 .2byte 0x500 + 6be: cd00 .2byte 0xcd00 + 6c0: 05000027 .4byte 0x5000027 + 6c4: 4500 .2byte 0x4500 + 6c6: 0004 .2byte 0x4 + 6c8: 0500 .2byte 0x500 + 6ca: a600 .2byte 0xa600 + 6cc: 0500000b .4byte 0x500000b + 6d0: 8900 .2byte 0x8900 + 6d2: 05000033 .4byte 0x5000033 + 6d6: 1f00 .2byte 0x1f00 + 6d8: 0015 .2byte 0x15 + 6da: 0500 .2byte 0x500 + 6dc: 8000 .2byte 0x8000 + 6de: 000e .2byte 0xe + 6e0: 0500 .2byte 0x500 + 6e2: 3d00 .2byte 0x3d00 + 6e4: 0000 .2byte 0x0 + 6e6: 0500 .2byte 0x500 + 6e8: 9700 .2byte 0x9700 + 6ea: 000a .2byte 0xa + 6ec: 0500 .2byte 0x500 + 6ee: ec00 .2byte 0xec00 + 6f0: 0001 .2byte 0x1 + 6f2: 0500 .2byte 0x500 + 6f4: c400 .2byte 0xc400 + 6f6: 0011 .2byte 0x11 + 6f8: 0500 .2byte 0x500 + 6fa: f100 .2byte 0xf100 + 6fc: 0500000b .4byte 0x500000b + 700: b700 .2byte 0xb700 + 702: 001f 0500 4200 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x42 + 708: 000d .2byte 0xd + 70a: 0500 .2byte 0x500 + 70c: 5d00 .2byte 0x5d00 + 70e: 0011 .2byte 0x11 + 710: 0500 .2byte 0x500 + 712: 6800 .2byte 0x6800 + 714: 0029 .2byte 0x29 + 716: 0500 .2byte 0x500 + 718: 1200 .2byte 0x1200 + 71a: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> + 71e: 9a00 .2byte 0x9a00 + 720: 0031 .2byte 0x31 + 722: 0500 .2byte 0x500 + 724: 0400 .2byte 0x400 + 726: 0016 .2byte 0x16 + 728: 0500 .2byte 0x500 + 72a: b100 .2byte 0xb100 + 72c: 0026 .2byte 0x26 + 72e: 0500 .2byte 0x500 + 730: d600 .2byte 0xd600 + 732: 0030 .2byte 0x30 + 734: 0500 .2byte 0x500 + 736: 9f00 .2byte 0x9f00 + 738: 0034 .2byte 0x34 + 73a: 0500 .2byte 0x500 + 73c: d500 .2byte 0xd500 + 73e: 0014 .2byte 0x14 + 740: 0500 .2byte 0x500 + 742: 0a00 .2byte 0xa00 + 744: 000a .2byte 0xa + 746: 0500 .2byte 0x500 + 748: f800 .2byte 0xf800 + 74a: 0034 .2byte 0x34 + 74c: 0500 .2byte 0x500 + 74e: 3000 .2byte 0x3000 + 750: 0018 .2byte 0x18 + 752: 0500 .2byte 0x500 + 754: ee00 .2byte 0xee00 + 756: 05000017 auipc x0,0x5000 + 75a: e000 .2byte 0xe000 + 75c: 0024 .2byte 0x24 + 75e: 0500 .2byte 0x500 + 760: 6600 .2byte 0x6600 + 762: 0024 .2byte 0x24 + 764: 0500 .2byte 0x500 + 766: 1b00 .2byte 0x1b00 + 768: 0001 .2byte 0x1 + 76a: 0500 .2byte 0x500 + 76c: 2900 .2byte 0x2900 + 76e: 0032 .2byte 0x32 + 770: 0500 .2byte 0x500 + 772: 5100 .2byte 0x5100 + 774: 0002 .2byte 0x2 + 776: 0500 .2byte 0x500 + 778: d400 .2byte 0xd400 + 77a: 0002 .2byte 0x2 + 77c: 0500 .2byte 0x500 + 77e: 7c00 .2byte 0x7c00 + 780: 0032 .2byte 0x32 + 782: 0500 .2byte 0x500 + 784: b500 .2byte 0xb500 + 786: 001a .2byte 0x1a + 788: 0500 .2byte 0x500 + 78a: 0d00 .2byte 0xd00 + 78c: 05000013 addi x0,x0,80 + 790: 9600 .2byte 0x9600 + 792: 000d .2byte 0xd + 794: 0500 .2byte 0x500 + 796: 8c00 .2byte 0x8c00 + 798: 0015 .2byte 0x15 + 79a: 0500 .2byte 0x500 + 79c: b500 .2byte 0xb500 + 79e: 0009 .2byte 0x9 + 7a0: 0500 .2byte 0x500 + 7a2: 2700 .2byte 0x2700 + 7a4: 0030 .2byte 0x30 + 7a6: 0500 .2byte 0x500 + 7a8: bb00 .2byte 0xbb00 + 7aa: 0018 .2byte 0x18 + 7ac: 0500 .2byte 0x500 + 7ae: 3300 .2byte 0x3300 + 7b0: 001c .2byte 0x1c + 7b2: 0500 .2byte 0x500 + 7b4: 4a00 .2byte 0x4a00 + 7b6: 0010 .2byte 0x10 + 7b8: 0500 .2byte 0x500 + 7ba: d300 .2byte 0xd300 + 7bc: 000a .2byte 0xa + 7be: 0500 .2byte 0x500 + 7c0: b400 .2byte 0xb400 + 7c2: 0010 .2byte 0x10 + 7c4: 0500 .2byte 0x500 + 7c6: 7400 .2byte 0x7400 + 7c8: 0006 .2byte 0x6 + 7ca: 0500 .2byte 0x500 + 7cc: c500 .2byte 0xc500 + 7ce: 0024 .2byte 0x24 + 7d0: 0500 .2byte 0x500 + 7d2: 0f00 .2byte 0xf00 + 7d4: 0032 .2byte 0x32 + 7d6: 0500 .2byte 0x500 + 7d8: 7600 .2byte 0x7600 + 7da: 001a .2byte 0x1a + 7dc: 0500 .2byte 0x500 + 7de: fd00 .2byte 0xfd00 + 7e0: 05000013 addi x0,x0,80 + 7e4: 4800 .2byte 0x4800 + 7e6: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> + 7ea: 7100 .2byte 0x7100 + 7ec: 0001 .2byte 0x1 + 7ee: 0500 .2byte 0x500 + 7f0: d500 .2byte 0xd500 + 7f2: 0000 .2byte 0x0 + 7f4: 0500 .2byte 0x500 + 7f6: 5c00 .2byte 0x5c00 + 7f8: 0010 .2byte 0x10 + 7fa: 0500 .2byte 0x500 + 7fc: f800 .2byte 0xf800 + 7fe: 001a .2byte 0x1a + 800: 0500 .2byte 0x500 + 802: 6e00 .2byte 0x6e00 + 804: 0500001b .4byte 0x500001b + 808: 2b00 .2byte 0x2b00 + 80a: 000e .2byte 0xe + 80c: 0500 .2byte 0x500 + 80e: c600 .2byte 0xc600 + 810: 05000013 addi x0,x0,80 + 814: 0600 .2byte 0x600 + 816: 002a .2byte 0x2a + 818: 0500 .2byte 0x500 + 81a: 4600 .2byte 0x4600 + 81c: 0012 .2byte 0x12 + 81e: 0500 .2byte 0x500 + 820: 4e00 .2byte 0x4e00 + 822: 05000013 addi x0,x0,80 + 826: 0f00 .2byte 0xf00 + 828: 0006 .2byte 0x6 + 82a: 0500 .2byte 0x500 + 82c: 7c00 .2byte 0x7c00 + 82e: 0031 .2byte 0x31 + 830: 0500 .2byte 0x500 + 832: 3c00 .2byte 0x3c00 + 834: 0006 .2byte 0x6 + 836: 0500 .2byte 0x500 + 838: b200 .2byte 0xb200 + 83a: 0002 .2byte 0x2 + 83c: 0500 .2byte 0x500 + 83e: 1d00 .2byte 0x1d00 + 840: 002a .2byte 0x2a + 842: 0500 .2byte 0x500 + 844: e300 .2byte 0xe300 + 846: 0015 .2byte 0x15 + 848: 0500 .2byte 0x500 + 84a: 5e00 .2byte 0x5e00 + 84c: 002d .2byte 0x2d + 84e: 0500 .2byte 0x500 + 850: df00 .2byte 0xdf00 + 852: 000e .2byte 0xe + 854: 0500 .2byte 0x500 + 856: d000 .2byte 0xd000 + 858: 05000017 auipc x0,0x5000 + 85c: 3500 .2byte 0x3500 + 85e: 0500002b .4byte 0x500002b + 862: 2300 .2byte 0x2300 + 864: 001a .2byte 0x1a + 866: 0500 .2byte 0x500 + 868: 4b00 .2byte 0x4b00 + 86a: 0031 .2byte 0x31 + 86c: 0500 .2byte 0x500 + 86e: b100 .2byte 0xb100 + 870: 0029 .2byte 0x29 + 872: 0500 .2byte 0x500 + 874: e500 .2byte 0xe500 + 876: 0029 .2byte 0x29 + 878: 0500 .2byte 0x500 + 87a: 2100 .2byte 0x2100 + 87c: 0500001b .4byte 0x500001b + 880: f700 .2byte 0xf700 + 882: 002a .2byte 0x2a + 884: 0500 .2byte 0x500 + 886: 9400 .2byte 0x9400 + 888: 001f 0500 5100 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x51 + 88e: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> + 892: a500 .2byte 0xa500 + 894: 0500000f fence ow,unknown + 898: 4400 .2byte 0x4400 + 89a: 0500002f .4byte 0x500002f + 89e: 5e00 .2byte 0x5e00 + 8a0: 05000013 addi x0,x0,80 + 8a4: cc00 .2byte 0xcc00 + 8a6: 0029 .2byte 0x29 + 8a8: 0500 .2byte 0x500 + 8aa: 6b00 .2byte 0x6b00 + 8ac: 0002 .2byte 0x2 + 8ae: 0500 .2byte 0x500 + 8b0: 4300 .2byte 0x4300 + 8b2: 0016 .2byte 0x16 + 8b4: 0500 .2byte 0x500 + 8b6: f200 .2byte 0xf200 + 8b8: 0026 .2byte 0x26 + 8ba: 0500 .2byte 0x500 + 8bc: de00 .2byte 0xde00 + 8be: 0031 .2byte 0x31 + 8c0: 0000 .2byte 0x0 + 8c2: 0005 .2byte 0x5 + 8c4: 0500 .2byte 0x500 + 8c6: 101d .2byte 0x101d + 8c8: 0015 .2byte 0x15 + 8ca: 0600 .2byte 0x600 + 8cc: 7164 .2byte 0x7164 + 8ce: 0000 .2byte 0x0 + 8d0: 0500 .2byte 0x500 + 8d2: ea65 .2byte 0xea65 + 8d4: 0600002f .4byte 0x600002f + 8d8: 0166 .2byte 0x166 + 8da: 000a .2byte 0xa + 8dc: 0500 .2byte 0x500 + 8de: 000cce67 .4byte 0xcce67 + 8e2: 0600 .2byte 0x600 + 8e4: 706a .2byte 0x706a + 8e6: 0000 .2byte 0x0 + 8e8: 0500 .2byte 0x500 + 8ea: 0004ee6b .4byte 0x4ee6b + 8ee: 0600 .2byte 0x600 + 8f0: 076e .2byte 0x76e + 8f2: 0004 .2byte 0x4 + 8f4: 0500 .2byte 0x500 + 8f6: 00311c6f jal x24,120f8 <_start-0x7ffedf08> + 8fa: 0600 .2byte 0x600 + 8fc: ae70 .2byte 0xae70 + 8fe: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> + 902: b771 .2byte 0xb771 + 904: 0019 .2byte 0x19 + 906: 0600 .2byte 0x600 + 908: 0674 .2byte 0x674 + 90a: 0004 .2byte 0x4 + 90c: 0500 .2byte 0x500 + 90e: c675 .2byte 0xc675 + 910: 0028 .2byte 0x28 + 912: 0600 .2byte 0x600 + 914: ab78 .2byte 0xab78 + 916: 05000027 .4byte 0x5000027 + 91a: b579 .2byte 0xb579 + 91c: 06000027 .4byte 0x6000027 + 920: b17a .2byte 0xb17a + 922: 0500002b .4byte 0x500002b + 926: 0035347b .4byte 0x35347b + 92a: 0600 .2byte 0x600 + 92c: aa7e .2byte 0xaa7e + 92e: 05000027 .4byte 0x5000027 + 932: 00261d7f 01820600 .byte 0x7f, 0x1d, 0x26, 0x00, 0x00, 0x06, 0x82, 0x01, 0x63, 0x33, 0x00, 0x00 + 93a: 00003363 + 93e: 8305 .2byte 0x8305 + 940: 2301 .2byte 0x2301 + 942: 0019 .2byte 0x19 + 944: 0600 .2byte 0x600 + 946: 0184 .2byte 0x184 + 948: 3205 .2byte 0x3205 + 94a: 0000 .2byte 0x0 + 94c: 8505 .2byte 0x8505 + 94e: 5b01 .2byte 0x5b01 + 950: 0021 .2byte 0x21 + 952: 0600 .2byte 0x600 + 954: 0188 .2byte 0x188 + 956: 3362 .2byte 0x3362 + 958: 0000 .2byte 0x0 + 95a: 8905 .2byte 0x8905 + 95c: bf01 .2byte 0xbf01 + 95e: 0032 .2byte 0x32 + 960: 0600 .2byte 0x600 + 962: 018c .2byte 0x18c + 964: 2a84 .2byte 0x2a84 + 966: 0000 .2byte 0x0 + 968: 8d05 .2byte 0x8d05 + 96a: af01 .2byte 0xaf01 + 96c: 0016 .2byte 0x16 + 96e: 0600 .2byte 0x600 + 970: 018e .2byte 0x18e + 972: 1a14 .2byte 0x1a14 + 974: 0000 .2byte 0x0 + 976: 8f05 .2byte 0x8f05 + 978: d201 .2byte 0xd201 + 97a: 002a .2byte 0x2a + 97c: 0600 .2byte 0x600 + 97e: 0190 .2byte 0x190 + 980: 00002a83 lw x21,0(x0) # 0 <_start-0x80000000> + 984: 9105 .2byte 0x9105 + 986: 0101 .2byte 0x101 + 988: 06000007 .4byte 0x6000007 + 98c: 0192 .2byte 0x192 + 98e: 2705 .2byte 0x2705 + 990: 0000 .2byte 0x0 + 992: 9305 .2byte 0x9305 + 994: b201 .2byte 0xb201 + 996: 0001 .2byte 0x1 + 998: 0600 .2byte 0x600 + 99a: 0194 .2byte 0x194 + 99c: 0161 .2byte 0x161 + 99e: 0000 .2byte 0x0 + 9a0: 9505 .2byte 0x9505 + 9a2: 1401 .2byte 0x1401 + 9a4: 0009 .2byte 0x9 + 9a6: 0600 .2byte 0x600 + 9a8: 0196 .2byte 0x196 + 9aa: 2704 .2byte 0x2704 + 9ac: 0000 .2byte 0x0 + 9ae: 9705 .2byte 0x9705 + 9b0: 1601 .2byte 0x1601 + 9b2: 0021 .2byte 0x21 + 9b4: 0600 .2byte 0x600 + 9b6: 0198 .2byte 0x198 + 9b8: 0fdc .2byte 0xfdc + 9ba: 0000 .2byte 0x0 + 9bc: 9905 .2byte 0x9905 + 9be: d401 .2byte 0xd401 + 9c0: 0034 .2byte 0x34 + 9c2: 0600 .2byte 0x600 + 9c4: 019a .2byte 0x19a + 9c6: 00001ed3 .4byte 0x1ed3 + 9ca: 9b05 .2byte 0x9b05 + 9cc: 6401 .2byte 0x6401 + 9ce: 0028 .2byte 0x28 + 9d0: 0600 .2byte 0x600 + 9d2: 019c .2byte 0x19c + 9d4: 00000fdb .4byte 0xfdb + 9d8: 9d05 .2byte 0x9d05 + 9da: c801 .2byte 0xc801 + 9dc: 0004 .2byte 0x4 + 9de: 0600 .2byte 0x600 + 9e0: 019e .2byte 0x19e + 9e2: 14f0 .2byte 0x14f0 + 9e4: 0000 .2byte 0x0 + 9e6: 9f05 .2byte 0x9f05 + 9e8: 0b01 .2byte 0xb01 + 9ea: 0025 .2byte 0x25 + 9ec: 0600 .2byte 0x600 + 9ee: 01a0 .2byte 0x1a0 + 9f0: 000009cf .4byte 0x9cf + 9f4: a105 .2byte 0xa105 + 9f6: 8701 .2byte 0x8701 + 9f8: 06000023 sb x0,96(x0) # 60 <_start-0x7fffffa0> + 9fc: 01a2 .2byte 0x1a2 + 9fe: 000014ef jal x9,19fe <_start-0x7fffe602> + a02: a305 .2byte 0xa305 + a04: a001 .2byte 0xa001 + a06: 001d .2byte 0x1d + a08: 0600 .2byte 0x600 + a0a: 01a5 .2byte 0x1a5 + a0c: 1080 .2byte 0x1080 + a0e: 0000 .2byte 0x0 + a10: a605 .2byte 0xa605 + a12: 8601 .2byte 0x8601 + a14: 0600000b .4byte 0x600000b + a18: 1fa901a7 .4byte 0x1fa901a7 + a1c: 0000 .2byte 0x0 + a1e: a805 .2byte 0xa805 + a20: 7f01 .2byte 0x7f01 + a22: 06000017 auipc x0,0x6000 + a26: 01a9 .2byte 0x1a9 + a28: 0000107f f201aa05 .byte 0x7f, 0x10, 0x00, 0x00, 0x05, 0xaa, 0x01, 0xf2, 0x2b, 0x00, 0x00, 0x06 + a30: 0600002b + a34: 335301ab .4byte 0x335301ab + a38: 0000 .2byte 0x0 + a3a: ac05 .2byte 0xac05 + a3c: 9301 .2byte 0x9301 + a3e: 06000003 lb x0,96(x0) # 60 <_start-0x7fffffa0> + a42: 01ad .2byte 0x1ad + a44: 0a45 .2byte 0xa45 + a46: 0000 .2byte 0x0 + a48: ae05 .2byte 0xae05 + a4a: d201 .2byte 0xd201 + a4c: 0019 .2byte 0x19 + a4e: 0600 .2byte 0x600 + a50: 335201af .4byte 0x335201af + a54: 0000 .2byte 0x0 + a56: b005 .2byte 0xb005 + a58: c601 .2byte 0xc601 + a5a: 0600002f .4byte 0x600002f + a5e: 01b1 .2byte 0x1b1 + a60: 1eaa .2byte 0x1eaa + a62: 0000 .2byte 0x0 + a64: b205 .2byte 0xb205 + a66: b301 .2byte 0xb301 + a68: 0014 .2byte 0x14 + a6a: 0600 .2byte 0x600 + a6c: 1e1401b3 .4byte 0x1e1401b3 + a70: 0000 .2byte 0x0 + a72: b405 .2byte 0xb405 + a74: 7401 .2byte 0x7401 + a76: 0600002f .4byte 0x600002f + a7a: 01b5 .2byte 0x1b5 + a7c: 1ea9 .2byte 0x1ea9 + a7e: 0000 .2byte 0x0 + a80: b605 .2byte 0xb605 + a82: 7401 .2byte 0x7401 + a84: 0018 .2byte 0x18 + a86: 0600 .2byte 0x600 + a88: 24fc01b7 lui x3,0x24fc0 + a8c: 0000 .2byte 0x0 + a8e: b805 .2byte 0xb805 + a90: d501 .2byte 0xd501 + a92: 0021 .2byte 0x21 + a94: 0600 .2byte 0x600 + a96: 01b9 .2byte 0x1b9 + a98: 0fec .2byte 0xfec + a9a: 0000 .2byte 0x0 + a9c: ba05 .2byte 0xba05 + a9e: f601 .2byte 0xf601 + aa0: 06000023 sb x0,96(x0) # 60 <_start-0x7fffffa0> + aa4: 24fb01bb .4byte 0x24fb01bb + aa8: 0000 .2byte 0x0 + aaa: bc05 .2byte 0xbc05 + aac: 1a01 .2byte 0x1a01 + aae: 0010 .2byte 0x10 + ab0: 0600 .2byte 0x600 + ab2: 352901bf c0050000 .8byte 0xc0050000352901bf + aba: 4e01 .2byte 0x4e01 + abc: 0009 .2byte 0x9 + abe: 0600 .2byte 0x600 + ac0: 01c1 .2byte 0x1c1 + ac2: 2014 .2byte 0x2014 + ac4: 0000 .2byte 0x0 + ac6: c205 .2byte 0xc205 + ac8: f701 .2byte 0xf701 + aca: 0019 .2byte 0x19 + acc: 0600 .2byte 0x600 + ace: 01c5 .2byte 0x1c5 + ad0: 3528 .2byte 0x3528 + ad2: 0000 .2byte 0x0 + ad4: c605 .2byte 0xc605 + ad6: 1701 .2byte 0x1701 + ad8: 001c .2byte 0x1c + ada: 0600 .2byte 0x600 + adc: 01c9 .2byte 0x1c9 + ade: 25fc .2byte 0x25fc + ae0: 0000 .2byte 0x0 + ae2: ca05 .2byte 0xca05 + ae4: 5a01 .2byte 0x5a01 + ae6: 0006 .2byte 0x6 + ae8: 0600 .2byte 0x600 + aea: 107401cb .4byte 0x107401cb + aee: 0000 .2byte 0x0 + af0: cc05 .2byte 0xcc05 + af2: 3f01 .2byte 0x3f01 + af4: 0008 .2byte 0x8 + af6: 0600 .2byte 0x600 + af8: 01cd .2byte 0x1cd + afa: 000025fb .4byte 0x25fb + afe: ce05 .2byte 0xce05 + b00: 2901 .2byte 0x2901 + b02: 0004 .2byte 0x4 + b04: 0600 .2byte 0x600 + b06: 01d2 .2byte 0x1d2 + b08: 000017bb .4byte 0x17bb + b0c: d305 .2byte 0xd305 + b0e: 5101 .2byte 0x5101 + b10: 0025 .2byte 0x25 + b12: 0600 .2byte 0x600 + b14: 01d4 .2byte 0x1d4 + b16: 103e .2byte 0x103e + b18: 0000 .2byte 0x0 + b1a: d505 .2byte 0xd505 + b1c: fb01 .2byte 0xfb01 + b1e: 0600000f fence or,unknown + b22: 0b7701d7 .4byte 0xb7701d7 + b26: 0000 .2byte 0x0 + b28: d805 .2byte 0xd805 + b2a: 7901 .2byte 0x7901 + b2c: 002e .2byte 0x2e + b2e: 0600 .2byte 0x600 + b30: 01d9 .2byte 0x1d9 + b32: 276c .2byte 0x276c + b34: 0000 .2byte 0x0 + b36: da05 .2byte 0xda05 + b38: d601 .2byte 0xd601 + b3a: 06000007 .4byte 0x6000007 + b3e: 01dc .2byte 0x1dc + b40: 000017c7 .4byte 0x17c7 + b44: dd05 .2byte 0xdd05 + b46: d101 .2byte 0xd101 + b48: 0016 .2byte 0x16 + b4a: 0600 .2byte 0x600 + b4c: 01df 2ba7 0000 .byte 0xdf, 0x01, 0xa7, 0x2b, 0x00, 0x00 + b52: e005 .2byte 0xe005 + b54: ae01 .2byte 0xae01 + b56: 0028 .2byte 0x28 + b58: 0600 .2byte 0x600 + b5a: 01e1 .2byte 0x1e1 + b5c: 1775 .2byte 0x1775 + b5e: 0000 .2byte 0x0 + b60: e205 .2byte 0xe205 + b62: 1901 .2byte 0x1901 + b64: 002d .2byte 0x2d + b66: 0600 .2byte 0x600 + b68: 01e4 .2byte 0x1e4 + b6a: 13f4 .2byte 0x13f4 + b6c: 0000 .2byte 0x0 + b6e: e505 .2byte 0xe505 + b70: 6101 .2byte 0x6101 + b72: 0600000b .4byte 0x600000b + b76: 01e6 .2byte 0x1e6 + b78: 2f99 .2byte 0x2f99 + b7a: 0000 .2byte 0x0 + b7c: e705 .2byte 0xe705 + b7e: 9901 .2byte 0x9901 + b80: 000e .2byte 0xe + b82: 0600 .2byte 0x600 + b84: 2e3a01ef jal x3,a1666 <_start-0x7ff5e99a> + b88: 0000 .2byte 0x0 + b8a: f005 .2byte 0xf005 + b8c: 3801 .2byte 0x3801 + b8e: 0024 .2byte 0x24 + b90: 0600 .2byte 0x600 + b92: 01f1 .2byte 0x1f1 + b94: 31e9 .2byte 0x31e9 + b96: 0000 .2byte 0x0 + b98: f205 .2byte 0xf205 + b9a: 1a01 .2byte 0x1a01 + b9c: 0002 .2byte 0x2 + b9e: 0600 .2byte 0x600 + ba0: 207601f3 .4byte 0x207601f3 + ba4: 0000 .2byte 0x0 + ba6: f405 .2byte 0xf405 + ba8: 5701 .2byte 0x5701 + baa: 0600000f fence or,unknown + bae: 01f5 .2byte 0x1f5 + bb0: 1155 .2byte 0x1155 + bb2: 0000 .2byte 0x0 + bb4: f605 .2byte 0xf605 + bb6: 8301 .2byte 0x8301 + bb8: 0024 .2byte 0x24 + bba: 0600 .2byte 0x600 + bbc: 2e3901f7 .4byte 0x2e3901f7 + bc0: 0000 .2byte 0x0 + bc2: f805 .2byte 0xf805 + bc4: 9401 .2byte 0x9401 + bc6: 0011 .2byte 0x11 + bc8: 0600 .2byte 0x600 + bca: 01f9 .2byte 0x1f9 + bcc: 31e8 .2byte 0x31e8 + bce: 0000 .2byte 0x0 + bd0: fa05 .2byte 0xfa05 + bd2: 6501 .2byte 0x6501 + bd4: 06000003 lb x0,96(x0) # 60 <_start-0x7fffffa0> + bd8: 207501fb .4byte 0x207501fb + bdc: 0000 .2byte 0x0 + bde: fc05 .2byte 0xfc05 + be0: b901 .2byte 0xb901 + be2: 001e .2byte 0x1e + be4: 0600 .2byte 0x600 + be6: 01fd .2byte 0x1fd + be8: 1154 .2byte 0x1154 + bea: 0000 .2byte 0x0 + bec: fe05 .2byte 0xfe05 + bee: 1d01 .2byte 0x1d01 + bf0: 0022 .2byte 0x22 + bf2: 0600 .2byte 0x600 + bf4: 01ff 208c 0000 8005 .byte 0xff, 0x01, 0x8c, 0x20, 0x00, 0x00, 0x05, 0x80, 0x02, 0x5d + bfc: 5d02 + bfe: 0012 .2byte 0x12 + c00: 0600 .2byte 0x600 + c02: 0281 .2byte 0x281 + c04: 0000208b .4byte 0x208b + c08: 8205 .2byte 0x8205 + c0a: 3f02 .2byte 0x3f02 + c0c: 002a .2byte 0x2a + c0e: 0000 .2byte 0x0 + c10: 0005 .2byte 0x5 + c12: 9c02 .2byte 0x9c02 + c14: 07000003 lb x0,112(x0) # 70 <_start-0x7fffff90> + c18: 0036 .2byte 0x36 + c1a: 0000 .2byte 0x0 + c1c: 03010003 lb x0,48(x2) + c20: 0301 .2byte 0x301 + c22: 0205 .2byte 0x205 + c24: 35a8 .2byte 0x35a8 + c26: 0000 .2byte 0x0 + c28: 03040403 lb x8,48(x8) # 33323030 <_start-0x4ccdcfd0> + c2c: c207020b .4byte 0xc207020b + c30: 0008 .2byte 0x8 + c32: 0400 .2byte 0x400 + c34: 0d05 .2byte 0xd05 + c36: 7f 03 00 00 04 Address 0xc36 is out of bounds. + + c3b: 0404 .2byte 0x404 + ...